forked from IntelRealSense/librealsense
-
Notifications
You must be signed in to change notification settings - Fork 0
/
record_device.cpp
441 lines (397 loc) · 16.8 KB
/
record_device.cpp
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
// License: Apache 2.0. See LICENSE file in root directory.
// Copyright(c) 2017 Intel Corporation. All Rights Reserved.
#include <core/debug.h>
#include <core/motion.h>
#include <core/advanced_mode.h>
#include "record_device.h"
#include "l500/l500-depth.h"
using namespace librealsense;
librealsense::record_device::record_device(std::shared_ptr<librealsense::device_interface> device,
std::shared_ptr<librealsense::device_serializer::writer> serializer):
m_write_thread([](){return std::make_shared<dispatcher>(std::numeric_limits<unsigned int>::max());}),
m_is_recording(true),
m_record_pause_time(0)
{
if (device == nullptr)
{
throw invalid_value_exception("device is null");
}
if (serializer == nullptr)
{
throw invalid_value_exception("serializer is null");
}
m_device = device;
m_ros_writer = serializer;
(*m_write_thread)->start(); //Start thread before creating the sensors (since they might write right away)
m_sensors = create_record_sensors(m_device);
LOG_DEBUG("Created record_device");
}
std::vector<std::shared_ptr<librealsense::record_sensor>> librealsense::record_device::create_record_sensors(std::shared_ptr<librealsense::device_interface> device)
{
std::vector<std::shared_ptr<librealsense::record_sensor>> record_sensors;
for (size_t sensor_index = 0; sensor_index < device->get_sensors_count(); sensor_index++)
{
auto& live_sensor = device->get_sensor(sensor_index);
auto recording_sensor = std::make_shared<librealsense::record_sensor>(*this, live_sensor);
m_on_notification_token = recording_sensor->on_notification += [this, recording_sensor, sensor_index](const notification& n) { write_notification(sensor_index, n); };
auto on_error = [recording_sensor](const std::string& s) {recording_sensor->stop_with_error(s); };
m_on_frame_token = recording_sensor->on_frame += [this, recording_sensor, sensor_index, on_error](frame_holder f) { write_data(sensor_index, std::move(f), on_error); };
m_on_extension_change_token = recording_sensor->on_extension_change += [this, recording_sensor, sensor_index, on_error](rs2_extension ext, std::shared_ptr<extension_snapshot> snapshot) { write_sensor_extension_snapshot(sensor_index, ext, snapshot, on_error); };
recording_sensor->init(); //Calling init AFTER register to the above events
record_sensors.emplace_back(recording_sensor);
}
return record_sensors;
}
librealsense::record_device::~record_device()
{
for (auto&& s : m_sensors)
{
s->on_notification -= m_on_notification_token;
s->on_frame -= m_on_frame_token;
s->on_extension_change -= m_on_extension_change_token;
s->disable_recording();
}
if ((*m_write_thread)->flush() == false)
{
LOG_ERROR("Error - timeout waiting for flush, possible deadlock detected");
}
(*m_write_thread)->stop();
//Just in case someone still holds a reference to the sensors,
// we make sure that they will not try to record anything
m_sensors.clear();
}
std::shared_ptr<context> librealsense::record_device::get_context() const
{
return m_device->get_context();
}
librealsense::sensor_interface& librealsense::record_device::get_sensor(size_t i)
{
return *(m_sensors.at(i));
}
size_t librealsense::record_device::get_sensors_count() const
{
return m_sensors.size();
}
void librealsense::record_device::write_header()
{
auto device_extensions_md = get_extensions_snapshots(m_device.get());
LOG_DEBUG("Created device snapshot with " << device_extensions_md.get_snapshots().size() << " snapshots");
std::vector<device_serializer::sensor_snapshot> sensors_snapshot;
for (size_t j = 0; j < m_device->get_sensors_count(); ++j)
{
auto& sensor = m_device->get_sensor(j);
auto sensor_extensions_snapshots = get_extensions_snapshots(&sensor);
sensors_snapshot.emplace_back(static_cast<uint32_t>(j), sensor_extensions_snapshots);
LOG_DEBUG("Created sensor " << j << " snapshot with " << device_extensions_md.get_snapshots().size() << " snapshots");
}
m_ros_writer->write_device_description({ device_extensions_md, sensors_snapshot, {/*extrinsics are written by ros_writer*/} });
}
//Returns the time relative to beginning of the recording
std::chrono::nanoseconds librealsense::record_device::get_capture_time() const
{
if (m_capture_time_base.time_since_epoch() == std::chrono::nanoseconds::zero())
{
return std::chrono::nanoseconds::zero();
}
auto now = std::chrono::high_resolution_clock::now();
return (now - m_capture_time_base) - m_record_pause_time;
}
void librealsense::record_device::write_data(size_t sensor_index, librealsense::frame_holder frame, std::function<void(std::string const&)> on_error)
{
//write_data is called from the sensors, when the live sensor raises a frame
LOG_DEBUG("write frame " << (frame ? std::to_string(frame.frame->get_frame_number()) : "") << " from sensor " << sensor_index);
std::call_once(m_first_call_flag, [this]()
{
initialize_recording();
});
//TODO: restore: uint64_t data_size = frame.frame->get_frame_data_size();
uint64_t cached_data_size = m_cached_data_size; //TODO: restore: (+ data_size)
if (cached_data_size > MAX_CACHED_DATA_SIZE)
{
LOG_WARNING("Recorder reached maximum cache size, frame dropped");
on_error("Recorder reached maximum cache size, frame dropped");
return;
}
m_cached_data_size = cached_data_size;
auto capture_time = get_capture_time();
//TODO: remove usage of shared pointer when frame_holder is copyable
auto frame_holder_ptr = std::make_shared<frame_holder>();
*frame_holder_ptr = std::move(frame);
(*m_write_thread)->invoke([this, frame_holder_ptr, sensor_index, capture_time/*, data_size*/, on_error](dispatcher::cancellable_timer t) {
if (m_is_recording == false)
{
return; //Recording is paused
}
std::call_once(m_first_frame_flag, [&]()
{
try
{
write_header();
}
catch (const std::exception& e)
{
LOG_ERROR("Failed to write header. " << e.what());
on_error(to_string() << "Failed to write header. " << e.what());
}
});
try
{
const uint32_t device_index = 0;
auto stream_type = frame_holder_ptr->frame->get_stream()->get_stream_type();
auto stream_index = static_cast<uint32_t>(frame_holder_ptr->frame->get_stream()->get_stream_index());
m_ros_writer->write_frame({ device_index, static_cast<uint32_t>(sensor_index), stream_type, stream_index }, capture_time, std::move(*frame_holder_ptr));
//TODO: restore: std::lock_guard<std::mutex> locker(m_mutex); m_cached_data_size -= data_size;
}
catch(std::exception& e)
{
on_error(to_string() << "Failed to write frame. " << e.what());
}
});
}
const std::string& librealsense::record_device::get_info(rs2_camera_info info) const
{
return m_device->get_info(info);
}
bool librealsense::record_device::supports_info(rs2_camera_info info) const
{
return m_device->supports_info(info);
}
const librealsense::sensor_interface& librealsense::record_device::get_sensor(size_t i) const
{
return *m_sensors.at(i);
}
void librealsense::record_device::hardware_reset()
{
m_device->hardware_reset();
}
template <typename T, typename Ext>
void librealsense::record_device::try_add_snapshot(T* extendable, device_serializer::snapshot_collection& snapshots)
{
auto api = dynamic_cast<recordable<Ext>*>(extendable);
if (api != nullptr)
{
std::shared_ptr<Ext> p;
try
{
api->create_snapshot(p);
auto snapshot = std::dynamic_pointer_cast<extension_snapshot>(p);
if (snapshot != nullptr)
{
snapshots[TypeToExtension<Ext>::value] = snapshot;
LOG_INFO("Added snapshot of type: " << TypeToExtension<Ext>::to_string());
}
else
{
LOG_ERROR("Failed to downcast snapshot of type " << TypeToExtension<Ext>::to_string());
}
}
catch (const std::exception& e)
{
LOG_ERROR("Failed to add snapshot of type " << TypeToExtension<Ext>::to_string() << ". Exception: " << e.what());
}
}
}
/**
* Go over the extendable instance and find all extensions
* @tparam T
* @param extendable
* @return
*/
template<typename T>
device_serializer::snapshot_collection librealsense::record_device::get_extensions_snapshots(T* extendable)
{
//No support for extensions with more than a single type - i.e every extension has exactly one type in rs2_extension
device_serializer::snapshot_collection snapshots;
for (int i = 0; i < static_cast<int>(RS2_EXTENSION_COUNT ); ++i)
{
rs2_extension ext = static_cast<rs2_extension>(i);
switch (ext)
{
case RS2_EXTENSION_DEBUG : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_DEBUG >::type>(extendable, snapshots); break;
case RS2_EXTENSION_INFO : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_INFO >::type>(extendable, snapshots); break;
case RS2_EXTENSION_OPTIONS : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_OPTIONS >::type>(extendable, snapshots); break;
//case RS2_EXTENSION_VIDEO : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_VIDEO >::type>(extendable, snapshots); break;
//case RS2_EXTENSION_ROI : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_ROI >::type>(extendable, snapshots); break;
case RS2_EXTENSION_DEPTH_SENSOR : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_DEPTH_SENSOR >::type>(extendable, snapshots); break;
case RS2_EXTENSION_L500_DEPTH_SENSOR : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_L500_DEPTH_SENSOR >::type>(extendable, snapshots); break;
case RS2_EXTENSION_DEPTH_STEREO_SENSOR: try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_DEPTH_STEREO_SENSOR >::type>(extendable, snapshots); break;
//case RS2_EXTENSION_ADVANCED_MODE : try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_ADVANCED_MODE >::type>(extendable, snapshots); break;
case RS2_EXTENSION_RECOMMENDED_FILTERS: try_add_snapshot<T, ExtensionToType<RS2_EXTENSION_RECOMMENDED_FILTERS >::type>(extendable, snapshots); break;
case RS2_EXTENSION_VIDEO_FRAME : break;
case RS2_EXTENSION_MOTION_FRAME : break;
case RS2_EXTENSION_COMPOSITE_FRAME : break;
case RS2_EXTENSION_POINTS : break;
case RS2_EXTENSION_RECORD : break;
case RS2_EXTENSION_PLAYBACK : break;
case RS2_EXTENSION_COUNT : break;
case RS2_EXTENSION_UNKNOWN : break;
default:
LOG_WARNING("Extensions type is unhandled: " << get_string(ext));
}
}
return snapshots;
}
template <typename T>
void librealsense::record_device::write_device_extension_changes(const T& ext)
{
std::shared_ptr<T> snapshot;
ext.create_snapshot(snapshot);
auto ext_snapshot = As<extension_snapshot>(snapshot);
if (!ext_snapshot)
{
assert(0);
return;
}
auto capture_time = get_capture_time();
(*m_write_thread)->invoke([this, capture_time, ext_snapshot](dispatcher::cancellable_timer t)
{
try
{
const uint32_t device_index = 0;
m_ros_writer->write_snapshot(device_index, capture_time, TypeToExtension<T>::value, ext_snapshot);
}
catch (const std::exception& e)
{
LOG_ERROR(e.what());
}
});
}
void record_device::write_sensor_extension_snapshot(size_t sensor_index,
rs2_extension ext,
std::shared_ptr<extension_snapshot> snapshot,
std::function<void(std::string const&)> on_error)
{
auto capture_time = get_capture_time();
(*m_write_thread)->invoke([this, sensor_index, capture_time, ext, snapshot, on_error](dispatcher::cancellable_timer t)
{
try
{
const uint32_t device_index = 0;
m_ros_writer->write_snapshot({ device_index, static_cast<uint32_t>(sensor_index) }, capture_time, ext, snapshot);
}
catch (const std::exception& e)
{
on_error(e.what());
}
});
}
void librealsense::record_device::write_notification(size_t sensor_index, const notification& n)
{
auto capture_time = get_capture_time();
(*m_write_thread)->invoke([this, sensor_index, capture_time, n](dispatcher::cancellable_timer t)
{
try
{
const uint32_t device_index = 0;
m_ros_writer->write_notification({ device_index, static_cast<uint32_t>(sensor_index) }, capture_time, n);
}
catch (const std::exception& e)
{
LOG_ERROR(e.what());
}
});
}
template <rs2_extension E, typename P>
bool librealsense::record_device::extend_to_aux(std::shared_ptr<P> p, void** ext)
{
using EXT_TYPE = typename ExtensionToType<E>::type;
auto ptr = As<EXT_TYPE>(p);
if (!ptr)
return false;
if (auto recordable = As<librealsense::recordable<EXT_TYPE>>(p))
{
recordable->enable_recording([this](const EXT_TYPE& ext) {
write_device_extension_changes(ext);
});
}
*ext = ptr.get();
return true;
}
bool librealsense::record_device::extend_to(rs2_extension extension_type, void** ext)
{
/**************************************************************************************
A record device wraps the live device, and should have the same functionalities.
To do that, the record device implements the extendable_interface and when the user tries to
treat the device as some extension, this function is called, and we return a pointer to the
live device's extension. If that extension is a recordable one, we also enable_recording for it.
**************************************************************************************/
switch (extension_type)
{
case RS2_EXTENSION_INFO: // [[fallthrough]]
case RS2_EXTENSION_RECORD:
*ext = this;
return true;
case RS2_EXTENSION_OPTIONS : return extend_to_aux<RS2_EXTENSION_OPTIONS >(m_device, ext);
case RS2_EXTENSION_ADVANCED_MODE : return extend_to_aux<RS2_EXTENSION_ADVANCED_MODE >(m_device, ext);
case RS2_EXTENSION_DEBUG : return extend_to_aux<RS2_EXTENSION_DEBUG >(m_device, ext);
//Other cases are not extensions that we expect a device to have.
default:
LOG_WARNING("Extensions type is unhandled: " << get_string(extension_type));
return false;
}
}
void librealsense::record_device::pause_recording()
{
LOG_INFO("Record Pause called");
(*m_write_thread)->invoke([this](dispatcher::cancellable_timer c)
{
LOG_DEBUG("Record pause invoked");
if (m_is_recording == false)
return;
//unregister_callbacks();
m_time_of_pause = std::chrono::high_resolution_clock::now();
m_is_recording = false;
LOG_DEBUG("Time of pause: " << m_time_of_pause.time_since_epoch().count());
});
(*m_write_thread)->flush();
LOG_INFO("Record paused");
}
void librealsense::record_device::resume_recording()
{
LOG_INFO("Record resume called");
(*m_write_thread)->invoke([this](dispatcher::cancellable_timer c)
{
LOG_DEBUG("Record resume invoked");
if (m_is_recording)
return;
m_record_pause_time += (std::chrono::high_resolution_clock::now() - m_time_of_pause);
//register_callbacks();
m_is_recording = true;
LOG_DEBUG("Total pause time: " << m_record_pause_time.count());
LOG_INFO("Record resumed");
});
}
const std::string& librealsense::record_device::get_filename() const
{
return m_ros_writer->get_file_name();
}
platform::backend_device_group record_device::get_device_data() const
{
return m_device->get_device_data();
}
std::shared_ptr<matcher> record_device::create_matcher(const frame_holder& frame) const
{
return m_device->create_matcher(frame);
}
void record_device::initialize_recording()
{
//Expected to be called once when recording to file actually starts
m_capture_time_base = std::chrono::high_resolution_clock::now();
m_cached_data_size = 0;
}
void record_device::stop_gracefully(to_string error_msg)
{
for (auto&& sensor : m_sensors)
{
sensor->stop();
sensor->close();
}
}
std::pair<uint32_t, rs2_extrinsics> record_device::get_extrinsics(const stream_interface& stream) const
{
return m_device->get_extrinsics(stream);
}
bool record_device::is_valid() const
{
return m_device->is_valid();
}