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
|
/*****************************************************************************
* *
* OpenNI 2.x Alpha *
* Copyright (C) 2012 PrimeSense Ltd. *
* *
* This file is part of OpenNI. *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*****************************************************************************/
#include "XnDeviceEnumeration.h"
#include <XnUSB.h>
//---------------------------------------------------------------------------
// Globals
//---------------------------------------------------------------------------
XnBool XnDeviceEnumeration::ms_initialized = FALSE;
XnDeviceEnumeration::DeviceConnectivityEvent XnDeviceEnumeration::ms_connectedEvent;
XnDeviceEnumeration::DeviceConnectivityEvent XnDeviceEnumeration::ms_disconnectedEvent;
XnDeviceEnumeration::DevicesHash XnDeviceEnumeration::ms_devices;
xnl::Array<XnRegistrationHandle> XnDeviceEnumeration::ms_aRegistrationHandles;
XN_CRITICAL_SECTION_HANDLE XnDeviceEnumeration::ms_lock;
XnDeviceEnumeration::XnUsbId XnDeviceEnumeration::ms_supportedProducts[] =
{
{ 0x1D27, 0x0500 },
{ 0x1D27, 0x0600 },
{ 0x1D27, 0x0601 },
{ 0x1D27, 0x0609 },
};
XnUInt32 XnDeviceEnumeration::ms_supportedProductsCount = sizeof(XnDeviceEnumeration::ms_supportedProducts) / sizeof(XnDeviceEnumeration::ms_supportedProducts[0]);
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnStatus XnDeviceEnumeration::Initialize()
{
XnStatus nRetVal = XN_STATUS_OK;
if (ms_initialized)
{
return XN_STATUS_OK;
}
nRetVal = xnUSBInit();
XN_IS_STATUS_OK(nRetVal);
nRetVal = xnOSCreateCriticalSection(&ms_lock);
XN_IS_STATUS_OK(nRetVal);
const XnUSBConnectionString* astrDevicePaths;
XnUInt32 nCount;
// check all products
for (XnUInt32 i = 0; i < ms_supportedProductsCount; ++i)
{
// register for USB events
XnRegistrationHandle hRegistration = NULL;
nRetVal = xnUSBRegisterToConnectivityEvents(ms_supportedProducts[i].vendorID, ms_supportedProducts[i].productID, OnConnectivityEventCallback, &ms_supportedProducts[i], &hRegistration);
XN_IS_STATUS_OK(nRetVal);
nRetVal = ms_aRegistrationHandles.AddLast(hRegistration);
XN_IS_STATUS_OK(nRetVal);
// and enumerate for existing ones
nRetVal = xnUSBEnumerateDevices(ms_supportedProducts[i].vendorID, ms_supportedProducts[i].productID, &astrDevicePaths, &nCount);
XN_IS_STATUS_OK(nRetVal);
for (XnUInt32 j = 0; j < nCount; ++j)
{
OnConnectivityEvent(astrDevicePaths[j], XN_USB_EVENT_DEVICE_CONNECT, ms_supportedProducts[i]);
}
xnUSBFreeDevicesList(astrDevicePaths);
}
ms_initialized = TRUE;
return XN_STATUS_OK;
}
void XnDeviceEnumeration::Shutdown()
{
if (ms_initialized)
{
for (XnUInt32 i = 0; i < ms_aRegistrationHandles.GetSize(); ++i)
{
xnUSBUnregisterFromConnectivityEvents(ms_aRegistrationHandles[i]);
}
ms_aRegistrationHandles.Clear();
ms_connectedEvent.Clear();
ms_disconnectedEvent.Clear();
xnOSCloseCriticalSection(&ms_lock);
xnUSBShutdown();
ms_devices.Clear();
ms_initialized = FALSE;
}
}
void XnDeviceEnumeration::OnConnectivityEvent(const XnChar* uri, XnUSBEventType eventType, XnUsbId usbId)
{
xnl::AutoCSLocker lock(ms_lock);
if (eventType == XN_USB_EVENT_DEVICE_CONNECT)
{
if (ms_devices.Find(uri) == ms_devices.End())
{
OniDeviceInfo deviceInfo;
deviceInfo.usbVendorId = usbId.vendorID;
deviceInfo.usbProductId = usbId.productID;
xnOSStrCopy(deviceInfo.uri, uri, sizeof(deviceInfo.uri));
xnOSStrCopy(deviceInfo.vendor, "PrimeSense", sizeof(deviceInfo.vendor));
xnOSStrCopy(deviceInfo.name, "PS1080", sizeof(deviceInfo.name));
// add it to hash
ms_devices.Set(uri, deviceInfo);
// raise event
ms_connectedEvent.Raise(deviceInfo);
}
}
else if (eventType == XN_USB_EVENT_DEVICE_DISCONNECT)
{
OniDeviceInfo deviceInfo;
if (XN_STATUS_OK == ms_devices.Get(uri, deviceInfo))
{
// raise event
ms_disconnectedEvent.Raise(deviceInfo);
// remove it
ms_devices.Remove(uri);
}
}
}
void XN_CALLBACK_TYPE XnDeviceEnumeration::OnConnectivityEventCallback(XnUSBEventArgs* pArgs, void* pCookie)
{
XnUsbId usbId = *(XnUsbId*)pCookie;
OnConnectivityEvent(pArgs->strDevicePath, pArgs->eventType, usbId);
}
XnStatus XnDeviceEnumeration::IsSensorLowBandwidth(const XnChar* uri, XnBool* pbIsLowBandwidth)
{
*pbIsLowBandwidth = FALSE;
#if (XN_PLATFORM == XN_PLATFORM_WIN32)
XnChar cpMatchString[XN_FILE_MAX_PATH];
// 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(uri, "\\\\?\\usb#vid_") >= 0) && (xnOSStrLen(uri) > 25))
{
strncpy(&cpMatchString[0], &uri[12], 4); //VID
strncpy(&cpMatchString[4], &uri[21], 4); //PID
cpMatchString[8] = 0;
if (strstr ((char*)uri,cpMatchString) != 0)
{
*pbIsLowBandwidth = TRUE;
}
}
#endif
return (XN_STATUS_OK);
}
OniDeviceInfo* XnDeviceEnumeration::GetDeviceInfo(const XnChar* uri)
{
OniDeviceInfo* pInfo = NULL;
xnl::AutoCSLocker lock(ms_lock);
if (ms_devices.Get(uri, pInfo) == XN_STATUS_OK)
{
return pInfo;
}
else
{
return NULL;
}
}
|