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
|
/*****************************************************************************
* *
* 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 "OniStream.h"
#include "OniDevice.h"
#include "OniSyncedStreamsFrameHolder.h"
#include "OniDeviceDriver.h"
#include "OniRecorder.h"
#include "OniFrameManager.h"
#include "XnList.h"
#include "XnHash.h"
#include "XnEvent.h"
#include "OniDriverHandler.h"
#include "OniCommon.h"
struct _OniDevice
{
oni::implementation::Device* pDevice;
};
struct _OniStream
{
oni::implementation::VideoStream* pStream;
};
struct _OniFrameSync
{
oni::implementation::SyncedStreamsFrameHolder* pSyncedStreamsFrameHolder;
oni::implementation::DeviceDriver* pDeviceDriver;
void* pFrameSyncHandle;
};
struct _OniRecorder
{
oni::implementation::Recorder* pRecorder;
};
ONI_NAMESPACE_IMPLEMENTATION_BEGIN
class Context
{
public:
Context();
~Context();
OniStatus initialize();
void shutdown();
OniStatus registerDeviceConnectedCallback(OniDeviceInfoCallback handler, void* pCookie, OniCallbackHandle& handle);
void unregisterDeviceConnectedCallback(OniCallbackHandle handle);
OniStatus registerDeviceDisconnectedCallback(OniDeviceInfoCallback handler, void* pCookie, OniCallbackHandle& handle);
void unregisterDeviceDisconnectedCallback(OniCallbackHandle handle);
OniStatus registerDeviceStateChangedCallback(OniDeviceStateCallback handler, void* pCookie, OniCallbackHandle& handle);
void unregisterDeviceStateChangedCallback(OniCallbackHandle handle);
OniStatus getDeviceList(OniDeviceInfo** pDevices, int* pDeviceCount);
OniStatus releaseDeviceList(OniDeviceInfo* pDevices);
OniStatus deviceOpen(const char* uri, const char* mode, OniDeviceHandle* pDevice);
OniStatus deviceClose(OniDeviceHandle device);
const OniSensorInfo* getSensorInfo(OniDeviceHandle device, OniSensorType sensorType);
OniStatus createStream(OniDeviceHandle device, OniSensorType sensorType, OniStreamHandle* pStream);
OniStatus streamDestroy(OniStreamHandle stream);
const OniSensorInfo* getSensorInfo(OniStreamHandle stream);
OniStatus readFrame(OniStreamHandle stream, OniFrame** pFrame);
void frameRelease(OniFrame* pFrame);
void frameAddRef(OniFrame* pFrame);
OniStatus waitForStreams(OniStreamHandle* pStreams, int streamCount, int* pStreamIndex, int timeout);
OniStatus enableFrameSync(OniStreamHandle* pStreams, int numStreams, OniFrameSyncHandle* pFrameSyncHandle);
OniStatus enableFrameSyncEx(VideoStream** pStreams, int numStreams, DeviceDriver* pDriver, OniFrameSyncHandle* pFrameSyncHandle);
void disableFrameSync(OniFrameSyncHandle frameSyncHandle);
void clearErrorLogger();
const char* getExtendedError();
void addToLogger(const XnChar* cpFormat, ...);
OniStatus recorderOpen(const char* fileName, OniRecorderHandle* pRecorder);
OniStatus recorderClose(OniRecorderHandle* pRecorder);
OniStatus recorderClose(Recorder* pRecorder);
static OniBool s_valid;
protected:
OniStatus streamDestroy(VideoStream* pStream);
static void ONI_CALLBACK_TYPE deviceDriver_DeviceConnected(Device* pDevice, void* pCookie);
static void ONI_CALLBACK_TYPE deviceDriver_DeviceDisconnected(Device* pDevice, void* pCookie);
static void ONI_CALLBACK_TYPE deviceDriver_DeviceStateChanged(Device* pDevice, OniDeviceState deviceState, void* pCookie);
private:
Context(const Context& other);
Context& operator=(const Context&other);
XnStatus loadLibraries(const char* directoryName);
void onNewFrame();
XN_EVENT_HANDLE getThreadEvent();
static void XN_CALLBACK_TYPE newFrameCallback(void* pCookie);
FrameManager m_frameManager;
xnl::ErrorLogger& m_errorLogger;
xnl::Event1Arg<const OniDeviceInfo*> m_deviceConnectedEvent;
xnl::Event1Arg<const OniDeviceInfo*> m_deviceDisconnectedEvent;
xnl::Event2Args<const OniDeviceInfo*, OniDeviceState> m_deviceStateChangedEvent;
xnl::List<oni::implementation::DeviceDriver*> m_deviceDrivers;
xnl::List<oni::implementation::Device*> m_devices;
xnl::List<oni::implementation::VideoStream*> m_streams;
xnl::List<oni::implementation::Recorder*> m_recorders;
xnl::Hash<XN_THREAD_ID, XN_EVENT_HANDLE> m_waitingThreads;
xnl::CriticalSection m_cs;
char m_overrideDevice[XN_FILE_MAX_PATH];
int m_initializationCounter;
};
ONI_NAMESPACE_IMPLEMENTATION_END
|