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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
|
/****************************************************************************
* *
* PrimeSense Sensor 5.x Alpha *
* Copyright (C) 2011 PrimeSense Ltd. *
* *
* This file is part of PrimeSense Sensor. *
* *
* PrimeSense Sensor 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. *
* *
* PrimeSense Sensor 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 PrimeSense Sensor. If not, see <http://www.gnu.org/licenses/>.*
* *
****************************************************************************/
//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include "XnStreamWriterDevice.h"
#include "XnStreamWriterStream.h"
//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
XnStreamWriterDevice::XnStreamWriterDevice(const XnChar* strName, XnUInt32 nInternalBufferSize) :
XnStreamDevice(strName, nInternalBufferSize)
{
}
XnStreamWriterDevice::~XnStreamWriterDevice()
{
}
XnStatus XnStreamWriterDevice::InitImpl(const XnDeviceConfig* pDeviceConfig)
{
XnStatus nRetVal = XN_STATUS_OK;
// first init self
nRetVal = XnDeviceBase::InitImpl(pDeviceConfig);
XN_IS_STATUS_OK(nRetVal);
nRetVal = InitPacker(pDeviceConfig->cpConnectionString);
XN_IS_STATUS_OK(nRetVal);
// now take initial state
XnPropertySet* pSet;
nRetVal = XnPropertySetCreate(&pSet);
XN_IS_STATUS_OK(nRetVal);
nRetVal = GetAllProperties(pSet);
// and write it down to stream
if (nRetVal == XN_STATUS_OK)
{
nRetVal = GetDataPacker()->WritePropertySet(pSet);
}
XnPropertySetDestroy(&pSet);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::Destroy()
{
XnStatus nRetVal = XN_STATUS_OK;
nRetVal = GetDataPacker()->WriteEnd();
XN_IS_STATUS_OK(nRetVal);
XnStreamDevice::Destroy();
XnStreamDevice::Destroy();
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::CreateStream(const XnChar* StreamType, const XnChar* StreamName /* = NULL */, const XnPropertySet* pInitialValues /* = NULL */)
{
XnStatus nRetVal = XN_STATUS_OK;
// create the stream
nRetVal = XnDeviceBase::CreateStream(StreamType, StreamName, pInitialValues);
XN_IS_STATUS_OK(nRetVal);
XnStreamDeviceStreamHolder* pStreamHolder;
nRetVal = FindStream(StreamName, &pStreamHolder);
XN_IS_STATUS_OK(nRetVal);
// now set default compression
nRetVal = pStreamHolder->GetStream()->SetProperty(XN_STREAM_PROPERTY_COMPRESSION, (XnUInt64)GetDefaultCompression(StreamType));
XN_IS_STATUS_OK(nRetVal);
// get a list of this stream properties
XnPropertySet* pStreamProps;
nRetVal = XnPropertySetCreate(&pStreamProps);
XN_IS_STATUS_OK(nRetVal);
nRetVal = pStreamHolder->GetStream()->GetAllProperties(pStreamProps);
if (nRetVal != XN_STATUS_OK)
{
XnPropertySetDestroy(&pStreamProps);
return (nRetVal);
}
// and write it to file
nRetVal = GetDataPacker()->WriteNewStream(StreamType, StreamName, pStreamProps);
if (nRetVal != XN_STATUS_OK)
{
XnPropertySetDestroy(&pStreamProps);
XnDeviceBase::DestroyStream(StreamName);
return (nRetVal);
}
nRetVal = XnPropertySetDestroy(&pStreamProps);
if (nRetVal != XN_STATUS_OK)
{
XnDeviceBase::DestroyStream(StreamName);
return (nRetVal);
}
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::DestroyStream(const XnChar* StreamName)
{
XnStatus nRetVal = XN_STATUS_OK;
// destroy it
nRetVal = XnDeviceBase::DestroyStream(StreamName);
XN_IS_STATUS_OK(nRetVal);
// write down that the stream was removed.
nRetVal = GetDataPacker()->WriteStreamRemoved(StreamName);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::WriteStream(XnStreamData* pStreamOutput)
{
XnStatus nRetVal = XN_STATUS_OK;
XN_VALIDATE_INPUT_PTR(pStreamOutput);
// find the stream
XnStreamDeviceStreamHolder* pStreamHolder;
nRetVal = FindStream(pStreamOutput->StreamName, &pStreamHolder);
XN_IS_STATUS_OK(nRetVal);
if (!pStreamOutput->bIsNew)
{
// no need to write down the data
return XN_STATUS_OK;
}
// write it to stream
nRetVal = XnDeviceBase::WriteStream(pStreamOutput);
XN_IS_STATUS_OK(nRetVal);
XnStreamWriterStream* pStream = (XnStreamWriterStream*)pStreamHolder->GetStream();
// and to file
nRetVal = pStream->GetDataPacker()->WriteStreamData(pStreamOutput, pStreamHolder->GetCodec());
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
void XnStreamWriterDevice::SortStreamOutputsByTimestamp(XnStreamData* apOutputs[], XnUInt32 nCount)
{
// use bubble sort
XnUInt32 n = nCount;
XnBool bSwapped;
XnStreamData* pTemp;
if (nCount == 0)
return;
do
{
bSwapped = FALSE;
for (XnUInt32 i = 0; i < n - 1; ++i)
{
if (apOutputs[i]->nTimestamp > apOutputs[i+1]->nTimestamp)
{
// swap
pTemp = apOutputs[i];
apOutputs[i] = apOutputs[i+1];
apOutputs[i+1] = pTemp;
bSwapped = TRUE;
}
}
n -= 1;
} while (bSwapped);
}
XnStatus XnStreamWriterDevice::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);
// sort them out by timestamp
SortStreamOutputsByTimestamp(aOutputs, nCount);
// now write them one by one
for (XnUInt32 i = 0; i < nCount; ++i)
{
nRetVal = WriteStream(aOutputs[i]);
XN_IS_STATUS_OK(nRetVal);
}
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::SetProperty(const XnChar* ModuleName, const XnChar* PropertyName, XnUInt64 nValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XnDeviceModule* pModule;
nRetVal = FindModule(ModuleName, &pModule);
XN_IS_STATUS_OK(nRetVal);
// this is just a writer device. It does what it's told (no checks)
nRetVal = pModule->UnsafeUpdateProperty(PropertyName, nValue);
XN_IS_STATUS_OK(nRetVal);
GetDataPacker()->WriteProperty(ModuleName, PropertyName, nValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::SetProperty(const XnChar* ModuleName, const XnChar* PropertyName, XnDouble dValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XnDeviceModule* pModule;
nRetVal = FindModule(ModuleName, &pModule);
XN_IS_STATUS_OK(nRetVal);
// this is just a writer device. It does what it's told (no checks)
nRetVal = pModule->UnsafeUpdateProperty(PropertyName, dValue);
XN_IS_STATUS_OK(nRetVal);
GetDataPacker()->WriteProperty(ModuleName, PropertyName, dValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::SetProperty(const XnChar* ModuleName, const XnChar* PropertyName, const XnChar* strValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XnDeviceModule* pModule;
nRetVal = FindModule(ModuleName, &pModule);
XN_IS_STATUS_OK(nRetVal);
// this is just a writer device. It does what it's told (no checks)
nRetVal = pModule->UnsafeUpdateProperty(PropertyName, strValue);
XN_IS_STATUS_OK(nRetVal);
GetDataPacker()->WriteProperty(ModuleName, PropertyName, strValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::SetProperty(const XnChar* ModuleName, const XnChar* PropertyName, const XnGeneralBuffer& gbValue)
{
XnStatus nRetVal = XN_STATUS_OK;
XnDeviceModule* pModule;
nRetVal = FindModule(ModuleName, &pModule);
XN_IS_STATUS_OK(nRetVal);
// this is just a writer device. It does what it's told (no checks)
nRetVal = pModule->UnsafeUpdateProperty(PropertyName, gbValue);
XN_IS_STATUS_OK(nRetVal);
GetDataPacker()->WriteProperty(ModuleName, PropertyName, gbValue);
XN_IS_STATUS_OK(nRetVal);
return (XN_STATUS_OK);
}
XnStatus XnStreamWriterDevice::CreateStreamModule(const XnChar* StreamType, const XnChar* StreamName, XnDeviceModuleHolder** ppStreamHolder)
{
XnStreamWriterStream* pStream;
XN_VALIDATE_NEW(pStream, XnStreamWriterStream, 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 XnStreamWriterDevice::DestroyStreamModule(XnDeviceModuleHolder* pStreamHolder)
{
XN_DELETE(pStreamHolder->GetModule());
XN_DELETE(pStreamHolder);
}
XnCompressionFormats XnStreamWriterDevice::GetDefaultCompression(const XnChar* strType)
{
if (strcmp(strType, XN_STREAM_TYPE_DEPTH) == 0)
return XN_COMPRESSION_16Z_EMB_TABLE;
else if (strcmp(strType, XN_STREAM_TYPE_IMAGE) == 0)
return XN_COMPRESSION_JPEG;
else
return XN_COMPRESSION_NONE;
}
|