VirtualBox

source: vbox/trunk/src/VBox/Main/include/USBControllerImpl.h@ 25149

Last change on this file since 25149 was 24989, checked in by vboxsync, 15 years ago

Main: enable -Wshadow gcc option to warn about shadowed variables and fix all resulting warnings; in particular, rename some stack and member variables and rename getter methods like id() to getId()

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/* $Id: USBControllerImpl.h 24989 2009-11-26 11:31:46Z vboxsync $ */
2
3/** @file
4 *
5 * VBox USBController COM Class declaration.
6 */
7
8/*
9 * Copyright (C) 2006-2007 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_USBCONTROLLERIMPL
25#define ____H_USBCONTROLLERIMPL
26
27#include "VirtualBoxBase.h"
28#ifdef VBOX_WITH_USB
29# include "USBDeviceFilterImpl.h"
30#endif
31
32#include <list>
33
34class Machine;
35class HostUSBDevice;
36
37namespace settings
38{
39 struct USBController;
40}
41
42/**
43 * @note we cannot use VirtualBoxBaseWithTypedChildren <USBDeviceFilter> as a
44 * base class, because we want a quick (map-based) way of validating
45 * IUSBDeviceFilter pointers passed from outside as method parameters that
46 * VirtualBoxBaseWithChildren::getDependentChild() gives us.
47 */
48
49class ATL_NO_VTABLE USBController :
50 public VirtualBoxBaseWithChildrenNEXT,
51 public VirtualBoxSupportErrorInfoImpl<USBController, IUSBController>,
52 public VirtualBoxSupportTranslation<USBController>,
53 VBOX_SCRIPTABLE_IMPL(IUSBController)
54{
55private:
56
57 struct Data
58 {
59 /* Constructor. */
60 Data() : mEnabled (FALSE), mEnabledEhci (FALSE) { }
61
62 bool operator== (const Data &that) const
63 {
64 return this == &that || (mEnabled == that.mEnabled && mEnabledEhci == that.mEnabledEhci);
65 }
66
67 /** Enabled indicator. */
68 BOOL mEnabled;
69
70 /** Enabled indicator for EHCI. */
71 BOOL mEnabledEhci;
72 };
73
74public:
75
76 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT (USBController)
77
78 DECLARE_NOT_AGGREGATABLE (USBController)
79
80 DECLARE_PROTECT_FINAL_CONSTRUCT()
81
82 BEGIN_COM_MAP(USBController)
83 COM_INTERFACE_ENTRY (ISupportErrorInfo)
84 COM_INTERFACE_ENTRY (IUSBController)
85 COM_INTERFACE_ENTRY2 (IDispatch, IUSBController)
86 END_COM_MAP()
87
88 DECLARE_EMPTY_CTOR_DTOR (USBController)
89
90 HRESULT FinalConstruct();
91 void FinalRelease();
92
93 // public initializer/uninitializer for internal purposes only
94 HRESULT init (Machine *aParent);
95 HRESULT init (Machine *aParent, USBController *aThat);
96 HRESULT initCopy (Machine *aParent, USBController *aThat);
97 void uninit();
98
99 // IUSBController properties
100 STDMETHOD(COMGETTER(Enabled)) (BOOL *aEnabled);
101 STDMETHOD(COMSETTER(Enabled)) (BOOL aEnabled);
102 STDMETHOD(COMGETTER(EnabledEhci)) (BOOL *aEnabled);
103 STDMETHOD(COMSETTER(EnabledEhci)) (BOOL aEnabled);
104 STDMETHOD(COMGETTER(USBStandard)) (USHORT *aUSBStandard);
105 STDMETHOD(COMGETTER(DeviceFilters)) (ComSafeArrayOut (IUSBDeviceFilter *, aDevicesFilters));
106
107 // IUSBController methods
108 STDMETHOD(CreateDeviceFilter) (IN_BSTR aName, IUSBDeviceFilter **aFilter);
109 STDMETHOD(InsertDeviceFilter) (ULONG aPosition, IUSBDeviceFilter *aFilter);
110 STDMETHOD(RemoveDeviceFilter) (ULONG aPosition, IUSBDeviceFilter **aFilter);
111
112 // public methods only for internal purposes
113
114 HRESULT loadSettings(const settings::USBController &data);
115 HRESULT saveSettings(settings::USBController &data);
116
117 bool isModified();
118 bool isReallyModified();
119 bool rollback();
120 void commit();
121 void copyFrom (USBController *aThat);
122
123#ifdef VBOX_WITH_USB
124 HRESULT onDeviceFilterChange (USBDeviceFilter *aFilter,
125 BOOL aActiveChanged = FALSE);
126
127 bool hasMatchingFilter (const ComObjPtr<HostUSBDevice> &aDevice, ULONG *aMaskedIfs);
128 bool hasMatchingFilter (IUSBDevice *aUSBDevice, ULONG *aMaskedIfs);
129
130 HRESULT notifyProxy (bool aInsertFilters);
131#endif /* VBOX_WITH_USB */
132
133 // public methods for internal purposes only
134 // (ensure there is a caller and a read lock before calling them!)
135
136 /** @note this doesn't require a read lock since mParent is constant. */
137 const ComObjPtr<Machine, ComWeakRef> &parent() { return mParent; };
138
139 const Backupable<Data>& getData() { return mData; }
140
141 // for VirtualBoxSupportErrorInfoImpl
142 static const wchar_t *getComponentName() { return L"USBController"; }
143
144private:
145
146#ifdef VBOX_WITH_USB
147 /** specialization for IUSBDeviceFilter */
148 ComObjPtr<USBDeviceFilter> getDependentChild (IUSBDeviceFilter *aFilter)
149 {
150 VirtualBoxBase *child = VirtualBoxBaseWithChildrenNEXT::
151 getDependentChild (ComPtr<IUnknown> (aFilter));
152 return child ? static_cast <USBDeviceFilter *> (child)
153 : NULL;
154 }
155#endif /* VBOX_WITH_USB */
156
157 void printList();
158
159 /** Parent object. */
160 const ComObjPtr<Machine, ComWeakRef> mParent;
161 /** Peer object. */
162 const ComObjPtr<USBController> mPeer;
163 /** Data. */
164 Backupable<Data> mData;
165
166#ifdef VBOX_WITH_USB
167 // the following fields need special backup/rollback/commit handling,
168 // so they cannot be a part of Data
169
170 typedef std::list <ComObjPtr<USBDeviceFilter> > DeviceFilterList;
171 Backupable <DeviceFilterList> mDeviceFilters;
172#endif /* VBOX_WITH_USB */
173};
174
175#endif //!____H_USBCONTROLLERIMPL
176/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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