VirtualBox

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

Last change on this file since 7692 was 6076, checked in by vboxsync, 17 years ago

Merged dmik/s2 branch (r25959:26751) to the trunk.

  • 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 6076 2007-12-14 19:23:03Z vboxsync $ */
2
3/** @file
4 *
5 * VirtualBox COM class implementation
6 */
7
8/*
9 * Copyright (C) 2006-2007 innotek GmbH
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
20#ifndef ____H_HOSTIMPL
21#define ____H_HOSTIMPL
22
23#include "VirtualBoxBase.h"
24#include "HostUSBDeviceImpl.h"
25#include "USBDeviceFilterImpl.h"
26
27#ifdef RT_OS_WINDOWS
28#include "win32/svchlp.h"
29#endif
30
31class VirtualBox;
32class SessionMachine;
33class HostDVDDrive;
34class HostFloppyDrive;
35class Progress;
36
37#include <list>
38
39class ATL_NO_VTABLE Host :
40 public VirtualBoxBaseWithChildren,
41 public VirtualBoxSupportErrorInfoImpl <Host, IHost>,
42 public VirtualBoxSupportTranslation <Host>,
43 public IHost
44{
45public:
46
47 DECLARE_NOT_AGGREGATABLE(Host)
48
49 DECLARE_PROTECT_FINAL_CONSTRUCT()
50
51 BEGIN_COM_MAP(Host)
52 COM_INTERFACE_ENTRY(ISupportErrorInfo)
53 COM_INTERFACE_ENTRY(IHost)
54 END_COM_MAP()
55
56 NS_DECL_ISUPPORTS
57
58 HRESULT FinalConstruct();
59 void FinalRelease();
60
61 // public initializer/uninitializer for internal purposes only
62 HRESULT init (VirtualBox *parent);
63 void uninit();
64
65 // IHost properties
66 STDMETHOD(COMGETTER(DVDDrives))(IHostDVDDriveCollection **drives);
67 STDMETHOD(COMGETTER(FloppyDrives))(IHostFloppyDriveCollection **drives);
68 STDMETHOD(COMGETTER(USBDevices))(IHostUSBDeviceCollection **aUSBDevices);
69 STDMETHOD(COMGETTER(USBDeviceFilters))(IHostUSBDeviceFilterCollection ** aUSBDeviceFilters);
70#ifdef RT_OS_WINDOWS
71 STDMETHOD(COMGETTER(NetworkInterfaces))(IHostNetworkInterfaceCollection **networkInterfaces);
72#endif
73 STDMETHOD(COMGETTER(ProcessorCount))(ULONG *count);
74 STDMETHOD(COMGETTER(ProcessorSpeed))(ULONG *speed);
75 STDMETHOD(COMGETTER(ProcessorDescription))(BSTR *description);
76 STDMETHOD(COMGETTER(MemorySize))(ULONG *size);
77 STDMETHOD(COMGETTER(MemoryAvailable))(ULONG *available);
78 STDMETHOD(COMGETTER(OperatingSystem))(BSTR *os);
79 STDMETHOD(COMGETTER(OSVersion))(BSTR *version);
80 STDMETHOD(COMGETTER(UTCTime))(LONG64 *aUTCTime);
81
82 // IHost methods
83#ifdef RT_OS_WINDOWS
84 STDMETHOD(CreateHostNetworkInterface) (INPTR BSTR aName,
85 IHostNetworkInterface **aHostNetworkInterface,
86 IProgress **aProgress);
87 STDMETHOD(RemoveHostNetworkInterface) (INPTR GUIDPARAM aId,
88 IHostNetworkInterface **aHostNetworkInterface,
89 IProgress **aProgress);
90#endif
91 STDMETHOD(CreateUSBDeviceFilter) (INPTR BSTR aName, IHostUSBDeviceFilter **aFilter);
92 STDMETHOD(InsertUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter *aFilter);
93 STDMETHOD(RemoveUSBDeviceFilter) (ULONG aPosition, IHostUSBDeviceFilter **aFilter);
94
95 // public methods only for internal purposes
96
97 HRESULT onUSBDeviceFilterChange (HostUSBDeviceFilter *aFilter,
98 BOOL aActiveChanged = FALSE);
99
100 HRESULT loadSettings (const settings::Key &aGlobal);
101 HRESULT saveSettings (settings::Key &aGlobal);
102
103 HRESULT captureUSBDevice (SessionMachine *aMachine, INPTR GUIDPARAM aId);
104 HRESULT detachUSBDevice (SessionMachine *aMachine, INPTR GUIDPARAM aId, BOOL aDone);
105 HRESULT autoCaptureUSBDevices (SessionMachine *aMachine);
106 HRESULT detachAllUSBDevices (SessionMachine *aMachine, BOOL aDone);
107
108 void onUSBDeviceAttached (HostUSBDevice *aDevice);
109 void onUSBDeviceDetached (HostUSBDevice *aDevice);
110 void onUSBDeviceStateChanged (HostUSBDevice *aDevice);
111
112 HRESULT checkUSBProxyService();
113
114 /* must be called from under this object's lock */
115 USBProxyService *usbProxyService() { return mUSBProxyService; }
116
117#ifdef RT_OS_WINDOWS
118 static int networkInterfaceHelperServer (SVCHlpClient *aClient,
119 SVCHlpMsg::Code aMsgCode);
120#endif
121
122 // for VirtualBoxSupportErrorInfoImpl
123 static const wchar_t *getComponentName() { return L"Host"; }
124
125private:
126
127#if defined(RT_OS_LINUX) || defined(RT_OS_SOLARIS)
128# ifdef VBOX_USE_LIBHAL
129 bool getDVDInfoFromHal(std::list <ComObjPtr <HostDVDDrive> > &list);
130 bool getFloppyInfoFromHal(std::list <ComObjPtr <HostFloppyDrive> > &list);
131# endif
132 void parseMountTable(char *mountTable, std::list <ComObjPtr <HostDVDDrive> > &list);
133 bool validateDevice(const char *deviceNode, bool isCDROM);
134#endif
135
136 /** specialization for IHostUSBDeviceFilter */
137 ComObjPtr <HostUSBDeviceFilter> getDependentChild (IHostUSBDeviceFilter *aFilter)
138 {
139 VirtualBoxBase *child = VirtualBoxBaseWithChildren::
140 getDependentChild (ComPtr <IUnknown> (aFilter));
141 return child ? dynamic_cast <HostUSBDeviceFilter *> (child)
142 : NULL;
143 }
144
145 HRESULT applyAllUSBFilters (ComObjPtr <HostUSBDevice> &aDevice,
146 SessionMachine *aMachine = NULL);
147
148 bool applyMachineUSBFilters (SessionMachine *aMachine,
149 ComObjPtr <HostUSBDevice> &aDevice);
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 ComObjPtr <VirtualBox, ComWeakRef> mParent;
164
165 typedef std::list <ComObjPtr <HostUSBDevice> > USBDeviceList;
166 USBDeviceList mUSBDevices;
167
168 typedef std::list <ComObjPtr <HostUSBDeviceFilter> > USBDeviceFilterList;
169 USBDeviceFilterList mUSBDeviceFilters;
170
171 /** Pointer to the USBProxyService object. */
172 USBProxyService *mUSBProxyService;
173};
174
175#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