]> sigrok.org Git - pulseview.git/blame - pv/sigsession.cpp
SweepTimingWidget implemented show_125_list
[pulseview.git] / pv / sigsession.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
2953961c
JH
25#include "sigsession.h"
26
dc0867ff 27#include "devicemanager.h"
119aff65 28
1b1ec774
JH
29#include "data/analog.h"
30#include "data/analogsnapshot.h"
6e89374a 31#include "data/decoderstack.h"
1b1ec774
JH
32#include "data/logic.h"
33#include "data/logicsnapshot.h"
7491a29f 34#include "data/decode/decoder.h"
82c7f640 35
aba1dd16 36#include "view/analogsignal.h"
b9329558 37#include "view/decodetrace.h"
8d634081 38#include "view/logicsignal.h"
28a4c9c5 39
2953961c
JH
40#include <assert.h>
41
e92cd4e4
JH
42#include <stdexcept>
43
4e5a4405
JH
44#include <boost/foreach.hpp>
45
728e5ef7
JH
46#include <sys/stat.h>
47
79efbc53
JH
48#include <QDebug>
49
819f4c25
JH
50using boost::dynamic_pointer_cast;
51using boost::function;
52using boost::lock_guard;
53using boost::mutex;
54using boost::shared_ptr;
55using std::map;
02412f0b 56using std::set;
819f4c25
JH
57using std::string;
58using std::vector;
28a4c9c5 59
51e77110
JH
60namespace pv {
61
2953961c 62// TODO: This should not be necessary
04abfae9 63SigSession* SigSession::_session = NULL;
2953961c 64
dc0867ff
JH
65SigSession::SigSession(DeviceManager &device_manager) :
66 _device_manager(device_manager),
d64d1596 67 _sdi(NULL),
5b7cf66c 68 _capture_state(Stopped)
2953961c
JH
69{
70 // TODO: This should not be necessary
04abfae9 71 _session = this;
2953961c
JH
72}
73
74SigSession::~SigSession()
75{
5b7cf66c
JH
76 stop_capture();
77
e042ad64 78 _sampling_thread.join();
2e2946fe 79
0f784939
JH
80 if (_sdi)
81 _device_manager.release_device(_sdi);
82 _sdi = NULL;
83
2953961c 84 // TODO: This should not be necessary
04abfae9 85 _session = NULL;
2953961c
JH
86}
87
dc0867ff
JH
88struct sr_dev_inst* SigSession::get_device() const
89{
90 return _sdi;
91}
92
d64d1596
JH
93void SigSession::set_device(struct sr_dev_inst *sdi)
94{
82596f46
JH
95 // Ensure we are not capturing before setting the device
96 stop_capture();
97
88497156 98 if (_sdi)
dc0867ff 99 _device_manager.release_device(_sdi);
88497156 100 if (sdi)
dc0867ff 101 _device_manager.use_device(sdi, this);
d64d1596 102 _sdi = sdi;
b698553c 103 update_signals(sdi);
d64d1596
JH
104}
105
dc0867ff
JH
106void SigSession::release_device(struct sr_dev_inst *sdi)
107{
108 (void)sdi;
109
110 assert(_capture_state == Stopped);
111 _sdi = NULL;
b698553c 112 update_signals(NULL);
dc0867ff
JH
113}
114
f2edb557
JH
115void SigSession::load_file(const string &name,
116 function<void (const QString)> error_handler)
2953961c 117{
8a67bd9e 118 stop_capture();
e8c9f8a5
JH
119
120 if (sr_session_load(name.c_str()) == SR_OK) {
121 GSList *devlist = NULL;
122 sr_session_dev_list(&devlist);
123
124 if (!devlist || !devlist->data ||
125 sr_session_start() != SR_OK) {
126 error_handler(tr("Failed to start session."));
127 return;
128 }
129
deef291c 130 sr_dev_inst *const sdi = (sr_dev_inst*)devlist->data;
e8c9f8a5
JH
131 g_slist_free(devlist);
132
7d0c935c 133 _decode_traces.clear();
deef291c
JH
134 update_signals(sdi);
135 read_sample_rate(sdi);
136
e042ad64 137 _sampling_thread = boost::thread(
e8c9f8a5 138 &SigSession::load_session_thread_proc, this,
e042ad64 139 error_handler);
e8c9f8a5
JH
140
141 } else {
142 sr_input *in = NULL;
143
144 if (!(in = load_input_file_format(name.c_str(),
145 error_handler)))
146 return;
147
7d0c935c 148 _decode_traces.clear();
e8c9f8a5 149 update_signals(in->sdi);
deef291c 150 read_sample_rate(in->sdi);
e8c9f8a5 151
e042ad64 152 _sampling_thread = boost::thread(
e8c9f8a5 153 &SigSession::load_input_thread_proc, this,
e042ad64 154 name, in, error_handler);
e8c9f8a5 155 }
2953961c
JH
156}
157
5b7cf66c
JH
158SigSession::capture_state SigSession::get_capture_state() const
159{
949f8050 160 lock_guard<mutex> lock(_sampling_mutex);
5b7cf66c
JH
161 return _capture_state;
162}
163
d99dc9f2 164void SigSession::start_capture(function<void (const QString)> error_handler)
2e2946fe 165{
5b7cf66c
JH
166 stop_capture();
167
d64d1596
JH
168 // Check that a device instance has been selected.
169 if (!_sdi) {
170 qDebug() << "No device selected";
171 return;
172 }
173
9c48fa57
JH
174 // Check that at least one probe is enabled
175 const GSList *l;
d64d1596 176 for (l = _sdi->probes; l; l = l->next) {
9c48fa57
JH
177 sr_probe *const probe = (sr_probe*)l->data;
178 assert(probe);
179 if (probe->enabled)
180 break;
181 }
182
183 if (!l) {
184 error_handler(tr("No probes enabled."));
185 return;
186 }
187
188 // Begin the session
e042ad64 189 _sampling_thread = boost::thread(
d99dc9f2 190 &SigSession::sample_thread_proc, this, _sdi, error_handler);
2e2946fe
JH
191}
192
5b7cf66c
JH
193void SigSession::stop_capture()
194{
333d5bbc 195 if (get_capture_state() == Stopped)
5b7cf66c
JH
196 return;
197
198 sr_session_stop();
199
200 // Check that sampling stopped
e042ad64 201 _sampling_thread.join();
5b7cf66c
JH
202}
203
02412f0b
JH
204set< shared_ptr<data::SignalData> > SigSession::get_data() const
205{
206 lock_guard<mutex> lock(_signals_mutex);
207 set< shared_ptr<data::SignalData> > data;
208 BOOST_FOREACH(const shared_ptr<view::Signal> sig, _signals) {
209 assert(sig);
210 data.insert(sig->data());
211 }
212
213 return data;
214}
215
38eeddea 216vector< shared_ptr<view::Signal> > SigSession::get_signals() const
2e2946fe 217{
3868e5fa 218 lock_guard<mutex> lock(_signals_mutex);
2e2946fe
JH
219 return _signals;
220}
221
269528f5 222#ifdef ENABLE_DECODE
4e5a4405 223bool SigSession::add_decoder(srd_decoder *const dec)
82c7f640 224{
4e5a4405 225 map<const srd_probe*, shared_ptr<view::LogicSignal> > probes;
7491a29f 226 shared_ptr<data::DecoderStack> decoder_stack;
4e5a4405 227
e92cd4e4 228 try
82c7f640 229 {
119aff65 230 lock_guard<mutex> lock(_signals_mutex);
e0fc5810 231
4e5a4405 232 // Create the decoder
7491a29f
JH
233 decoder_stack = shared_ptr<data::DecoderStack>(
234 new data::DecoderStack(dec));
4e5a4405
JH
235
236 // Auto select the initial probes
237 for(const GSList *i = dec->probes; i; i = i->next)
238 {
239 const srd_probe *const probe = (const srd_probe*)i->data;
240 BOOST_FOREACH(shared_ptr<view::Signal> s, _signals)
241 {
242 shared_ptr<view::LogicSignal> l =
243 dynamic_pointer_cast<view::LogicSignal>(s);
27e8df22
JH
244 if (l && QString::fromUtf8(probe->name).
245 toLower().contains(
4e5a4405
JH
246 l->get_name().toLower()))
247 probes[probe] = l;
248 }
249 }
250
7491a29f
JH
251 assert(decoder_stack);
252 assert(!decoder_stack->stack().empty());
253 assert(decoder_stack->stack().front());
254 decoder_stack->stack().front()->set_probes(probes);
4e5a4405
JH
255
256 // Create the decode signal
b9329558 257 shared_ptr<view::DecodeTrace> d(
7491a29f 258 new view::DecodeTrace(*this, decoder_stack,
06bb4e6a 259 _decode_traces.size()));
82c7f640
JH
260 _decode_traces.push_back(d);
261 }
e92cd4e4
JH
262 catch(std::runtime_error e)
263 {
264 return false;
265 }
266
82c7f640 267 signals_changed();
e92cd4e4 268
7491a29f
JH
269 // Do an initial decode
270 decoder_stack->begin_decode();
271
e92cd4e4 272 return true;
82c7f640
JH
273}
274
b9329558 275vector< shared_ptr<view::DecodeTrace> > SigSession::get_decode_signals() const
38eeddea
JH
276{
277 lock_guard<mutex> lock(_signals_mutex);
278 return _decode_traces;
279}
280
b9329558 281void SigSession::remove_decode_signal(view::DecodeTrace *signal)
c51482b3 282{
b9329558 283 for (vector< shared_ptr<view::DecodeTrace> >::iterator i =
c51482b3
JH
284 _decode_traces.begin();
285 i != _decode_traces.end();
286 i++)
287 if ((*i).get() == signal)
288 {
289 _decode_traces.erase(i);
290 signals_changed();
291 return;
292 }
293}
269528f5 294#endif
c51482b3 295
6ac96c2e
JH
296void SigSession::set_capture_state(capture_state state)
297{
949f8050 298 lock_guard<mutex> lock(_sampling_mutex);
2b49eeb0 299 const bool changed = _capture_state != state;
6ac96c2e 300 _capture_state = state;
2b49eeb0
JH
301 if(changed)
302 capture_state_changed(state);
6ac96c2e
JH
303}
304
728e5ef7
JH
305/**
306 * Attempts to autodetect the format. Failing that
307 * @param filename The filename of the input file.
308 * @return A pointer to the 'struct sr_input_format' that should be used,
309 * or NULL if no input format was selected or auto-detected.
310 */
311sr_input_format* SigSession::determine_input_file_format(
312 const string &filename)
313{
314 int i;
315
316 /* If there are no input formats, return NULL right away. */
317 sr_input_format *const *const inputs = sr_input_list();
318 if (!inputs) {
319 g_critical("No supported input formats available.");
320 return NULL;
321 }
322
323 /* Otherwise, try to find an input module that can handle this file. */
324 for (i = 0; inputs[i]; i++) {
325 if (inputs[i]->format_match(filename.c_str()))
326 break;
327 }
328
329 /* Return NULL if no input module wanted to touch this. */
330 if (!inputs[i]) {
331 g_critical("Error: no matching input module found.");
332 return NULL;
333 }
334
335 return inputs[i];
336}
337
338sr_input* SigSession::load_input_file_format(const string &filename,
339 function<void (const QString)> error_handler,
340 sr_input_format *format)
341{
342 struct stat st;
343 sr_input *in;
344
345 if (!format && !(format =
346 determine_input_file_format(filename.c_str()))) {
347 /* The exact cause was already logged. */
348 return NULL;
349 }
350
351 if (stat(filename.c_str(), &st) == -1) {
352 error_handler(tr("Failed to load file"));
353 return NULL;
354 }
355
356 /* Initialize the input module. */
357 if (!(in = new sr_input)) {
358 qDebug("Failed to allocate input module.\n");
359 return NULL;
360 }
361
362 in->format = format;
363 in->param = NULL;
364 if (in->format->init &&
365 in->format->init(in, filename.c_str()) != SR_OK) {
366 qDebug("Input format init failed.\n");
367 return NULL;
368 }
369
370 sr_session_new();
371
372 if (sr_session_dev_add(in->sdi) != SR_OK) {
373 qDebug("Failed to use device.\n");
374 sr_session_destroy();
375 return NULL;
376 }
377
378 return in;
379}
380
b698553c 381void SigSession::update_signals(const sr_dev_inst *const sdi)
b087ba7f
JH
382{
383 assert(_capture_state == Stopped);
384
b087ba7f 385 unsigned int logic_probe_count = 0;
b087ba7f 386
82c7f640
JH
387 // Clear the decode traces
388 _decode_traces.clear();
389
b087ba7f 390 // Detect what data types we will receive
b698553c
JH
391 if(sdi) {
392 for (const GSList *l = sdi->probes; l; l = l->next) {
b087ba7f
JH
393 const sr_probe *const probe = (const sr_probe *)l->data;
394 if (!probe->enabled)
395 continue;
396
397 switch(probe->type) {
398 case SR_PROBE_LOGIC:
399 logic_probe_count++;
400 break;
b087ba7f
JH
401 }
402 }
403 }
404
bb2cdfff 405 // Create data containers for the logic data snapshots
b087ba7f
JH
406 {
407 lock_guard<mutex> data_lock(_data_mutex);
408
409 _logic_data.reset();
410 if (logic_probe_count != 0) {
411 _logic_data.reset(new data::Logic(
412 logic_probe_count));
413 assert(_logic_data);
414 }
b087ba7f
JH
415 }
416
417 // Make the Signals list
39e680c2 418 do {
b087ba7f
JH
419 lock_guard<mutex> lock(_signals_mutex);
420
421 _signals.clear();
422
39e680c2
JH
423 if(!sdi)
424 break;
425
426 for (const GSList *l = sdi->probes; l; l = l->next) {
427 shared_ptr<view::Signal> signal;
428 sr_probe *const probe = (sr_probe *)l->data;
429 assert(probe);
430
431 switch(probe->type) {
432 case SR_PROBE_LOGIC:
433 signal = shared_ptr<view::Signal>(
434 new view::LogicSignal(*this, probe,
435 _logic_data));
436 break;
437
438 case SR_PROBE_ANALOG:
bb2cdfff
JH
439 {
440 shared_ptr<data::Analog> data(
441 new data::Analog());
39e680c2
JH
442 signal = shared_ptr<view::Signal>(
443 new view::AnalogSignal(*this, probe,
bb2cdfff 444 data));
39e680c2 445 break;
bb2cdfff 446 }
39e680c2
JH
447
448 default:
449 assert(0);
450 break;
b087ba7f 451 }
39e680c2
JH
452
453 assert(signal);
454 _signals.push_back(signal);
b087ba7f 455 }
39e680c2
JH
456
457 } while(0);
b087ba7f
JH
458
459 signals_changed();
460}
461
2b49eeb0
JH
462bool SigSession::is_trigger_enabled() const
463{
464 assert(_sdi);
465 for (const GSList *l = _sdi->probes; l; l = l->next) {
466 const sr_probe *const p = (const sr_probe *)l->data;
467 assert(p);
468 if (p->trigger && p->trigger[0] != '\0')
469 return true;
470 }
471
472 return false;
473}
474
3ddcc083
JH
475shared_ptr<view::Signal> SigSession::signal_from_probe(
476 const sr_probe *probe) const
477{
478 lock_guard<mutex> lock(_signals_mutex);
479 BOOST_FOREACH(shared_ptr<view::Signal> sig, _signals) {
480 assert(sig);
481 if (sig->probe() == probe)
482 return sig;
483 }
484 return shared_ptr<view::Signal>();
485}
486
deef291c
JH
487void SigSession::read_sample_rate(const sr_dev_inst *const sdi)
488{
489 GVariant *gvar;
490 uint64_t sample_rate = 0;
491
492 // Read out the sample rate
493 if(sdi->driver)
494 {
68162c29
BV
495 const int ret = sr_config_get(sdi->driver, sdi, NULL,
496 SR_CONF_SAMPLERATE, &gvar);
deef291c
JH
497 if (ret != SR_OK) {
498 qDebug("Failed to get samplerate\n");
499 return;
500 }
501
502 sample_rate = g_variant_get_uint64(gvar);
503 g_variant_unref(gvar);
504 }
505
bb2cdfff
JH
506 // Set the sample rate of all data
507 const set< shared_ptr<data::SignalData> > data_set = get_data();
508 BOOST_FOREACH(shared_ptr<data::SignalData> data, data_set) {
509 assert(data);
510 data->set_samplerate(sample_rate);
511 }
deef291c
JH
512}
513
e8c9f8a5 514void SigSession::load_session_thread_proc(
f2edb557 515 function<void (const QString)> error_handler)
8a67bd9e 516{
e8c9f8a5 517 (void)error_handler;
728e5ef7 518
e8c9f8a5
JH
519 sr_session_datafeed_callback_add(data_feed_in_proc, NULL);
520
521 set_capture_state(Running);
522
523 sr_session_run();
524
525 sr_session_destroy();
526 set_capture_state(Stopped);
527
528 // Confirm that SR_DF_END was received
529 assert(!_cur_logic_snapshot);
bb2cdfff 530 assert(_cur_analog_snapshots.empty());
e8c9f8a5
JH
531}
532
533void SigSession::load_input_thread_proc(const string name,
534 sr_input *in, function<void (const QString)> error_handler)
535{
536 (void)error_handler;
537
538 assert(in);
539 assert(in->format);
8a67bd9e 540
5045f16d 541 sr_session_datafeed_callback_add(data_feed_in_proc, NULL);
8a67bd9e 542
8a67bd9e
JH
543 set_capture_state(Running);
544
e8c9f8a5 545 in->format->loadfile(in, name.c_str());
8a67bd9e 546
728e5ef7 547 sr_session_destroy();
8a67bd9e 548 set_capture_state(Stopped);
1a2fe44c
JH
549
550 // Confirm that SR_DF_END was received
551 assert(!_cur_logic_snapshot);
bb2cdfff 552 assert(_cur_analog_snapshots.empty());
728e5ef7
JH
553
554 delete in;
8a67bd9e
JH
555}
556
2e2946fe 557void SigSession::sample_thread_proc(struct sr_dev_inst *sdi,
f2edb557 558 function<void (const QString)> error_handler)
274d4f13 559{
be73bdfa 560 assert(sdi);
f2edb557 561 assert(error_handler);
be73bdfa 562
274d4f13 563 sr_session_new();
5045f16d 564 sr_session_datafeed_callback_add(data_feed_in_proc, NULL);
274d4f13
JH
565
566 if (sr_session_dev_add(sdi) != SR_OK) {
f2edb557 567 error_handler(tr("Failed to use device."));
274d4f13
JH
568 sr_session_destroy();
569 return;
570 }
571
eec446e1 572 if (sr_session_start() != SR_OK) {
f2edb557 573 error_handler(tr("Failed to start session."));
eec446e1
JH
574 return;
575 }
576
2b49eeb0 577 set_capture_state(is_trigger_enabled() ? AwaitingTrigger : Running);
eec446e1
JH
578
579 sr_session_run();
580 sr_session_destroy();
581
582 set_capture_state(Stopped);
1a2fe44c
JH
583
584 // Confirm that SR_DF_END was received
bb2cdfff
JH
585 if (_cur_logic_snapshot)
586 {
587 qDebug("SR_DF_END was not received.");
588 assert(0);
589 }
eec446e1
JH
590}
591
592void SigSession::feed_in_header(const sr_dev_inst *sdi)
593{
deef291c 594 read_sample_rate(sdi);
be73bdfa
JH
595}
596
597void SigSession::feed_in_meta(const sr_dev_inst *sdi,
598 const sr_datafeed_meta &meta)
599{
94fe58ef
UH
600 (void)sdi;
601
be73bdfa
JH
602 for (const GSList *l = meta.config; l; l = l->next) {
603 const sr_config *const src = (const sr_config*)l->data;
604 switch (src->key) {
605 case SR_CONF_SAMPLERATE:
606 /// @todo handle samplerate changes
607 /// samplerate = (uint64_t *)src->value;
608 break;
609 default:
610 // Unknown metadata is not an error.
611 break;
612 }
aba1dd16 613 }
74043039
JH
614
615 signals_changed();
aba1dd16
JH
616}
617
9c112671
JH
618void SigSession::feed_in_logic(const sr_datafeed_logic &logic)
619{
620 lock_guard<mutex> lock(_data_mutex);
79efbc53
JH
621
622 if (!_logic_data)
9c112671 623 {
79efbc53
JH
624 qDebug() << "Unexpected logic packet";
625 return;
626 }
be73bdfa 627
79efbc53
JH
628 if (!_cur_logic_snapshot)
629 {
bb2cdfff 630 // This could be the first packet after a trigger
2b49eeb0
JH
631 set_capture_state(Running);
632
9c112671 633 // Create a new data snapshot
1b1ec774
JH
634 _cur_logic_snapshot = shared_ptr<data::LogicSnapshot>(
635 new data::LogicSnapshot(logic));
9c112671
JH
636 _logic_data->push_snapshot(_cur_logic_snapshot);
637 }
638 else
639 {
640 // Append to the existing data snapshot
641 _cur_logic_snapshot->append_payload(logic);
642 }
643
644 data_updated();
645}
646
aba1dd16
JH
647void SigSession::feed_in_analog(const sr_datafeed_analog &analog)
648{
649 lock_guard<mutex> lock(_data_mutex);
79efbc53 650
bb2cdfff
JH
651 const unsigned int probe_count = g_slist_length(analog.probes);
652 const size_t sample_count = analog.num_samples / probe_count;
653 const float *data = analog.data;
654 bool sweep_beginning = false;
be73bdfa 655
bb2cdfff 656 for (GSList *p = analog.probes; p; p = p->next)
79efbc53 657 {
bb2cdfff 658 shared_ptr<data::AnalogSnapshot> snapshot;
2b49eeb0 659
bb2cdfff
JH
660 sr_probe *const probe = (sr_probe*)p->data;
661 assert(probe);
662
663 // Try to get the snapshot of the probe
664 const map< const sr_probe*, shared_ptr<data::AnalogSnapshot> >::
665 iterator iter = _cur_analog_snapshots.find(probe);
666 if (iter != _cur_analog_snapshots.end())
667 snapshot = (*iter).second;
668 else
669 {
670 // If no snapshot was found, this means we havn't
671 // created one yet. i.e. this is the first packet
672 // in the sweep containing this snapshot.
673 sweep_beginning = true;
674
675 // Create a snapshot, keep it in the maps of probes
676 snapshot = shared_ptr<data::AnalogSnapshot>(
677 new data::AnalogSnapshot());
678 _cur_analog_snapshots[probe] = snapshot;
679
680 // Find the annalog data associated with the probe
681 shared_ptr<view::AnalogSignal> sig =
682 dynamic_pointer_cast<view::AnalogSignal>(
683 signal_from_probe(probe));
684 assert(sig);
685
686 shared_ptr<data::Analog> data(sig->analog_data());
687 assert(data);
688
689 // Push the snapshot into the analog data.
690 data->push_snapshot(snapshot);
691 }
692
693 assert(snapshot);
694
695 // Append the samples in the snapshot
696 snapshot->append_interleaved_samples(data++, sample_count,
697 probe_count);
aba1dd16 698 }
bb2cdfff
JH
699
700 if (sweep_beginning) {
701 // This could be the first packet after a trigger
702 set_capture_state(Running);
aba1dd16
JH
703 }
704
705 data_updated();
706}
9c112671 707
b0e1d01d
JH
708void SigSession::data_feed_in(const struct sr_dev_inst *sdi,
709 const struct sr_datafeed_packet *packet)
710{
711 assert(sdi);
712 assert(packet);
713
714 switch (packet->type) {
715 case SR_DF_HEADER:
eec446e1 716 feed_in_header(sdi);
b0e1d01d
JH
717 break;
718
be73bdfa 719 case SR_DF_META:
aba1dd16 720 assert(packet->payload);
be73bdfa
JH
721 feed_in_meta(sdi,
722 *(const sr_datafeed_meta*)packet->payload);
aba1dd16
JH
723 break;
724
2e2946fe 725 case SR_DF_LOGIC:
28a4c9c5 726 assert(packet->payload);
9c112671 727 feed_in_logic(*(const sr_datafeed_logic*)packet->payload);
2953961c
JH
728 break;
729
aba1dd16
JH
730 case SR_DF_ANALOG:
731 assert(packet->payload);
732 feed_in_analog(*(const sr_datafeed_analog*)packet->payload);
733 break;
734
2953961c 735 case SR_DF_END:
2e2946fe
JH
736 {
737 {
738 lock_guard<mutex> lock(_data_mutex);
739 _cur_logic_snapshot.reset();
bb2cdfff 740 _cur_analog_snapshots.clear();
2e2946fe 741 }
04abfae9 742 data_updated();
2953961c
JH
743 break;
744 }
2e2946fe 745 }
2953961c
JH
746}
747
04abfae9 748void SigSession::data_feed_in_proc(const struct sr_dev_inst *sdi,
5045f16d 749 const struct sr_datafeed_packet *packet, void *cb_data)
2953961c 750{
5045f16d 751 (void) cb_data;
04abfae9
JH
752 assert(_session);
753 _session->data_feed_in(sdi, packet);
2953961c 754}
51e77110
JH
755
756} // namespace pv