VirtualBox

source: vbox/trunk/src/VBox/NetworkServices/NetLib/utils.h@ 60409

Last change on this file since 60409 was 56300, checked in by vboxsync, 9 years ago

NetworkServices: Updated (C) year.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.3 KB
Line 
1/* $Id: utils.h 56300 2015-06-09 14:36:22Z vboxsync $ */
2/** @file
3 * ComHostUtils.cpp
4 */
5
6/*
7 * Copyright (C) 2013-2015 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18/*******************************************************************************
19* Header Files *
20*******************************************************************************/
21#ifndef _NETLIB_UTILS_H_
22#define _NETLIB_UTILS_H_
23
24#include "cpp/utils.h"
25
26typedef ComPtr<IVirtualBox> ComVirtualBoxPtr;
27typedef ComPtr<IVirtualBoxClient> ComVirtualBoxClientPtr;
28typedef ComPtr<IDHCPServer> ComDhcpServerPtr;
29typedef ComPtr<IHost> ComHostPtr;
30typedef ComPtr<INATNetwork> ComNatPtr;
31typedef com::SafeArray<BSTR> ComBstrArray;
32
33typedef std::vector<RTNETADDRIPV4> AddressList;
34typedef std::map<RTNETADDRIPV4, int> AddressToOffsetMapping;
35
36
37inline bool isDhcpRequired(const ComNatPtr& nat)
38{
39 BOOL fNeedDhcpServer = false;
40 if (FAILED(nat->COMGETTER(NeedDhcpServer)(&fNeedDhcpServer)))
41 return false;
42
43 return RT_BOOL(fNeedDhcpServer);
44}
45
46
47inline int findDhcpServer(const ComVirtualBoxPtr& vbox, const std::string& name, ComDhcpServerPtr& dhcp)
48{
49 HRESULT hrc = vbox->FindDHCPServerByNetworkName(com::Bstr(name.c_str()).raw(),
50 dhcp.asOutParam());
51 AssertComRCReturn(hrc, VERR_NOT_FOUND);
52
53 return VINF_SUCCESS;
54}
55
56
57inline int findNatNetwork(const ComVirtualBoxPtr& vbox, const std::string& name, ComNatPtr& nat)
58{
59 HRESULT hrc = vbox->FindNATNetworkByName(com::Bstr(name.c_str()).raw(),
60 nat.asOutParam());
61
62 AssertComRCReturn(hrc, VERR_NOT_FOUND);
63
64 return VINF_SUCCESS;
65}
66
67
68inline RTNETADDRIPV4 networkid(const RTNETADDRIPV4& addr, const RTNETADDRIPV4& netmask)
69{
70 RTNETADDRIPV4 netid;
71 netid.u = addr.u & netmask.u;
72 return netid;
73}
74
75
76int localMappings(const ComNatPtr&, AddressToOffsetMapping&);
77int hostDnsServers(const ComHostPtr&, const RTNETADDRIPV4&,/* const */ AddressToOffsetMapping&, AddressList&);
78int hostDnsSearchList(const ComHostPtr&, std::vector<std::string>&);
79int hostDnsDomain(const ComHostPtr&, std::string& domainStr);
80
81
82class NATNetworkEventAdapter
83{
84 public:
85 virtual HRESULT HandleEvent(VBoxEventType_T aEventType, IEvent *pEvent) = 0;
86};
87
88
89class NATNetworkListener
90{
91 public:
92 NATNetworkListener():m_pNAT(NULL){}
93
94 HRESULT init(NATNetworkEventAdapter *pNAT)
95 {
96 AssertPtrReturn(pNAT, E_INVALIDARG);
97
98 m_pNAT = pNAT;
99 return S_OK;
100 }
101
102 HRESULT init()
103 {
104 m_pNAT = NULL;
105 return S_OK;
106 }
107
108 void uninit() { m_pNAT = NULL; }
109
110 HRESULT HandleEvent(VBoxEventType_T aEventType, IEvent *pEvent)
111 {
112 if (m_pNAT)
113 return m_pNAT->HandleEvent(aEventType, pEvent);
114 else
115 return E_FAIL;
116 }
117
118 private:
119 NATNetworkEventAdapter *m_pNAT;
120};
121typedef ListenerImpl<NATNetworkListener, NATNetworkEventAdapter*> NATNetworkListenerImpl;
122
123# if VBOX_WITH_XPCOM
124class NS_CLASSINFO_NAME(NATNetworkListenerImpl);
125# endif
126
127typedef ComPtr<NATNetworkListenerImpl> ComNatListenerPtr;
128typedef com::SafeArray<VBoxEventType_T> ComEventTypeArray;
129
130/* XXX: const is commented out because of compilation erro on Windows host, but it's intended that this function
131 isn't modify event type array */
132int createNatListener(ComNatListenerPtr& listener, const ComVirtualBoxPtr& vboxptr,
133 NATNetworkEventAdapter *adapter, /* const */ ComEventTypeArray& events);
134int destroyNatListener(ComNatListenerPtr& listener, const ComVirtualBoxPtr& vboxptr);
135int createClientListener(ComNatListenerPtr& listener, const ComVirtualBoxClientPtr& vboxclientptr,
136 NATNetworkEventAdapter *adapter, /* const */ ComEventTypeArray& events);
137int destroyClientListener(ComNatListenerPtr& listener, const ComVirtualBoxClientPtr& vboxclientptr);
138
139#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette