VirtualBox

source: vbox/trunk/src/VBox/Main/include/HostImpl.h@ 10898

Last change on this file since 10898 was 10896, checked in by vboxsync, 16 years ago

Main & VBoxManage: Made HostNetworkInterface, IHost::networkInterfaces and list hostifs available everywhere. Only Windows and Darwin implements the enumeration.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.3 KB
Line 
1/* $Id: HostImpl.h 10896 2008-07-25 23:58:01Z vboxsync $ */
2/** @file
3 * Implemenation of IHost.
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_HOSTIMPL
23#define ____H_HOSTIMPL
24
25#include "VirtualBoxBase.h"
26#ifdef VBOX_WITH_USB
27# include "HostUSBDeviceImpl.h"
28# include "USBDeviceFilterImpl.h"
29# include "USBProxyService.h"
30# include "VirtualBoxImpl.h"
31#else
32class USBProxyService;
33#endif
34
35#ifdef RT_OS_WINDOWS
36# include "win/svchlp.h"
37#endif
38
39#ifdef VBOX_WITH_RESOURCE_USAGE_API
40# include "PerformanceImpl.h"
41#endif /* VBOX_WITH_RESOURCE_USAGE_API */
42
43class VirtualBox;
44class SessionMachine;
45class HostDVDDrive;
46class HostFloppyDrive;
47class Progress;
48
49#include <list>
50
51class ATL_NO_VTABLE Host :
52 public VirtualBoxBaseWithChildren,
53 public VirtualBoxSupportErrorInfoImpl <Host, IHost>,
54 public VirtualBoxSupportTranslation <Host>,
55 public IHost
56{
57public:
58
59 DECLARE_NOT_AGGREGATABLE(Host)
60
61 DECLARE_PROTECT_FINAL_CONSTRUCT()
62
63 BEGIN_COM_MAP(Host)
64 COM_INTERFACE_ENTRY(ISupportErrorInfo)
65 COM_INTERFACE_ENTRY(IHost)
66 END_COM_MAP()
67
68 NS_DECL_ISUPPORTS
69
70 HRESULT FinalConstruct();
71 void FinalRelease();
72
73 // public initializer/uninitializer for internal purposes only
74 HRESULT init (VirtualBox *aParent);
75 void uninit();
76
77 // IHost properties
78 STDMETHOD(COMGETTER(DVDDrives))(IHostDVDDriveCollection **drives);
79 STDMETHOD(COMGETTER(FloppyDrives))(IHostFloppyDriveCollection **drives);
80 STDMETHOD(COMGETTER(USBDevices))(IHostUSBDeviceCollection **aUSBDevices);
81 STDMETHOD(COMGETTER(USBDeviceFilters))(IHostUSBDeviceFilterCollection ** aUSBDeviceFilters);
82 STDMETHOD(COMGETTER(NetworkInterfaces))(IHostNetworkInterfaceCollection **networkInterfaces);
83 STDMETHOD(COMGETTER(ProcessorCount))(ULONG *count);
84 STDMETHOD(GetProcessorSpeed)(ULONG cpuId, ULONG *speed);
85 STDMETHOD(GetProcessorDescription)(ULONG cpuId, BSTR *description);
86 STDMETHOD(COMGETTER(MemorySize))(ULONG *size);
87 STDMETHOD(COMGETTER(MemoryAvailable))(ULONG *available);
88 STDMETHOD(COMGETTER(OperatingSystem))(BSTR *os);
89 STDMETHOD(COMGETTER(OSVersion))(BSTR *version);
90 STDMETHOD(COMGETTER(UTCTime))(LONG64 *aUTCTime);
91
92 // IHost methods
93#ifdef RT_OS_WINDOWS
94 STDMETHOD(CreateHostNetworkInterface) (INPTR BSTR aName,
95 IHostNetworkInterface **aHostNetworkInterface,
96 IProgress **aProgress);
97 STDMETHOD(RemoveHostNetworkInterface) (INPTR GUIDPARAM aId,
98 IHostNetworkInterface **aHostNetworkInterface,
99 IProgress **aProgress);
100#endif
101 STDMETHOD(CreateUSBDeviceFilter) (INPTR BSTR aName, IHostUSBDeviceFilter **aFilter);
102 STDMETHOD(InsertUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter *aFilter);
103 STDMETHOD(RemoveUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter **aFilter);
104
105 // public methods only for internal purposes
106
107 HRESULT loadSettings (const settings::Key &aGlobal);
108 HRESULT saveSettings (settings::Key &aGlobal);
109
110#ifdef VBOX_WITH_USB
111 typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList;
112
113 /** Must be called from under this object's lock. */
114 USBProxyService *usbProxyService() { return mUSBProxyService; }
115
116 HRESULT onUSBDeviceFilterChange (HostUSBDeviceFilter *aFilter, BOOL aActiveChanged = FALSE);
117 void getUSBFilters(USBDeviceFilterList *aGlobalFiltes, VirtualBox::SessionMachineVector *aMachines);
118 HRESULT checkUSBProxyService();
119#endif /* !VBOX_WITH_USB */
120
121#ifdef RT_OS_WINDOWS
122 static int networkInterfaceHelperServer (SVCHlpClient *aClient,
123 SVCHlpMsg::Code aMsgCode);
124#endif
125
126 // for VirtualBoxSupportErrorInfoImpl
127 static const wchar_t *getComponentName() { return L"Host"; }
128
129private:
130
131#if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS)
132# ifdef VBOX_USE_LIBHAL
133 bool getDVDInfoFromHal(std::list <ComObjPtr <HostDVDDrive> > &list);
134 bool getFloppyInfoFromHal(std::list <ComObjPtr <HostFloppyDrive> > &list);
135# endif
136 void parseMountTable(char *mountTable, std::list <ComObjPtr <HostDVDDrive> > &list);
137 bool validateDevice(const char *deviceNode, bool isCDROM);
138#endif
139
140#ifdef VBOX_WITH_USB
141 /** specialization for IHostUSBDeviceFilter */
142 ComObjPtr <HostUSBDeviceFilter> getDependentChild (IHostUSBDeviceFilter *aFilter)
143 {
144 VirtualBoxBase *child = VirtualBoxBaseWithChildren::
145 getDependentChild (ComPtr <IUnknown> (aFilter));
146 return child ? dynamic_cast <HostUSBDeviceFilter *> (child)
147 : NULL;
148 }
149#endif /* VBOX_WITH_USB */
150
151#ifdef RT_OS_WINDOWS
152 static int createNetworkInterface (SVCHlpClient *aClient,
153 const Utf8Str &aName,
154 Guid &aGUID, Utf8Str &aErrMsg);
155 static int removeNetworkInterface (SVCHlpClient *aClient,
156 const Guid &aGUID,
157 Utf8Str &aErrMsg);
158 static HRESULT networkInterfaceHelperClient (SVCHlpClient *aClient,
159 Progress *aProgress,
160 void *aUser, int *aVrc);
161#endif
162
163#ifdef VBOX_WITH_RESOURCE_USAGE_API
164 void registerMetrics (PerformanceCollector *aCollector);
165 void unregisterMetrics (PerformanceCollector *aCollector);
166#endif /* VBOX_WITH_RESOURCE_USAGE_API */
167
168 ComObjPtr <VirtualBox, ComWeakRef> mParent;
169
170#ifdef VBOX_WITH_USB
171 USBDeviceFilterList mUSBDeviceFilters;
172
173 /** Pointer to the USBProxyService object. */
174 USBProxyService *mUSBProxyService;
175#endif /* VBOX_WITH_USB */
176
177};
178
179#endif // ____H_HOSTIMPL
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