File: OniDataRecords.h

package info (click to toggle)
openni2 2.2.0.33%2Bdfsg-11
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 22,216 kB
  • sloc: cpp: 111,197; ansic: 35,511; sh: 10,542; python: 1,313; java: 952; makefile: 575; xml: 12
file content (247 lines) | stat: -rw-r--r-- 7,021 bytes parent folder | download | duplicates (4)
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
/*****************************************************************************
*                                                                            *
*  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.                                            *
*                                                                            *
*****************************************************************************/
#ifndef _ONI_IMPL_DATA_RECORDS_H_
#define _ONI_IMPL_DATA_RECORDS_H_ 1

#include "XnOS.h"
#include "XnList.h"

#include "OniCommon.h"
#include "OniCTypes.h"

ONI_NAMESPACE_IMPLEMENTATION_BEGIN
#if (ONI_PLATFORM != ONI_PLATFORM_ARC)
#   pragma pack(push, 1)
#endif

#define ONI_CODEC_ID(c1, c2, c3, c4) XnUInt32((c4 << 24) | (c3 << 16) | (c2 << 8) | c1)

#define ONI_CODEC_UNCOMPRESSED      ONI_CODEC_ID('N', 'O', 'N', 'E')
#define ONI_CODEC_16Z_EMB_TABLES    ONI_CODEC_ID('1', '6', 'z', 'T')
#define ONI_CODEC_JPEG              ONI_CODEC_ID('J', 'P', 'E', 'G')

static const XnSizeT IDENTITY_SIZE = 4;

/// The structure of ONI file's file header.
struct FileHeaderData
{
    XnUInt8 identity[IDENTITY_SIZE];
    struct Version
    {
        XnUInt8  major;
        XnUInt8  minor;
        XnUInt16 maintenance;
        XnUInt32 build;
    } version;
    XnUInt64 maxTimeStamp;
    XnUInt32 maxNodeId;
};

/// The structure of ONI file's record header.
struct RecordHeaderData
{
    XnUInt32 magic;
    XnUInt32 recordType;
    XnUInt32 nodeId;
    XnUInt32 fieldsSize;
    XnUInt32 payloadSize;
    XnUInt64 undoRecordPos;
};

struct VideoModeData
{
    XnUInt32 width;
    XnUInt32 height;
    XnUInt32 fps;
};

/// An entry for a frame in the SeekTable
typedef struct DataIndexEntry
{
	XnUInt64 nTimestamp;
	XnUInt32 nConfigurationID;
	XnUInt64 nSeekPos;
} DataIndexEntry;

typedef xnl::List<DataIndexEntry> DataIndexEntryList;

/// Enumerates known record types.
enum RecordType
{
    RECORD_NODE_ADDED_1_0_0_4		= 0x02,
    RECORD_INT_PROPERTY				= 0x03,
    RECORD_REAL_PROPERTY			= 0x04,
    RECORD_STRING_PROPERTY			= 0x05,
    RECORD_GENERAL_PROPERTY			= 0x06,
    RECORD_NODE_REMOVED				= 0x07,
    RECORD_NODE_DATA_BEGIN			= 0x08,
    RECORD_NODE_STATE_READY			= 0x09,
    RECORD_NEW_DATA					= 0x0A,
    RECORD_END						= 0x0B,
    RECORD_NODE_ADDED_1_0_0_5		= 0x0C,
    RECORD_NODE_ADDED				= 0x0D,
    RECORD_SEEK_TABLE               = 0x0E,
};

/// Enumerates known node types.
enum NodeType
{
    NODE_TYPE_INVALID = -1,
    NODE_TYPE_DEVICE  =  1,
    NODE_TYPE_DEPTH   =  2,
    NODE_TYPE_IMAGE   =  3,
    NODE_TYPE_IR      =  5,
};

/// Return a NodeType that matches the given OniSourceType.
static inline NodeType AsNodeType(OniSensorType sensorType)
{
    NodeType res = NODE_TYPE_INVALID;
    switch (sensorType)
    {
    case ONI_SENSOR_COLOR:
        res = NODE_TYPE_IMAGE;
        break;
    case ONI_SENSOR_DEPTH:
        res = NODE_TYPE_DEPTH;
        break;
    case ONI_SENSOR_IR:
        res = NODE_TYPE_IR;
        break;
    default:
        ;
    }
    return res;
}

///
class RecordAssembler
{
public:
    ///
    RecordAssembler();

    ///
    ~RecordAssembler();

    ///
    void initialize();

    ///
    OniStatus serialize(XN_FILE_HANDLE file);

    ///
    OniStatus emit_RECORD_NODE_ADDED_1_0_0_5(
            XnUInt32 nodeType, 
            XnUInt32 nodeId,
            XnUInt32 codecId,
            XnUInt32 numberOfFrames,
            XnUInt64 minTimeStamp,
            XnUInt64 maxTimeStamp);
    ///
    OniStatus emit_RECORD_NODE_ADDED(
            XnUInt32 nodeType, 
            XnUInt32 nodeId,
            XnUInt32 codecId,
            XnUInt32 numberOfFrames,
            XnUInt64 minTimeStamp,
            XnUInt64 maxTimeStamp,
            XnUInt64 seekTablePosition);

    /// 
    OniStatus emit_RECORD_NODE_STATE_READY(XnUInt32 nodeId);

    ///
    OniStatus emit_RECORD_NODE_REMOVED(XnUInt32 nodeId, XnUInt64 nodeAddedPos);

    ///
    OniStatus emit_RECORD_SEEK_TABLE(
            XnUInt32 nodeId, 
	    XnUInt32 numFrames, 
	    DataIndexEntryList dataIndexEntryList);

    ///
    OniStatus emit_RECORD_END();

    ///
    OniStatus emit_RECORD_NODE_DATA_BEGIN(
            XnUInt32 nodeId,
            XnUInt32 framesCount,
            XnUInt64 maxTimeStamp);

    ///
    OniStatus emit_RECORD_NEW_DATA(
            XnUInt32    nodeId,
            XnUInt64    undoRecordPos,
            XnUInt64    timeStamp,
            XnUInt32    frameId, 
            const void* data, 
            XnSizeT     dataSize_bytes);

    ///
    OniStatus emit_RECORD_GENERAL_PROPERTY(
            XnUInt32    nodeId,
            XnUInt64    undoRecordPos,
            const char* propertyName,
            const void* data,
            XnSizeT     dataSize_bytes);

    ///
    OniStatus emit_RECORD_INT_PROPERTY(
            XnUInt32    nodeId,
            XnUInt64    undoRecordPos,
            const char* propertyName,
            XnUInt64    data);
	OniStatus emit_RECORD_REAL_PROPERTY(
		XnUInt32    nodeId,
		XnUInt64    undoRecordPos,
		const char* propertyName,
		XnDouble    data);

private:
    //
    void emitCommonHeader(XnUInt32 recordType, XnUInt32 nodeId, XnUInt64 undoRecordPos);
    //
    OniStatus emitString(const XnChar* pStr, XnSizeT& totalFieldsSize_bytes);
    //
    OniStatus emitData(const void* pData, XnSizeT dataSize_bytes);
    //
    template<typename T>
    OniStatus emit(const T& field, XnSizeT& totalFieldsSize_bytes);

    // Union of a buffer and a record header.
    union 
    {
        XnUInt8*          m_pBuffer;
        RecordHeaderData* m_header;
    };
    // Size of the buffer in bytes.
    XnSizeT m_bufferSize_bytes;
    // Pointer into the buffer for emit operations.
    XnUInt8* m_pEmitPtr;
};

#if (ONI_PLATFORM != ONI_PLATFORM_ARC)
#   pragma pack(pop)
#endif
ONI_NAMESPACE_IMPLEMENTATION_END

#endif // _ONI_IMPL_DATA_RECORDS_H_