1 | /** @file
|
---|
2 | *
|
---|
3 | * VirtualBox COM class implementation
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | #include "USBDeviceImpl.h"
|
---|
19 |
|
---|
20 |
|
---|
21 | // constructor / destructor
|
---|
22 | /////////////////////////////////////////////////////////////////////////////
|
---|
23 |
|
---|
24 | OUSBDevice::OUSBDevice()
|
---|
25 | {
|
---|
26 | mVendorId = 0;
|
---|
27 | mProductId = 0;
|
---|
28 | mRevision = 0;
|
---|
29 |
|
---|
30 | mPort = 0;
|
---|
31 | mRemote = FALSE;
|
---|
32 | }
|
---|
33 |
|
---|
34 | OUSBDevice::~OUSBDevice()
|
---|
35 | {
|
---|
36 | }
|
---|
37 |
|
---|
38 |
|
---|
39 | // public initializer/uninitializer for internal purposes only
|
---|
40 | /////////////////////////////////////////////////////////////////////////////
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * Initializes the USB device object.
|
---|
44 | *
|
---|
45 | * @returns COM result indicator
|
---|
46 | * @param aUSBDevice The USB device (interface) to clone.
|
---|
47 | */
|
---|
48 | HRESULT OUSBDevice::init(IUSBDevice *aUSBDevice)
|
---|
49 | {
|
---|
50 | AutoLock lock(this);
|
---|
51 | AssertReturn (!isReady(), E_UNEXPECTED);
|
---|
52 |
|
---|
53 | HRESULT hrc = aUSBDevice->COMGETTER(VendorId)(&mVendorId);
|
---|
54 | ComAssertComRCRet (hrc, hrc);
|
---|
55 | ComAssertRet (mVendorId, E_INVALIDARG);
|
---|
56 |
|
---|
57 | hrc = aUSBDevice->COMGETTER(ProductId)(&mProductId);
|
---|
58 | ComAssertComRCRet (hrc, hrc);
|
---|
59 | ComAssertRet (mProductId, E_INVALIDARG);
|
---|
60 |
|
---|
61 | hrc = aUSBDevice->COMGETTER(Revision)(&mRevision);
|
---|
62 | ComAssertComRCRet (hrc, hrc);
|
---|
63 |
|
---|
64 | hrc = aUSBDevice->COMGETTER(Manufacturer)(mManufacturer.asOutParam());
|
---|
65 | ComAssertComRCRet (hrc, hrc);
|
---|
66 |
|
---|
67 | hrc = aUSBDevice->COMGETTER(Product)(mProduct.asOutParam());
|
---|
68 | ComAssertComRCRet (hrc, hrc);
|
---|
69 |
|
---|
70 | hrc = aUSBDevice->COMGETTER(SerialNumber)(mSerialNumber.asOutParam());
|
---|
71 | ComAssertComRCRet (hrc, hrc);
|
---|
72 |
|
---|
73 | hrc = aUSBDevice->COMGETTER(Address)(mAddress.asOutParam());
|
---|
74 | ComAssertComRCRet (hrc, hrc);
|
---|
75 |
|
---|
76 | hrc = aUSBDevice->COMGETTER(Port)(&mPort);
|
---|
77 | ComAssertComRCRet (hrc, hrc);
|
---|
78 |
|
---|
79 | hrc = aUSBDevice->COMGETTER(Remote)(&mRemote);
|
---|
80 | ComAssertComRCRet (hrc, hrc);
|
---|
81 |
|
---|
82 | hrc = aUSBDevice->COMGETTER(Id)(mId.asOutParam());
|
---|
83 | ComAssertComRCRet (hrc, hrc);
|
---|
84 |
|
---|
85 | setReady(true);
|
---|
86 | return S_OK;
|
---|
87 | }
|
---|
88 |
|
---|
89 |
|
---|
90 | // IUSBDevice properties
|
---|
91 | /////////////////////////////////////////////////////////////////////////////
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * Returns the GUID.
|
---|
95 | *
|
---|
96 | * @returns COM status code
|
---|
97 | * @param aId Address of result variable.
|
---|
98 | */
|
---|
99 | STDMETHODIMP OUSBDevice::COMGETTER(Id)(GUIDPARAMOUT aId)
|
---|
100 | {
|
---|
101 | if (!aId)
|
---|
102 | return E_POINTER;
|
---|
103 |
|
---|
104 | AutoLock lock(this);
|
---|
105 | CHECK_READY();
|
---|
106 |
|
---|
107 | mId.cloneTo(aId);
|
---|
108 | return S_OK;
|
---|
109 | }
|
---|
110 |
|
---|
111 |
|
---|
112 | /**
|
---|
113 | * Returns the vendor Id.
|
---|
114 | *
|
---|
115 | * @returns COM status code
|
---|
116 | * @param aVendorId Where to store the vendor id.
|
---|
117 | */
|
---|
118 | STDMETHODIMP OUSBDevice::COMGETTER(VendorId)(USHORT *aVendorId)
|
---|
119 | {
|
---|
120 | if (!aVendorId)
|
---|
121 | return E_POINTER;
|
---|
122 |
|
---|
123 | AutoLock lock(this);
|
---|
124 | CHECK_READY();
|
---|
125 |
|
---|
126 | *aVendorId = mVendorId;
|
---|
127 | return S_OK;
|
---|
128 | }
|
---|
129 |
|
---|
130 |
|
---|
131 | /**
|
---|
132 | * Returns the product Id.
|
---|
133 | *
|
---|
134 | * @returns COM status code
|
---|
135 | * @param aProductId Where to store the product id.
|
---|
136 | */
|
---|
137 | STDMETHODIMP OUSBDevice::COMGETTER(ProductId)(USHORT *aProductId)
|
---|
138 | {
|
---|
139 | if (!aProductId)
|
---|
140 | return E_POINTER;
|
---|
141 |
|
---|
142 | AutoLock lock(this);
|
---|
143 | CHECK_READY();
|
---|
144 |
|
---|
145 | *aProductId = mProductId;
|
---|
146 | return S_OK;
|
---|
147 | }
|
---|
148 |
|
---|
149 |
|
---|
150 | /**
|
---|
151 | * Returns the revision BCD.
|
---|
152 | *
|
---|
153 | * @returns COM status code
|
---|
154 | * @param aRevision Where to store the revision BCD.
|
---|
155 | */
|
---|
156 | STDMETHODIMP OUSBDevice::COMGETTER(Revision)(USHORT *aRevision)
|
---|
157 | {
|
---|
158 | if (!aRevision)
|
---|
159 | return E_POINTER;
|
---|
160 |
|
---|
161 | AutoLock lock(this);
|
---|
162 | CHECK_READY();
|
---|
163 |
|
---|
164 | *aRevision = mRevision;
|
---|
165 | return S_OK;
|
---|
166 | }
|
---|
167 |
|
---|
168 | /**
|
---|
169 | * Returns the manufacturer string.
|
---|
170 | *
|
---|
171 | * @returns COM status code
|
---|
172 | * @param aManufacturer Where to put the return string.
|
---|
173 | */
|
---|
174 | STDMETHODIMP OUSBDevice::COMGETTER(Manufacturer)(BSTR *aManufacturer)
|
---|
175 | {
|
---|
176 | if (!aManufacturer)
|
---|
177 | return E_POINTER;
|
---|
178 |
|
---|
179 | AutoLock lock(this);
|
---|
180 | CHECK_READY();
|
---|
181 |
|
---|
182 | mManufacturer.cloneTo(aManufacturer);
|
---|
183 | return S_OK;
|
---|
184 | }
|
---|
185 |
|
---|
186 |
|
---|
187 | /**
|
---|
188 | * Returns the product string.
|
---|
189 | *
|
---|
190 | * @returns COM status code
|
---|
191 | * @param aProduct Where to put the return string.
|
---|
192 | */
|
---|
193 | STDMETHODIMP OUSBDevice::COMGETTER(Product)(BSTR *aProduct)
|
---|
194 | {
|
---|
195 | if (!aProduct)
|
---|
196 | return E_POINTER;
|
---|
197 |
|
---|
198 | AutoLock lock(this);
|
---|
199 | CHECK_READY();
|
---|
200 |
|
---|
201 | mProduct.cloneTo(aProduct);
|
---|
202 | return S_OK;
|
---|
203 | }
|
---|
204 |
|
---|
205 |
|
---|
206 | /**
|
---|
207 | * Returns the serial number string.
|
---|
208 | *
|
---|
209 | * @returns COM status code
|
---|
210 | * @param aSerialNumber Where to put the return string.
|
---|
211 | */
|
---|
212 | STDMETHODIMP OUSBDevice::COMGETTER(SerialNumber)(BSTR *aSerialNumber)
|
---|
213 | {
|
---|
214 | if (!aSerialNumber)
|
---|
215 | return E_POINTER;
|
---|
216 |
|
---|
217 | AutoLock lock(this);
|
---|
218 | CHECK_READY();
|
---|
219 |
|
---|
220 | mSerialNumber.cloneTo(aSerialNumber);
|
---|
221 | return S_OK;
|
---|
222 | }
|
---|
223 |
|
---|
224 |
|
---|
225 | /**
|
---|
226 | * Returns the host specific device address.
|
---|
227 | *
|
---|
228 | * @returns COM status code
|
---|
229 | * @param aAddress Where to put the return string.
|
---|
230 | */
|
---|
231 | STDMETHODIMP OUSBDevice::COMGETTER(Address)(BSTR *aAddress)
|
---|
232 | {
|
---|
233 | if (!aAddress)
|
---|
234 | return E_POINTER;
|
---|
235 |
|
---|
236 | AutoLock lock(this);
|
---|
237 | CHECK_READY();
|
---|
238 |
|
---|
239 | mAddress.cloneTo(aAddress);
|
---|
240 | return S_OK;
|
---|
241 | }
|
---|
242 |
|
---|
243 | STDMETHODIMP OUSBDevice::COMGETTER(Port)(USHORT *aPort)
|
---|
244 | {
|
---|
245 | if (!aPort)
|
---|
246 | return E_POINTER;
|
---|
247 |
|
---|
248 | AutoLock lock(this);
|
---|
249 | CHECK_READY();
|
---|
250 |
|
---|
251 | *aPort = mPort;
|
---|
252 | return S_OK;
|
---|
253 | }
|
---|
254 |
|
---|
255 | STDMETHODIMP OUSBDevice::COMGETTER(Remote)(BOOL *aRemote)
|
---|
256 | {
|
---|
257 | if (!aRemote)
|
---|
258 | return E_POINTER;
|
---|
259 |
|
---|
260 | AutoLock lock(this);
|
---|
261 | CHECK_READY();
|
---|
262 |
|
---|
263 | *aRemote = mRemote;
|
---|
264 | return S_OK;
|
---|
265 | }
|
---|
266 |
|
---|
267 | // private methods
|
---|
268 | /////////////////////////////////////////////////////////////////////////////
|
---|
269 |
|
---|