]> sigrok.org Git - pulseview.git/blame - pv/session.cpp
binding::Device: Catch errors listing the config keys
[pulseview.git] / pv / session.cpp
CommitLineData
2953961c 1/*
b3f22de0 2 * This file is part of the PulseView project.
2953961c 3 *
1bc6525b 4 * Copyright (C) 2012-14 Joel Holdsworth <joel@airwebreathe.org.uk>
2953961c
JH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
269528f5 21#ifdef ENABLE_DECODE
4e5a4405 22#include <libsigrokdecode/libsigrokdecode.h>
269528f5 23#endif
4e5a4405 24
f65cd27b 25#include "session.hpp"
2953961c 26
2acdb232 27#include "devicemanager.hpp"
119aff65 28
2acdb232 29#include "data/analog.hpp"
f3d66e52 30#include "data/analogsegment.hpp"
2acdb232
JH
31#include "data/decoderstack.hpp"
32#include "data/logic.hpp"
f3d66e52 33#include "data/logicsegment.hpp"
2acdb232 34#include "data/decode/decoder.hpp"
82c7f640 35
da30ecb7
JH
36#include "devices/hardwaredevice.hpp"
37#include "devices/sessionfile.hpp"
38
2acdb232
JH
39#include "view/analogsignal.hpp"
40#include "view/decodetrace.hpp"
41#include "view/logicsignal.hpp"
28a4c9c5 42
3b68d03d
JH
43#include <cassert>
44#include <mutex>
e92cd4e4
JH
45#include <stdexcept>
46
728e5ef7
JH
47#include <sys/stat.h>
48
79efbc53
JH
49#include <QDebug>
50
fe3a1c21 51#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 52
aca64cac
JH
53using boost::shared_lock;
54using boost::shared_mutex;
55using boost::unique_lock;
56
f9abf97e 57using std::dynamic_pointer_cast;
d2344534 58using std::function;
3b68d03d 59using std::lock_guard;
d873f4d6 60using std::list;
819f4c25 61using std::map;
aca64cac 62using std::mutex;
02412f0b 63using std::set;
f9abf97e 64using std::shared_ptr;
819f4c25 65using std::string;
78b0af3e 66using std::unordered_set;
819f4c25 67using std::vector;
28a4c9c5 68
e8d00928
ML
69using sigrok::Analog;
70using sigrok::Channel;
71using sigrok::ChannelType;
72using sigrok::ConfigKey;
73using sigrok::DatafeedCallbackFunction;
e8d00928 74using sigrok::Error;
e8d00928
ML
75using sigrok::Header;
76using sigrok::Logic;
77using sigrok::Meta;
78using sigrok::Packet;
79using sigrok::PacketPayload;
80using sigrok::Session;
81using sigrok::SessionDevice;
82
83using Glib::VariantBase;
84using Glib::Variant;
51e77110 85
e8d00928 86namespace pv {
2b81ae46 87Session::Session(DeviceManager &device_manager) :
8dbbc7f0 88 device_manager_(device_manager),
ff008de6
JH
89 capture_state_(Stopped),
90 cur_samplerate_(0)
2953961c 91{
d873f4d6 92 set_default_device();
2953961c
JH
93}
94
2b81ae46 95Session::~Session()
2953961c 96{
04463625 97 // Stop and join to the thread
5b7cf66c 98 stop_capture();
2953961c
JH
99}
100
2b81ae46 101DeviceManager& Session::device_manager()
4cb0b033 102{
8dbbc7f0 103 return device_manager_;
4cb0b033
JH
104}
105
2b81ae46 106const DeviceManager& Session::device_manager() const
4cb0b033 107{
8dbbc7f0 108 return device_manager_;
4cb0b033
JH
109}
110
da30ecb7 111shared_ptr<sigrok::Session> Session::session() const
1f4caa77 112{
da30ecb7
JH
113 if (!device_)
114 return shared_ptr<sigrok::Session>();
115 return device_->session();
1f4caa77
JH
116}
117
da30ecb7 118shared_ptr<devices::Device> Session::device() const
dc0867ff 119{
8dbbc7f0 120 return device_;
dc0867ff
JH
121}
122
da30ecb7 123void Session::set_device(shared_ptr<devices::Device> device)
d64d1596 124{
da30ecb7
JH
125 assert(device);
126
82596f46
JH
127 // Ensure we are not capturing before setting the device
128 stop_capture();
129
da30ecb7
JH
130 device_ = std::move(device);
131 device_->create();
132 device_->session()->add_datafeed_callback([=]
133 (shared_ptr<sigrok::Device> device, shared_ptr<Packet> packet) {
134 data_feed_in(device, packet);
135 });
da30ecb7 136 update_signals(device_);
ae2d1bc5 137
8dbbc7f0 138 decode_traces_.clear();
85843b14 139
20f81a58 140 device_selected();
ae2d1bc5 141}
85843b14 142
2b81ae46 143void Session::set_default_device()
6fd0b639 144{
da30ecb7 145 const list< shared_ptr<devices::HardwareDevice> > &devices =
8dbbc7f0 146 device_manager_.devices();
6fd0b639 147
da30ecb7
JH
148 if (devices.empty())
149 return;
dc0867ff 150
da30ecb7
JH
151 // Try and find the demo device and select that by default
152 const auto iter = std::find_if(devices.begin(), devices.end(),
153 [] (const shared_ptr<devices::HardwareDevice> &d) {
154 return d->hardware_device()->driver()->name() ==
155 "demo"; });
156 set_device((iter == devices.end()) ? devices.front() : *iter);
dc0867ff
JH
157}
158
2b81ae46 159Session::capture_state Session::get_capture_state() const
5b7cf66c 160{
8dbbc7f0
JH
161 lock_guard<mutex> lock(sampling_mutex_);
162 return capture_state_;
5b7cf66c
JH
163}
164
2b81ae46 165void Session::start_capture(function<void (const QString)> error_handler)
2e2946fe 166{
5b7cf66c
JH
167 stop_capture();
168
6ac6242b 169 // Check that at least one channel is enabled
da30ecb7
JH
170 assert(device_);
171 const std::shared_ptr<sigrok::Device> device = device_->device();
172 assert(device);
173 auto channels = device->channels();
e8d00928
ML
174 bool enabled = std::any_of(channels.begin(), channels.end(),
175 [](shared_ptr<Channel> channel) { return channel->enabled(); });
9c48fa57 176
e8d00928 177 if (!enabled) {
4871ed92 178 error_handler(tr("No channels enabled."));
9c48fa57
JH
179 return;
180 }
181
182 // Begin the session
8dbbc7f0 183 sampling_thread_ = std::thread(
2b81ae46 184 &Session::sample_thread_proc, this, device_,
19adbc2c 185 error_handler);
2e2946fe
JH
186}
187
2b81ae46 188void Session::stop_capture()
5b7cf66c 189{
04463625 190 if (get_capture_state() != Stopped)
da30ecb7 191 device_->stop();
5b7cf66c
JH
192
193 // Check that sampling stopped
8dbbc7f0
JH
194 if (sampling_thread_.joinable())
195 sampling_thread_.join();
5b7cf66c
JH
196}
197
2b81ae46 198set< shared_ptr<data::SignalData> > Session::get_data() const
02412f0b 199{
8dbbc7f0 200 shared_lock<shared_mutex> lock(signals_mutex_);
02412f0b 201 set< shared_ptr<data::SignalData> > data;
8dbbc7f0 202 for (const shared_ptr<view::Signal> sig : signals_) {
02412f0b
JH
203 assert(sig);
204 data.insert(sig->data());
205 }
206
207 return data;
208}
209
2b81ae46 210boost::shared_mutex& Session::signals_mutex() const
c3a740dd 211{
8dbbc7f0 212 return signals_mutex_;
c3a740dd
JH
213}
214
78b0af3e 215const unordered_set< shared_ptr<view::Signal> >& Session::signals() const
2e2946fe 216{
8dbbc7f0 217 return signals_;
2e2946fe
JH
218}
219
269528f5 220#ifdef ENABLE_DECODE
2b81ae46 221bool Session::add_decoder(srd_decoder *const dec)
82c7f640 222{
6ac6242b 223 map<const srd_channel*, shared_ptr<view::LogicSignal> > channels;
7491a29f 224 shared_ptr<data::DecoderStack> decoder_stack;
4e5a4405 225
e92cd4e4 226 try
82c7f640 227 {
8dbbc7f0 228 lock_guard<boost::shared_mutex> lock(signals_mutex_);
e0fc5810 229
4e5a4405 230 // Create the decoder
7491a29f 231 decoder_stack = shared_ptr<data::DecoderStack>(
bdc5c3b0 232 new data::DecoderStack(*this, dec));
4e5a4405 233
6ac6242b
ML
234 // Make a list of all the channels
235 std::vector<const srd_channel*> all_channels;
8bd26d8b 236 for(const GSList *i = dec->channels; i; i = i->next)
6ac6242b 237 all_channels.push_back((const srd_channel*)i->data);
8bd26d8b 238 for(const GSList *i = dec->opt_channels; i; i = i->next)
6ac6242b 239 all_channels.push_back((const srd_channel*)i->data);
d2f46d27 240
6ac6242b
ML
241 // Auto select the initial channels
242 for (const srd_channel *pdch : all_channels)
8dbbc7f0 243 for (shared_ptr<view::Signal> s : signals_)
4e5a4405
JH
244 {
245 shared_ptr<view::LogicSignal> l =
246 dynamic_pointer_cast<view::LogicSignal>(s);
8bd26d8b 247 if (l && QString::fromUtf8(pdch->name).
27e8df22 248 toLower().contains(
0a47889b 249 l->name().toLower()))
6ac6242b 250 channels[pdch] = l;
4e5a4405 251 }
4e5a4405 252
7491a29f
JH
253 assert(decoder_stack);
254 assert(!decoder_stack->stack().empty());
255 assert(decoder_stack->stack().front());
6ac6242b 256 decoder_stack->stack().front()->set_channels(channels);
4e5a4405
JH
257
258 // Create the decode signal
b9329558 259 shared_ptr<view::DecodeTrace> d(
7491a29f 260 new view::DecodeTrace(*this, decoder_stack,
8dbbc7f0
JH
261 decode_traces_.size()));
262 decode_traces_.push_back(d);
82c7f640 263 }
e92cd4e4
JH
264 catch(std::runtime_error e)
265 {
266 return false;
267 }
268
82c7f640 269 signals_changed();
e92cd4e4 270
7491a29f
JH
271 // Do an initial decode
272 decoder_stack->begin_decode();
273
e92cd4e4 274 return true;
82c7f640
JH
275}
276
2b81ae46 277vector< shared_ptr<view::DecodeTrace> > Session::get_decode_signals() const
38eeddea 278{
8dbbc7f0
JH
279 shared_lock<shared_mutex> lock(signals_mutex_);
280 return decode_traces_;
38eeddea
JH
281}
282
2b81ae46 283void Session::remove_decode_signal(view::DecodeTrace *signal)
c51482b3 284{
8dbbc7f0 285 for (auto i = decode_traces_.begin(); i != decode_traces_.end(); i++)
c51482b3
JH
286 if ((*i).get() == signal)
287 {
8dbbc7f0 288 decode_traces_.erase(i);
c51482b3
JH
289 signals_changed();
290 return;
291 }
292}
269528f5 293#endif
c51482b3 294
2b81ae46 295void Session::set_capture_state(capture_state state)
6ac96c2e 296{
8dbbc7f0
JH
297 lock_guard<mutex> lock(sampling_mutex_);
298 const bool changed = capture_state_ != state;
299 capture_state_ = state;
2b49eeb0
JH
300 if(changed)
301 capture_state_changed(state);
6ac96c2e
JH
302}
303
da30ecb7 304void Session::update_signals(shared_ptr<devices::Device> device)
b087ba7f 305{
e8d00928 306 assert(device);
8dbbc7f0 307 assert(capture_state_ == Stopped);
b087ba7f 308
b087ba7f 309 // Detect what data types we will receive
da30ecb7 310 auto channels = device->device()->channels();
e8d00928
ML
311 unsigned int logic_channel_count = std::count_if(
312 channels.begin(), channels.end(),
313 [] (shared_ptr<Channel> channel) {
314 return channel->type() == ChannelType::LOGIC; });
b087ba7f 315
f3d66e52 316 // Create data containers for the logic data segments
b087ba7f 317 {
8dbbc7f0 318 lock_guard<mutex> data_lock(data_mutex_);
b087ba7f 319
3917ba77
JH
320 if (logic_channel_count == 0) {
321 logic_data_.reset();
322 } else if (!logic_data_ ||
323 logic_data_->num_channels() != logic_channel_count) {
8dbbc7f0 324 logic_data_.reset(new data::Logic(
6ac6242b 325 logic_channel_count));
8dbbc7f0 326 assert(logic_data_);
b087ba7f 327 }
b087ba7f
JH
328 }
329
330 // Make the Signals list
fbd3e234 331 {
8dbbc7f0 332 unique_lock<shared_mutex> lock(signals_mutex_);
b087ba7f 333
3917ba77 334 unordered_set< shared_ptr<view::Signal> > prev_sigs(signals_);
8dbbc7f0 335 signals_.clear();
b087ba7f 336
da30ecb7 337 for (auto channel : device->device()->channels()) {
39e680c2 338 shared_ptr<view::Signal> signal;
39e680c2 339
3917ba77
JH
340 // Find the channel in the old signals
341 const auto iter = std::find_if(
342 prev_sigs.cbegin(), prev_sigs.cend(),
343 [&](const shared_ptr<view::Signal> &s) {
344 return s->channel() == channel;
345 });
346 if (iter != prev_sigs.end()) {
347 // Copy the signal from the old set to the new
348 signal = *iter;
349 auto logic_signal = dynamic_pointer_cast<
350 view::LogicSignal>(signal);
351 if (logic_signal)
352 logic_signal->set_logic_data(
353 logic_data_);
354 } else {
355 // Create a new signal
356 switch(channel->type()->id()) {
357 case SR_CHANNEL_LOGIC:
358 signal = shared_ptr<view::Signal>(
359 new view::LogicSignal(*this,
360 device, channel,
361 logic_data_));
362 break;
363
364 case SR_CHANNEL_ANALOG:
365 {
366 shared_ptr<data::Analog> data(
367 new data::Analog());
368 signal = shared_ptr<view::Signal>(
369 new view::AnalogSignal(
370 *this, channel, data));
371 break;
372 }
373
374 default:
375 assert(0);
376 break;
377 }
b087ba7f 378 }
39e680c2
JH
379
380 assert(signal);
78b0af3e 381 signals_.insert(signal);
b087ba7f 382 }
fbd3e234 383 }
b087ba7f
JH
384
385 signals_changed();
386}
387
2b81ae46 388shared_ptr<view::Signal> Session::signal_from_channel(
e8d00928 389 shared_ptr<Channel> channel) const
3ddcc083 390{
8dbbc7f0
JH
391 lock_guard<boost::shared_mutex> lock(signals_mutex_);
392 for (shared_ptr<view::Signal> sig : signals_) {
3ddcc083 393 assert(sig);
6ac6242b 394 if (sig->channel() == channel)
3ddcc083
JH
395 return sig;
396 }
397 return shared_ptr<view::Signal>();
398}
399
da30ecb7 400void Session::read_sample_rate(shared_ptr<sigrok::Device> device)
deef291c 401{
da30ecb7
JH
402 assert(device);
403 const auto keys = device->config_keys(ConfigKey::DEVICE_OPTIONS);
ed1d9d81 404 const auto iter = keys.find(ConfigKey::SAMPLERATE);
ff008de6 405 cur_samplerate_ = (iter != keys.end() &&
ed1d9d81
JH
406 (*iter).second.find(sigrok::GET) != (*iter).second.end()) ?
407 VariantBase::cast_dynamic<Variant<guint64>>(
408 device->config_get(ConfigKey::SAMPLERATE)).get() : 0;
deef291c
JH
409}
410
da30ecb7 411void Session::sample_thread_proc(shared_ptr<devices::Device> device,
f2edb557 412 function<void (const QString)> error_handler)
274d4f13 413{
e8d00928 414 assert(device);
f2edb557 415 assert(error_handler);
be73bdfa 416
da30ecb7
JH
417 const std::shared_ptr<sigrok::Device> sr_dev = device->device();
418 assert(sr_dev);
419 read_sample_rate(sr_dev);
274d4f13 420
ae2d1bc5 421 try {
da30ecb7 422 device_->session()->start();
e8d00928
ML
423 } catch(Error e) {
424 error_handler(e.what());
eec446e1
JH
425 return;
426 }
427
da30ecb7 428 set_capture_state(device_->session()->trigger() ?
07dcf561 429 AwaitingTrigger : Running);
eec446e1 430
da30ecb7 431 device_->run();
eec446e1 432 set_capture_state(Stopped);
1a2fe44c
JH
433
434 // Confirm that SR_DF_END was received
f3d66e52 435 if (cur_logic_segment_)
bb2cdfff
JH
436 {
437 qDebug("SR_DF_END was not received.");
438 assert(0);
439 }
eec446e1
JH
440}
441
da30ecb7 442void Session::feed_in_header()
eec446e1 443{
da30ecb7 444 read_sample_rate(device_->device());
be73bdfa
JH
445}
446
da30ecb7 447void Session::feed_in_meta(shared_ptr<Meta> meta)
be73bdfa 448{
e8d00928
ML
449 for (auto entry : meta->config()) {
450 switch (entry.first->id()) {
be73bdfa
JH
451 case SR_CONF_SAMPLERATE:
452 /// @todo handle samplerate changes
be73bdfa
JH
453 break;
454 default:
455 // Unknown metadata is not an error.
456 break;
457 }
aba1dd16 458 }
74043039
JH
459
460 signals_changed();
aba1dd16
JH
461}
462
2b81ae46 463void Session::feed_in_frame_begin()
82f50b10 464{
f3d66e52 465 if (cur_logic_segment_ || !cur_analog_segments_.empty())
82f50b10
JH
466 frame_began();
467}
468
2b81ae46 469void Session::feed_in_logic(shared_ptr<Logic> logic)
9c112671 470{
8dbbc7f0 471 lock_guard<mutex> lock(data_mutex_);
79efbc53 472
8dbbc7f0 473 if (!logic_data_)
9c112671 474 {
79efbc53
JH
475 qDebug() << "Unexpected logic packet";
476 return;
477 }
be73bdfa 478
f3d66e52 479 if (!cur_logic_segment_)
79efbc53 480 {
bb2cdfff 481 // This could be the first packet after a trigger
2b49eeb0
JH
482 set_capture_state(Running);
483
e8d00928 484 // Get sample limit.
da30ecb7
JH
485 assert(device_);
486 const std::shared_ptr<sigrok::Device> device =
487 device_->device();
488 assert(device);
489 const auto keys = device->config_keys(
ed1d9d81
JH
490 ConfigKey::DEVICE_OPTIONS);
491 const auto iter = keys.find(ConfigKey::LIMIT_SAMPLES);
492 const uint64_t sample_limit = (iter != keys.end() &&
493 (*iter).second.find(sigrok::GET) !=
494 (*iter).second.end()) ?
495 VariantBase::cast_dynamic<Variant<guint64>>(
da30ecb7 496 device->config_get(ConfigKey::LIMIT_SAMPLES)).get() : 0;
e8d00928 497
f3d66e52
JH
498 // Create a new data segment
499 cur_logic_segment_ = shared_ptr<data::LogicSegment>(
500 new data::LogicSegment(
ff008de6 501 logic, cur_samplerate_, sample_limit));
f3d66e52 502 logic_data_->push_segment(cur_logic_segment_);
82f50b10
JH
503
504 // @todo Putting this here means that only listeners querying
505 // for logic will be notified. Currently the only user of
506 // frame_began is DecoderStack, but in future we need to signal
507 // this after both analog and logic sweeps have begun.
508 frame_began();
9c112671
JH
509 }
510 else
511 {
f3d66e52
JH
512 // Append to the existing data segment
513 cur_logic_segment_->append_payload(logic);
9c112671
JH
514 }
515
1f374035 516 data_received();
9c112671
JH
517}
518
2b81ae46 519void Session::feed_in_analog(shared_ptr<Analog> analog)
aba1dd16 520{
8dbbc7f0 521 lock_guard<mutex> lock(data_mutex_);
79efbc53 522
e8d00928
ML
523 const vector<shared_ptr<Channel>> channels = analog->channels();
524 const unsigned int channel_count = channels.size();
525 const size_t sample_count = analog->num_samples() / channel_count;
526 const float *data = analog->data_pointer();
bb2cdfff 527 bool sweep_beginning = false;
be73bdfa 528
e8d00928 529 for (auto channel : channels)
79efbc53 530 {
f3d66e52 531 shared_ptr<data::AnalogSegment> segment;
2b49eeb0 532
f3d66e52
JH
533 // Try to get the segment of the channel
534 const map< shared_ptr<Channel>, shared_ptr<data::AnalogSegment> >::
535 iterator iter = cur_analog_segments_.find(channel);
536 if (iter != cur_analog_segments_.end())
537 segment = (*iter).second;
bb2cdfff
JH
538 else
539 {
f3d66e52 540 // If no segment was found, this means we havn't
bb2cdfff 541 // created one yet. i.e. this is the first packet
f3d66e52 542 // in the sweep containing this segment.
bb2cdfff
JH
543 sweep_beginning = true;
544
e8d00928
ML
545 // Get sample limit.
546 uint64_t sample_limit;
547 try {
da30ecb7
JH
548 assert(device_);
549 const std::shared_ptr<sigrok::Device> device =
550 device_->device();
551 assert(device);
e8d00928 552 sample_limit = VariantBase::cast_dynamic<Variant<guint64>>(
da30ecb7 553 device->config_get(ConfigKey::LIMIT_SAMPLES)).get();
e8d00928
ML
554 } catch (Error) {
555 sample_limit = 0;
556 }
557
f3d66e52
JH
558 // Create a segment, keep it in the maps of channels
559 segment = shared_ptr<data::AnalogSegment>(
560 new data::AnalogSegment(
ff008de6 561 cur_samplerate_, sample_limit));
f3d66e52 562 cur_analog_segments_[channel] = segment;
bb2cdfff 563
6ac6242b 564 // Find the annalog data associated with the channel
bb2cdfff
JH
565 shared_ptr<view::AnalogSignal> sig =
566 dynamic_pointer_cast<view::AnalogSignal>(
6ac6242b 567 signal_from_channel(channel));
bb2cdfff
JH
568 assert(sig);
569
570 shared_ptr<data::Analog> data(sig->analog_data());
571 assert(data);
572
f3d66e52
JH
573 // Push the segment into the analog data.
574 data->push_segment(segment);
bb2cdfff
JH
575 }
576
f3d66e52 577 assert(segment);
bb2cdfff 578
f3d66e52
JH
579 // Append the samples in the segment
580 segment->append_interleaved_samples(data++, sample_count,
6ac6242b 581 channel_count);
aba1dd16 582 }
bb2cdfff
JH
583
584 if (sweep_beginning) {
585 // This could be the first packet after a trigger
586 set_capture_state(Running);
aba1dd16
JH
587 }
588
1f374035 589 data_received();
aba1dd16 590}
9c112671 591
da30ecb7
JH
592void Session::data_feed_in(shared_ptr<sigrok::Device> device,
593 shared_ptr<Packet> packet)
b0e1d01d 594{
da30ecb7
JH
595 (void)device;
596
e8d00928 597 assert(device);
da30ecb7 598 assert(device == device_->device());
b0e1d01d
JH
599 assert(packet);
600
e8d00928 601 switch (packet->type()->id()) {
b0e1d01d 602 case SR_DF_HEADER:
da30ecb7 603 feed_in_header();
b0e1d01d
JH
604 break;
605
be73bdfa 606 case SR_DF_META:
da30ecb7 607 feed_in_meta(dynamic_pointer_cast<Meta>(packet->payload()));
aba1dd16
JH
608 break;
609
82f50b10
JH
610 case SR_DF_FRAME_BEGIN:
611 feed_in_frame_begin();
612 break;
613
2e2946fe 614 case SR_DF_LOGIC:
e8d00928 615 feed_in_logic(dynamic_pointer_cast<Logic>(packet->payload()));
2953961c
JH
616 break;
617
aba1dd16 618 case SR_DF_ANALOG:
e8d00928 619 feed_in_analog(dynamic_pointer_cast<Analog>(packet->payload()));
aba1dd16
JH
620 break;
621
2953961c 622 case SR_DF_END:
2e2946fe
JH
623 {
624 {
8dbbc7f0 625 lock_guard<mutex> lock(data_mutex_);
f3d66e52
JH
626 cur_logic_segment_.reset();
627 cur_analog_segments_.clear();
2e2946fe 628 }
1f374035 629 frame_ended();
2953961c
JH
630 break;
631 }
adb0a983
ML
632 default:
633 break;
2e2946fe 634 }
2953961c
JH
635}
636
51e77110 637} // namespace pv