1 | /* $Id: RemoteUSBDeviceImpl.h 44528 2013-02-04 14:27:54Z vboxsync $ */
|
---|
2 |
|
---|
3 | /** @file
|
---|
4 | *
|
---|
5 | * VirtualBox IHostUSBDevice COM interface implementation
|
---|
6 | * for remote (VRDP) USB devices
|
---|
7 | */
|
---|
8 |
|
---|
9 | /*
|
---|
10 | * Copyright (C) 2006-2011 Oracle Corporation
|
---|
11 | *
|
---|
12 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
13 | * available from http://www.virtualbox.org. This file is free software;
|
---|
14 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
15 | * General Public License (GPL) as published by the Free Software
|
---|
16 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
17 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
18 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #ifndef ____H_REMOTEUSBDEVICEIMPL
|
---|
22 | #define ____H_REMOTEUSBDEVICEIMPL
|
---|
23 |
|
---|
24 | #include "VirtualBoxBase.h"
|
---|
25 |
|
---|
26 | struct _VRDEUSBDEVICEDESC;
|
---|
27 | typedef _VRDEUSBDEVICEDESC VRDEUSBDEVICEDESC;
|
---|
28 |
|
---|
29 | class ATL_NO_VTABLE RemoteUSBDevice :
|
---|
30 | public VirtualBoxBase,
|
---|
31 | VBOX_SCRIPTABLE_IMPL(IHostUSBDevice)
|
---|
32 | {
|
---|
33 | public:
|
---|
34 |
|
---|
35 | VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(RemoteUSBDevice, IHostUSBDevice)
|
---|
36 |
|
---|
37 | DECLARE_NOT_AGGREGATABLE (RemoteUSBDevice)
|
---|
38 |
|
---|
39 | DECLARE_PROTECT_FINAL_CONSTRUCT()
|
---|
40 |
|
---|
41 | BEGIN_COM_MAP (RemoteUSBDevice)
|
---|
42 | COM_INTERFACE_ENTRY (IHostUSBDevice)
|
---|
43 | VBOX_DEFAULT_INTERFACE_ENTRIES (IUSBDevice)
|
---|
44 | END_COM_MAP()
|
---|
45 |
|
---|
46 | DECLARE_EMPTY_CTOR_DTOR (RemoteUSBDevice)
|
---|
47 |
|
---|
48 | HRESULT FinalConstruct();
|
---|
49 | void FinalRelease();
|
---|
50 |
|
---|
51 | // public initializer/uninitializer for internal purposes only
|
---|
52 | HRESULT init(uint32_t u32ClientId, VRDEUSBDEVICEDESC *pDevDesc, bool fDescExt);
|
---|
53 | void uninit();
|
---|
54 |
|
---|
55 | // IUSBDevice properties
|
---|
56 | STDMETHOD(COMGETTER(Id)) (BSTR *aId);
|
---|
57 | STDMETHOD(COMGETTER(VendorId)) (USHORT *aVendorId);
|
---|
58 | STDMETHOD(COMGETTER(ProductId)) (USHORT *aProductId);
|
---|
59 | STDMETHOD(COMGETTER(Revision)) (USHORT *aRevision);
|
---|
60 | STDMETHOD(COMGETTER(Manufacturer)) (BSTR *aManufacturer);
|
---|
61 | STDMETHOD(COMGETTER(Product)) (BSTR *aProduct);
|
---|
62 | STDMETHOD(COMGETTER(SerialNumber)) (BSTR *aSerialNumber);
|
---|
63 | STDMETHOD(COMGETTER(Address)) (BSTR *aAddress);
|
---|
64 | STDMETHOD(COMGETTER(Port)) (USHORT *aPort);
|
---|
65 | STDMETHOD(COMGETTER(Version)) (USHORT *aVersion);
|
---|
66 | STDMETHOD(COMGETTER(PortVersion)) (USHORT *aPortVersion);
|
---|
67 | STDMETHOD(COMGETTER(Remote)) (BOOL *aRemote);
|
---|
68 |
|
---|
69 | // IHostUSBDevice properties
|
---|
70 | STDMETHOD(COMGETTER(State)) (USBDeviceState_T *aState);
|
---|
71 |
|
---|
72 | // public methods only for internal purposes
|
---|
73 | bool dirty (void) const { return mData.dirty; }
|
---|
74 | void dirty (bool aDirty) { mData.dirty = aDirty; }
|
---|
75 |
|
---|
76 | uint16_t devId (void) const { return mData.devId; }
|
---|
77 | uint32_t clientId (void) { return mData.clientId; }
|
---|
78 |
|
---|
79 | bool captured (void) const { return mData.state == USBDeviceState_Captured; }
|
---|
80 | void captured (bool aCaptured)
|
---|
81 | {
|
---|
82 | if (aCaptured)
|
---|
83 | {
|
---|
84 | Assert(mData.state == USBDeviceState_Available);
|
---|
85 | mData.state = USBDeviceState_Captured;
|
---|
86 | }
|
---|
87 | else
|
---|
88 | {
|
---|
89 | Assert(mData.state == USBDeviceState_Captured);
|
---|
90 | mData.state = USBDeviceState_Available;
|
---|
91 | }
|
---|
92 | }
|
---|
93 |
|
---|
94 | private:
|
---|
95 |
|
---|
96 | struct Data
|
---|
97 | {
|
---|
98 | Data() : vendorId (0), productId (0), revision (0), port (0), version (1),
|
---|
99 | portVersion (1), dirty (FALSE), devId (0), clientId (0) {}
|
---|
100 |
|
---|
101 | const Guid id;
|
---|
102 |
|
---|
103 | const uint16_t vendorId;
|
---|
104 | const uint16_t productId;
|
---|
105 | const uint16_t revision;
|
---|
106 |
|
---|
107 | const Bstr manufacturer;
|
---|
108 | const Bstr product;
|
---|
109 | const Bstr serialNumber;
|
---|
110 |
|
---|
111 | const Bstr address;
|
---|
112 |
|
---|
113 | const uint16_t port;
|
---|
114 | const uint16_t version;
|
---|
115 | const uint16_t portVersion;
|
---|
116 |
|
---|
117 | USBDeviceState_T state;
|
---|
118 | bool dirty;
|
---|
119 |
|
---|
120 | const uint16_t devId;
|
---|
121 | const uint32_t clientId;
|
---|
122 | };
|
---|
123 |
|
---|
124 | Data mData;
|
---|
125 | };
|
---|
126 |
|
---|
127 | #endif // ____H_REMOTEUSBDEVICEIMPL
|
---|
128 | /* vi: set tabstop=4 shiftwidth=4 expandtab: */
|
---|