]> sigrok.org Git - pulseview.git/blame - pv/session.cpp
Session: Improve session robustness
[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
35750e4d
UH
21#ifdef _WIN32
22// Windows: Avoid boost/thread namespace pollution (which includes windows.h).
23#define NOGDI
24#define NORESOURCE
25#endif
e71eb81c
JH
26#include <boost/thread/locks.hpp>
27#include <boost/thread/shared_mutex.hpp>
28
269528f5 29#ifdef ENABLE_DECODE
4e5a4405 30#include <libsigrokdecode/libsigrokdecode.h>
269528f5 31#endif
4e5a4405 32
f65cd27b 33#include "session.hpp"
2953961c 34
2acdb232 35#include "devicemanager.hpp"
119aff65 36
2acdb232 37#include "data/analog.hpp"
f3d66e52 38#include "data/analogsegment.hpp"
2acdb232
JH
39#include "data/decoderstack.hpp"
40#include "data/logic.hpp"
f3d66e52 41#include "data/logicsegment.hpp"
2acdb232 42#include "data/decode/decoder.hpp"
82c7f640 43
da30ecb7
JH
44#include "devices/hardwaredevice.hpp"
45#include "devices/sessionfile.hpp"
46
2acdb232
JH
47#include "view/analogsignal.hpp"
48#include "view/decodetrace.hpp"
49#include "view/logicsignal.hpp"
28a4c9c5 50
3b68d03d
JH
51#include <cassert>
52#include <mutex>
e92cd4e4
JH
53#include <stdexcept>
54
728e5ef7
JH
55#include <sys/stat.h>
56
79efbc53
JH
57#include <QDebug>
58
fe3a1c21 59#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 60
aca64cac
JH
61using boost::shared_lock;
62using boost::shared_mutex;
63using boost::unique_lock;
64
f9abf97e 65using std::dynamic_pointer_cast;
d2344534 66using std::function;
3b68d03d 67using std::lock_guard;
d873f4d6 68using std::list;
819f4c25 69using std::map;
aca64cac 70using std::mutex;
8524a597 71using std::recursive_mutex;
02412f0b 72using std::set;
f9abf97e 73using std::shared_ptr;
819f4c25 74using std::string;
78b0af3e 75using std::unordered_set;
819f4c25 76using std::vector;
28a4c9c5 77
e8d00928
ML
78using sigrok::Analog;
79using sigrok::Channel;
80using sigrok::ChannelType;
81using sigrok::ConfigKey;
82using sigrok::DatafeedCallbackFunction;
e8d00928 83using sigrok::Error;
e8d00928
ML
84using sigrok::Header;
85using sigrok::Logic;
86using sigrok::Meta;
87using sigrok::Packet;
88using sigrok::PacketPayload;
89using sigrok::Session;
90using sigrok::SessionDevice;
91
92using Glib::VariantBase;
93using Glib::Variant;
51e77110 94
e8d00928 95namespace pv {
2b81ae46 96Session::Session(DeviceManager &device_manager) :
8dbbc7f0 97 device_manager_(device_manager),
ff008de6
JH
98 capture_state_(Stopped),
99 cur_samplerate_(0)
2953961c 100{
2953961c
JH
101}
102
2b81ae46 103Session::~Session()
2953961c 104{
04463625 105 // Stop and join to the thread
5b7cf66c 106 stop_capture();
2953961c
JH
107}
108
2b81ae46 109DeviceManager& Session::device_manager()
4cb0b033 110{
8dbbc7f0 111 return device_manager_;
4cb0b033
JH
112}
113
2b81ae46 114const DeviceManager& Session::device_manager() const
4cb0b033 115{
8dbbc7f0 116 return device_manager_;
4cb0b033
JH
117}
118
da30ecb7 119shared_ptr<sigrok::Session> Session::session() const
1f4caa77 120{
da30ecb7
JH
121 if (!device_)
122 return shared_ptr<sigrok::Session>();
123 return device_->session();
1f4caa77
JH
124}
125
da30ecb7 126shared_ptr<devices::Device> Session::device() const
dc0867ff 127{
8dbbc7f0 128 return device_;
dc0867ff
JH
129}
130
da30ecb7 131void Session::set_device(shared_ptr<devices::Device> device)
d64d1596 132{
da30ecb7
JH
133 assert(device);
134
82596f46
JH
135 // Ensure we are not capturing before setting the device
136 stop_capture();
137
4d6c6ea3
SA
138 if (device_)
139 device_->close();
140
86123e2e
SA
141 device_.reset();
142
cc9a7898 143 // Remove all stored data
86123e2e 144 signals_.clear();
cc9a7898
SA
145 {
146 shared_lock<shared_mutex> lock(signals_mutex_);
147 for (const shared_ptr<data::SignalData> d : all_signal_data_)
148 d->clear();
149 }
150 all_signal_data_.clear();
4b0d7046
SA
151 cur_logic_segment_.reset();
152
153 for (auto entry : cur_analog_segments_) {
154 shared_ptr<sigrok::Channel>(entry.first).reset();
155 shared_ptr<data::AnalogSegment>(entry.second).reset();
156 }
157
158 logic_data_.reset();
86123e2e 159 decode_traces_.clear();
4b0d7046 160
86123e2e
SA
161 signals_changed();
162
da30ecb7 163 device_ = std::move(device);
4d6c6ea3 164 device_->open();
da30ecb7
JH
165 device_->session()->add_datafeed_callback([=]
166 (shared_ptr<sigrok::Device> device, shared_ptr<Packet> packet) {
167 data_feed_in(device, packet);
168 });
ae2d1bc5 169
4b8e787d 170 update_signals();
20f81a58 171 device_selected();
ae2d1bc5 172}
85843b14 173
2b81ae46 174void Session::set_default_device()
6fd0b639 175{
da30ecb7 176 const list< shared_ptr<devices::HardwareDevice> > &devices =
8dbbc7f0 177 device_manager_.devices();
6fd0b639 178
da30ecb7
JH
179 if (devices.empty())
180 return;
dc0867ff 181
da30ecb7
JH
182 // Try and find the demo device and select that by default
183 const auto iter = std::find_if(devices.begin(), devices.end(),
184 [] (const shared_ptr<devices::HardwareDevice> &d) {
185 return d->hardware_device()->driver()->name() ==
186 "demo"; });
187 set_device((iter == devices.end()) ? devices.front() : *iter);
dc0867ff
JH
188}
189
2b81ae46 190Session::capture_state Session::get_capture_state() const
5b7cf66c 191{
8dbbc7f0
JH
192 lock_guard<mutex> lock(sampling_mutex_);
193 return capture_state_;
5b7cf66c
JH
194}
195
2b81ae46 196void Session::start_capture(function<void (const QString)> error_handler)
2e2946fe 197{
34c11fa7
SA
198 if (!device_) {
199 error_handler(tr("No active device set, can't start acquisition."));
200 return;
201 }
202
5b7cf66c
JH
203 stop_capture();
204
6ac6242b 205 // Check that at least one channel is enabled
e6c1382e
JH
206 const shared_ptr<sigrok::Device> sr_dev = device_->device();
207 if (sr_dev) {
208 const auto channels = sr_dev->channels();
209 if (!std::any_of(channels.begin(), channels.end(),
210 [](shared_ptr<Channel> channel) {
211 return channel->enabled(); })) {
212 error_handler(tr("No channels enabled."));
213 return;
214 }
9c48fa57
JH
215 }
216
53ea4c6c 217 // Clear signal data
cc9a7898
SA
218 {
219 shared_lock<shared_mutex> lock(signals_mutex_);
220 for (const shared_ptr<data::SignalData> d : all_signal_data_)
221 d->clear();
222 }
53ea4c6c 223
9c48fa57 224 // Begin the session
8dbbc7f0 225 sampling_thread_ = std::thread(
2b81ae46 226 &Session::sample_thread_proc, this, device_,
19adbc2c 227 error_handler);
2e2946fe
JH
228}
229
2b81ae46 230void Session::stop_capture()
5b7cf66c 231{
04463625 232 if (get_capture_state() != Stopped)
da30ecb7 233 device_->stop();
5b7cf66c
JH
234
235 // Check that sampling stopped
8dbbc7f0
JH
236 if (sampling_thread_.joinable())
237 sampling_thread_.join();
5b7cf66c
JH
238}
239
2220e942
SA
240double Session::get_samplerate() const
241{
242 double samplerate = 0.0;
243
cc9a7898
SA
244 {
245 shared_lock<shared_mutex> lock(signals_mutex_);
246 for (const shared_ptr<pv::data::SignalData> d : all_signal_data_) {
247 assert(d);
248 const vector< shared_ptr<pv::data::Segment> > segments =
249 d->segments();
250 for (const shared_ptr<pv::data::Segment> &s : segments)
251 samplerate = std::max(samplerate, s->samplerate());
252 }
2220e942 253 }
2220e942
SA
254 // If there is no sample rate given we use samples as unit
255 if (samplerate == 0.0)
256 samplerate = 1.0;
257
258 return samplerate;
259}
260
bf914698 261const unordered_set< shared_ptr<view::Signal> > Session::signals() const
2e2946fe 262{
bf914698 263 shared_lock<shared_mutex> lock(signals_mutex_);
8dbbc7f0 264 return signals_;
2e2946fe
JH
265}
266
269528f5 267#ifdef ENABLE_DECODE
2b81ae46 268bool Session::add_decoder(srd_decoder *const dec)
82c7f640 269{
6ac6242b 270 map<const srd_channel*, shared_ptr<view::LogicSignal> > channels;
7491a29f 271 shared_ptr<data::DecoderStack> decoder_stack;
4e5a4405 272
2ad82c2e 273 try {
8dbbc7f0 274 lock_guard<boost::shared_mutex> lock(signals_mutex_);
e0fc5810 275
4e5a4405 276 // Create the decoder
7491a29f 277 decoder_stack = shared_ptr<data::DecoderStack>(
bdc5c3b0 278 new data::DecoderStack(*this, dec));
4e5a4405 279
6ac6242b
ML
280 // Make a list of all the channels
281 std::vector<const srd_channel*> all_channels;
f3290553 282 for (const GSList *i = dec->channels; i; i = i->next)
6ac6242b 283 all_channels.push_back((const srd_channel*)i->data);
f3290553 284 for (const GSList *i = dec->opt_channels; i; i = i->next)
6ac6242b 285 all_channels.push_back((const srd_channel*)i->data);
d2f46d27 286
6ac6242b
ML
287 // Auto select the initial channels
288 for (const srd_channel *pdch : all_channels)
2ad82c2e 289 for (shared_ptr<view::Signal> s : signals_) {
4e5a4405
JH
290 shared_ptr<view::LogicSignal> l =
291 dynamic_pointer_cast<view::LogicSignal>(s);
8bd26d8b 292 if (l && QString::fromUtf8(pdch->name).
27e8df22 293 toLower().contains(
0a47889b 294 l->name().toLower()))
6ac6242b 295 channels[pdch] = l;
4e5a4405 296 }
4e5a4405 297
7491a29f
JH
298 assert(decoder_stack);
299 assert(!decoder_stack->stack().empty());
300 assert(decoder_stack->stack().front());
6ac6242b 301 decoder_stack->stack().front()->set_channels(channels);
4e5a4405
JH
302
303 // Create the decode signal
b9329558 304 shared_ptr<view::DecodeTrace> d(
7491a29f 305 new view::DecodeTrace(*this, decoder_stack,
8dbbc7f0
JH
306 decode_traces_.size()));
307 decode_traces_.push_back(d);
2ad82c2e 308 } catch (std::runtime_error e) {
e92cd4e4
JH
309 return false;
310 }
311
82c7f640 312 signals_changed();
e92cd4e4 313
7491a29f
JH
314 // Do an initial decode
315 decoder_stack->begin_decode();
316
e92cd4e4 317 return true;
82c7f640
JH
318}
319
2b81ae46 320vector< shared_ptr<view::DecodeTrace> > Session::get_decode_signals() const
38eeddea 321{
8dbbc7f0
JH
322 shared_lock<shared_mutex> lock(signals_mutex_);
323 return decode_traces_;
38eeddea
JH
324}
325
2b81ae46 326void Session::remove_decode_signal(view::DecodeTrace *signal)
c51482b3 327{
8dbbc7f0 328 for (auto i = decode_traces_.begin(); i != decode_traces_.end(); i++)
2ad82c2e 329 if ((*i).get() == signal) {
8dbbc7f0 330 decode_traces_.erase(i);
c51482b3
JH
331 signals_changed();
332 return;
333 }
334}
269528f5 335#endif
c51482b3 336
2b81ae46 337void Session::set_capture_state(capture_state state)
6ac96c2e 338{
896936e5
TS
339 bool changed;
340
341 {
342 lock_guard<mutex> lock(sampling_mutex_);
343 changed = capture_state_ != state;
344 capture_state_ = state;
345 }
346
f3290553 347 if (changed)
2b49eeb0 348 capture_state_changed(state);
6ac96c2e
JH
349}
350
ffe00119 351void Session::update_signals()
b087ba7f 352{
076eefa4
SA
353 if (!device_) {
354 signals_.clear();
355 logic_data_.reset();
356 return;
357 }
e6c1382e
JH
358
359 lock_guard<recursive_mutex> lock(data_mutex_);
b087ba7f 360
ffe00119 361 const shared_ptr<sigrok::Device> sr_dev = device_->device();
c6412b47
JH
362 if (!sr_dev) {
363 signals_.clear();
364 logic_data_.reset();
365 return;
366 }
367
b087ba7f 368 // Detect what data types we will receive
c6412b47 369 auto channels = sr_dev->channels();
e8d00928
ML
370 unsigned int logic_channel_count = std::count_if(
371 channels.begin(), channels.end(),
372 [] (shared_ptr<Channel> channel) {
373 return channel->type() == ChannelType::LOGIC; });
b087ba7f 374
f3d66e52 375 // Create data containers for the logic data segments
b087ba7f 376 {
8524a597 377 lock_guard<recursive_mutex> data_lock(data_mutex_);
b087ba7f 378
3917ba77
JH
379 if (logic_channel_count == 0) {
380 logic_data_.reset();
381 } else if (!logic_data_ ||
382 logic_data_->num_channels() != logic_channel_count) {
8dbbc7f0 383 logic_data_.reset(new data::Logic(
6ac6242b 384 logic_channel_count));
8dbbc7f0 385 assert(logic_data_);
b087ba7f 386 }
b087ba7f
JH
387 }
388
389 // Make the Signals list
fbd3e234 390 {
8dbbc7f0 391 unique_lock<shared_mutex> lock(signals_mutex_);
b087ba7f 392
3917ba77 393 unordered_set< shared_ptr<view::Signal> > prev_sigs(signals_);
8dbbc7f0 394 signals_.clear();
b087ba7f 395
c6412b47 396 for (auto channel : sr_dev->channels()) {
39e680c2 397 shared_ptr<view::Signal> signal;
39e680c2 398
3917ba77
JH
399 // Find the channel in the old signals
400 const auto iter = std::find_if(
401 prev_sigs.cbegin(), prev_sigs.cend(),
402 [&](const shared_ptr<view::Signal> &s) {
403 return s->channel() == channel;
404 });
405 if (iter != prev_sigs.end()) {
406 // Copy the signal from the old set to the new
407 signal = *iter;
408 auto logic_signal = dynamic_pointer_cast<
409 view::LogicSignal>(signal);
410 if (logic_signal)
411 logic_signal->set_logic_data(
412 logic_data_);
413 } else {
414 // Create a new signal
415 switch(channel->type()->id()) {
416 case SR_CHANNEL_LOGIC:
417 signal = shared_ptr<view::Signal>(
418 new view::LogicSignal(*this,
ffe00119 419 device_, channel,
3917ba77 420 logic_data_));
cc9a7898 421 all_signal_data_.insert(logic_data_);
3917ba77
JH
422 break;
423
424 case SR_CHANNEL_ANALOG:
425 {
426 shared_ptr<data::Analog> data(
427 new data::Analog());
428 signal = shared_ptr<view::Signal>(
429 new view::AnalogSignal(
430 *this, channel, data));
cc9a7898 431 all_signal_data_.insert(data);
3917ba77
JH
432 break;
433 }
434
435 default:
436 assert(0);
437 break;
438 }
b087ba7f 439 }
39e680c2
JH
440
441 assert(signal);
78b0af3e 442 signals_.insert(signal);
b087ba7f 443 }
fbd3e234 444 }
b087ba7f
JH
445
446 signals_changed();
447}
448
2b81ae46 449shared_ptr<view::Signal> Session::signal_from_channel(
e8d00928 450 shared_ptr<Channel> channel) const
3ddcc083 451{
8dbbc7f0
JH
452 lock_guard<boost::shared_mutex> lock(signals_mutex_);
453 for (shared_ptr<view::Signal> sig : signals_) {
3ddcc083 454 assert(sig);
6ac6242b 455 if (sig->channel() == channel)
3ddcc083
JH
456 return sig;
457 }
458 return shared_ptr<view::Signal>();
459}
460
da30ecb7 461void Session::sample_thread_proc(shared_ptr<devices::Device> device,
f2edb557 462 function<void (const QString)> error_handler)
274d4f13 463{
e8d00928 464 assert(device);
f2edb557 465 assert(error_handler);
be73bdfa 466
34c11fa7
SA
467 if (!device_)
468 return;
45f0c7c9 469
b48daed6 470 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
274d4f13 471
e7216ae0
SA
472 out_of_memory_ = false;
473
ae2d1bc5 474 try {
5237f0c5 475 device_->start();
2ad82c2e 476 } catch (Error e) {
e8d00928 477 error_handler(e.what());
eec446e1
JH
478 return;
479 }
480
da30ecb7 481 set_capture_state(device_->session()->trigger() ?
07dcf561 482 AwaitingTrigger : Running);
eec446e1 483
da30ecb7 484 device_->run();
eec446e1 485 set_capture_state(Stopped);
1a2fe44c
JH
486
487 // Confirm that SR_DF_END was received
2ad82c2e 488 if (cur_logic_segment_) {
bb2cdfff
JH
489 qDebug("SR_DF_END was not received.");
490 assert(0);
491 }
e7216ae0
SA
492
493 if (out_of_memory_)
494 error_handler(tr("Out of memory, acquisition stopped."));
eec446e1
JH
495}
496
da30ecb7 497void Session::feed_in_header()
eec446e1 498{
b48daed6 499 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
be73bdfa
JH
500}
501
da30ecb7 502void Session::feed_in_meta(shared_ptr<Meta> meta)
be73bdfa 503{
e8d00928
ML
504 for (auto entry : meta->config()) {
505 switch (entry.first->id()) {
be73bdfa 506 case SR_CONF_SAMPLERATE:
8a7b603b
SA
507 // We can't rely on the header to always contain the sample rate,
508 // so in case it's supplied via a meta packet, we use it.
509 if (!cur_samplerate_)
510 cur_samplerate_ = g_variant_get_uint64(entry.second.gobj());
511
be73bdfa 512 /// @todo handle samplerate changes
be73bdfa
JH
513 break;
514 default:
515 // Unknown metadata is not an error.
516 break;
517 }
aba1dd16 518 }
74043039
JH
519
520 signals_changed();
aba1dd16
JH
521}
522
48257a69
SA
523void Session::feed_in_trigger()
524{
525 // The channel containing most samples should be most accurate
526 uint64_t sample_count = 0;
527
cc9a7898
SA
528 {
529 shared_lock<shared_mutex> lock(signals_mutex_);
530 for (const shared_ptr<pv::data::SignalData> d : all_signal_data_) {
531 assert(d);
532 uint64_t temp_count = 0;
533
534 const vector< shared_ptr<pv::data::Segment> > segments =
535 d->segments();
536 for (const shared_ptr<pv::data::Segment> &s : segments)
537 temp_count += s->get_sample_count();
538
539 if (temp_count > sample_count)
540 sample_count = temp_count;
541 }
48257a69
SA
542 }
543
544 trigger_event(sample_count / get_samplerate());
545}
546
2b81ae46 547void Session::feed_in_frame_begin()
82f50b10 548{
f3d66e52 549 if (cur_logic_segment_ || !cur_analog_segments_.empty())
82f50b10
JH
550 frame_began();
551}
552
2b81ae46 553void Session::feed_in_logic(shared_ptr<Logic> logic)
9c112671 554{
8524a597 555 lock_guard<recursive_mutex> lock(data_mutex_);
79efbc53 556
ff4bf6bd
SA
557 const size_t sample_count = logic->data_length() / logic->unit_size();
558
2ad82c2e 559 if (!logic_data_) {
e6c1382e
JH
560 // The only reason logic_data_ would not have been created is
561 // if it was not possible to determine the signals when the
562 // device was created.
563 update_signals();
79efbc53 564 }
be73bdfa 565
2ad82c2e 566 if (!cur_logic_segment_) {
bb2cdfff 567 // This could be the first packet after a trigger
2b49eeb0
JH
568 set_capture_state(Running);
569
f3d66e52
JH
570 // Create a new data segment
571 cur_logic_segment_ = shared_ptr<data::LogicSegment>(
572 new data::LogicSegment(
ff4bf6bd 573 logic, cur_samplerate_, sample_count));
f3d66e52 574 logic_data_->push_segment(cur_logic_segment_);
82f50b10
JH
575
576 // @todo Putting this here means that only listeners querying
577 // for logic will be notified. Currently the only user of
578 // frame_began is DecoderStack, but in future we need to signal
579 // this after both analog and logic sweeps have begun.
580 frame_began();
2ad82c2e 581 } else {
f3d66e52
JH
582 // Append to the existing data segment
583 cur_logic_segment_->append_payload(logic);
9c112671
JH
584 }
585
1f374035 586 data_received();
9c112671
JH
587}
588
2b81ae46 589void Session::feed_in_analog(shared_ptr<Analog> analog)
aba1dd16 590{
8524a597 591 lock_guard<recursive_mutex> lock(data_mutex_);
79efbc53 592
e8d00928
ML
593 const vector<shared_ptr<Channel>> channels = analog->channels();
594 const unsigned int channel_count = channels.size();
595 const size_t sample_count = analog->num_samples() / channel_count;
475f4d08 596 const float *data = static_cast<const float *>(analog->data_pointer());
bb2cdfff 597 bool sweep_beginning = false;
be73bdfa 598
2ad82c2e 599 if (signals_.empty())
a3f678a7 600 update_signals();
a3f678a7 601
2ad82c2e 602 for (auto channel : channels) {
f3d66e52 603 shared_ptr<data::AnalogSegment> segment;
2b49eeb0 604
f3d66e52
JH
605 // Try to get the segment of the channel
606 const map< shared_ptr<Channel>, shared_ptr<data::AnalogSegment> >::
607 iterator iter = cur_analog_segments_.find(channel);
608 if (iter != cur_analog_segments_.end())
609 segment = (*iter).second;
2ad82c2e 610 else {
39ccf9c3 611 // If no segment was found, this means we haven't
bb2cdfff 612 // created one yet. i.e. this is the first packet
f3d66e52 613 // in the sweep containing this segment.
bb2cdfff
JH
614 sweep_beginning = true;
615
f3d66e52
JH
616 // Create a segment, keep it in the maps of channels
617 segment = shared_ptr<data::AnalogSegment>(
618 new data::AnalogSegment(
ff4bf6bd 619 cur_samplerate_, sample_count));
f3d66e52 620 cur_analog_segments_[channel] = segment;
bb2cdfff 621
ff4bf6bd 622 // Find the analog data associated with the channel
bb2cdfff
JH
623 shared_ptr<view::AnalogSignal> sig =
624 dynamic_pointer_cast<view::AnalogSignal>(
6ac6242b 625 signal_from_channel(channel));
bb2cdfff
JH
626 assert(sig);
627
628 shared_ptr<data::Analog> data(sig->analog_data());
629 assert(data);
630
f3d66e52
JH
631 // Push the segment into the analog data.
632 data->push_segment(segment);
bb2cdfff
JH
633 }
634
f3d66e52 635 assert(segment);
bb2cdfff 636
f3d66e52
JH
637 // Append the samples in the segment
638 segment->append_interleaved_samples(data++, sample_count,
6ac6242b 639 channel_count);
aba1dd16 640 }
bb2cdfff
JH
641
642 if (sweep_beginning) {
643 // This could be the first packet after a trigger
644 set_capture_state(Running);
aba1dd16
JH
645 }
646
1f374035 647 data_received();
aba1dd16 648}
9c112671 649
da30ecb7
JH
650void Session::data_feed_in(shared_ptr<sigrok::Device> device,
651 shared_ptr<Packet> packet)
b0e1d01d 652{
da30ecb7
JH
653 (void)device;
654
e8d00928 655 assert(device);
da30ecb7 656 assert(device == device_->device());
b0e1d01d
JH
657 assert(packet);
658
e8d00928 659 switch (packet->type()->id()) {
b0e1d01d 660 case SR_DF_HEADER:
da30ecb7 661 feed_in_header();
b0e1d01d
JH
662 break;
663
be73bdfa 664 case SR_DF_META:
da30ecb7 665 feed_in_meta(dynamic_pointer_cast<Meta>(packet->payload()));
aba1dd16
JH
666 break;
667
48257a69
SA
668 case SR_DF_TRIGGER:
669 feed_in_trigger();
670 break;
671
82f50b10
JH
672 case SR_DF_FRAME_BEGIN:
673 feed_in_frame_begin();
674 break;
675
2e2946fe 676 case SR_DF_LOGIC:
e7216ae0
SA
677 try {
678 feed_in_logic(dynamic_pointer_cast<Logic>(packet->payload()));
679 } catch (std::bad_alloc) {
680 out_of_memory_ = true;
681 device_->stop();
682 }
2953961c
JH
683 break;
684
aba1dd16 685 case SR_DF_ANALOG:
e7216ae0
SA
686 try {
687 feed_in_analog(dynamic_pointer_cast<Analog>(packet->payload()));
688 } catch (std::bad_alloc) {
689 out_of_memory_ = true;
690 device_->stop();
691 }
aba1dd16
JH
692 break;
693
2953961c 694 case SR_DF_END:
2e2946fe
JH
695 {
696 {
8524a597 697 lock_guard<recursive_mutex> lock(data_mutex_);
f3d66e52
JH
698 cur_logic_segment_.reset();
699 cur_analog_segments_.clear();
2e2946fe 700 }
1f374035 701 frame_ended();
2953961c
JH
702 break;
703 }
adb0a983
ML
704 default:
705 break;
2e2946fe 706 }
2953961c
JH
707}
708
51e77110 709} // namespace pv