VirtualBox

source: vbox/trunk/src/VBox/Main/USBDeviceImpl.cpp@ 13538

Last change on this file since 13538 was 8155, checked in by vboxsync, 16 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: 6.4 KB
Line 
1/** @file
2 *
3 * VirtualBox COM class implementation
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#include "USBDeviceImpl.h"
23
24
25// constructor / destructor
26/////////////////////////////////////////////////////////////////////////////
27
28OUSBDevice::OUSBDevice()
29{
30 mVendorId = 0;
31 mProductId = 0;
32 mRevision = 0;
33
34 mPort = 0;
35 mVersion = mPortVersion = 1;
36 mRemote = FALSE;
37}
38
39OUSBDevice::~OUSBDevice()
40{
41}
42
43
44// public initializer/uninitializer for internal purposes only
45/////////////////////////////////////////////////////////////////////////////
46
47/**
48 * Initializes the USB device object.
49 *
50 * @returns COM result indicator
51 * @param aUSBDevice The USB device (interface) to clone.
52 */
53HRESULT OUSBDevice::init(IUSBDevice *aUSBDevice)
54{
55 AutoWriteLock alock (this);
56 AssertReturn (!isReady(), E_UNEXPECTED);
57
58 HRESULT hrc = aUSBDevice->COMGETTER(VendorId)(&mVendorId);
59 ComAssertComRCRet (hrc, hrc);
60 ComAssertRet (mVendorId, E_INVALIDARG);
61
62 hrc = aUSBDevice->COMGETTER(ProductId)(&mProductId);
63 ComAssertComRCRet (hrc, hrc);
64 ComAssertRet (mProductId, E_INVALIDARG);
65
66 hrc = aUSBDevice->COMGETTER(Revision)(&mRevision);
67 ComAssertComRCRet (hrc, hrc);
68
69 hrc = aUSBDevice->COMGETTER(Manufacturer)(mManufacturer.asOutParam());
70 ComAssertComRCRet (hrc, hrc);
71
72 hrc = aUSBDevice->COMGETTER(Product)(mProduct.asOutParam());
73 ComAssertComRCRet (hrc, hrc);
74
75 hrc = aUSBDevice->COMGETTER(SerialNumber)(mSerialNumber.asOutParam());
76 ComAssertComRCRet (hrc, hrc);
77
78 hrc = aUSBDevice->COMGETTER(Address)(mAddress.asOutParam());
79 ComAssertComRCRet (hrc, hrc);
80
81 hrc = aUSBDevice->COMGETTER(Port)(&mPort);
82 ComAssertComRCRet (hrc, hrc);
83
84 hrc = aUSBDevice->COMGETTER(Port)(&mVersion);
85 ComAssertComRCRet (hrc, hrc);
86
87 hrc = aUSBDevice->COMGETTER(Port)(&mPortVersion);
88 ComAssertComRCRet (hrc, hrc);
89
90 hrc = aUSBDevice->COMGETTER(Remote)(&mRemote);
91 ComAssertComRCRet (hrc, hrc);
92
93 hrc = aUSBDevice->COMGETTER(Id)(mId.asOutParam());
94 ComAssertComRCRet (hrc, hrc);
95
96 setReady(true);
97 return S_OK;
98}
99
100
101// IUSBDevice properties
102/////////////////////////////////////////////////////////////////////////////
103
104/**
105 * Returns the GUID.
106 *
107 * @returns COM status code
108 * @param aId Address of result variable.
109 */
110STDMETHODIMP OUSBDevice::COMGETTER(Id)(GUIDPARAMOUT aId)
111{
112 if (!aId)
113 return E_POINTER;
114
115 AutoWriteLock alock (this);
116 CHECK_READY();
117
118 mId.cloneTo(aId);
119 return S_OK;
120}
121
122
123/**
124 * Returns the vendor Id.
125 *
126 * @returns COM status code
127 * @param aVendorId Where to store the vendor id.
128 */
129STDMETHODIMP OUSBDevice::COMGETTER(VendorId)(USHORT *aVendorId)
130{
131 if (!aVendorId)
132 return E_POINTER;
133
134 AutoWriteLock alock (this);
135 CHECK_READY();
136
137 *aVendorId = mVendorId;
138 return S_OK;
139}
140
141
142/**
143 * Returns the product Id.
144 *
145 * @returns COM status code
146 * @param aProductId Where to store the product id.
147 */
148STDMETHODIMP OUSBDevice::COMGETTER(ProductId)(USHORT *aProductId)
149{
150 if (!aProductId)
151 return E_POINTER;
152
153 AutoWriteLock alock (this);
154 CHECK_READY();
155
156 *aProductId = mProductId;
157 return S_OK;
158}
159
160
161/**
162 * Returns the revision BCD.
163 *
164 * @returns COM status code
165 * @param aRevision Where to store the revision BCD.
166 */
167STDMETHODIMP OUSBDevice::COMGETTER(Revision)(USHORT *aRevision)
168{
169 if (!aRevision)
170 return E_POINTER;
171
172 AutoWriteLock alock (this);
173 CHECK_READY();
174
175 *aRevision = mRevision;
176 return S_OK;
177}
178
179/**
180 * Returns the manufacturer string.
181 *
182 * @returns COM status code
183 * @param aManufacturer Where to put the return string.
184 */
185STDMETHODIMP OUSBDevice::COMGETTER(Manufacturer)(BSTR *aManufacturer)
186{
187 if (!aManufacturer)
188 return E_POINTER;
189
190 AutoWriteLock alock (this);
191 CHECK_READY();
192
193 mManufacturer.cloneTo(aManufacturer);
194 return S_OK;
195}
196
197
198/**
199 * Returns the product string.
200 *
201 * @returns COM status code
202 * @param aProduct Where to put the return string.
203 */
204STDMETHODIMP OUSBDevice::COMGETTER(Product)(BSTR *aProduct)
205{
206 if (!aProduct)
207 return E_POINTER;
208
209 AutoWriteLock alock (this);
210 CHECK_READY();
211
212 mProduct.cloneTo(aProduct);
213 return S_OK;
214}
215
216
217/**
218 * Returns the serial number string.
219 *
220 * @returns COM status code
221 * @param aSerialNumber Where to put the return string.
222 */
223STDMETHODIMP OUSBDevice::COMGETTER(SerialNumber)(BSTR *aSerialNumber)
224{
225 if (!aSerialNumber)
226 return E_POINTER;
227
228 AutoWriteLock alock (this);
229 CHECK_READY();
230
231 mSerialNumber.cloneTo(aSerialNumber);
232 return S_OK;
233}
234
235
236/**
237 * Returns the host specific device address.
238 *
239 * @returns COM status code
240 * @param aAddress Where to put the return string.
241 */
242STDMETHODIMP OUSBDevice::COMGETTER(Address)(BSTR *aAddress)
243{
244 if (!aAddress)
245 return E_POINTER;
246
247 AutoWriteLock alock (this);
248 CHECK_READY();
249
250 mAddress.cloneTo(aAddress);
251 return S_OK;
252}
253
254STDMETHODIMP OUSBDevice::COMGETTER(Port)(USHORT *aPort)
255{
256 if (!aPort)
257 return E_POINTER;
258
259 AutoWriteLock alock (this);
260 CHECK_READY();
261
262 *aPort = mPort;
263 return S_OK;
264}
265
266STDMETHODIMP OUSBDevice::COMGETTER(Version)(USHORT *aVersion)
267{
268 if (!aVersion)
269 return E_POINTER;
270
271 AutoWriteLock alock (this);
272 CHECK_READY();
273
274 *aVersion = mVersion;
275 return S_OK;
276}
277
278STDMETHODIMP OUSBDevice::COMGETTER(PortVersion)(USHORT *aPortVersion)
279{
280 if (!aPortVersion)
281 return E_POINTER;
282
283 AutoWriteLock alock (this);
284 CHECK_READY();
285
286 *aPortVersion = mPortVersion;
287 return S_OK;
288}
289
290STDMETHODIMP OUSBDevice::COMGETTER(Remote)(BOOL *aRemote)
291{
292 if (!aRemote)
293 return E_POINTER;
294
295 AutoWriteLock alock (this);
296 CHECK_READY();
297
298 *aRemote = mRemote;
299 return S_OK;
300}
301
302// private methods
303/////////////////////////////////////////////////////////////////////////////
304
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use