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
|
/****************************************************************************
* *
* OpenNI 1.x Alpha *
* Copyright (C) 2011 PrimeSense Ltd. *
* *
* This file is part of OpenNI. *
* *
* OpenNI 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. *
* *
* OpenNI 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 OpenNI. If not, see <http://www.gnu.org/licenses/>. *
* *
****************************************************************************/
#ifndef __XN_RECORDER_IMPL_H__
#define __XN_RECORDER_IMPL_H__
#include "XnStatus.h"
#include "XnInternalTypes.h"
#include <XnTypes.h>
#include <XnStringsHashT.h>
typedef struct XnModuleRecorderInterface XnModuleRecorderInterface;
namespace xn
{
class ProductionNode;
class NodeWatcher;
class RecorderImpl : public NodePrivateData
{
public:
RecorderImpl();
virtual ~RecorderImpl();
XnStatus Init(XnNodeHandle hRecorder);
virtual void BeforeNodeDestroy();
void Destroy();
XnStatus AddNode(ProductionNode &node, XnCodecID compression);
XnStatus RemoveNode(ProductionNode &node);
XnStatus AddRawNode(const XnChar* strNodeName);
XnStatus RemoveRawNode(const XnChar* strNodeName);
XnStatus SetRawNodeIntProp(const XnChar* strNodeName, const XnChar* strPropName, XnUInt64 nVal);
XnStatus SetRawNodeRealProp(const XnChar* strNodeName, const XnChar* strPropName, XnDouble dVal);
XnStatus SetRawNodeStringProp(const XnChar* strNodeName, const XnChar* strPropName, const XnChar* strVal);
XnStatus SetRawNodeGeneralProp(const XnChar* strNodeName, const XnChar* strPropName, XnUInt32 nBufferSize, const void* pBuffer);
XnStatus NotifyRawNodeStateReady(const XnChar* strNodeName);
XnStatus SetRawNodeNewData(const XnChar* strNodeName, XnUInt64 nTimeStamp, XnUInt32 nFrame, const void* pData, XnUInt32 nSize);
XnStatus SetDestination(XnRecordMedium destType, const XnChar* strDest);
XnStatus GetDestination(XnRecordMedium& destType, XnChar* strDest, XnUInt32 nBufSize);
XnStatus Record();
protected:
XnStatus NotifyNodeAdded(XnNodeHandle hNode, XnProductionNodeType type, XnCodecID compression);
XnStatus NotifyNodeRemoved(XnNodeHandle hNode);
XnNodeNotifications& Notifications();
XnModuleRecorderInterface& ModuleRecorder();
XnModuleNodeHandle ModuleHandle();
XnStatus RemoveNodeImpl(ProductionNode &node);
private:
typedef XnHashT<XnNodeHandle, NodeWatcher*> NodeWatchersMap;
struct RawNodeInfo
{
};
typedef XnStringsHashT<RawNodeInfo> RawNodesMap;
static XnStatus XN_CALLBACK_TYPE OpenFile(void* pCookie);
static XnStatus XN_CALLBACK_TYPE WriteFile(void* pCookie, const XnChar* strNodeName,
const void* pData, XnUInt32 nSize);
static XnStatus XN_CALLBACK_TYPE SeekFile (void* pCookie, XnOSSeekType seekType, const XnInt32 nOffset);
static XnStatus XN_CALLBACK_TYPE SeekFile64(void* pCookie, XnOSSeekType seekType, const XnInt64 nOffset);
static XnUInt32 XN_CALLBACK_TYPE TellFile(void* pCookie);
static XnUInt64 XN_CALLBACK_TYPE TellFile64(void* pCookie);
static void XN_CALLBACK_TYPE CloseFile(void* pCookie);
XnStatus OpenFileImpl();
XnStatus WriteFileImpl(const XnChar* strNodeName, const void* pData, XnUInt32 nSize);
XnStatus SeekFileImpl (XnOSSeekType seekType, const XnInt32 nOffset);
XnStatus SeekFile64Impl(XnOSSeekType seekType, const XnInt64 nOffset);
XnUInt32 TellFileImpl();
XnUInt64 TellFile64Impl();
void CloseFileImpl();
XnCodecID GetDefaultCodecID(ProductionNode& node);
XnBool IsRawNode(const XnChar* strNodeName);
//XnRecorderOutputStreamInterface implementation that writes to an stdio file
static XnRecorderOutputStreamInterface s_fileOutputStream;
XnRecordMedium m_destType;
XnChar m_strFileName[XN_FILE_MAX_PATH];
XnBool m_bIsFileOpen;
XN_FILE_HANDLE m_hOutFile;
XnNodeHandle m_hRecorder;
NodeWatchersMap m_nodeWatchersMap;
RawNodesMap m_rawNodesMap;
};
}
#endif //__XN_RECORDER_IMPL_H__
|