1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
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 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef ____H_HOSTNETWORKINTERFACEIMPL
|
---|
23 | #define ____H_HOSTNETWORKINTERFACEIMPL
|
---|
24 |
|
---|
25 | #include "VirtualBoxBase.h"
|
---|
26 | #include "Collection.h"
|
---|
27 |
|
---|
28 | class ATL_NO_VTABLE HostNetworkInterface :
|
---|
29 | public VirtualBoxSupportErrorInfoImpl <HostNetworkInterface, IHostNetworkInterface>,
|
---|
30 | public VirtualBoxSupportTranslation <HostNetworkInterface>,
|
---|
31 | public VirtualBoxBase,
|
---|
32 | public IHostNetworkInterface
|
---|
33 | {
|
---|
34 | public:
|
---|
35 | HostNetworkInterface();
|
---|
36 | virtual ~HostNetworkInterface();
|
---|
37 |
|
---|
38 | DECLARE_NOT_AGGREGATABLE(HostNetworkInterface)
|
---|
39 |
|
---|
40 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
41 |
|
---|
42 | BEGIN_COM_MAP(HostNetworkInterface)
|
---|
43 | COM_INTERFACE_ENTRY(ISupportErrorInfo)
|
---|
44 | COM_INTERFACE_ENTRY(IHostNetworkInterface)
|
---|
45 | END_COM_MAP()
|
---|
46 |
|
---|
47 | NS_DECL_ISUPPORTS
|
---|
48 |
|
---|
49 | // public initializer/uninitializer for internal purposes only
|
---|
50 | HRESULT init (Bstr interfaceName, Guid guid);
|
---|
51 |
|
---|
52 | // IHostNetworkInterface properties
|
---|
53 | STDMETHOD(COMGETTER(Name)) (BSTR *interfaceName);
|
---|
54 | STDMETHOD(COMGETTER(Id)) (GUIDPARAMOUT guid);
|
---|
55 |
|
---|
56 | // for VirtualBoxSupportErrorInfoImpl
|
---|
57 | static const wchar_t *getComponentName() { return L"HostNetworkInterface"; }
|
---|
58 |
|
---|
59 | private:
|
---|
60 | Bstr mInterfaceName;
|
---|
61 | Guid mGuid;
|
---|
62 | };
|
---|
63 |
|
---|
64 | COM_DECL_READONLY_ENUM_AND_COLLECTION_BEGIN (HostNetworkInterface)
|
---|
65 |
|
---|
66 | STDMETHOD(FindByName) (INPTR BSTR name, IHostNetworkInterface **networkInterface)
|
---|
67 | {
|
---|
68 | if (!name)
|
---|
69 | return E_INVALIDARG;
|
---|
70 | if (!networkInterface)
|
---|
71 | return E_POINTER;
|
---|
72 |
|
---|
73 | *networkInterface = NULL;
|
---|
74 | Vector::value_type found;
|
---|
75 | Vector::iterator it = vec.begin();
|
---|
76 | while (it != vec.end() && !found)
|
---|
77 | {
|
---|
78 | Bstr n;
|
---|
79 | (*it)->COMGETTER(Name) (n.asOutParam());
|
---|
80 | if (n == name)
|
---|
81 | found = *it;
|
---|
82 | ++ it;
|
---|
83 | }
|
---|
84 |
|
---|
85 | if (!found)
|
---|
86 | return setError (E_INVALIDARG, HostNetworkInterfaceCollection::tr (
|
---|
87 | "The host network interface with the given name could not be found"));
|
---|
88 |
|
---|
89 | return found.queryInterfaceTo (networkInterface);
|
---|
90 | }
|
---|
91 |
|
---|
92 | STDMETHOD(FindById) (INPTR GUIDPARAM id, IHostNetworkInterface **networkInterface)
|
---|
93 | {
|
---|
94 | if (Guid(id).isEmpty())
|
---|
95 | return E_INVALIDARG;
|
---|
96 | if (!networkInterface)
|
---|
97 | return E_POINTER;
|
---|
98 |
|
---|
99 | *networkInterface = NULL;
|
---|
100 | Vector::value_type found;
|
---|
101 | Vector::iterator it = vec.begin();
|
---|
102 | while (it != vec.end() && !found)
|
---|
103 | {
|
---|
104 | Guid g;
|
---|
105 | (*it)->COMGETTER(Id) (g.asOutParam());
|
---|
106 | if (g == Guid(id))
|
---|
107 | found = *it;
|
---|
108 | ++ it;
|
---|
109 | }
|
---|
110 |
|
---|
111 | if (!found)
|
---|
112 | return setError (E_INVALIDARG, HostNetworkInterfaceCollection::tr (
|
---|
113 | "The host network interface with the given GUID could not be found"));
|
---|
114 |
|
---|
115 | return found.queryInterfaceTo (networkInterface);
|
---|
116 | }
|
---|
117 |
|
---|
118 |
|
---|
119 | COM_DECL_READONLY_ENUM_AND_COLLECTION_END (HostNetworkInterface)
|
---|
120 |
|
---|
121 |
|
---|
122 | #endif // ____H_H_HOSTNETWORKINTERFACEIMPL
|
---|