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