1 | /* $Id: HostNetworkInterfaceImpl.h 15570 2008-12-16 10:39:34Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox COM class implementation
|
---|
6 | */
|
---|
7 |
|
---|
8 | /*
|
---|
9 | * Copyright (C) 2006-2008 Sun Microsystems, Inc.
|
---|
10 | *
|
---|
11 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
12 | * available from http://www.virtualbox.org. This file is free software;
|
---|
13 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
14 | * General Public License (GPL) as published by the Free Software
|
---|
15 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
16 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
17 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
18 | *
|
---|
19 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
20 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
21 | * additional information or have any questions.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #ifndef ____H_HOSTNETWORKINTERFACEIMPL
|
---|
25 | #define ____H_HOSTNETWORKINTERFACEIMPL
|
---|
26 |
|
---|
27 | #include "VirtualBoxBase.h"
|
---|
28 | #include "Collection.h"
|
---|
29 | #ifdef VBOX_WITH_HOSTNETIF_API
|
---|
30 | /* class HostNetworkInterface; */
|
---|
31 | /* #include "netif.h" */
|
---|
32 | struct NETIFINFO;
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | class ATL_NO_VTABLE HostNetworkInterface :
|
---|
36 | public VirtualBoxBaseNEXT,
|
---|
37 | public VirtualBoxSupportErrorInfoImpl <HostNetworkInterface, IHostNetworkInterface>,
|
---|
38 | public VirtualBoxSupportTranslation <HostNetworkInterface>,
|
---|
39 | public IHostNetworkInterface
|
---|
40 | {
|
---|
41 | public:
|
---|
42 |
|
---|
43 | VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (HostNetworkInterface)
|
---|
44 |
|
---|
45 | DECLARE_NOT_AGGREGATABLE (HostNetworkInterface)
|
---|
46 |
|
---|
47 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
48 |
|
---|
49 | BEGIN_COM_MAP (HostNetworkInterface)
|
---|
50 | COM_INTERFACE_ENTRY (ISupportErrorInfo)
|
---|
51 | COM_INTERFACE_ENTRY (IHostNetworkInterface)
|
---|
52 | END_COM_MAP()
|
---|
53 |
|
---|
54 | NS_DECL_ISUPPORTS
|
---|
55 |
|
---|
56 | DECLARE_EMPTY_CTOR_DTOR (HostNetworkInterface)
|
---|
57 |
|
---|
58 | HRESULT FinalConstruct();
|
---|
59 | void FinalRelease();
|
---|
60 |
|
---|
61 | // public initializer/uninitializer for internal purposes only
|
---|
62 | HRESULT init (Bstr interfaceName, Guid guid);
|
---|
63 | #ifdef VBOX_WITH_HOSTNETIF_API
|
---|
64 | HRESULT init (Bstr aInterfaceName, struct NETIFINFO *pIfs);
|
---|
65 | #endif
|
---|
66 |
|
---|
67 | // IHostNetworkInterface properties
|
---|
68 | STDMETHOD(COMGETTER(Name)) (BSTR *aInterfaceName);
|
---|
69 | STDMETHOD(COMGETTER(Id)) (OUT_GUID aGuid);
|
---|
70 | STDMETHOD(COMGETTER(IPAddress)) (ULONG *aIPAddress);
|
---|
71 | STDMETHOD(COMGETTER(NetworkMask)) (ULONG *aNetworkMask);
|
---|
72 | STDMETHOD(COMGETTER(IPV6Address)) (BSTR *aIPV6Address);
|
---|
73 | STDMETHOD(COMGETTER(IPV6NetworkMask)) (BSTR *aIPV6Mask);
|
---|
74 | STDMETHOD(COMGETTER(HardwareAddress)) (BSTR *aHardwareAddress);
|
---|
75 | STDMETHOD(COMGETTER(Type)) (HostNetworkInterfaceType_T *aType);
|
---|
76 | STDMETHOD(COMGETTER(Status)) (HostNetworkInterfaceStatus_T *aStatus);
|
---|
77 |
|
---|
78 | // for VirtualBoxSupportErrorInfoImpl
|
---|
79 | static const wchar_t *getComponentName() { return L"HostNetworkInterface"; }
|
---|
80 |
|
---|
81 | private:
|
---|
82 | const Bstr mInterfaceName;
|
---|
83 | const Guid mGuid;
|
---|
84 | struct Data
|
---|
85 | {
|
---|
86 | Data() : IPAddress (0), networkMask (0),
|
---|
87 | type (HostNetworkInterfaceType_Unknown),
|
---|
88 | status(HostNetworkInterfaceStatus_Down) {}
|
---|
89 |
|
---|
90 | ULONG IPAddress;
|
---|
91 | ULONG networkMask;
|
---|
92 | Bstr IPV6Address;
|
---|
93 | Bstr IPV6NetworkMask;
|
---|
94 | Bstr hardwareAddress;
|
---|
95 | HostNetworkInterfaceType_T type;
|
---|
96 | HostNetworkInterfaceStatus_T status;
|
---|
97 | } m;
|
---|
98 |
|
---|
99 | };
|
---|
100 |
|
---|
101 | #endif // ____H_H_HOSTNETWORKINTERFACEIMPL
|
---|
102 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|