]> sigrok.org Git - pulseview.git/blame_incremental - pv/session.cpp
Allow dock windows to be closed and handle this properly
[pulseview.git] / pv / session.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012-14 Joel Holdsworth <joel@airwebreathe.org.uk>
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
21#ifdef _WIN32
22// Windows: Avoid boost/thread namespace pollution (which includes windows.h).
23#define NOGDI
24#define NORESOURCE
25#endif
26#include <boost/thread/locks.hpp>
27#include <boost/thread/shared_mutex.hpp>
28
29#include <QFileInfo>
30
31#include <cassert>
32#include <mutex>
33#include <stdexcept>
34
35#include <sys/stat.h>
36
37#include "session.hpp"
38#include "devicemanager.hpp"
39
40#include "data/analog.hpp"
41#include "data/analogsegment.hpp"
42#include "data/decoderstack.hpp"
43#include "data/logic.hpp"
44#include "data/logicsegment.hpp"
45#include "data/signalbase.hpp"
46#include "data/decode/decoder.hpp"
47
48#include "devices/hardwaredevice.hpp"
49#include "devices/sessionfile.hpp"
50
51#include "toolbars/mainbar.hpp"
52
53#include "view/analogsignal.hpp"
54#include "view/decodetrace.hpp"
55#include "view/logicsignal.hpp"
56#include "view/signal.hpp"
57#include "view/view.hpp"
58
59#include <libsigrokcxx/libsigrokcxx.hpp>
60
61#ifdef ENABLE_DECODE
62#include <libsigrokdecode/libsigrokdecode.h>
63#endif
64
65using boost::shared_lock;
66using boost::shared_mutex;
67using boost::unique_lock;
68
69using std::dynamic_pointer_cast;
70using std::function;
71using std::lock_guard;
72using std::list;
73using std::map;
74using std::mutex;
75using std::recursive_mutex;
76using std::set;
77using std::shared_ptr;
78using std::string;
79using std::unordered_set;
80using std::vector;
81
82using sigrok::Analog;
83using sigrok::Channel;
84using sigrok::ChannelType;
85using sigrok::ConfigKey;
86using sigrok::DatafeedCallbackFunction;
87using sigrok::Error;
88using sigrok::Header;
89using sigrok::Logic;
90using sigrok::Meta;
91using sigrok::Packet;
92using sigrok::PacketPayload;
93using sigrok::Session;
94using sigrok::SessionDevice;
95
96using Glib::VariantBase;
97using Glib::Variant;
98
99namespace pv {
100Session::Session(DeviceManager &device_manager, QString name) :
101 device_manager_(device_manager),
102 name_(name),
103 capture_state_(Stopped),
104 cur_samplerate_(0)
105{
106}
107
108Session::~Session()
109{
110 // Stop and join to the thread
111 stop_capture();
112}
113
114DeviceManager& Session::device_manager()
115{
116 return device_manager_;
117}
118
119const DeviceManager& Session::device_manager() const
120{
121 return device_manager_;
122}
123
124shared_ptr<sigrok::Session> Session::session() const
125{
126 if (!device_)
127 return shared_ptr<sigrok::Session>();
128 return device_->session();
129}
130
131shared_ptr<devices::Device> Session::device() const
132{
133 return device_;
134}
135
136QString Session::name() const
137{
138 return name_;
139}
140
141void Session::set_name(QString name)
142{
143 if (default_name_.isEmpty())
144 default_name_ = name;
145
146 name_ = name;
147
148 name_changed();
149}
150
151const std::list< std::shared_ptr<pv::view::View> > Session::views() const
152{
153 return views_;
154}
155
156std::shared_ptr<pv::view::View> Session::main_view() const
157{
158 return main_view_;
159}
160
161void Session::set_main_bar(std::shared_ptr<pv::toolbars::MainBar> main_bar)
162{
163 main_bar_ = main_bar;
164}
165
166shared_ptr<pv::toolbars::MainBar> Session::main_bar() const
167{
168 return main_bar_;
169}
170
171void Session::save_settings(QSettings &settings) const
172{
173 map<string, string> dev_info;
174 list<string> key_list;
175 int stacks = 0, views = 0;
176
177 if (device_) {
178 shared_ptr<devices::HardwareDevice> hw_device =
179 dynamic_pointer_cast< devices::HardwareDevice >(device_);
180
181 if (hw_device) {
182 settings.setValue("device_type", "hardware");
183 settings.beginGroup("device");
184
185 key_list.push_back("vendor");
186 key_list.push_back("model");
187 key_list.push_back("version");
188 key_list.push_back("serial_num");
189 key_list.push_back("connection_id");
190
191 dev_info = device_manager_.get_device_info(device_);
192
193 for (string key : key_list) {
194 if (dev_info.count(key))
195 settings.setValue(QString::fromUtf8(key.c_str()),
196 QString::fromUtf8(dev_info.at(key).c_str()));
197 else
198 settings.remove(QString::fromUtf8(key.c_str()));
199 }
200
201 settings.endGroup();
202 }
203
204 shared_ptr<devices::SessionFile> sessionfile_device =
205 dynamic_pointer_cast< devices::SessionFile >(device_);
206
207 if (sessionfile_device) {
208 settings.setValue("device_type", "sessionfile");
209 settings.beginGroup("device");
210 settings.setValue("filename", QString::fromStdString(
211 sessionfile_device->full_name()));
212 settings.endGroup();
213 }
214
215 // Save channels and decoders
216 for (shared_ptr<data::SignalBase> base : signalbases_) {
217#ifdef ENABLE_DECODE
218 if (base->is_decode_signal()) {
219 shared_ptr<pv::data::DecoderStack> decoder_stack =
220 base->decoder_stack();
221 std::shared_ptr<data::decode::Decoder> top_decoder =
222 decoder_stack->stack().front();
223
224 settings.beginGroup("decoder_stack" + QString::number(stacks++));
225 settings.setValue("id", top_decoder->decoder()->id);
226 settings.setValue("name", top_decoder->decoder()->name);
227 settings.endGroup();
228 } else
229#endif
230 {
231 settings.beginGroup(base->internal_name());
232 base->save_settings(settings);
233 settings.endGroup();
234 }
235 }
236
237 settings.setValue("decoder_stacks", stacks);
238
239 // Save view states and their signal settings
240 // Note: main_view must be saved as view0
241 settings.beginGroup("view" + QString::number(views++));
242 main_view_->save_settings(settings);
243 settings.endGroup();
244
245 for (shared_ptr<view::View> view : views_) {
246 if (view != main_view_) {
247 settings.beginGroup("view" + QString::number(views++));
248 view->save_settings(settings);
249 settings.endGroup();
250 }
251 }
252
253 settings.setValue("views", views);
254 }
255}
256
257void Session::restore_settings(QSettings &settings)
258{
259 shared_ptr<devices::Device> device;
260
261 QString device_type = settings.value("device_type").toString();
262
263 if (device_type == "hardware") {
264 map<string, string> dev_info;
265 list<string> key_list;
266
267 // Re-select last used device if possible but only if it's not demo
268 settings.beginGroup("device");
269 key_list.push_back("vendor");
270 key_list.push_back("model");
271 key_list.push_back("version");
272 key_list.push_back("serial_num");
273 key_list.push_back("connection_id");
274
275 for (string key : key_list) {
276 const QString k = QString::fromStdString(key);
277 if (!settings.contains(k))
278 continue;
279
280 const string value = settings.value(k).toString().toStdString();
281 if (!value.empty())
282 dev_info.insert(std::make_pair(key, value));
283 }
284
285 if (dev_info.count("model") > 0)
286 device = device_manager_.find_device_from_info(dev_info);
287
288 if (device)
289 set_device(device);
290
291 settings.endGroup();
292 }
293
294 if (device_type == "sessionfile") {
295 settings.beginGroup("device");
296 QString filename = settings.value("filename").toString();
297 settings.endGroup();
298
299 if (QFileInfo(filename).isReadable()) {
300 device = std::make_shared<devices::SessionFile>(device_manager_.context(),
301 filename.toStdString());
302 set_device(device);
303 set_name(filename);
304
305 // TODO Perform error handling
306 start_capture([](QString infoMessage) { (void)infoMessage; });
307 }
308 }
309
310 if (device) {
311 // Restore channels
312 for (shared_ptr<data::SignalBase> base : signalbases_) {
313 settings.beginGroup(base->internal_name());
314 base->restore_settings(settings);
315 settings.endGroup();
316 }
317
318 // Restore decoders
319#ifdef ENABLE_DECODE
320 int stacks = settings.value("decoder_stacks").toInt();
321
322 for (int i = 0; i < stacks; i++) {
323 settings.beginGroup("decoder_stack" + QString::number(i++));
324
325 QString id = settings.value("id").toString();
326 add_decoder(srd_decoder_get_by_id(id.toStdString().c_str()));
327
328 settings.endGroup();
329 }
330#endif
331
332 // Restore views
333 int views = settings.value("views").toInt();
334
335 for (int i = 0; i < views; i++) {
336 settings.beginGroup("view" + QString::number(i));
337
338 if (i > 0) {
339 view::ViewType type = (view::ViewType)settings.value("type").toInt();
340 add_view(name_, type, this);
341 views_.back()->restore_settings(settings);
342 } else
343 main_view_->restore_settings(settings);
344
345 settings.endGroup();
346 }
347 }
348}
349
350void Session::set_device(shared_ptr<devices::Device> device)
351{
352 assert(device);
353
354 // Ensure we are not capturing before setting the device
355 stop_capture();
356
357 if (device_)
358 device_->close();
359
360 device_.reset();
361
362 // Revert name back to default name (e.g. "Untitled-1") as the data is gone
363 name_ = default_name_;
364 name_changed();
365
366 // Remove all stored data
367 for (std::shared_ptr<pv::view::View> view : views_) {
368 view->clear_signals();
369#ifdef ENABLE_DECODE
370 view->clear_decode_traces();
371#endif
372 }
373 for (const shared_ptr<data::SignalData> d : all_signal_data_)
374 d->clear();
375 all_signal_data_.clear();
376 signalbases_.clear();
377 cur_logic_segment_.reset();
378
379 for (auto entry : cur_analog_segments_) {
380 shared_ptr<sigrok::Channel>(entry.first).reset();
381 shared_ptr<data::AnalogSegment>(entry.second).reset();
382 }
383
384 logic_data_.reset();
385
386 signals_changed();
387
388 device_ = std::move(device);
389
390 try {
391 device_->open();
392 } catch (const QString &e) {
393 device_.reset();
394 device_changed();
395 throw;
396 }
397
398 device_->session()->add_datafeed_callback([=]
399 (shared_ptr<sigrok::Device> device, shared_ptr<Packet> packet) {
400 data_feed_in(device, packet);
401 });
402
403 update_signals();
404 device_changed();
405}
406
407void Session::set_default_device()
408{
409 const list< shared_ptr<devices::HardwareDevice> > &devices =
410 device_manager_.devices();
411
412 if (devices.empty())
413 return;
414
415 // Try and find the demo device and select that by default
416 const auto iter = std::find_if(devices.begin(), devices.end(),
417 [] (const shared_ptr<devices::HardwareDevice> &d) {
418 return d->hardware_device()->driver()->name() ==
419 "demo"; });
420 set_device((iter == devices.end()) ? devices.front() : *iter);
421}
422
423Session::capture_state Session::get_capture_state() const
424{
425 lock_guard<mutex> lock(sampling_mutex_);
426 return capture_state_;
427}
428
429void Session::start_capture(function<void (const QString)> error_handler)
430{
431 if (!device_) {
432 error_handler(tr("No active device set, can't start acquisition."));
433 return;
434 }
435
436 stop_capture();
437
438 // Check that at least one channel is enabled
439 const shared_ptr<sigrok::Device> sr_dev = device_->device();
440 if (sr_dev) {
441 const auto channels = sr_dev->channels();
442 if (!std::any_of(channels.begin(), channels.end(),
443 [](shared_ptr<Channel> channel) {
444 return channel->enabled(); })) {
445 error_handler(tr("No channels enabled."));
446 return;
447 }
448 }
449
450 // Clear signal data
451 for (const shared_ptr<data::SignalData> d : all_signal_data_)
452 d->clear();
453
454 // Revert name back to default name (e.g. "Untitled-1") as the data is gone
455 name_ = default_name_;
456 name_changed();
457
458 // Begin the session
459 sampling_thread_ = std::thread(
460 &Session::sample_thread_proc, this, error_handler);
461}
462
463void Session::stop_capture()
464{
465 if (get_capture_state() != Stopped)
466 device_->stop();
467
468 // Check that sampling stopped
469 if (sampling_thread_.joinable())
470 sampling_thread_.join();
471}
472
473void Session::register_view(std::shared_ptr<pv::view::View> view)
474{
475 if (views_.empty()) {
476 main_view_ = view;
477 }
478
479 views_.push_back(view);
480}
481
482void Session::deregister_view(std::shared_ptr<pv::view::View> view)
483{
484 views_.remove_if([&](std::shared_ptr<pv::view::View> v) {
485 return v == view; });
486
487 if (views_.empty()) {
488 main_view_.reset();
489
490 // Without a view there can be no main bar
491 main_bar_.reset();
492 }
493}
494
495bool Session::has_view(std::shared_ptr<pv::view::View> view)
496{
497 for (std::shared_ptr<pv::view::View> v : views_)
498 if (v == view)
499 return true;
500
501 return false;
502}
503
504double Session::get_samplerate() const
505{
506 double samplerate = 0.0;
507
508 for (const shared_ptr<pv::data::SignalData> d : all_signal_data_) {
509 assert(d);
510 const vector< shared_ptr<pv::data::Segment> > segments =
511 d->segments();
512 for (const shared_ptr<pv::data::Segment> &s : segments)
513 samplerate = std::max(samplerate, s->samplerate());
514 }
515 // If there is no sample rate given we use samples as unit
516 if (samplerate == 0.0)
517 samplerate = 1.0;
518
519 return samplerate;
520}
521
522const std::unordered_set< std::shared_ptr<data::SignalBase> >
523 Session::signalbases() const
524{
525 return signalbases_;
526}
527
528#ifdef ENABLE_DECODE
529bool Session::add_decoder(srd_decoder *const dec)
530{
531 map<const srd_channel*, shared_ptr<data::SignalBase> > channels;
532 shared_ptr<data::DecoderStack> decoder_stack;
533
534 try {
535 // Create the decoder
536 decoder_stack = shared_ptr<data::DecoderStack>(
537 new data::DecoderStack(*this, dec));
538
539 // Make a list of all the channels
540 std::vector<const srd_channel*> all_channels;
541 for (const GSList *i = dec->channels; i; i = i->next)
542 all_channels.push_back((const srd_channel*)i->data);
543 for (const GSList *i = dec->opt_channels; i; i = i->next)
544 all_channels.push_back((const srd_channel*)i->data);
545
546 // Auto select the initial channels
547 for (const srd_channel *pdch : all_channels)
548 for (shared_ptr<data::SignalBase> b : signalbases_) {
549 if (b->type() == ChannelType::LOGIC) {
550 if (QString::fromUtf8(pdch->name).toLower().
551 contains(b->name().toLower()))
552 channels[pdch] = b;
553 }
554 }
555
556 assert(decoder_stack);
557 assert(!decoder_stack->stack().empty());
558 assert(decoder_stack->stack().front());
559 decoder_stack->stack().front()->set_channels(channels);
560
561 // Create the decode signal
562 shared_ptr<data::SignalBase> signalbase =
563 shared_ptr<data::SignalBase>(new data::SignalBase(nullptr));
564
565 signalbase->set_decoder_stack(decoder_stack);
566 signalbases_.insert(signalbase);
567
568 for (std::shared_ptr<pv::view::View> view : views_)
569 view->add_decode_trace(signalbase);
570 } catch (std::runtime_error e) {
571 return false;
572 }
573
574 signals_changed();
575
576 // Do an initial decode
577 decoder_stack->begin_decode();
578
579 return true;
580}
581
582void Session::remove_decode_signal(shared_ptr<data::SignalBase> signalbase)
583{
584 for (std::shared_ptr<pv::view::View> view : views_)
585 view->remove_decode_trace(signalbase);
586}
587#endif
588
589void Session::set_capture_state(capture_state state)
590{
591 bool changed;
592
593 {
594 lock_guard<mutex> lock(sampling_mutex_);
595 changed = capture_state_ != state;
596 capture_state_ = state;
597 }
598
599 if (changed)
600 capture_state_changed(state);
601}
602
603void Session::update_signals()
604{
605 if (!device_) {
606 signalbases_.clear();
607 logic_data_.reset();
608 for (std::shared_ptr<pv::view::View> view : views_) {
609 view->clear_signals();
610#ifdef ENABLE_DECODE
611 view->clear_decode_traces();
612#endif
613 }
614 return;
615 }
616
617 lock_guard<recursive_mutex> lock(data_mutex_);
618
619 const shared_ptr<sigrok::Device> sr_dev = device_->device();
620 if (!sr_dev) {
621 signalbases_.clear();
622 logic_data_.reset();
623 for (std::shared_ptr<pv::view::View> view : views_) {
624 view->clear_signals();
625#ifdef ENABLE_DECODE
626 view->clear_decode_traces();
627#endif
628 }
629 return;
630 }
631
632 // Detect what data types we will receive
633 auto channels = sr_dev->channels();
634 unsigned int logic_channel_count = std::count_if(
635 channels.begin(), channels.end(),
636 [] (shared_ptr<Channel> channel) {
637 return channel->type() == ChannelType::LOGIC; });
638
639 // Create data containers for the logic data segments
640 {
641 lock_guard<recursive_mutex> data_lock(data_mutex_);
642
643 if (logic_channel_count == 0) {
644 logic_data_.reset();
645 } else if (!logic_data_ ||
646 logic_data_->num_channels() != logic_channel_count) {
647 logic_data_.reset(new data::Logic(
648 logic_channel_count));
649 assert(logic_data_);
650 }
651 }
652
653 // Make the signals list
654 for (std::shared_ptr<pv::view::View> view : views_) {
655 unordered_set< shared_ptr<view::Signal> > prev_sigs(view->signals());
656 view->clear_signals();
657
658 for (auto channel : sr_dev->channels()) {
659 shared_ptr<data::SignalBase> signalbase;
660 shared_ptr<view::Signal> signal;
661
662 // Find the channel in the old signals
663 const auto iter = std::find_if(
664 prev_sigs.cbegin(), prev_sigs.cend(),
665 [&](const shared_ptr<view::Signal> &s) {
666 return s->base()->channel() == channel;
667 });
668 if (iter != prev_sigs.end()) {
669 // Copy the signal from the old set to the new
670 signal = *iter;
671 } else {
672 // Find the signalbase for this channel if possible
673 signalbase.reset();
674 for (const shared_ptr<data::SignalBase> b : signalbases_)
675 if (b->channel() == channel)
676 signalbase = b;
677
678 switch(channel->type()->id()) {
679 case SR_CHANNEL_LOGIC:
680 if (!signalbase) {
681 signalbase = shared_ptr<data::SignalBase>(
682 new data::SignalBase(channel));
683 signalbases_.insert(signalbase);
684
685 all_signal_data_.insert(logic_data_);
686 signalbase->set_data(logic_data_);
687 }
688
689 signal = shared_ptr<view::Signal>(
690 new view::LogicSignal(*this,
691 device_, signalbase));
692 view->add_signal(signal);
693 break;
694
695 case SR_CHANNEL_ANALOG:
696 {
697 if (!signalbase) {
698 signalbase = shared_ptr<data::SignalBase>(
699 new data::SignalBase(channel));
700 signalbases_.insert(signalbase);
701
702 shared_ptr<data::Analog> data(new data::Analog());
703 all_signal_data_.insert(data);
704 signalbase->set_data(data);
705 }
706
707 signal = shared_ptr<view::Signal>(
708 new view::AnalogSignal(
709 *this, signalbase));
710 view->add_signal(signal);
711 break;
712 }
713
714 default:
715 assert(0);
716 break;
717 }
718 }
719 }
720 }
721
722 signals_changed();
723}
724
725shared_ptr<data::SignalBase> Session::signalbase_from_channel(
726 shared_ptr<sigrok::Channel> channel) const
727{
728 for (shared_ptr<data::SignalBase> sig : signalbases_) {
729 assert(sig);
730 if (sig->channel() == channel)
731 return sig;
732 }
733 return shared_ptr<data::SignalBase>();
734}
735
736void Session::sample_thread_proc(function<void (const QString)> error_handler)
737{
738 assert(error_handler);
739
740 if (!device_)
741 return;
742
743 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
744
745 out_of_memory_ = false;
746
747 try {
748 device_->start();
749 } catch (Error e) {
750 error_handler(e.what());
751 return;
752 }
753
754 set_capture_state(device_->session()->trigger() ?
755 AwaitingTrigger : Running);
756
757 device_->run();
758 set_capture_state(Stopped);
759
760 // Confirm that SR_DF_END was received
761 if (cur_logic_segment_) {
762 qDebug("SR_DF_END was not received.");
763 assert(0);
764 }
765
766 if (out_of_memory_)
767 error_handler(tr("Out of memory, acquisition stopped."));
768}
769
770void Session::feed_in_header()
771{
772 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
773}
774
775void Session::feed_in_meta(shared_ptr<Meta> meta)
776{
777 for (auto entry : meta->config()) {
778 switch (entry.first->id()) {
779 case SR_CONF_SAMPLERATE:
780 // We can't rely on the header to always contain the sample rate,
781 // so in case it's supplied via a meta packet, we use it.
782 if (!cur_samplerate_)
783 cur_samplerate_ = g_variant_get_uint64(entry.second.gobj());
784
785 /// @todo handle samplerate changes
786 break;
787 default:
788 // Unknown metadata is not an error.
789 break;
790 }
791 }
792
793 signals_changed();
794}
795
796void Session::feed_in_trigger()
797{
798 // The channel containing most samples should be most accurate
799 uint64_t sample_count = 0;
800
801 {
802 for (const shared_ptr<pv::data::SignalData> d : all_signal_data_) {
803 assert(d);
804 uint64_t temp_count = 0;
805
806 const vector< shared_ptr<pv::data::Segment> > segments =
807 d->segments();
808 for (const shared_ptr<pv::data::Segment> &s : segments)
809 temp_count += s->get_sample_count();
810
811 if (temp_count > sample_count)
812 sample_count = temp_count;
813 }
814 }
815
816 trigger_event(sample_count / get_samplerate());
817}
818
819void Session::feed_in_frame_begin()
820{
821 if (cur_logic_segment_ || !cur_analog_segments_.empty())
822 frame_began();
823}
824
825void Session::feed_in_logic(shared_ptr<Logic> logic)
826{
827 lock_guard<recursive_mutex> lock(data_mutex_);
828
829 const size_t sample_count = logic->data_length() / logic->unit_size();
830
831 if (!logic_data_) {
832 // The only reason logic_data_ would not have been created is
833 // if it was not possible to determine the signals when the
834 // device was created.
835 update_signals();
836 }
837
838 if (!cur_logic_segment_) {
839 // This could be the first packet after a trigger
840 set_capture_state(Running);
841
842 // Create a new data segment
843 cur_logic_segment_ = shared_ptr<data::LogicSegment>(
844 new data::LogicSegment(
845 logic, cur_samplerate_, sample_count));
846 logic_data_->push_segment(cur_logic_segment_);
847
848 // @todo Putting this here means that only listeners querying
849 // for logic will be notified. Currently the only user of
850 // frame_began is DecoderStack, but in future we need to signal
851 // this after both analog and logic sweeps have begun.
852 frame_began();
853 } else {
854 // Append to the existing data segment
855 cur_logic_segment_->append_payload(logic);
856 }
857
858 data_received();
859}
860
861void Session::feed_in_analog(shared_ptr<Analog> analog)
862{
863 lock_guard<recursive_mutex> lock(data_mutex_);
864
865 const vector<shared_ptr<Channel>> channels = analog->channels();
866 const unsigned int channel_count = channels.size();
867 const size_t sample_count = analog->num_samples() / channel_count;
868 const float *data = static_cast<const float *>(analog->data_pointer());
869 bool sweep_beginning = false;
870
871 if (signalbases_.empty())
872 update_signals();
873
874 for (auto channel : channels) {
875 shared_ptr<data::AnalogSegment> segment;
876
877 // Try to get the segment of the channel
878 const map< shared_ptr<Channel>, shared_ptr<data::AnalogSegment> >::
879 iterator iter = cur_analog_segments_.find(channel);
880 if (iter != cur_analog_segments_.end())
881 segment = (*iter).second;
882 else {
883 // If no segment was found, this means we haven't
884 // created one yet. i.e. this is the first packet
885 // in the sweep containing this segment.
886 sweep_beginning = true;
887
888 // Create a segment, keep it in the maps of channels
889 segment = shared_ptr<data::AnalogSegment>(
890 new data::AnalogSegment(
891 cur_samplerate_, sample_count));
892 cur_analog_segments_[channel] = segment;
893
894 // Find the analog data associated with the channel
895 shared_ptr<data::SignalBase> base = signalbase_from_channel(channel);
896 assert(base);
897
898 shared_ptr<data::Analog> data(base->analog_data());
899 assert(data);
900
901 // Push the segment into the analog data.
902 data->push_segment(segment);
903 }
904
905 assert(segment);
906
907 // Append the samples in the segment
908 segment->append_interleaved_samples(data++, sample_count,
909 channel_count);
910 }
911
912 if (sweep_beginning) {
913 // This could be the first packet after a trigger
914 set_capture_state(Running);
915 }
916
917 data_received();
918}
919
920void Session::data_feed_in(shared_ptr<sigrok::Device> device,
921 shared_ptr<Packet> packet)
922{
923 (void)device;
924
925 assert(device);
926 assert(device == device_->device());
927 assert(packet);
928
929 switch (packet->type()->id()) {
930 case SR_DF_HEADER:
931 feed_in_header();
932 break;
933
934 case SR_DF_META:
935 feed_in_meta(dynamic_pointer_cast<Meta>(packet->payload()));
936 break;
937
938 case SR_DF_TRIGGER:
939 feed_in_trigger();
940 break;
941
942 case SR_DF_FRAME_BEGIN:
943 feed_in_frame_begin();
944 break;
945
946 case SR_DF_LOGIC:
947 try {
948 feed_in_logic(dynamic_pointer_cast<Logic>(packet->payload()));
949 } catch (std::bad_alloc) {
950 out_of_memory_ = true;
951 device_->stop();
952 }
953 break;
954
955 case SR_DF_ANALOG:
956 try {
957 feed_in_analog(dynamic_pointer_cast<Analog>(packet->payload()));
958 } catch (std::bad_alloc) {
959 out_of_memory_ = true;
960 device_->stop();
961 }
962 break;
963
964 case SR_DF_END:
965 {
966 {
967 lock_guard<recursive_mutex> lock(data_mutex_);
968 cur_logic_segment_.reset();
969 cur_analog_segments_.clear();
970 }
971 frame_ended();
972 break;
973 }
974 default:
975 break;
976 }
977}
978
979} // namespace pv