VirtualBox

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

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

installer code added to HostImpl, bugfixing in macket handing in the driver

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: HostImpl.h 12439 2008-09-12 17:37:42Z 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(COMGETTER(ProcessorOnlineCount))(ULONG *count);
85 STDMETHOD(GetProcessorSpeed)(ULONG cpuId, ULONG *speed);
86 STDMETHOD(GetProcessorDescription)(ULONG cpuId, BSTR *description);
87 STDMETHOD(COMGETTER(MemorySize))(ULONG *size);
88 STDMETHOD(COMGETTER(MemoryAvailable))(ULONG *available);
89 STDMETHOD(COMGETTER(OperatingSystem))(BSTR *os);
90 STDMETHOD(COMGETTER(OSVersion))(BSTR *version);
91 STDMETHOD(COMGETTER(UTCTime))(LONG64 *aUTCTime);
92
93 // IHost methods
94#ifdef RT_OS_WINDOWS
95 STDMETHOD(CreateHostNetworkInterface) (INPTR BSTR aName,
96 IHostNetworkInterface **aHostNetworkInterface,
97 IProgress **aProgress);
98 STDMETHOD(RemoveHostNetworkInterface) (INPTR GUIDPARAM aId,
99 IHostNetworkInterface **aHostNetworkInterface,
100 IProgress **aProgress);
101# ifdef VBOX_WITH_NETFLT
102 /*
103 * increments the reference to the netflt - to - aHostNetworkInterface binding reference count
104 * the exec flow:
105 * 1. if netflt is NOT installed currently - install it
106 * 2. if the NetFlt is not bound to the specified adapter - bind it
107 * 3. increase the binding reference count -
108 */
109 STDMETHOD(NetFltAcquire) (IHostNetworkInterface *aHostNetworkInterface,
110 IProgress **aProgress);
111
112 /*
113 * decrements the reference to the netflt - to - aHostNetworkInterface binding reference count
114 */
115 STDMETHOD(NetFltRelease) (IHostNetworkInterface *aHostNetworkInterface,
116 IProgress **aProgress);
117# endif /*VBOX_WITH_NETFLT*/
118#endif
119 STDMETHOD(CreateUSBDeviceFilter) (INPTR BSTR aName, IHostUSBDeviceFilter **aFilter);
120 STDMETHOD(InsertUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter *aFilter);
121 STDMETHOD(RemoveUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter **aFilter);
122
123 // public methods only for internal purposes
124
125 HRESULT loadSettings (const settings::Key &aGlobal);
126 HRESULT saveSettings (settings::Key &aGlobal);
127
128#ifdef VBOX_WITH_USB
129 typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList;
130
131 /** Must be called from under this object's lock. */
132 USBProxyService *usbProxyService() { return mUSBProxyService; }
133
134 HRESULT onUSBDeviceFilterChange (HostUSBDeviceFilter *aFilter, BOOL aActiveChanged = FALSE);
135 void getUSBFilters(USBDeviceFilterList *aGlobalFiltes, VirtualBox::SessionMachineVector *aMachines);
136 HRESULT checkUSBProxyService();
137#endif /* !VBOX_WITH_USB */
138
139#ifdef RT_OS_WINDOWS
140 static int networkInterfaceHelperServer (SVCHlpClient *aClient,
141 SVCHlpMsg::Code aMsgCode);
142#endif
143
144 // for VirtualBoxSupportErrorInfoImpl
145 static const wchar_t *getComponentName() { return L"Host"; }
146
147private:
148
149#if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS)
150# ifdef VBOX_USE_LIBHAL
151 bool getDVDInfoFromHal(std::list <ComObjPtr <HostDVDDrive> > &list);
152 bool getFloppyInfoFromHal(std::list <ComObjPtr <HostFloppyDrive> > &list);
153# endif
154 void parseMountTable(char *mountTable, std::list <ComObjPtr <HostDVDDrive> > &list);
155 bool validateDevice(const char *deviceNode, bool isCDROM);
156#endif
157
158#ifdef VBOX_WITH_USB
159 /** specialization for IHostUSBDeviceFilter */
160 ComObjPtr <HostUSBDeviceFilter> getDependentChild (IHostUSBDeviceFilter *aFilter)
161 {
162 VirtualBoxBase *child = VirtualBoxBaseWithChildren::
163 getDependentChild (ComPtr <IUnknown> (aFilter));
164 return child ? dynamic_cast <HostUSBDeviceFilter *> (child)
165 : NULL;
166 }
167#endif /* VBOX_WITH_USB */
168
169#ifdef RT_OS_WINDOWS
170 static int createNetworkInterface (SVCHlpClient *aClient,
171 const Utf8Str &aName,
172 Guid &aGUID, Utf8Str &aErrMsg);
173 static int removeNetworkInterface (SVCHlpClient *aClient,
174 const Guid &aGUID,
175 Utf8Str &aErrMsg);
176 static HRESULT networkInterfaceHelperClient (SVCHlpClient *aClient,
177 Progress *aProgress,
178 void *aUser, int *aVrc);
179#endif
180
181#ifdef VBOX_WITH_RESOURCE_USAGE_API
182 void registerMetrics (PerformanceCollector *aCollector);
183 void unregisterMetrics (PerformanceCollector *aCollector);
184#endif /* VBOX_WITH_RESOURCE_USAGE_API */
185
186 ComObjPtr <VirtualBox, ComWeakRef> mParent;
187
188#ifdef VBOX_WITH_USB
189 USBDeviceFilterList mUSBDeviceFilters;
190
191 /** Pointer to the USBProxyService object. */
192 USBProxyService *mUSBProxyService;
193#endif /* VBOX_WITH_USB */
194
195};
196
197#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