]> sigrok.org Git - pulseview.git/blame_incremental - pv/session.cpp
Save/restore view type
[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, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <QDebug>
21#include <QFileInfo>
22
23#include <cassert>
24#include <memory>
25#include <mutex>
26#include <stdexcept>
27
28#include <sys/stat.h>
29
30#include "devicemanager.hpp"
31#include "mainwindow.hpp"
32#include "session.hpp"
33
34#include "data/analog.hpp"
35#include "data/analogsegment.hpp"
36#include "data/decode/decoder.hpp"
37#include "data/logic.hpp"
38#include "data/logicsegment.hpp"
39#include "data/signalbase.hpp"
40
41#include "devices/hardwaredevice.hpp"
42#include "devices/inputfile.hpp"
43#include "devices/sessionfile.hpp"
44
45#include "toolbars/mainbar.hpp"
46
47#include "views/trace/analogsignal.hpp"
48#include "views/trace/decodetrace.hpp"
49#include "views/trace/logicsignal.hpp"
50#include "views/trace/signal.hpp"
51#include "views/trace/view.hpp"
52
53#include <libsigrokcxx/libsigrokcxx.hpp>
54
55#ifdef ENABLE_FLOW
56#include <gstreamermm.h>
57#include <libsigrokflow/libsigrokflow.hpp>
58#endif
59
60#ifdef ENABLE_DECODE
61#include <libsigrokdecode/libsigrokdecode.h>
62#include "data/decodesignal.hpp"
63#endif
64
65using std::bad_alloc;
66using std::dynamic_pointer_cast;
67using std::find_if;
68using std::function;
69using std::lock_guard;
70using std::list;
71using std::make_pair;
72using std::make_shared;
73using std::map;
74using std::max;
75using std::move;
76using std::mutex;
77using std::pair;
78using std::recursive_mutex;
79using std::runtime_error;
80using std::shared_ptr;
81using std::string;
82#ifdef ENABLE_FLOW
83using std::unique_lock;
84#endif
85using std::unique_ptr;
86using std::unordered_set;
87using std::vector;
88
89using sigrok::Analog;
90using sigrok::Channel;
91using sigrok::ConfigKey;
92using sigrok::DatafeedCallbackFunction;
93using sigrok::Error;
94using sigrok::InputFormat;
95using sigrok::Logic;
96using sigrok::Meta;
97using sigrok::Packet;
98using sigrok::Session;
99
100using Glib::VariantBase;
101
102#ifdef ENABLE_FLOW
103using Gst::Bus;
104using Gst::ElementFactory;
105using Gst::Pipeline;
106#endif
107
108namespace pv {
109
110shared_ptr<sigrok::Context> Session::sr_context;
111
112Session::Session(DeviceManager &device_manager, QString name) :
113 device_manager_(device_manager),
114 default_name_(name),
115 name_(name),
116 capture_state_(Stopped),
117 cur_samplerate_(0),
118 data_saved_(true)
119{
120}
121
122Session::~Session()
123{
124 // Stop and join to the thread
125 stop_capture();
126}
127
128DeviceManager& Session::device_manager()
129{
130 return device_manager_;
131}
132
133const DeviceManager& Session::device_manager() const
134{
135 return device_manager_;
136}
137
138shared_ptr<sigrok::Session> Session::session() const
139{
140 if (!device_)
141 return shared_ptr<sigrok::Session>();
142 return device_->session();
143}
144
145shared_ptr<devices::Device> Session::device() const
146{
147 return device_;
148}
149
150QString Session::name() const
151{
152 return name_;
153}
154
155void Session::set_name(QString name)
156{
157 if (default_name_.isEmpty())
158 default_name_ = name;
159
160 name_ = name;
161
162 name_changed();
163}
164
165const list< shared_ptr<views::ViewBase> > Session::views() const
166{
167 return views_;
168}
169
170shared_ptr<views::ViewBase> Session::main_view() const
171{
172 return main_view_;
173}
174
175void Session::set_main_bar(shared_ptr<pv::toolbars::MainBar> main_bar)
176{
177 main_bar_ = main_bar;
178}
179
180shared_ptr<pv::toolbars::MainBar> Session::main_bar() const
181{
182 return main_bar_;
183}
184
185bool Session::data_saved() const
186{
187 return data_saved_;
188}
189
190void Session::save_setup(QSettings &settings) const
191{
192 int decode_signals = 0, views = 0;
193
194 // Save channels and decoders
195 for (const shared_ptr<data::SignalBase>& base : signalbases_) {
196#ifdef ENABLE_DECODE
197 if (base->is_decode_signal()) {
198 settings.beginGroup("decode_signal" + QString::number(decode_signals++));
199 base->save_settings(settings);
200 settings.endGroup();
201 } else
202#endif
203 {
204 settings.beginGroup(base->internal_name());
205 base->save_settings(settings);
206 settings.endGroup();
207 }
208 }
209
210 settings.setValue("decode_signals", decode_signals);
211
212 // Save view states and their signal settings
213 // Note: main_view must be saved as view0
214 settings.beginGroup("view" + QString::number(views++));
215 main_view_->save_settings(settings);
216 settings.endGroup();
217
218 for (const shared_ptr<views::ViewBase>& view : views_) {
219 if (view != main_view_) {
220 settings.beginGroup("view" + QString::number(views++));
221 settings.setValue("type", view->get_type());
222 view->save_settings(settings);
223 settings.endGroup();
224 }
225 }
226
227 settings.setValue("views", views);
228}
229
230void Session::save_settings(QSettings &settings) const
231{
232 map<string, string> dev_info;
233 list<string> key_list;
234
235 if (device_) {
236 shared_ptr<devices::HardwareDevice> hw_device =
237 dynamic_pointer_cast< devices::HardwareDevice >(device_);
238
239 if (hw_device) {
240 settings.setValue("device_type", "hardware");
241 settings.beginGroup("device");
242
243 key_list.emplace_back("vendor");
244 key_list.emplace_back("model");
245 key_list.emplace_back("version");
246 key_list.emplace_back("serial_num");
247 key_list.emplace_back("connection_id");
248
249 dev_info = device_manager_.get_device_info(device_);
250
251 for (string& key : key_list) {
252 if (dev_info.count(key))
253 settings.setValue(QString::fromUtf8(key.c_str()),
254 QString::fromUtf8(dev_info.at(key).c_str()));
255 else
256 settings.remove(QString::fromUtf8(key.c_str()));
257 }
258
259 settings.endGroup();
260 }
261
262 shared_ptr<devices::SessionFile> sessionfile_device =
263 dynamic_pointer_cast<devices::SessionFile>(device_);
264
265 if (sessionfile_device) {
266 settings.setValue("device_type", "sessionfile");
267 settings.beginGroup("device");
268 settings.setValue("filename", QString::fromStdString(
269 sessionfile_device->full_name()));
270 settings.endGroup();
271 }
272
273 shared_ptr<devices::InputFile> inputfile_device =
274 dynamic_pointer_cast<devices::InputFile>(device_);
275
276 if (inputfile_device) {
277 settings.setValue("device_type", "inputfile");
278 settings.beginGroup("device");
279 inputfile_device->save_meta_to_settings(settings);
280 settings.endGroup();
281 }
282
283 save_setup(settings);
284 }
285}
286
287void Session::restore_setup(QSettings &settings)
288{
289 // Restore channels
290 for (shared_ptr<data::SignalBase> base : signalbases_) {
291 settings.beginGroup(base->internal_name());
292 base->restore_settings(settings);
293 settings.endGroup();
294 }
295
296 // Restore decoders
297#ifdef ENABLE_DECODE
298 int decode_signals = settings.value("decode_signals").toInt();
299
300 for (int i = 0; i < decode_signals; i++) {
301 settings.beginGroup("decode_signal" + QString::number(i));
302 shared_ptr<data::DecodeSignal> signal = add_decode_signal();
303 signal->restore_settings(settings);
304 settings.endGroup();
305 }
306#endif
307
308 // Restore views
309 int views = settings.value("views").toInt();
310
311 for (int i = 0; i < views; i++) {
312 settings.beginGroup("view" + QString::number(i));
313
314 if (i > 0) {
315 views::ViewType type = (views::ViewType)settings.value("type").toInt();
316 add_view(type, this);
317 views_.back()->restore_settings(settings);
318 } else
319 main_view_->restore_settings(settings);
320
321 settings.endGroup();
322 }
323}
324
325void Session::restore_settings(QSettings &settings)
326{
327 shared_ptr<devices::Device> device;
328
329 QString device_type = settings.value("device_type").toString();
330
331 if (device_type == "hardware") {
332 map<string, string> dev_info;
333 list<string> key_list;
334
335 // Re-select last used device if possible but only if it's not demo
336 settings.beginGroup("device");
337 key_list.emplace_back("vendor");
338 key_list.emplace_back("model");
339 key_list.emplace_back("version");
340 key_list.emplace_back("serial_num");
341 key_list.emplace_back("connection_id");
342
343 for (string key : key_list) {
344 const QString k = QString::fromStdString(key);
345 if (!settings.contains(k))
346 continue;
347
348 const string value = settings.value(k).toString().toStdString();
349 if (!value.empty())
350 dev_info.insert(make_pair(key, value));
351 }
352
353 if (dev_info.count("model") > 0)
354 device = device_manager_.find_device_from_info(dev_info);
355
356 if (device)
357 set_device(device);
358
359 settings.endGroup();
360 }
361
362 if ((device_type == "sessionfile") || (device_type == "inputfile")) {
363 if (device_type == "sessionfile") {
364 settings.beginGroup("device");
365 QString filename = settings.value("filename").toString();
366 settings.endGroup();
367
368 if (QFileInfo(filename).isReadable()) {
369 device = make_shared<devices::SessionFile>(device_manager_.context(),
370 filename.toStdString());
371 }
372 }
373
374 if (device_type == "inputfile") {
375 settings.beginGroup("device");
376 device = make_shared<devices::InputFile>(device_manager_.context(),
377 settings);
378 settings.endGroup();
379 }
380
381 if (device) {
382 set_device(device);
383
384 start_capture([](QString infoMessage) {
385 // TODO Emulate noquote()
386 qDebug() << "Session error:" << infoMessage; });
387
388 set_name(QString::fromStdString(
389 dynamic_pointer_cast<devices::File>(device)->display_name(device_manager_)));
390 }
391 }
392
393 if (device)
394 restore_setup(settings);
395}
396
397void Session::select_device(shared_ptr<devices::Device> device)
398{
399 try {
400 if (device)
401 set_device(device);
402 else
403 set_default_device();
404 } catch (const QString &e) {
405 MainWindow::show_session_error(tr("Failed to select device"), e);
406 }
407}
408
409void Session::set_device(shared_ptr<devices::Device> device)
410{
411 assert(device);
412
413 // Ensure we are not capturing before setting the device
414 stop_capture();
415
416 if (device_)
417 device_->close();
418
419 device_.reset();
420
421 // Revert name back to default name (e.g. "Session 1") as the data is gone
422 name_ = default_name_;
423 name_changed();
424
425 // Remove all stored data and reset all views
426 for (shared_ptr<views::ViewBase> view : views_) {
427 view->clear_signals();
428#ifdef ENABLE_DECODE
429 view->clear_decode_signals();
430#endif
431 view->reset_view_state();
432 }
433 for (const shared_ptr<data::SignalData>& d : all_signal_data_)
434 d->clear();
435 all_signal_data_.clear();
436 signalbases_.clear();
437 cur_logic_segment_.reset();
438
439 for (auto& entry : cur_analog_segments_) {
440 shared_ptr<sigrok::Channel>(entry.first).reset();
441 shared_ptr<data::AnalogSegment>(entry.second).reset();
442 }
443
444 logic_data_.reset();
445
446 signals_changed();
447
448 device_ = move(device);
449
450 try {
451 device_->open();
452 } catch (const QString &e) {
453 device_.reset();
454 MainWindow::show_session_error(tr("Failed to open device"), e);
455 }
456
457 if (device_) {
458 device_->session()->add_datafeed_callback([=]
459 (shared_ptr<sigrok::Device> device, shared_ptr<Packet> packet) {
460 data_feed_in(device, packet);
461 });
462
463 update_signals();
464 }
465
466 device_changed();
467}
468
469void Session::set_default_device()
470{
471 const list< shared_ptr<devices::HardwareDevice> > &devices =
472 device_manager_.devices();
473
474 if (devices.empty())
475 return;
476
477 // Try and find the demo device and select that by default
478 const auto iter = find_if(devices.begin(), devices.end(),
479 [] (const shared_ptr<devices::HardwareDevice> &d) {
480 return d->hardware_device()->driver()->name() == "demo"; });
481 set_device((iter == devices.end()) ? devices.front() : *iter);
482}
483
484/**
485 * Convert generic options to data types that are specific to InputFormat.
486 *
487 * @param[in] user_spec Vector of tokenized words, string format.
488 * @param[in] fmt_opts Input format's options, result of InputFormat::options().
489 *
490 * @return Map of options suitable for InputFormat::create_input().
491 */
492map<string, Glib::VariantBase>
493Session::input_format_options(vector<string> user_spec,
494 map<string, shared_ptr<Option>> fmt_opts)
495{
496 map<string, Glib::VariantBase> result;
497
498 for (auto& entry : user_spec) {
499 /*
500 * Split key=value specs. Accept entries without separator
501 * (for simplified boolean specifications).
502 */
503 string key, val;
504 size_t pos = entry.find("=");
505 if (pos == std::string::npos) {
506 key = entry;
507 val = "";
508 } else {
509 key = entry.substr(0, pos);
510 val = entry.substr(pos + 1);
511 }
512
513 /*
514 * Skip user specifications that are not a member of the
515 * format's set of supported options. Have the text input
516 * spec converted to the required input format specific
517 * data type.
518 */
519 auto found = fmt_opts.find(key);
520 if (found == fmt_opts.end())
521 continue;
522 shared_ptr<Option> opt = found->second;
523 result[key] = opt->parse_string(val);
524 }
525
526 return result;
527}
528
529void Session::load_init_file(const string &file_name,
530 const string &format, const string &setup_file_name)
531{
532 shared_ptr<InputFormat> input_format;
533 map<string, Glib::VariantBase> input_opts;
534
535 if (!format.empty()) {
536 const map<string, shared_ptr<InputFormat> > formats =
537 device_manager_.context()->input_formats();
538 auto user_opts = pv::util::split_string(format, ":");
539 string user_name = user_opts.front();
540 user_opts.erase(user_opts.begin());
541 const auto iter = find_if(formats.begin(), formats.end(),
542 [&](const pair<string, shared_ptr<InputFormat> > f) {
543 return f.first == user_name; });
544 if (iter == formats.end()) {
545 MainWindow::show_session_error(tr("Error"),
546 tr("Unexpected input format: %s").arg(QString::fromStdString(format)));
547 return;
548 }
549 input_format = (*iter).second;
550 input_opts = input_format_options(user_opts,
551 input_format->options());
552 }
553
554 load_file(QString::fromStdString(file_name), QString::fromStdString(setup_file_name),
555 input_format, input_opts);
556}
557
558void Session::load_file(QString file_name, QString setup_file_name,
559 shared_ptr<sigrok::InputFormat> format, const map<string, Glib::VariantBase> &options)
560{
561 const QString errorMessage(
562 QString("Failed to load file %1").arg(file_name));
563
564 // In the absence of a caller's format spec, try to auto detect.
565 // Assume "sigrok session file" upon lookup miss.
566 if (!format)
567 format = device_manager_.context()->input_format_match(file_name.toStdString());
568 try {
569 if (format)
570 set_device(shared_ptr<devices::Device>(
571 new devices::InputFile(
572 device_manager_.context(),
573 file_name.toStdString(),
574 format, options)));
575 else
576 set_device(shared_ptr<devices::Device>(
577 new devices::SessionFile(
578 device_manager_.context(),
579 file_name.toStdString())));
580 } catch (Error& e) {
581 MainWindow::show_session_error(tr("Failed to load ") + file_name, e.what());
582 set_default_device();
583 main_bar_->update_device_list();
584 return;
585 }
586
587 // Use the input file with .pvs extension if no setup file was given
588 if (setup_file_name.isEmpty()) {
589 setup_file_name = file_name;
590 setup_file_name.truncate(setup_file_name.lastIndexOf('.'));
591 setup_file_name.append(".pvs");
592 }
593
594 if (QFileInfo::exists(setup_file_name) && QFileInfo(setup_file_name).isReadable()) {
595 QSettings settings_storage(setup_file_name, QSettings::IniFormat);
596 restore_setup(settings_storage);
597 }
598
599 main_bar_->update_device_list();
600
601 start_capture([&, errorMessage](QString infoMessage) {
602 MainWindow::show_session_error(errorMessage, infoMessage); });
603
604 set_name(QFileInfo(file_name).fileName());
605}
606
607Session::capture_state Session::get_capture_state() const
608{
609 lock_guard<mutex> lock(sampling_mutex_);
610 return capture_state_;
611}
612
613void Session::start_capture(function<void (const QString)> error_handler)
614{
615 if (!device_) {
616 error_handler(tr("No active device set, can't start acquisition."));
617 return;
618 }
619
620 stop_capture();
621
622 // Check that at least one channel is enabled
623 const shared_ptr<sigrok::Device> sr_dev = device_->device();
624 if (sr_dev) {
625 const auto channels = sr_dev->channels();
626 if (!any_of(channels.begin(), channels.end(),
627 [](shared_ptr<Channel> channel) {
628 return channel->enabled(); })) {
629 error_handler(tr("No channels enabled."));
630 return;
631 }
632 }
633
634 // Clear signal data
635 for (const shared_ptr<data::SignalData>& d : all_signal_data_)
636 d->clear();
637
638 trigger_list_.clear();
639
640 // Revert name back to default name (e.g. "Session 1") for real devices
641 // as the (possibly saved) data is gone. File devices keep their name.
642 shared_ptr<devices::HardwareDevice> hw_device =
643 dynamic_pointer_cast< devices::HardwareDevice >(device_);
644
645 if (hw_device) {
646 name_ = default_name_;
647 name_changed();
648 }
649
650 // Begin the session
651 sampling_thread_ = std::thread(
652 &Session::sample_thread_proc, this, error_handler);
653}
654
655void Session::stop_capture()
656{
657 if (get_capture_state() != Stopped)
658 device_->stop();
659
660 // Check that sampling stopped
661 if (sampling_thread_.joinable())
662 sampling_thread_.join();
663}
664
665void Session::register_view(shared_ptr<views::ViewBase> view)
666{
667 if (views_.empty()) {
668 main_view_ = view;
669 }
670
671 views_.push_back(view);
672
673 // Add all device signals
674 update_signals();
675
676 // Add all other signals
677 unordered_set< shared_ptr<data::SignalBase> > view_signalbases =
678 view->signalbases();
679
680 views::trace::View *trace_view =
681 qobject_cast<views::trace::View*>(view.get());
682
683 if (trace_view) {
684 for (const shared_ptr<data::SignalBase>& signalbase : signalbases_) {
685 const int sb_exists = count_if(
686 view_signalbases.cbegin(), view_signalbases.cend(),
687 [&](const shared_ptr<data::SignalBase> &sb) {
688 return sb == signalbase;
689 });
690 // Add the signal to the view as it doesn't have it yet
691 if (!sb_exists)
692 switch (signalbase->type()) {
693 case data::SignalBase::AnalogChannel:
694 case data::SignalBase::LogicChannel:
695 case data::SignalBase::DecodeChannel:
696#ifdef ENABLE_DECODE
697 trace_view->add_decode_signal(
698 dynamic_pointer_cast<data::DecodeSignal>(signalbase));
699#endif
700 break;
701 case data::SignalBase::MathChannel:
702 // TBD
703 break;
704 }
705 }
706 }
707
708 signals_changed();
709}
710
711void Session::deregister_view(shared_ptr<views::ViewBase> view)
712{
713 views_.remove_if([&](shared_ptr<views::ViewBase> v) { return v == view; });
714
715 if (views_.empty()) {
716 main_view_.reset();
717
718 // Without a view there can be no main bar
719 main_bar_.reset();
720 }
721}
722
723bool Session::has_view(shared_ptr<views::ViewBase> view)
724{
725 for (shared_ptr<views::ViewBase>& v : views_)
726 if (v == view)
727 return true;
728
729 return false;
730}
731
732double Session::get_samplerate() const
733{
734 double samplerate = 0.0;
735
736 for (const shared_ptr<pv::data::SignalData>& d : all_signal_data_) {
737 assert(d);
738 const vector< shared_ptr<pv::data::Segment> > segments =
739 d->segments();
740 for (const shared_ptr<pv::data::Segment>& s : segments)
741 samplerate = max(samplerate, s->samplerate());
742 }
743 // If there is no sample rate given we use samples as unit
744 if (samplerate == 0.0)
745 samplerate = 1.0;
746
747 return samplerate;
748}
749
750uint32_t Session::get_segment_count() const
751{
752 uint32_t value = 0;
753
754 // Find the highest number of segments
755 for (const shared_ptr<data::SignalData>& data : all_signal_data_)
756 if (data->get_segment_count() > value)
757 value = data->get_segment_count();
758
759 return value;
760}
761
762vector<util::Timestamp> Session::get_triggers(uint32_t segment_id) const
763{
764 vector<util::Timestamp> result;
765
766 for (const pair<uint32_t, util::Timestamp>& entry : trigger_list_)
767 if (entry.first == segment_id)
768 result.push_back(entry.second);
769
770 return result;
771}
772
773const unordered_set< shared_ptr<data::SignalBase> > Session::signalbases() const
774{
775 return signalbases_;
776}
777
778bool Session::all_segments_complete(uint32_t segment_id) const
779{
780 bool all_complete = true;
781
782 for (const shared_ptr<data::SignalBase>& base : signalbases_)
783 if (!base->segment_is_complete(segment_id))
784 all_complete = false;
785
786 return all_complete;
787}
788
789#ifdef ENABLE_DECODE
790shared_ptr<data::DecodeSignal> Session::add_decode_signal()
791{
792 shared_ptr<data::DecodeSignal> signal;
793
794 try {
795 // Create the decode signal
796 signal = make_shared<data::DecodeSignal>(*this);
797
798 signalbases_.insert(signal);
799
800 // Add the decode signal to all views
801 for (shared_ptr<views::ViewBase>& view : views_)
802 view->add_decode_signal(signal);
803 } catch (runtime_error& e) {
804 remove_decode_signal(signal);
805 return nullptr;
806 }
807
808 signals_changed();
809
810 return signal;
811}
812
813void Session::remove_decode_signal(shared_ptr<data::DecodeSignal> signal)
814{
815 signalbases_.erase(signal);
816
817 for (shared_ptr<views::ViewBase>& view : views_)
818 view->remove_decode_signal(signal);
819
820 signals_changed();
821}
822#endif
823
824void Session::set_capture_state(capture_state state)
825{
826 bool changed;
827
828 if (state == Running)
829 acq_time_.restart();
830 if (state == Stopped)
831 qDebug("Acquisition took %.2f s", acq_time_.elapsed() / 1000.);
832
833 {
834 lock_guard<mutex> lock(sampling_mutex_);
835 changed = capture_state_ != state;
836 capture_state_ = state;
837 }
838
839 if (changed)
840 capture_state_changed(state);
841}
842
843void Session::update_signals()
844{
845 if (!device_) {
846 signalbases_.clear();
847 logic_data_.reset();
848 for (shared_ptr<views::ViewBase>& view : views_) {
849 view->clear_signals();
850#ifdef ENABLE_DECODE
851 view->clear_decode_signals();
852#endif
853 }
854 return;
855 }
856
857 lock_guard<recursive_mutex> lock(data_mutex_);
858
859 const shared_ptr<sigrok::Device> sr_dev = device_->device();
860 if (!sr_dev) {
861 signalbases_.clear();
862 logic_data_.reset();
863 for (shared_ptr<views::ViewBase>& view : views_) {
864 view->clear_signals();
865#ifdef ENABLE_DECODE
866 view->clear_decode_signals();
867#endif
868 }
869 return;
870 }
871
872 // Detect what data types we will receive
873 auto channels = sr_dev->channels();
874 unsigned int logic_channel_count = count_if(
875 channels.begin(), channels.end(),
876 [] (shared_ptr<Channel> channel) {
877 return channel->type() == sigrok::ChannelType::LOGIC; });
878
879 // Create data containers for the logic data segments
880 {
881 lock_guard<recursive_mutex> data_lock(data_mutex_);
882
883 if (logic_channel_count == 0) {
884 logic_data_.reset();
885 } else if (!logic_data_ ||
886 logic_data_->num_channels() != logic_channel_count) {
887 logic_data_.reset(new data::Logic(
888 logic_channel_count));
889 assert(logic_data_);
890 }
891 }
892
893 // Make the signals list
894 for (shared_ptr<views::ViewBase>& viewbase : views_) {
895 views::trace::View *trace_view =
896 qobject_cast<views::trace::View*>(viewbase.get());
897
898 if (trace_view) {
899 unordered_set< shared_ptr<views::trace::Signal> >
900 prev_sigs(trace_view->signals());
901 trace_view->clear_signals();
902
903 for (auto channel : sr_dev->channels()) {
904 shared_ptr<data::SignalBase> signalbase;
905 shared_ptr<views::trace::Signal> signal;
906
907 // Find the channel in the old signals
908 const auto iter = find_if(
909 prev_sigs.cbegin(), prev_sigs.cend(),
910 [&](const shared_ptr<views::trace::Signal> &s) {
911 return s->base()->channel() == channel;
912 });
913 if (iter != prev_sigs.end()) {
914 // Copy the signal from the old set to the new
915 signal = *iter;
916 trace_view->add_signal(signal);
917 } else {
918 // Find the signalbase for this channel if possible
919 signalbase.reset();
920 for (const shared_ptr<data::SignalBase>& b : signalbases_)
921 if (b->channel() == channel)
922 signalbase = b;
923
924 switch(channel->type()->id()) {
925 case SR_CHANNEL_LOGIC:
926 if (!signalbase) {
927 signalbase = make_shared<data::SignalBase>(channel,
928 data::SignalBase::LogicChannel);
929 signalbases_.insert(signalbase);
930
931 all_signal_data_.insert(logic_data_);
932 signalbase->set_data(logic_data_);
933
934 connect(this, SIGNAL(capture_state_changed(int)),
935 signalbase.get(), SLOT(on_capture_state_changed(int)));
936 }
937
938 signal = shared_ptr<views::trace::Signal>(
939 new views::trace::LogicSignal(*this,
940 device_, signalbase));
941 trace_view->add_signal(signal);
942 break;
943
944 case SR_CHANNEL_ANALOG:
945 {
946 if (!signalbase) {
947 signalbase = make_shared<data::SignalBase>(channel,
948 data::SignalBase::AnalogChannel);
949 signalbases_.insert(signalbase);
950
951 shared_ptr<data::Analog> data(new data::Analog());
952 all_signal_data_.insert(data);
953 signalbase->set_data(data);
954
955 connect(this, SIGNAL(capture_state_changed(int)),
956 signalbase.get(), SLOT(on_capture_state_changed(int)));
957 }
958
959 signal = shared_ptr<views::trace::Signal>(
960 new views::trace::AnalogSignal(
961 *this, signalbase));
962 trace_view->add_signal(signal);
963 break;
964 }
965
966 default:
967 assert(false);
968 break;
969 }
970 }
971 }
972 }
973 }
974
975 signals_changed();
976}
977
978shared_ptr<data::SignalBase> Session::signalbase_from_channel(
979 shared_ptr<sigrok::Channel> channel) const
980{
981 for (shared_ptr<data::SignalBase> sig : signalbases_) {
982 assert(sig);
983 if (sig->channel() == channel)
984 return sig;
985 }
986 return shared_ptr<data::SignalBase>();
987}
988
989void Session::sample_thread_proc(function<void (const QString)> error_handler)
990{
991 assert(error_handler);
992
993#ifdef ENABLE_FLOW
994 pipeline_ = Pipeline::create();
995
996 source_ = ElementFactory::create_element("filesrc", "source");
997 sink_ = RefPtr<AppSink>::cast_dynamic(ElementFactory::create_element("appsink", "sink"));
998
999 pipeline_->add(source_)->add(sink_);
1000 source_->link(sink_);
1001
1002 source_->set_property("location", Glib::ustring("/tmp/dummy_binary"));
1003
1004 sink_->set_property("emit-signals", TRUE);
1005 sink_->signal_new_sample().connect(sigc::mem_fun(*this, &Session::on_gst_new_sample));
1006
1007 // Get the bus from the pipeline and add a bus watch to the default main context
1008 RefPtr<Bus> bus = pipeline_->get_bus();
1009 bus->add_watch(sigc::mem_fun(this, &Session::on_gst_bus_message));
1010
1011 // Start pipeline and Wait until it finished processing
1012 pipeline_done_interrupt_ = false;
1013 pipeline_->set_state(Gst::STATE_PLAYING);
1014
1015 unique_lock<mutex> pipeline_done_lock_(pipeline_done_mutex_);
1016 pipeline_done_cond_.wait(pipeline_done_lock_);
1017
1018 // Let the pipeline free all resources
1019 pipeline_->set_state(Gst::STATE_NULL);
1020
1021#else
1022 if (!device_)
1023 return;
1024
1025 try {
1026 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
1027 } catch (Error& e) {
1028 cur_samplerate_ = 0;
1029 }
1030
1031 out_of_memory_ = false;
1032
1033 {
1034 lock_guard<recursive_mutex> lock(data_mutex_);
1035 cur_logic_segment_.reset();
1036 cur_analog_segments_.clear();
1037 }
1038 highest_segment_id_ = -1;
1039 frame_began_ = false;
1040
1041 try {
1042 device_->start();
1043 } catch (Error& e) {
1044 error_handler(e.what());
1045 return;
1046 }
1047
1048 set_capture_state(device_->session()->trigger() ?
1049 AwaitingTrigger : Running);
1050
1051 try {
1052 device_->run();
1053 } catch (Error& e) {
1054 error_handler(e.what());
1055 set_capture_state(Stopped);
1056 return;
1057 } catch (QString& e) {
1058 error_handler(e);
1059 set_capture_state(Stopped);
1060 return;
1061 }
1062
1063 set_capture_state(Stopped);
1064
1065 // Confirm that SR_DF_END was received
1066 if (cur_logic_segment_)
1067 qDebug() << "WARNING: SR_DF_END was not received.";
1068#endif
1069
1070 // Optimize memory usage
1071 free_unused_memory();
1072
1073 // We now have unsaved data unless we just "captured" from a file
1074 shared_ptr<devices::File> file_device =
1075 dynamic_pointer_cast<devices::File>(device_);
1076
1077 if (!file_device)
1078 data_saved_ = false;
1079
1080 if (out_of_memory_)
1081 error_handler(tr("Out of memory, acquisition stopped."));
1082}
1083
1084void Session::free_unused_memory()
1085{
1086 for (const shared_ptr<data::SignalData>& data : all_signal_data_) {
1087 const vector< shared_ptr<data::Segment> > segments = data->segments();
1088
1089 for (const shared_ptr<data::Segment>& segment : segments)
1090 segment->free_unused_memory();
1091 }
1092}
1093
1094void Session::signal_new_segment()
1095{
1096 int new_segment_id = 0;
1097
1098 if ((cur_logic_segment_ != nullptr) || !cur_analog_segments_.empty()) {
1099
1100 // Determine new frame/segment number, assuming that all
1101 // signals have the same number of frames/segments
1102 if (cur_logic_segment_) {
1103 new_segment_id = logic_data_->get_segment_count() - 1;
1104 } else {
1105 shared_ptr<sigrok::Channel> any_channel =
1106 (*cur_analog_segments_.begin()).first;
1107
1108 shared_ptr<data::SignalBase> base = signalbase_from_channel(any_channel);
1109 assert(base);
1110
1111 shared_ptr<data::Analog> data(base->analog_data());
1112 assert(data);
1113
1114 new_segment_id = data->get_segment_count() - 1;
1115 }
1116 }
1117
1118 if (new_segment_id > highest_segment_id_) {
1119 highest_segment_id_ = new_segment_id;
1120 new_segment(highest_segment_id_);
1121 }
1122}
1123
1124void Session::signal_segment_completed()
1125{
1126 int segment_id = 0;
1127
1128 for (const shared_ptr<data::SignalBase>& signalbase : signalbases_) {
1129 // We only care about analog and logic channels, not derived ones
1130 if (signalbase->type() == data::SignalBase::AnalogChannel) {
1131 segment_id = signalbase->analog_data()->get_segment_count() - 1;
1132 break;
1133 }
1134
1135 if (signalbase->type() == data::SignalBase::LogicChannel) {
1136 segment_id = signalbase->logic_data()->get_segment_count() - 1;
1137 break;
1138 }
1139 }
1140
1141 if (segment_id >= 0)
1142 segment_completed(segment_id);
1143}
1144
1145#ifdef ENABLE_FLOW
1146bool Session::on_gst_bus_message(const Glib::RefPtr<Gst::Bus>& bus, const Glib::RefPtr<Gst::Message>& message)
1147{
1148 (void)bus;
1149
1150 if ((message->get_source() == pipeline_) && \
1151 ((message->get_message_type() == Gst::MESSAGE_EOS)))
1152 pipeline_done_cond_.notify_one();
1153
1154 // TODO Also evaluate MESSAGE_STREAM_STATUS to receive error notifications
1155
1156 return true;
1157}
1158
1159Gst::FlowReturn Session::on_gst_new_sample()
1160{
1161 RefPtr<Gst::Sample> sample = sink_->pull_sample();
1162 RefPtr<Gst::Buffer> buf = sample->get_buffer();
1163
1164 for (uint32_t block_id = 0; block_id < buf->n_memory(); block_id++) {
1165 RefPtr<Gst::Memory> buf_mem = buf->get_memory(block_id);
1166 Gst::MapInfo mapinfo;
1167 buf_mem->map(mapinfo, Gst::MAP_READ);
1168
1169 shared_ptr<sigrok::Packet> logic_packet =
1170 sr_context->create_logic_packet(mapinfo.get_data(), buf->get_size(), 1);
1171
1172 try {
1173 feed_in_logic(dynamic_pointer_cast<sigrok::Logic>(logic_packet->payload()));
1174 } catch (bad_alloc&) {
1175 out_of_memory_ = true;
1176 device_->stop();
1177 buf_mem->unmap(mapinfo);
1178 return Gst::FLOW_ERROR;
1179 }
1180
1181 buf_mem->unmap(mapinfo);
1182 }
1183
1184 return Gst::FLOW_OK;
1185}
1186#endif
1187
1188void Session::feed_in_header()
1189{
1190 // Nothing to do here for now
1191}
1192
1193void Session::feed_in_meta(shared_ptr<Meta> meta)
1194{
1195 for (auto& entry : meta->config()) {
1196 switch (entry.first->id()) {
1197 case SR_CONF_SAMPLERATE:
1198 cur_samplerate_ = g_variant_get_uint64(entry.second.gobj());
1199 break;
1200 default:
1201 qDebug() << "Received meta data key" << entry.first->id() << ", ignoring.";
1202 break;
1203 }
1204 }
1205
1206 signals_changed();
1207}
1208
1209void Session::feed_in_trigger()
1210{
1211 // The channel containing most samples should be most accurate
1212 uint64_t sample_count = 0;
1213
1214 {
1215 for (const shared_ptr<pv::data::SignalData>& d : all_signal_data_) {
1216 assert(d);
1217 uint64_t temp_count = 0;
1218
1219 const vector< shared_ptr<pv::data::Segment> > segments =
1220 d->segments();
1221 for (const shared_ptr<pv::data::Segment> &s : segments)
1222 temp_count += s->get_sample_count();
1223
1224 if (temp_count > sample_count)
1225 sample_count = temp_count;
1226 }
1227 }
1228
1229 uint32_t segment_id = 0; // Default segment when no frames are used
1230
1231 // If a frame began, we'd ideally be able to use the highest segment ID for
1232 // the trigger. However, as new segments are only created when logic or
1233 // analog data comes in, this doesn't work if the trigger appears right
1234 // after the beginning of the frame, before any sample data.
1235 // For this reason, we use highest segment ID + 1 if no sample data came in
1236 // yet and the highest segment ID otherwise.
1237 if (frame_began_) {
1238 segment_id = highest_segment_id_;
1239 if (!cur_logic_segment_ && (cur_analog_segments_.size() == 0))
1240 segment_id++;
1241 }
1242
1243 // TODO Create timestamp from segment start time + segment's current sample count
1244 util::Timestamp timestamp = sample_count / get_samplerate();
1245 trigger_list_.emplace_back(segment_id, timestamp);
1246 trigger_event(segment_id, timestamp);
1247}
1248
1249void Session::feed_in_frame_begin()
1250{
1251 frame_began_ = true;
1252}
1253
1254void Session::feed_in_frame_end()
1255{
1256 if (!frame_began_)
1257 return;
1258
1259 {
1260 lock_guard<recursive_mutex> lock(data_mutex_);
1261
1262 if (cur_logic_segment_)
1263 cur_logic_segment_->set_complete();
1264
1265 for (auto& entry : cur_analog_segments_) {
1266 shared_ptr<data::AnalogSegment> segment = entry.second;
1267 segment->set_complete();
1268 }
1269
1270 cur_logic_segment_.reset();
1271 cur_analog_segments_.clear();
1272 }
1273
1274 frame_began_ = false;
1275
1276 signal_segment_completed();
1277}
1278
1279void Session::feed_in_logic(shared_ptr<Logic> logic)
1280{
1281 if (logic->data_length() == 0) {
1282 qDebug() << "WARNING: Received logic packet with 0 samples.";
1283 return;
1284 }
1285
1286 if (logic->unit_size() > 8)
1287 throw QString(tr("Can't handle more than 64 logic channels."));
1288
1289 if (!cur_samplerate_)
1290 try {
1291 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
1292 } catch (Error& e) {
1293 // Do nothing
1294 }
1295
1296 lock_guard<recursive_mutex> lock(data_mutex_);
1297
1298 if (!logic_data_) {
1299 // The only reason logic_data_ would not have been created is
1300 // if it was not possible to determine the signals when the
1301 // device was created.
1302 update_signals();
1303 }
1304
1305 if (!cur_logic_segment_) {
1306 // This could be the first packet after a trigger
1307 set_capture_state(Running);
1308
1309 // Create a new data segment
1310 cur_logic_segment_ = make_shared<data::LogicSegment>(
1311 *logic_data_, logic_data_->get_segment_count(),
1312 logic->unit_size(), cur_samplerate_);
1313 logic_data_->push_segment(cur_logic_segment_);
1314
1315 signal_new_segment();
1316 }
1317
1318 cur_logic_segment_->append_payload(logic);
1319
1320 data_received();
1321}
1322
1323void Session::feed_in_analog(shared_ptr<Analog> analog)
1324{
1325 if (analog->num_samples() == 0) {
1326 qDebug() << "WARNING: Received analog packet with 0 samples.";
1327 return;
1328 }
1329
1330 if (!cur_samplerate_)
1331 try {
1332 cur_samplerate_ = device_->read_config<uint64_t>(ConfigKey::SAMPLERATE);
1333 } catch (Error& e) {
1334 // Do nothing
1335 }
1336
1337 lock_guard<recursive_mutex> lock(data_mutex_);
1338
1339 const vector<shared_ptr<Channel>> channels = analog->channels();
1340 bool sweep_beginning = false;
1341
1342 unique_ptr<float[]> data(new float[analog->num_samples() * channels.size()]);
1343 analog->get_data_as_float(data.get());
1344
1345 if (signalbases_.empty())
1346 update_signals();
1347
1348 float *channel_data = data.get();
1349 for (auto& channel : channels) {
1350 shared_ptr<data::AnalogSegment> segment;
1351
1352 // Try to get the segment of the channel
1353 const map< shared_ptr<Channel>, shared_ptr<data::AnalogSegment> >::
1354 iterator iter = cur_analog_segments_.find(channel);
1355 if (iter != cur_analog_segments_.end())
1356 segment = (*iter).second;
1357 else {
1358 // If no segment was found, this means we haven't
1359 // created one yet. i.e. this is the first packet
1360 // in the sweep containing this segment.
1361 sweep_beginning = true;
1362
1363 // Find the analog data associated with the channel
1364 shared_ptr<data::SignalBase> base = signalbase_from_channel(channel);
1365 assert(base);
1366
1367 shared_ptr<data::Analog> data(base->analog_data());
1368 assert(data);
1369
1370 // Create a segment, keep it in the maps of channels
1371 segment = make_shared<data::AnalogSegment>(
1372 *data, data->get_segment_count(), cur_samplerate_);
1373 cur_analog_segments_[channel] = segment;
1374
1375 // Push the segment into the analog data.
1376 data->push_segment(segment);
1377
1378 signal_new_segment();
1379 }
1380
1381 assert(segment);
1382
1383 // Append the samples in the segment
1384 segment->append_interleaved_samples(channel_data++, analog->num_samples(),
1385 channels.size());
1386 }
1387
1388 if (sweep_beginning) {
1389 // This could be the first packet after a trigger
1390 set_capture_state(Running);
1391 }
1392
1393 data_received();
1394}
1395
1396void Session::data_feed_in(shared_ptr<sigrok::Device> device,
1397 shared_ptr<Packet> packet)
1398{
1399 (void)device;
1400
1401 assert(device);
1402 assert(device == device_->device());
1403 assert(packet);
1404
1405 switch (packet->type()->id()) {
1406 case SR_DF_HEADER:
1407 feed_in_header();
1408 break;
1409
1410 case SR_DF_META:
1411 feed_in_meta(dynamic_pointer_cast<Meta>(packet->payload()));
1412 break;
1413
1414 case SR_DF_TRIGGER:
1415 feed_in_trigger();
1416 break;
1417
1418 case SR_DF_LOGIC:
1419 try {
1420 feed_in_logic(dynamic_pointer_cast<Logic>(packet->payload()));
1421 } catch (bad_alloc&) {
1422 out_of_memory_ = true;
1423 device_->stop();
1424 }
1425 break;
1426
1427 case SR_DF_ANALOG:
1428 try {
1429 feed_in_analog(dynamic_pointer_cast<Analog>(packet->payload()));
1430 } catch (bad_alloc&) {
1431 out_of_memory_ = true;
1432 device_->stop();
1433 }
1434 break;
1435
1436 case SR_DF_FRAME_BEGIN:
1437 feed_in_frame_begin();
1438 break;
1439
1440 case SR_DF_FRAME_END:
1441 feed_in_frame_end();
1442 break;
1443
1444 case SR_DF_END:
1445 // Strictly speaking, this is performed when a frame end marker was
1446 // received, so there's no point doing this again. However, not all
1447 // devices use frames, and for those devices, we need to do it here.
1448 {
1449 lock_guard<recursive_mutex> lock(data_mutex_);
1450
1451 if (cur_logic_segment_)
1452 cur_logic_segment_->set_complete();
1453
1454 for (auto& entry : cur_analog_segments_) {
1455 shared_ptr<data::AnalogSegment> segment = entry.second;
1456 segment->set_complete();
1457 }
1458
1459 cur_logic_segment_.reset();
1460 cur_analog_segments_.clear();
1461 }
1462 break;
1463
1464 default:
1465 break;
1466 }
1467}
1468
1469void Session::on_data_saved()
1470{
1471 data_saved_ = true;
1472}
1473
1474#ifdef ENABLE_DECODE
1475void Session::on_new_decoders_selected(vector<const srd_decoder*> decoders)
1476{
1477 assert(decoders.size() > 0);
1478
1479 shared_ptr<data::DecodeSignal> signal = add_decode_signal();
1480
1481 if (signal)
1482 for (const srd_decoder* d : decoders)
1483 signal->stack_decoder(d);
1484}
1485#endif
1486
1487} // namespace pv