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
|
/*****************************************************************************
* *
* 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. *
* *
*****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "LinkOniDriver.h"
#include "LinkOniDevice.h"
#include "LinkDeviceEnumeration.h"
#include <XnOS.h>
#include <XnLogWriterBase.h>
//---------------------------------------------------------------------------
// LinkOniDriver class
//---------------------------------------------------------------------------
LinkOniDriver::LinkOpenNILogWriter::LinkOpenNILogWriter(OniDriverServices* pDriverServices) : m_pDriverServices(pDriverServices)
{
}
void LinkOniDriver::LinkOpenNILogWriter::WriteEntry(const XnLogEntry* pEntry)
{
m_pDriverServices->log(m_pDriverServices, pEntry->nSeverity, pEntry->strFile, pEntry->nLine, pEntry->strMask, pEntry->strMessage);
}
void LinkOniDriver::LinkOpenNILogWriter::WriteUnformatted(const XnChar* /*strMessage*/)
{
// DO NOTHING
}
OniStatus LinkOniDriver::initialize(oni::driver::DeviceConnectedCallback deviceConnectedCallback, oni::driver::DeviceDisconnectedCallback deviceDisconnectedCallback, oni::driver::DeviceStateChangedCallback deviceStateChangedCallback, void* pCookie)
{
OniStatus nRetVal = DriverBase::initialize(deviceConnectedCallback, deviceDisconnectedCallback, deviceStateChangedCallback, pCookie);
if (nRetVal != ONI_STATUS_OK)
{
return (nRetVal);
}
xnLogSetMaskMinSeverity(XN_LOG_MASK_ALL, XN_LOG_VERBOSE);
m_writer.Register();
XnStatus rc = LinkDeviceEnumeration::ConnectedEvent().Register(OnDeviceConnected, this, m_connectedEventHandle);
if (rc != XN_STATUS_OK)
{
return ONI_STATUS_ERROR;
}
rc = LinkDeviceEnumeration::DisconnectedEvent().Register(OnDeviceDisconnected, this, m_disconnectedEventHandle);
if (rc != XN_STATUS_OK)
{
return ONI_STATUS_ERROR;
}
rc = LinkDeviceEnumeration::Initialize();
if (rc != XN_STATUS_OK)
{
return ONI_STATUS_ERROR;
}
resolveConfigFilePath();
return ONI_STATUS_OK;
}
void LinkOniDriver::shutdown()
{
if (m_connectedEventHandle != NULL)
{
LinkDeviceEnumeration::ConnectedEvent().Unregister(m_connectedEventHandle);
m_connectedEventHandle = NULL;
}
if (m_disconnectedEventHandle != NULL)
{
LinkDeviceEnumeration::DisconnectedEvent().Unregister(m_disconnectedEventHandle);
m_disconnectedEventHandle = NULL;
}
// Close all open devices and release the memory
for (xnl::StringsHash<LinkOniDevice*>::Iterator it = m_devices.Begin(); it != m_devices.End(); ++it)
{
XN_DELETE(it->Value());
}
m_devices.Clear();
LinkDeviceEnumeration::Shutdown();
}
oni::driver::DeviceBase* LinkOniDriver::deviceOpen(const char* uri, const char* mode)
{
LinkOniDevice* pDevice = NULL;
// if device was already opened for this uri, return the previous one
if (m_devices.Get(uri, pDevice) == XN_STATUS_OK)
{
getServices().errorLoggerAppend("Device is already open.");
return NULL;
}
pDevice = XN_NEW(LinkOniDevice, m_configFilePath, uri, getServices(), this);
XnStatus nRetVal = pDevice->Init(mode);
if (nRetVal != XN_STATUS_OK)
{
getServices().errorLoggerAppend("Could not open \"%s\": %s", uri, xnGetStatusString(nRetVal));
return NULL;
}
/* TODO impl
// Register to error state property changed.
XnCallbackHandle handle;
nRetVal = pDevice->GetSensor()->RegisterToPropertyChange(XN_MODULE_NAME_DEVICE,
XN_MODULE_PROPERTY_ERROR_STATE,
OnDevicePropertyChanged, pDevice, handle);
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pDevice);
return NULL;
}
*/
// Add the device and return it.
m_devices[uri] = pDevice;
return pDevice;
}
void LinkOniDriver::deviceClose(oni::driver::DeviceBase* pDevice)
{
for (xnl::StringsHash<LinkOniDevice*>::Iterator iter = m_devices.Begin(); iter != m_devices.End(); ++iter)
{
if (iter->Value() == pDevice)
{
m_devices.Remove(iter);
XN_DELETE(pDevice);
return;
}
}
// not our device?!
XN_ASSERT(FALSE);
}
/*
void* LinkOniDriver::enableFrameSync(oni::driver::StreamBase** pStreams, int streamCount)
{
// Make sure all the streams belong to same device.
LinkOniDevice* pDevice = NULL;
for (int i = 0; i < streamCount; ++i)
{
LinkOniStream* pStream = dynamic_cast<LinkOniStream*>(pStreams[i]);
if (pStreams == NULL)
{
// Not allowed.
return NULL;
}
// Check if device was not set before.
if (pDevice == NULL)
{
pDevice = pStream->GetDevice();
}
// Compare device to stream's device.
else if (pDevice != pStream->GetDevice())
{
// Streams from different devices are currently not allowed.
return NULL;
}
}
// Create the frame sync group handle.
FrameSyncGroup* pFrameSyncGroup = XN_NEW(FrameSyncGroup);
if (pFrameSyncGroup == NULL)
{
return NULL;
}
pFrameSyncGroup->pDevice = pDevice;
// Enable the frame sync.
OniStatus rc = pDevice->EnableFrameSync((LinkOniStream**)pStreams, streamCount);
if (rc != ONI_STATUS_OK)
{
XN_DELETE(pFrameSyncGroup);
return NULL;
}
// Return the created handle.
return pFrameSyncGroup;
}
void LinkOniDriver::disableFrameSync(void* frameSyncGroup)
{
FrameSyncGroup* pFrameSyncGroup = (FrameSyncGroup*)frameSyncGroup;
// Find device in driver.
xnl::StringsHash<LinkOniDevice*>::ConstIterator iter = m_devices.Begin();
while (iter != m_devices.End())
{
// Make sure device belongs to driver.
if ((*iter).second == pFrameSyncGroup->pDevice)
{
// Disable frame sync in device.
pFrameSyncGroup->pDevice->DisableFrameSync();
return;
}
++iter;
}
}
*/
void XN_CALLBACK_TYPE LinkOniDriver::OnDevicePropertyChanged(const XnChar* /*ModuleName*/, XnUInt32 /*nPropertyId*/, void* /*pCookie*/)
{
//TODO impl!
/*
LinkOniDevice* pDevice = (LinkOniDevice*)pCookie;
LinkOniDriver* pThis = pDevice->GetDriver();
if (nPropertyId == XN_MODULE_PROPERTY_ERROR_STATE)
{
XnSensor* pSensor = (XnSensor*)pDevice->GetSensor();
// Get the property value.
XnUInt64 errorState = 0;
XnStatus nRetVal = pSensor->GetProperty(ModuleName, XN_MODULE_PROPERTY_ERROR_STATE, &errorState);
if (nRetVal == XN_STATUS_OK)
{
if (errorState == XN_STATUS_DEVICE_NOT_CONNECTED)
{
pThis->deviceDisconnected(pDevice->GetInfo());
}
else
{
int errorStateValue = XN_ERROR_STATE_OK;
switch (errorState)
{
case XN_STATUS_OK:
{
errorStateValue = XN_ERROR_STATE_OK;
break;
}
case XN_STATUS_DEVICE_PROJECTOR_FAULT:
{
errorStateValue = XN_ERROR_STATE_DEVICE_PROJECTOR_FAULT;
break;
}
case XN_STATUS_DEVICE_OVERHEAT:
{
errorStateValue = XN_ERROR_STATE_DEVICE_OVERHEAT;
break;
}
default:
{
// Invalid value.
XN_ASSERT(FALSE);
}
}
pThis->deviceStateChanged(pDevice->GetInfo(), errorStateValue);
}
}
}
*/
}
void XN_CALLBACK_TYPE LinkOniDriver::OnDeviceConnected(const OniDeviceInfo& deviceInfo, void* pCookie)
{
LinkOniDriver* pThis = (LinkOniDriver*)pCookie;
pThis->deviceConnected(&deviceInfo);
}
void XN_CALLBACK_TYPE LinkOniDriver::OnDeviceDisconnected(const OniDeviceInfo& deviceInfo, void* pCookie)
{
LinkOniDriver* pThis = (LinkOniDriver*)pCookie;
pThis->deviceDisconnected(&deviceInfo);
}
void LinkOniDriver::resolveConfigFilePath()
{
XnChar strModulePath[XN_FILE_MAX_PATH];
if (xnOSGetModulePathForProcAddress(reinterpret_cast<void*>(&LinkOniDriver::OnDeviceConnected), strModulePath) != XN_STATUS_OK ||
xnOSGetDirName(strModulePath, m_configFilePath, sizeof(m_configFilePath)) != XN_STATUS_OK)
{
// Something wrong happened. Use the current directory as the fall-back.
xnOSStrCopy(m_configFilePath, ".", sizeof(m_configFilePath));
}
xnOSAppendFilePath(m_configFilePath, "PSLink.ini", sizeof(m_configFilePath));
}
|