-
Notifications
You must be signed in to change notification settings - Fork 570
/
Copy pathXnExportedSensorDevice.cpp
executable file
·253 lines (220 loc) · 8.27 KB
/
XnExportedSensorDevice.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
/*****************************************************************************
* *
* PrimeSense Sensor 5.x Alpha *
* Copyright (C) 2012 PrimeSense Ltd. *
* *
* This file is part of PrimeSense Sensor *
* *
* 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. *
* *
*****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "XnExportedSensorDevice.h"
#include <XnPsVersion.h>
#include "XnSensorDevice.h"
#include <XnOpenNI.h>
#include <XnCommon.h>
#include "XnSensorServer.h"
//---------------------------------------------------------------------------
// Defines
//---------------------------------------------------------------------------
// On weak platforms (like Arm), the default is not to use multi-process.
#if (XN_PLATFORM == XN_PLATFORM_LINUX_ARM || XN_PLATFORM == XN_PLATFORM_ANDROID_ARM || XN_PLATFORM == XN_PLATFORM_ANDROID_X86)
#define XN_SENSOR_DEFAULT_MULTI_PROCESS (FALSE)
#else
#define XN_SENSOR_DEFAULT_MULTI_PROCESS (TRUE)
#endif
//---------------------------------------------------------------------------
// XnExportedSensorDevice class
//---------------------------------------------------------------------------
XnExportedSensorDevice::XnExportedSensorDevice()
{}
void XnExportedSensorDevice::FillCommonDescriptionFields(XnProductionNodeDescription* pDescription)
{
strcpy(pDescription->strName, XN_DEVICE_NAME);
strcpy(pDescription->strVendor, XN_VENDOR_PRIMESENSE);
pDescription->Version.nMajor = XN_PS_MAJOR_VERSION;
pDescription->Version.nMinor = XN_PS_MINOR_VERSION;
pDescription->Version.nMaintenance = XN_PS_MAINTENANCE_VERSION;
pDescription->Version.nBuild = XN_PS_BUILD_VERSION;
}
void XnExportedSensorDevice::GetDescription(XnProductionNodeDescription* pDescription)
{
FillCommonDescriptionFields(pDescription);
pDescription->Type = XN_NODE_TYPE_DEVICE;
}
XnStatus XnExportedSensorDevice::EnumerateProductionTrees(xn::Context& context, xn::NodeInfoList& TreesList, xn::EnumerationErrors* /*pErrors*/)
{
XnStatus nRetVal = XN_STATUS_OK;
// enumerate connected sensors
XnUInt32 nCount = 0;
// check if sensor is connected
nRetVal = XnSensor::Enumerate(NULL, &nCount);
if (nRetVal != XN_STATUS_OUTPUT_BUFFER_OVERFLOW)
{
// no sensor connected
return XN_STATUS_DEVICE_NOT_CONNECTED;
}
// allocate according to count
XnConnectionString* pConnStrings;
XN_VALIDATE_CALLOC(pConnStrings, XnConnectionString, nCount);
nRetVal = XnSensor::Enumerate(pConnStrings, &nCount);
if (nRetVal != XN_STATUS_OK)
{
xnOSFree(pConnStrings);
return (nRetVal);
}
XnProductionNodeDescription Description;
GetDescription(&Description);
for (XnUInt32 i = 0; i < nCount; ++i)
{
// Each connection string is a sensor. Return it if it wasn't created already.
if (FindCreatedDevice(context.GetUnderlyingObject(), pConnStrings[i]) == m_createdDevices.End())
{
nRetVal = TreesList.Add(Description, pConnStrings[i], NULL);
if (nRetVal != XN_STATUS_OK)
{
xnOSFree(pConnStrings);
return (nRetVal);
}
}
}
xnOSFree(pConnStrings);
return (XN_STATUS_OK);
}
XnStatus XnExportedSensorDevice::Create(xn::Context& context,
const XnChar* strInstanceName,
const XnChar* strCreationInfo,
xn::NodeInfoList* /*pNeededTrees*/,
const XnChar* strConfigurationDir,
xn::ModuleProductionNode** ppInstance)
{
XnStatus nRetVal = XN_STATUS_OK;
XnChar strGlobalConfigFile[XN_FILE_MAX_PATH];
nRetVal = XnSensor::ResolveGlobalConfigFileName(strGlobalConfigFile, XN_FILE_MAX_PATH, strConfigurationDir);
XN_IS_STATUS_OK(nRetVal);
// multi-process is not supported on Mac
#if (XN_PLATFORM == XN_PLATFORM_MACOSX)
XnBool bEnableMultiProcess = FALSE;
#else
XnBool bEnableMultiProcess = XN_SENSOR_DEFAULT_MULTI_PROCESS;
XnUInt32 nValue;
if (XN_STATUS_OK == xnOSReadIntFromINI(strGlobalConfigFile, XN_SENSOR_SERVER_CONFIG_FILE_SECTION, XN_MODULE_PROPERTY_ENABLE_MULTI_PROCESS, &nValue))
{
bEnableMultiProcess = (nValue == TRUE);
}
#endif
XnDeviceBase* pSensor = NULL;
if (bEnableMultiProcess)
{
XN_VALIDATE_NEW(pSensor, XnSensorClient);
}
else
{
XN_VALIDATE_NEW(pSensor, XnSensor);
}
XnDeviceConfig config;
config.DeviceMode = XN_DEVICE_MODE_READ;
config.cpConnectionString = strCreationInfo;
config.SharingMode = XN_DEVICE_EXCLUSIVE;
config.pInitialValues = NULL;
if (strConfigurationDir != NULL)
{
if (bEnableMultiProcess)
{
XnSensorClient* pClient = (XnSensorClient*)pSensor;
pClient->SetConfigDir(strConfigurationDir);
}
else
{
XnSensor* pActualSensor = (XnSensor*)pSensor;
pActualSensor->SetGlobalConfigFile(strGlobalConfigFile);
}
}
nRetVal = pSensor->Init(&config);
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pSensor);
return (nRetVal);
}
XnSensorDevice* pDevice = XN_NEW(XnSensorDevice, context, pSensor, strInstanceName);
if (pDevice == NULL)
{
XN_DELETE(pSensor);
return (XN_STATUS_ALLOC_FAILED);
}
nRetVal = pDevice->Init();
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pDevice);
XN_DELETE(pSensor);
return (nRetVal);
}
nRetVal = m_createdDevices.AddLast(DeviceKey(context.GetUnderlyingObject(), strCreationInfo));
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pDevice);
XN_DELETE(pSensor);
return (nRetVal);
}
*ppInstance = pDevice;
return (XN_STATUS_OK);
}
void XnExportedSensorDevice::Destroy(xn::ModuleProductionNode* pInstance)
{
XnStatus nRetVal = XN_STATUS_OK;
XnSensorDevice* pDevice = dynamic_cast<XnSensorDevice*>(pInstance);
XnChar strConnStr[XN_MAX_CREATION_INFO_LENGTH];
nRetVal = pDevice->GetStringProperty(XN_MODULE_PROPERTY_USB_PATH, strConnStr, sizeof(strConnStr));
if (nRetVal != XN_STATUS_OK)
{
xnLogWarning(XN_MASK_DEVICE_SENSOR, "Couldn't get usb path property ?! :(");
XN_ASSERT(FALSE);
}
XnContext* pContext = pDevice->GetContext().GetUnderlyingObject();
CreatedDevices::Iterator it = FindCreatedDevice(pContext, strConnStr);
if (it == m_createdDevices.End())
{
xnLogWarning(XN_MASK_DEVICE_SENSOR, "Couldn't find device in created devices ?! :(");
XN_ASSERT(FALSE);
}
else
{
m_createdDevices.Remove(it);
}
XnDeviceBase* pSensor = pDevice->GetSensor();
pSensor->Destroy();
XN_DELETE(pSensor);
XN_DELETE(pDevice);
}
XnExportedSensorDevice::DeviceKey::DeviceKey(XnContext* pContext, const XnChar* strConnStr)
{
m_pContext = pContext;
xnOSStrCopy(m_strConnStr, strConnStr, sizeof(m_strConnStr));
}
XnExportedSensorDevice::CreatedDevices::Iterator XnExportedSensorDevice::FindCreatedDevice(XnContext* pContext,
const XnChar* strConnStr)
{
CreatedDevices::Iterator it = m_createdDevices.Begin();
for (; it != m_createdDevices.End(); it++)
{
if ((it->m_pContext == pContext) &&
(xnOSStrCmp(it->m_strConnStr, strConnStr) == 0))
{
break;
}
}
return it;
}