VirtualBox

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

Last change on this file since 13538 was 8721, checked in by vboxsync, 16 years ago

File header.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/** @file
2 * Header file for the OUSBDevice (IUSBDevice) class, VBoxC.
3 */
4
5/*
6 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
17 * Clara, CA 95054 USA or visit http://www.sun.com if you need
18 * additional information or have any questions.
19 */
20
21#ifndef ____H_USBDEVICEIMPL
22#define ____H_USBDEVICEIMPL
23
24#include "VirtualBoxBase.h"
25#include "Collection.h"
26#include "Logging.h"
27
28
29/**
30 * Object class used for maintaining devices attached to a USB controller.
31 * Generally this contains much less information.
32 */
33class ATL_NO_VTABLE OUSBDevice :
34 public VirtualBoxSupportErrorInfoImpl<OUSBDevice, IUSBDevice>,
35 public VirtualBoxSupportTranslation<OUSBDevice>,
36 public VirtualBoxBase,
37 public IUSBDevice
38{
39public:
40
41 OUSBDevice();
42 virtual ~OUSBDevice();
43
44 DECLARE_NOT_AGGREGATABLE(OUSBDevice)
45
46 DECLARE_PROTECT_FINAL_CONSTRUCT()
47
48 BEGIN_COM_MAP(OUSBDevice)
49 COM_INTERFACE_ENTRY(ISupportErrorInfo)
50 COM_INTERFACE_ENTRY(IUSBDevice)
51 END_COM_MAP()
52
53 NS_DECL_ISUPPORTS
54
55 // public initializer/uninitializer for internal purposes only
56 HRESULT init(IUSBDevice *a_pUSBDevice);
57
58 // IUSBDevice properties
59 STDMETHOD(COMGETTER(Id))(GUIDPARAMOUT aId);
60 STDMETHOD(COMGETTER(VendorId))(USHORT *aVendorId);
61 STDMETHOD(COMGETTER(ProductId))(USHORT *aProductId);
62 STDMETHOD(COMGETTER(Revision))(USHORT *aRevision);
63 STDMETHOD(COMGETTER(Manufacturer))(BSTR *aManufacturer);
64 STDMETHOD(COMGETTER(Product))(BSTR *aProduct);
65 STDMETHOD(COMGETTER(SerialNumber))(BSTR *aSerialNumber);
66 STDMETHOD(COMGETTER(Address))(BSTR *aAddress);
67 STDMETHOD(COMGETTER(Port))(USHORT *aPort);
68 STDMETHOD(COMGETTER(Version))(USHORT *aVersion);
69 STDMETHOD(COMGETTER(PortVersion))(USHORT *aPortVersion);
70 STDMETHOD(COMGETTER(Remote))(BOOL *aRemote);
71
72 // public methods only for internal purposes
73 const Guid &id() { return mId; }
74
75 // for VirtualBoxSupportErrorInfoImpl
76 static const wchar_t *getComponentName() { return L"USBDevice"; }
77
78private:
79 /** The UUID of this device. */
80 Guid mId;
81
82 /** The vendor id of this USB device. */
83 USHORT mVendorId;
84 /** The product id of this USB device. */
85 USHORT mProductId;
86 /** The product revision number of this USB device.
87 * (high byte = integer; low byte = decimal) */
88 USHORT mRevision;
89 /** The Manufacturer string. (Quite possibly NULL.) */
90 Bstr mManufacturer;
91 /** The Product string. (Quite possibly NULL.) */
92 Bstr mProduct;
93 /** The SerialNumber string. (Quite possibly NULL.) */
94 Bstr mSerialNumber;
95 /** The host specific address of the device. */
96 Bstr mAddress;
97 /** The host port number. */
98 USHORT mPort;
99 /** The major USB version number of the device. */
100 USHORT mVersion;
101 /** The major USB version number of the port the device is attached to. */
102 USHORT mPortVersion;
103 /** Remote (VRDP) or local device. */
104 BOOL mRemote;
105};
106
107COM_DECL_READONLY_ENUM_AND_COLLECTION_EX_BEGIN (ComObjPtr <OUSBDevice>, IUSBDevice, OUSBDevice)
108
109 STDMETHOD(FindById) (INPTR GUIDPARAM aId, IUSBDevice **aDevice)
110 {
111 Guid idToFind = aId;
112 if (idToFind.isEmpty())
113 return E_INVALIDARG;
114 if (!aDevice)
115 return E_POINTER;
116
117 *aDevice = NULL;
118 Vector::value_type found;
119 Vector::iterator it = vec.begin();
120 while (!found && it != vec.end())
121 {
122 Guid id;
123 (*it)->COMGETTER(Id) (id.asOutParam());
124 if (id == idToFind)
125 found = *it;
126 ++ it;
127 }
128
129 if (!found)
130 {
131 return setErrorNoLog (E_INVALIDARG, OUSBDeviceCollection::tr (
132 "Could not find a USB device with UUID {%s}"),
133 idToFind.toString().raw());
134 }
135
136 return found.queryInterfaceTo (aDevice);
137 }
138
139 STDMETHOD(FindByAddress) (INPTR BSTR aAddress, IUSBDevice **aDevice)
140 {
141 if (!aAddress)
142 return E_INVALIDARG;
143 if (!aDevice)
144 return E_POINTER;
145
146 *aDevice = NULL;
147 Vector::value_type found;
148 Vector::iterator it = vec.begin();
149 while (!found && it != vec.end())
150 {
151 Bstr address;
152 (*it)->COMGETTER(Address) (address.asOutParam());
153 if (address == aAddress)
154 found = *it;
155 ++ it;
156 }
157
158 if (!found)
159 return setErrorNoLog (E_INVALIDARG, OUSBDeviceCollection::tr (
160 "Could not find a USB device with address '%ls'"),
161 aAddress);
162
163 return found.queryInterfaceTo (aDevice);
164 }
165
166COM_DECL_READONLY_ENUM_AND_COLLECTION_EX_END (ComObjPtr <OUSBDevice>, IUSBDevice, OUSBDevice)
167
168#endif // ____H_USBDEVICEIMPL
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use