forked from avin2/SensorKinect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXnDeviceSensorIO.cpp
473 lines (382 loc) · 15.9 KB
/
XnDeviceSensorIO.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
/*****************************************************************************
* *
* PrimeSense Sensor 5.0 Alpha *
* Copyright (C) 2010 PrimeSense Ltd. *
* *
* This file is part of PrimeSense Common. *
* *
* PrimeSense Sensor is free software: you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published *
* by the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* PrimeSense Sensor is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with PrimeSense Sensor. If not, see <http://www.gnu.org/licenses/>. *
* *
*****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "XnDeviceSensorIO.h"
#include "XnDeviceSensor.h"
#include <XnStringsHash.h>
//---------------------------------------------------------------------------
// Defines
//---------------------------------------------------------------------------
// --avin mod--
#define XN_SENSOR_VENDOR_ID_KINECT 0x045E
#define XN_SENSOR_PRODUCT_ID_KINECT 0x02AE
//---------------------------------------------------------------------------
// Enums
//---------------------------------------------------------------------------
typedef enum
{
XN_FW_USB_INTERFACE_ISO = 0,
XN_FW_USB_INTERFACE_BULK = 1,
} XnFWUsbInterface;
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnSensorIO::XnSensorIO(XN_SENSOR_HANDLE* pSensorHandle) :
m_pSensorHandle(pSensorHandle),
m_bMiscSupported(FALSE),
m_bIsLowBandwidth(FALSE)
{
}
XnSensorIO::~XnSensorIO()
{
}
XnStatus XnSensorIO::OpenDevice(const XnChar* strPath)
{
XnStatus nRetVal;
XnUSBDeviceSpeed DevSpeed;
nRetVal = xnUSBInit();
if (nRetVal != XN_STATUS_OK && nRetVal != XN_STATUS_USB_ALREADY_INIT)
return nRetVal;
xnLogVerbose(XN_MASK_DEVICE_IO, "Connecting to USB device...");
XnConnectionString aConnections[1];
if (strPath == NULL || strcmp(strPath, "*:0") == 0)
{
// support old style API
XnConnectionString aConnections[1];
XnUInt32 nCount = 1;
nRetVal = EnumerateSensors(aConnections, &nCount);
if (nRetVal != XN_STATUS_OK && nRetVal != XN_STATUS_OUTPUT_BUFFER_OVERFLOW)
{
return nRetVal;
}
strPath = aConnections[0];
}
// try to open a 6.0 device
xnLogVerbose(XN_MASK_DEVICE_IO, "Trying to open sensor '%s'...", strPath);
nRetVal = xnUSBOpenDeviceByPath(strPath, &m_pSensorHandle->USBDevice);
XN_IS_STATUS_OK(nRetVal);
nRetVal = xnUSBGetDeviceSpeed(m_pSensorHandle->USBDevice, &DevSpeed);
XN_IS_STATUS_OK(nRetVal);
if (DevSpeed != XN_USB_DEVICE_HIGH_SPEED)
{
XN_LOG_WARNING_RETURN(XN_STATUS_USB_UNKNOWN_DEVICE_SPEED, XN_MASK_DEVICE_IO, "Device is not high speed!");
}
// on older firmwares, control was sent over BULK endpoints. Check if this is the case
xnLogVerbose(XN_MASK_DEVICE_IO, "Trying to open endpoint 0x4 for control out (for old firmwares)...");
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, 0x4, XN_USB_EP_BULK, XN_USB_DIRECTION_OUT, &m_pSensorHandle->ControlConnection.ControlOutConnectionEp);
if (nRetVal == XN_STATUS_USB_ENDPOINT_NOT_FOUND || nRetVal == XN_STATUS_USB_WRONG_ENDPOINT_TYPE || nRetVal == XN_STATUS_USB_WRONG_ENDPOINT_DIRECTION)
{
// this is not the case. use regular control endpoint (0)
m_pSensorHandle->ControlConnection.bIsBulk = FALSE;
}
else
{
XN_IS_STATUS_OK(nRetVal);
xnLogVerbose(XN_MASK_DEVICE_IO, "Opening endpoint 0x85 for control in...");
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, 0x85, XN_USB_EP_BULK, XN_USB_DIRECTION_IN, &m_pSensorHandle->ControlConnection.ControlInConnectionEp);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->ControlConnection.bIsBulk = TRUE;
}
nRetVal = IsSensorLowBandwidth(strPath, &m_bIsLowBandwidth);
XN_IS_STATUS_OK(nRetVal);
xnLogInfo(XN_MASK_DEVICE_IO, "Connected to USB device%s", m_bIsLowBandwidth ? " (LowBand)" : "");
strcpy(m_strDeviceName, strPath);
return XN_STATUS_OK;
}
XnStatus XnSensorIO::OpenDataEndPoints(XnSensorUsbInterface nInterface)
{
XnStatus nRetVal = XN_STATUS_OK;
// try to set requested interface
if (nInterface != XN_SENSOR_USB_INTERFACE_DEFAULT)
{
XnFWUsbInterface nFWInterface;
switch (nInterface)
{
case XN_SENSOR_USB_INTERFACE_ISO_ENDPOINTS:
nFWInterface = XN_FW_USB_INTERFACE_ISO;
break;
case XN_SENSOR_USB_INTERFACE_BULK_ENDPOINTS:
nFWInterface = XN_FW_USB_INTERFACE_BULK;
break;
default:
XN_LOG_WARNING_RETURN(XN_STATUS_USB_INTERFACE_NOT_SUPPORTED, XN_MASK_DEVICE_IO, "Unknown interface type: %d", nInterface);
}
xnLogVerbose(XN_MASK_DEVICE_IO, "Setting USB interface to %d...", nFWInterface);
nRetVal = xnUSBSetInterface(m_pSensorHandle->USBDevice, 0, nFWInterface);
XN_IS_STATUS_OK(nRetVal);
}
xnLogVerbose(XN_MASK_DEVICE_IO, "Opening endpoints...");
// up until v3.0/4.0, Image went over 0x82, depth on 0x83, audio on 0x86, and control was using bulk EPs, at 0x4 and 0x85.
// starting v3.0/4.0, Image is at 0x81, depth at 0x82, audio/misc at 0x83, and control is using actual control EPs.
// This means we are using the new Jungo USB Code
XnBool bNewUSB = TRUE;
// Depth
m_pSensorHandle->DepthConnection.bIsISO = FALSE;
xnLogVerbose(XN_MASK_DEVICE_IO, "Opening endpoint 0x81 for depth...");
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, 0x81, XN_USB_EP_BULK, XN_USB_DIRECTION_IN, &m_pSensorHandle->DepthConnection.UsbEp);
if (nRetVal == XN_STATUS_USB_ENDPOINT_NOT_FOUND)
{
bNewUSB = FALSE;
xnLogVerbose(XN_MASK_DEVICE_IO, "Endpoint 0x81 does not exist. Trying old USB: Opening 0x82 for depth...");
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, 0x82, XN_USB_EP_BULK, XN_USB_DIRECTION_IN, &m_pSensorHandle->DepthConnection.UsbEp);
XN_IS_STATUS_OK(nRetVal);
}
else
{
if (nRetVal == XN_STATUS_USB_WRONG_ENDPOINT_TYPE)
{
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, 0x81, XN_USB_EP_ISOCHRONOUS, XN_USB_DIRECTION_IN, &m_pSensorHandle->DepthConnection.UsbEp);
m_pSensorHandle->DepthConnection.bIsISO = TRUE;
}
bNewUSB = TRUE;
XN_IS_STATUS_OK(nRetVal);
if (m_pSensorHandle->DepthConnection.bIsISO == TRUE)
{
xnLogVerbose(XN_MASK_DEVICE_IO, "Depth endpoint is isochronous.");
}
else
{
xnLogVerbose(XN_MASK_DEVICE_IO, "Depth endpoint is bulk.");
}
}
m_pSensorHandle->DepthConnection.bIsOpen = TRUE;
nRetVal = xnUSBGetEndPointMaxPacketSize(m_pSensorHandle->DepthConnection.UsbEp, &m_pSensorHandle->DepthConnection.nMaxPacketSize);
XN_IS_STATUS_OK(nRetVal);
// check this matches requested interface (unless DEFAULT was requested)
if (nInterface == XN_SENSOR_USB_INTERFACE_BULK_ENDPOINTS && m_pSensorHandle->DepthConnection.bIsISO ||
nInterface == XN_SENSOR_USB_INTERFACE_ISO_ENDPOINTS && !m_pSensorHandle->DepthConnection.bIsISO)
{
return (XN_STATUS_USB_INTERFACE_NOT_SUPPORTED);
}
m_interface = m_pSensorHandle->DepthConnection.bIsISO ? XN_SENSOR_USB_INTERFACE_ISO_ENDPOINTS : XN_SENSOR_USB_INTERFACE_BULK_ENDPOINTS;
// Image
XnUInt16 nImageEP = bNewUSB ? 0x82 : 0x83;
m_pSensorHandle->ImageConnection.bIsISO = FALSE;
xnLogVerbose(XN_MASK_DEVICE_IO, "Opening endpoint 0x%hx for image...", nImageEP);
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, nImageEP, XN_USB_EP_BULK, XN_USB_DIRECTION_IN, &m_pSensorHandle->ImageConnection.UsbEp);
if (nRetVal == XN_STATUS_USB_WRONG_ENDPOINT_TYPE)
{
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, nImageEP, XN_USB_EP_ISOCHRONOUS, XN_USB_DIRECTION_IN, &m_pSensorHandle->ImageConnection.UsbEp);
m_pSensorHandle->ImageConnection.bIsISO = TRUE;
}
XN_IS_STATUS_OK(nRetVal);
if (m_pSensorHandle->ImageConnection.bIsISO == TRUE)
{
xnLogVerbose(XN_MASK_DEVICE_IO, "Image endpoint is isochronous.");
}
else
{
xnLogVerbose(XN_MASK_DEVICE_IO, "Image endpoint is bulk.");
}
m_pSensorHandle->ImageConnection.bIsOpen = TRUE;
nRetVal = xnUSBGetEndPointMaxPacketSize(m_pSensorHandle->ImageConnection.UsbEp, &m_pSensorHandle->ImageConnection.nMaxPacketSize);
XN_IS_STATUS_OK(nRetVal);
// Misc
XnUInt16 nMiscEP = bNewUSB ? 0x83 : 0x86;
m_pSensorHandle->MiscConnection.bIsISO = FALSE;
xnLogVerbose(XN_MASK_DEVICE_IO, "Opening endpoint 0x%hx for misc...", nMiscEP);
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, nMiscEP, XN_USB_EP_BULK, XN_USB_DIRECTION_IN, &m_pSensorHandle->MiscConnection.UsbEp);
if (nRetVal == XN_STATUS_USB_WRONG_ENDPOINT_TYPE)
{
nRetVal = xnUSBOpenEndPoint(m_pSensorHandle->USBDevice, nMiscEP, XN_USB_EP_ISOCHRONOUS, XN_USB_DIRECTION_IN, &m_pSensorHandle->MiscConnection.UsbEp);
m_pSensorHandle->MiscConnection.bIsISO = TRUE;
}
if (nRetVal == XN_STATUS_USB_ENDPOINT_NOT_FOUND)
{
// Firmware does not support misc...
m_pSensorHandle->MiscConnection.bIsOpen = FALSE;
m_bMiscSupported = FALSE;
xnLogVerbose(XN_MASK_DEVICE_IO, "Misc endpoint is not supported...");
}
else if (nRetVal == XN_STATUS_OK)
{
m_pSensorHandle->MiscConnection.bIsOpen = TRUE;
m_bMiscSupported = TRUE;
if (m_pSensorHandle->MiscConnection.bIsISO == TRUE)
{
xnLogVerbose(XN_MASK_DEVICE_IO, "Misc endpoint is isochronous.");
}
else
{
xnLogVerbose(XN_MASK_DEVICE_IO, "Misc endpoint is bulk.");
}
}
else
{
return nRetVal;
}
if (m_pSensorHandle->MiscConnection.bIsOpen)
{
nRetVal = xnUSBGetEndPointMaxPacketSize(m_pSensorHandle->MiscConnection.UsbEp, &m_pSensorHandle->MiscConnection.nMaxPacketSize);
XN_IS_STATUS_OK(nRetVal);
}
xnLogInfo(XN_MASK_DEVICE_IO, "Endpoints open");
// All is good...
return (XN_STATUS_OK);
}
XnStatus XnSensorIO::CloseDevice()
{
XnStatus nRetVal;
xnLogVerbose(XN_MASK_DEVICE_SENSOR, "Shutting down USB depth read thread...");
xnUSBShutdownReadThread(m_pSensorHandle->DepthConnection.UsbEp);
if (m_pSensorHandle->DepthConnection.UsbEp != NULL)
{
nRetVal = xnUSBCloseEndPoint(m_pSensorHandle->DepthConnection.UsbEp);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->DepthConnection.UsbEp = NULL;
}
xnLogVerbose(XN_MASK_DEVICE_SENSOR, "Shutting down USB image read thread...");
xnUSBShutdownReadThread(m_pSensorHandle->ImageConnection.UsbEp);
if (m_pSensorHandle->ImageConnection.UsbEp != NULL)
{
nRetVal = xnUSBCloseEndPoint(m_pSensorHandle->ImageConnection.UsbEp);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->ImageConnection.UsbEp = NULL;
}
if (m_pSensorHandle->MiscConnection.bIsOpen)
{
xnLogVerbose(XN_MASK_DEVICE_SENSOR, "Shutting down USB misc read thread...");
xnUSBShutdownReadThread(m_pSensorHandle->MiscConnection.UsbEp);
if (m_pSensorHandle->MiscConnection.UsbEp != NULL)
{
nRetVal = xnUSBCloseEndPoint(m_pSensorHandle->MiscConnection.UsbEp);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->MiscConnection.UsbEp = NULL;
}
}
if (m_pSensorHandle->ControlConnection.bIsBulk)
{
if (m_pSensorHandle->ControlConnection.ControlInConnectionEp != NULL)
{
nRetVal = xnUSBCloseEndPoint(m_pSensorHandle->ControlConnection.ControlInConnectionEp);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->ControlConnection.ControlInConnectionEp = NULL;
}
if (m_pSensorHandle->ControlConnection.ControlOutConnectionEp != NULL)
{
nRetVal = xnUSBCloseEndPoint(m_pSensorHandle->ControlConnection.ControlOutConnectionEp);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->ControlConnection.ControlOutConnectionEp = NULL;
}
}
if (m_pSensorHandle->USBDevice != NULL)
{
nRetVal = xnUSBCloseDevice(m_pSensorHandle->USBDevice);
XN_IS_STATUS_OK(nRetVal);
m_pSensorHandle->USBDevice = NULL;
}
xnLogVerbose(XN_MASK_DEVICE_SENSOR, "Device closed successfully");
// All is good...
return (XN_STATUS_OK);
}
XnStatus Enumerate(XnUInt16 nProduct, XnStringsHash& devicesSet)
{
XnStatus nRetVal = XN_STATUS_OK;
const XnUSBConnectionString* astrDevicePaths;
XnUInt32 nCount;
// --avin mod--
nRetVal = xnUSBEnumerateDevices(XN_SENSOR_VENDOR_ID_KINECT, nProduct, &astrDevicePaths, &nCount);
XN_IS_STATUS_OK(nRetVal);
for (XnUInt32 i = 0; i < nCount; ++i)
{
nRetVal = devicesSet.Set(astrDevicePaths[i], NULL);
XN_IS_STATUS_OK(nRetVal);
}
xnUSBFreeDevicesList(astrDevicePaths);
return (XN_STATUS_OK);
}
XnStatus XnSensorIO::EnumerateSensors(XnConnectionString* aConnectionStrings, XnUInt32* pnCount)
{
XnStatus nRetVal = XN_STATUS_OK;
XnBool bIsPresent = FALSE;
nRetVal = xnUSBInit();
if (nRetVal != XN_STATUS_OK && nRetVal != XN_STATUS_USB_ALREADY_INIT)
return nRetVal;
XnStringsHash devicesSet;
// --avin mod--
// search for a kinect device
nRetVal = Enumerate(XN_SENSOR_PRODUCT_ID_KINECT, devicesSet);
XN_IS_STATUS_OK(nRetVal);
// now copy back
XnUInt32 nCount = 0;
for (XnStringsHash::ConstIterator it = devicesSet.begin(); it != devicesSet.end(); ++it, ++nCount)
{
if (nCount < *pnCount)
{
strcpy(aConnectionStrings[nCount], it.Key());
}
}
if (nCount > *pnCount)
{
*pnCount = nCount;
return XN_STATUS_OUTPUT_BUFFER_OVERFLOW;
}
// All is good...
*pnCount = nCount;
return (XN_STATUS_OK);
}
XnStatus XnSensorIO::IsSensorLowBandwidth(const XnConnectionString connectionString, XnBool* pbIsLowBandwidth)
{
XnStatus nRetVal = XN_STATUS_OK;
XnConnectionString cpMatchString;
*pbIsLowBandwidth = FALSE;
#if (XN_PLATFORM == XN_PLATFORM_WIN32)
// WAVI Detection:
// Normal USB string: \\?\usb#vid_1d27&pid_0600#6&XXXXXXXX&0&2
// WAVI USB String: \\?\usb#vid_1d27&pid_0600#1&1d270600&2&3
// ^^^^^^^^ - VID/PID is always repeated here with the WAVI.
// Regular USB devices will have the port/hub chain instead.
if ((xnOSStrCaseCmp(connectionString, "\\\\?\\usb#vid_") >= 0) && (xnOSStrLen(connectionString) > 25))
{
strncpy(&cpMatchString[0], &connectionString[12], 4); //VID
strncpy(&cpMatchString[4], &connectionString[21], 4); //PID
cpMatchString[8] = 0;
if (strstr ((char*)connectionString,cpMatchString) != 0)
{
*pbIsLowBandwidth = TRUE;
}
}
#endif
return (XN_STATUS_OK);
}
XnStatus XnSensorIO::SetCallback(XnUSBEventCallbackFunctionPtr pCallbackPtr, void* pCallbackData)
{
//TODO: Support multiple sensors - this won't work for more than one.
XnStatus nRetVal = XN_STATUS_OK;
// --avin mod--
/*
// try to register callback to a 5.0 device
nRetVal = xnUSBSetCallbackHandler(XN_SENSOR_VENDOR_ID, XN_SENSOR_5_0_PRODUCT_ID, NULL, pCallbackPtr, pCallbackData);
if (nRetVal == XN_STATUS_USB_DEVICE_NOT_FOUND)
{
// if not found, see if we have a 2.0 - 4.0 devices
nRetVal = xnUSBSetCallbackHandler(XN_SENSOR_VENDOR_ID, XN_SENSOR_2_0_PRODUCT_ID, NULL, pCallbackPtr, pCallbackData);
}
*/
return nRetVal;
}
const XnChar* XnSensorIO::GetDevicePath()
{
return m_strDeviceName;
}