VirtualBox

source: vbox/trunk/src/VBox/Main/include/RemoteUSBDeviceImpl.h@ 8401

Last change on this file since 8401 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1/** @file
2 *
3 * VirtualBox IHostUSBDevice COM interface implementation
4 * for remote (VRDP) USB devices
5 */
6
7/*
8 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 *
18 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
19 * Clara, CA 95054 USA or visit http://www.sun.com if you need
20 * additional information or have any questions.
21 */
22
23#ifndef ____H_REMOTEUSBDEVICEIMPL
24#define ____H_REMOTEUSBDEVICEIMPL
25
26#include "VirtualBoxBase.h"
27#include "Collection.h"
28#include <VBox/vrdpapi.h>
29
30class ATL_NO_VTABLE RemoteUSBDevice :
31 public VirtualBoxSupportErrorInfoImpl <RemoteUSBDevice, IHostUSBDevice>,
32 public VirtualBoxSupportTranslation <RemoteUSBDevice>,
33 public VirtualBoxBase,
34 public IHostUSBDevice
35{
36public:
37
38 DECLARE_NOT_AGGREGATABLE(RemoteUSBDevice)
39
40 DECLARE_PROTECT_FINAL_CONSTRUCT()
41
42 BEGIN_COM_MAP(RemoteUSBDevice)
43 COM_INTERFACE_ENTRY(ISupportErrorInfo)
44 COM_INTERFACE_ENTRY(IHostUSBDevice)
45 COM_INTERFACE_ENTRY(IUSBDevice)
46 END_COM_MAP()
47
48 NS_DECL_ISUPPORTS
49
50 DECLARE_EMPTY_CTOR_DTOR (RemoteUSBDevice)
51
52 HRESULT FinalConstruct();
53 void FinalRelease();
54
55 // public initializer/uninitializer for internal purposes only
56 HRESULT init(uint32_t u32ClientId, VRDPUSBDEVICEDESC *pDevDesc);
57 void uninit();
58
59 // IUSBDevice properties
60 STDMETHOD(COMGETTER(Id)) (GUIDPARAMOUT aId);
61 STDMETHOD(COMGETTER(VendorId)) (USHORT *aVendorId);
62 STDMETHOD(COMGETTER(ProductId)) (USHORT *aProductId);
63 STDMETHOD(COMGETTER(Revision)) (USHORT *aRevision);
64 STDMETHOD(COMGETTER(Manufacturer)) (BSTR *aManufacturer);
65 STDMETHOD(COMGETTER(Product)) (BSTR *aProduct);
66 STDMETHOD(COMGETTER(SerialNumber)) (BSTR *aSerialNumber);
67 STDMETHOD(COMGETTER(Address)) (BSTR *aAddress);
68 STDMETHOD(COMGETTER(Port)) (USHORT *aPort);
69 STDMETHOD(COMGETTER(Version)) (USHORT *aVersion);
70 STDMETHOD(COMGETTER(PortVersion)) (USHORT *aPortVersion);
71 STDMETHOD(COMGETTER(Remote)) (BOOL *aRemote);
72
73 // IHostUSBDevice properties
74 STDMETHOD(COMGETTER(State)) (USBDeviceState_T *aState);
75
76 // public methods only for internal purposes
77 bool dirty (void) { return mDirty; }
78 void dirty (bool aDirty) { mDirty = aDirty; }
79
80 uint16_t devId (void) { return mDevId; }
81 uint32_t clientId (void) { return mClientId; }
82
83 bool captured (void) { return mState == USBDeviceState_Captured; }
84 void captured (bool aCaptured)
85 {
86 if (aCaptured)
87 {
88 Assert(mState == USBDeviceState_Available);
89 mState = USBDeviceState_Captured;
90 }
91 else
92 {
93 Assert(mState == USBDeviceState_Captured);
94 mState = USBDeviceState_Available;
95 }
96 }
97
98 // for VirtualBoxSupportErrorInfoImpl
99 static const wchar_t *getComponentName() { return L"RemoteUSBDevice"; }
100
101private:
102
103 Guid mId;
104
105 uint16_t mVendorId;
106 uint16_t mProductId;
107 uint16_t mRevision;
108
109 Bstr mManufacturer;
110 Bstr mProduct;
111 Bstr mSerialNumber;
112
113 Bstr mAddress;
114
115 uint16_t mPort;
116 uint16_t mVersion;
117 uint16_t mPortVersion;
118
119 USBDeviceState_T mState;
120
121 bool mDirty;
122 uint16_t mDevId;
123 uint32_t mClientId;
124};
125
126COM_DECL_READONLY_ENUM_AND_COLLECTION_EX_BEGIN (ComObjPtr <RemoteUSBDevice>, IHostUSBDevice, RemoteUSBDevice)
127
128 STDMETHOD(FindById) (INPTR GUIDPARAM aId, IHostUSBDevice **aDevice)
129 {
130 Guid idToFind = aId;
131 if (idToFind.isEmpty())
132 return E_INVALIDARG;
133 if (!aDevice)
134 return E_POINTER;
135
136 *aDevice = NULL;
137 Vector::value_type found;
138 Vector::iterator it = vec.begin();
139 while (!found && it != vec.end())
140 {
141 Guid id;
142 (*it)->COMGETTER(Id) (id.asOutParam());
143 if (id == idToFind)
144 found = *it;
145 ++ it;
146 }
147
148 if (!found)
149 return setError (E_INVALIDARG, RemoteUSBDeviceCollection::tr (
150 "Could not find a USB device with UUID {%s}"),
151 idToFind.toString().raw());
152
153 return found.queryInterfaceTo (aDevice);
154 }
155
156 STDMETHOD(FindByAddress) (INPTR BSTR aAddress, IHostUSBDevice **aDevice)
157 {
158 if (!aAddress)
159 return E_INVALIDARG;
160 if (!aDevice)
161 return E_POINTER;
162
163 *aDevice = NULL;
164 Vector::value_type found;
165 Vector::iterator it = vec.begin();
166 while (!found && it != vec.end())
167 {
168 Bstr address;
169 (*it)->COMGETTER(Address) (address.asOutParam());
170 if (address == aAddress)
171 found = *it;
172 ++ it;
173 }
174
175 if (!found)
176 return setError (E_INVALIDARG, RemoteUSBDeviceCollection::tr (
177 "Could not find a USB device with address '%ls'"),
178 aAddress);
179
180 return found.queryInterfaceTo (aDevice);
181 }
182
183COM_DECL_READONLY_ENUM_AND_COLLECTION_EX_END (ComObjPtr <RemoteUSBDevice>, IHostUSBDevice, RemoteUSBDevice)
184
185
186#endif // ____H_REMOTEUSBDEVICEIMPL
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