forked from PrimeSense/Sensor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXnDeviceFileWriter.cpp
More file actions
253 lines (203 loc) · 7.81 KB
/
XnDeviceFileWriter.cpp
File metadata and controls
253 lines (203 loc) · 7.81 KB
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 "XnDeviceFileWriter.h"
#include <XnLog.h>
#include <XnOS.h>
#include "XnDeviceFile.h"
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnDeviceFileWriter::XnDeviceFileWriter() :
XnStreamWriterDevice(XN_DEVICE_NAME, XN_DEVICE_FILE_MAX_INTERNAL_BUFFER),
m_bTimerStarted(FALSE)
{
}
XnDeviceFileWriter::~XnDeviceFileWriter()
{
}
XnStatus XnDeviceFileWriter::Destroy()
{
if (m_bTimerStarted)
{
xnOSStopTimer(&m_Timer);
m_bTimerStarted = FALSE;
}
return XnStreamWriterDevice::Destroy();
}
XnStatus XnDeviceFileWriter::CreateStream(const XnChar* StreamType, const XnChar* StreamName /* = NULL */, const XnPropertySet* pInitialValues /* = NULL */)
{
XnStatus nRetVal = XN_STATUS_OK;
// create stream using base (this will also write it down to the file)
nRetVal = XnStreamWriterDevice::CreateStream(StreamType, StreamName, pInitialValues);
XN_IS_STATUS_OK(nRetVal);
// now, we leave a place for a property change - the number of frames. We will update this
// property once the stream is closed.
XnFileWriterStream* pStream;
nRetVal = FindStream(StreamName, &pStream);
XN_IS_STATUS_OK(nRetVal);
nRetVal = GetIOStream()->Tell(&pStream->m_nNumFramesPos);
XN_IS_STATUS_OK(nRetVal);
nRetVal = GetDataPacker()->WriteProperty(StreamName, XN_STREAM_PROPERTY_NUMBER_OF_FRAMES, 0ULL);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnDeviceFileWriter::DestroyStream(const XnChar* StreamName)
{
XnStatus nRetVal = XN_STATUS_OK;
// before closing this stream, we want to write down how many frames were written
XnFileWriterStream* pStream;
nRetVal = FindStream(StreamName, &pStream);
XN_IS_STATUS_OK(nRetVal);
XnUInt64 nCurPos;
nRetVal = GetIOStream()->Tell(&nCurPos);
XN_IS_STATUS_OK(nRetVal);
nRetVal = GetIOStream()->Seek(pStream->m_nNumFramesPos);
XN_IS_STATUS_OK(nRetVal);
nRetVal = GetDataPacker()->WriteProperty(StreamName, XN_STREAM_PROPERTY_NUMBER_OF_FRAMES, pStream->GetNumberOfFrames());
XN_IS_STATUS_OK(nRetVal);
// now seek back
nRetVal = GetIOStream()->Seek(nCurPos);
XN_IS_STATUS_OK(nRetVal);
// and destroy it
nRetVal = XnStreamWriterDevice::DestroyStream(StreamName);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnDeviceFileWriter::WriteStream(XnStreamData* pStreamOutput)
{
XnStatus nRetVal = XN_STATUS_OK;
// start the timer on the first data written
nRetVal = StartTimer();
XN_IS_STATUS_OK(nRetVal);
// fill in timestamp if needed
if (pStreamOutput->nTimestamp == 0)
{
XnUInt64 nNow;
xnOSQueryTimer(m_Timer, &nNow);
if (!IsHighResTimestamps())
{
nNow /= 1000;
}
pStreamOutput->nTimestamp = nNow;
}
// and write it down (using base)
nRetVal = XnStreamWriterDevice::WriteStream(pStreamOutput);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnDeviceFileWriter::Write(XnStreamDataSet* pStreamOutputSet)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pStreamOutputSet);
// get a list of objects in the set
XnStreamData* aOutputs[XN_DEVICE_BASE_MAX_STREAMS_COUNT];
XnUInt32 nCount = XN_DEVICE_BASE_MAX_STREAMS_COUNT;
nRetVal = XnStreamDataSetCopyToArray(pStreamOutputSet, aOutputs, &nCount);
XN_IS_STATUS_OK(nRetVal);
// BC: old applications wrote down all streams every frame, even if no new data. This might
// cause some of the streams to have timestamp 0, while other have a real timestamp.
// In this case, remove these frames. However, we need to check - if all timestamps
// are 0, then we'll fill it up by ourselves.
XnBool bSomeHasTimestamps = FALSE;
for (XnUInt32 i = 0; i < nCount; ++i)
{
if (aOutputs[i]->nTimestamp != 0)
{
bSomeHasTimestamps = TRUE;
break;
}
}
if (bSomeHasTimestamps)
{
// remove all the ones with zero timestamp
for (XnUInt32 i = 0; i < nCount; ++i)
{
if (aOutputs[i]->nTimestamp == 0)
{
aOutputs[i]->bIsNew = FALSE;
}
}
}
// OK. write it down using base
nRetVal = XnStreamWriterDevice::Write(pStreamOutputSet);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnDeviceFileWriter::StartTimer()
{
XnStatus nRetVal = XN_STATUS_OK;
if (!m_bTimerStarted)
{
nRetVal = xnOSStartHighResTimer(&m_Timer);
XN_IS_STATUS_OK(nRetVal);
m_bTimerStarted = TRUE;
}
return (XN_STATUS_OK);
}
XnStatus XnDeviceFileWriter::CreateStreamModule(const XnChar* StreamType, const XnChar* StreamName, XnDeviceModuleHolder** ppStreamHolder)
{
XnFileWriterStream* pStream;
XN_VALIDATE_NEW(pStream, XnFileWriterStream, StreamType, StreamName, GetDataPacker());
XnStreamDeviceStreamHolder* pHolder = XN_NEW(XnStreamDeviceStreamHolder, pStream, FALSE);
if (pHolder == NULL)
{
XN_DELETE(pStream);
return XN_STATUS_ALLOC_FAILED;
}
*ppStreamHolder = pHolder;
return (XN_STATUS_OK);
}
void XnDeviceFileWriter::DestroyStreamModule(XnDeviceModuleHolder* pStreamHolder)
{
XN_DELETE(pStreamHolder->GetModule());
XN_DELETE(pStreamHolder);
}
XnStatus XnDeviceFileWriter::CreateIOStreamImpl(const XnChar* strConnectionString, XnIOStream*& pStream)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_NEW_AND_INIT(pStream, XnIOFileStream, strConnectionString, XN_OS_FILE_WRITE | XN_OS_FILE_TRUNCATE);
// write down the magic
nRetVal = pStream->WriteData((const XnUChar*)XN_DEVICE_FILE_MAGIC_V4, (XnUInt32)strlen(XN_DEVICE_FILE_MAGIC_V4));
if (nRetVal != XN_STATUS_OK)
{
XN_DELETE(pStream);
pStream = NULL;
return (nRetVal);
}
return (XN_STATUS_OK);
}
void XnDeviceFileWriter::DestroyIOStreamImpl(XnIOStream* pStream)
{
pStream->Free();
XN_DELETE(pStream);
}
XnStatus XnDeviceFileWriter::FindStream(const XnChar* strName, XnFileWriterStream** ppStream)
{
XnStatus nRetVal = XN_STATUS_OK;
XnStreamDeviceStreamHolder* pHolder = NULL;
nRetVal = XnStreamWriterDevice::FindStream(strName, &pHolder);
XN_IS_STATUS_OK(nRetVal);
*ppStream = (XnFileWriterStream*)pHolder->GetStream();
return (XN_STATUS_OK);
}