VirtualBox

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

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

Version 2 of remote USB protocol.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.8 KB
Line 
1/** @file
2 *
3 * VirtualBox Remote USB backend
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_REMOTEUSBBACKEND
23#define ____H_REMOTEUSBBACKEND
24
25#include "RemoteUSBDeviceImpl.h"
26
27#include <VBox/vrdpapi.h>
28#include <VBox/vrdpusb.h>
29
30//typedef enum
31//{
32// RDLIdle = 0,
33// RDLReqSent,
34// RDLObtained
35//} RDLState;
36
37class Console;
38class ConsoleVRDPServer;
39
40DECLCALLBACK(int) USBClientResponseCallback (void *pv, uint32_t u32ClientId, uint8_t code, const void *pvRet, uint32_t cbRet);
41
42
43/* How many remote devices can be attached to a remote client.
44 * Normally a client computer has 2-8 physical USB ports, so 16 devices
45 * should be usually enough.
46 */
47#define VRDP_MAX_USB_DEVICES_PER_CLIENT (16)
48
49class RemoteUSBBackendListable
50{
51 public:
52 RemoteUSBBackendListable *pNext;
53 RemoteUSBBackendListable *pPrev;
54
55 RemoteUSBBackendListable() : pNext (NULL), pPrev (NULL) {};
56};
57
58class RemoteUSBBackend: public RemoteUSBBackendListable
59{
60 public:
61 RemoteUSBBackend(Console *console, ConsoleVRDPServer *server, uint32_t u32ClientId);
62 ~RemoteUSBBackend();
63
64 uint32_t ClientId (void) { return mu32ClientId; }
65
66 void AddRef (void);
67 void Release (void);
68
69 REMOTEUSBCALLBACK *GetBackendCallbackPointer (void) { return &mCallback; }
70
71 void NotifyDelete (void);
72
73 void PollRemoteDevices (void);
74
75 public: /* Functions for internal use. */
76 ConsoleVRDPServer *VRDPServer (void) { return mServer; };
77
78 bool pollingEnabledURB (void) { return mfPollURB; }
79
80 int saveDeviceList (const void *pvList, uint32_t cbList);
81
82 int negotiateResponse (const VRDPUSBREQNEGOTIATERET *pret, uint32_t cbRet);
83
84 int reapURB (const void *pvBody, uint32_t cbBody);
85
86 void request (void);
87 void release (void);
88
89 PREMOTEUSBDEVICE deviceFromId (VRDPUSBDEVID id);
90
91 void addDevice (PREMOTEUSBDEVICE pDevice);
92 void removeDevice (PREMOTEUSBDEVICE pDevice);
93
94 bool addUUID (const Guid *pUuid);
95 bool findUUID (const Guid *pUuid);
96 void removeUUID (const Guid *pUuid);
97
98 private:
99 Console *mConsole;
100 ConsoleVRDPServer *mServer;
101
102 int cRefs;
103
104 uint32_t mu32ClientId;
105
106 RTCRITSECT mCritsect;
107
108 REMOTEUSBCALLBACK mCallback;
109
110 bool mfHasDeviceList;
111
112 void *mpvDeviceList;
113 uint32_t mcbDeviceList;
114
115 typedef enum {
116 PollRemoteDevicesStatus_Negotiate,
117 PollRemoteDevicesStatus_WaitNegotiateResponse,
118 PollRemoteDevicesStatus_SendRequest,
119 PollRemoteDevicesStatus_WaitResponse,
120 PollRemoteDevicesStatus_Dereferenced
121 } PollRemoteDevicesStatus;
122
123 PollRemoteDevicesStatus menmPollRemoteDevicesStatus;
124
125 bool mfPollURB;
126
127 PREMOTEUSBDEVICE mpDevices;
128
129 bool mfWillBeDeleted;
130
131 Guid aGuids[VRDP_MAX_USB_DEVICES_PER_CLIENT];
132
133 /* VRDP_USB_VERSION_2: the client version. */
134 uint32_t mClientVersion;
135};
136
137#endif /* ____H_REMOTEUSBBACKEND */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use