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