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