VirtualBox

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

Last change on this file since 8155 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.1 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#ifndef ____H_USBDEVICEIMPL
23#define ____H_USBDEVICEIMPL
24
25#include "VirtualBoxBase.h"
26#include "Collection.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 return setError (E_INVALIDARG, OUSBDeviceCollection::tr (
131 "Could not find a USB device with UUID {%s}"),
132 idToFind.toString().raw());
133
134 return found.queryInterfaceTo (aDevice);
135 }
136
137 STDMETHOD(FindByAddress) (INPTR BSTR aAddress, IUSBDevice **aDevice)
138 {
139 if (!aAddress)
140 return E_INVALIDARG;
141 if (!aDevice)
142 return E_POINTER;
143
144 *aDevice = NULL;
145 Vector::value_type found;
146 Vector::iterator it = vec.begin();
147 while (!found && it != vec.end())
148 {
149 Bstr address;
150 (*it)->COMGETTER(Address) (address.asOutParam());
151 if (address == aAddress)
152 found = *it;
153 ++ it;
154 }
155
156 if (!found)
157 return setError (E_INVALIDARG, OUSBDeviceCollection::tr (
158 "Could not find a USB device with address '%ls'"),
159 aAddress);
160
161 return found.queryInterfaceTo (aDevice);
162 }
163
164COM_DECL_READONLY_ENUM_AND_COLLECTION_EX_END (ComObjPtr <OUSBDevice>, IUSBDevice, OUSBDevice)
165
166#endif // ____H_USBDEVICEIMPL
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