]> sigrok.org Git - pulseview.git/blame - pv/sigsession.cpp
Don't allow disabled probes to be selected
[pulseview.git] / pv / sigsession.cpp
CommitLineData
2953961c 1/*
b3f22de0 2 * This file is part of the PulseView project.
2953961c 3 *
1bc6525b 4 * Copyright (C) 2012-14 Joel Holdsworth <joel@airwebreathe.org.uk>
2953961c
JH
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
269528f5 21#ifdef ENABLE_DECODE
4e5a4405 22#include <libsigrokdecode/libsigrokdecode.h>
269528f5 23#endif
4e5a4405 24
2953961c
JH
25#include "sigsession.h"
26
dc0867ff 27#include "devicemanager.h"
921b90c0 28#include "device/device.h"
ae2d1bc5 29#include "device/file.h"
119aff65 30
1b1ec774
JH
31#include "data/analog.h"
32#include "data/analogsnapshot.h"
6e89374a 33#include "data/decoderstack.h"
1b1ec774
JH
34#include "data/logic.h"
35#include "data/logicsnapshot.h"
7491a29f 36#include "data/decode/decoder.h"
82c7f640 37
aba1dd16 38#include "view/analogsignal.h"
b9329558 39#include "view/decodetrace.h"
8d634081 40#include "view/logicsignal.h"
28a4c9c5 41
2953961c
JH
42#include <assert.h>
43
e92cd4e4
JH
44#include <stdexcept>
45
4e5a4405
JH
46#include <boost/foreach.hpp>
47
728e5ef7
JH
48#include <sys/stat.h>
49
79efbc53
JH
50#include <QDebug>
51
819f4c25
JH
52using boost::dynamic_pointer_cast;
53using boost::function;
54using boost::lock_guard;
55using boost::mutex;
56using boost::shared_ptr;
d873f4d6 57using std::list;
819f4c25 58using std::map;
02412f0b 59using std::set;
819f4c25
JH
60using std::string;
61using std::vector;
28a4c9c5 62
51e77110
JH
63namespace pv {
64
2953961c 65// TODO: This should not be necessary
04abfae9 66SigSession* SigSession::_session = NULL;
2953961c 67
dc0867ff
JH
68SigSession::SigSession(DeviceManager &device_manager) :
69 _device_manager(device_manager),
5b7cf66c 70 _capture_state(Stopped)
2953961c
JH
71{
72 // TODO: This should not be necessary
04abfae9 73 _session = this;
d873f4d6
JH
74
75 set_default_device();
2953961c
JH
76}
77
78SigSession::~SigSession()
79{
85843b14
JH
80 using pv::device::Device;
81
5b7cf66c
JH
82 stop_capture();
83
6d483b8b
MC
84 if (_sampling_thread.joinable())
85 _sampling_thread.join();
2e2946fe 86
996b7c9d 87 _dev_inst->release();
0f784939 88
2953961c 89 // TODO: This should not be necessary
04abfae9 90 _session = NULL;
2953961c
JH
91}
92
94574501 93shared_ptr<device::DevInst> SigSession::get_device() const
dc0867ff 94{
19adbc2c 95 return _dev_inst;
dc0867ff
JH
96}
97
ae2d1bc5
JH
98void SigSession::set_device(
99 shared_ptr<device::DevInst> dev_inst) throw(QString)
d64d1596 100{
85843b14
JH
101 using pv::device::Device;
102
82596f46
JH
103 // Ensure we are not capturing before setting the device
104 stop_capture();
105
ae2d1bc5
JH
106 if (_dev_inst) {
107 sr_session_datafeed_callback_remove_all();
996b7c9d 108 _dev_inst->release();
ae2d1bc5
JH
109 }
110
111 _dev_inst = dev_inst;
112 _decode_traces.clear();
85843b14 113
ae2d1bc5 114 if (dev_inst) {
996b7c9d 115 dev_inst->use(this);
ae2d1bc5
JH
116 sr_session_datafeed_callback_add(data_feed_in_proc, NULL);
117 update_signals(dev_inst);
118 }
119}
85843b14 120
ae2d1bc5
JH
121void SigSession::set_file(const string &name) throw(QString)
122{
123 // Deslect the old device, because file type detection in File::create
124 // destorys the old session inside libsigrok.
125 set_device(shared_ptr<device::DevInst>());
126 set_device(shared_ptr<device::DevInst>(device::File::create(name)));
d64d1596
JH
127}
128
996b7c9d 129void SigSession::release_device(device::DevInst *dev_inst)
dc0867ff 130{
19adbc2c 131 (void)dev_inst;
996b7c9d 132 assert(_dev_inst.get() == dev_inst);
dc0867ff
JH
133
134 assert(_capture_state == Stopped);
94574501 135 _dev_inst = shared_ptr<device::DevInst>();
dc0867ff
JH
136}
137
5b7cf66c
JH
138SigSession::capture_state SigSession::get_capture_state() const
139{
949f8050 140 lock_guard<mutex> lock(_sampling_mutex);
5b7cf66c
JH
141 return _capture_state;
142}
143
d99dc9f2 144void SigSession::start_capture(function<void (const QString)> error_handler)
2e2946fe 145{
5b7cf66c
JH
146 stop_capture();
147
d64d1596 148 // Check that a device instance has been selected.
19adbc2c 149 if (!_dev_inst) {
d64d1596
JH
150 qDebug() << "No device selected";
151 return;
152 }
153
19adbc2c
JH
154 assert(_dev_inst->dev_inst());
155
9c48fa57
JH
156 // Check that at least one probe is enabled
157 const GSList *l;
19adbc2c 158 for (l = _dev_inst->dev_inst()->probes; l; l = l->next) {
9c48fa57
JH
159 sr_probe *const probe = (sr_probe*)l->data;
160 assert(probe);
161 if (probe->enabled)
162 break;
163 }
164
165 if (!l) {
166 error_handler(tr("No probes enabled."));
167 return;
168 }
169
170 // Begin the session
e042ad64 171 _sampling_thread = boost::thread(
19adbc2c
JH
172 &SigSession::sample_thread_proc, this, _dev_inst,
173 error_handler);
2e2946fe
JH
174}
175
5b7cf66c
JH
176void SigSession::stop_capture()
177{
333d5bbc 178 if (get_capture_state() == Stopped)
5b7cf66c
JH
179 return;
180
181 sr_session_stop();
182
183 // Check that sampling stopped
6d483b8b
MC
184 if (_sampling_thread.joinable())
185 _sampling_thread.join();
5b7cf66c
JH
186}
187
02412f0b
JH
188set< shared_ptr<data::SignalData> > SigSession::get_data() const
189{
190 lock_guard<mutex> lock(_signals_mutex);
191 set< shared_ptr<data::SignalData> > data;
192 BOOST_FOREACH(const shared_ptr<view::Signal> sig, _signals) {
193 assert(sig);
194 data.insert(sig->data());
195 }
196
197 return data;
198}
199
38eeddea 200vector< shared_ptr<view::Signal> > SigSession::get_signals() const
2e2946fe 201{
3868e5fa 202 lock_guard<mutex> lock(_signals_mutex);
2e2946fe
JH
203 return _signals;
204}
205
269528f5 206#ifdef ENABLE_DECODE
4e5a4405 207bool SigSession::add_decoder(srd_decoder *const dec)
82c7f640 208{
4e5a4405 209 map<const srd_probe*, shared_ptr<view::LogicSignal> > probes;
7491a29f 210 shared_ptr<data::DecoderStack> decoder_stack;
4e5a4405 211
e92cd4e4 212 try
82c7f640 213 {
119aff65 214 lock_guard<mutex> lock(_signals_mutex);
e0fc5810 215
4e5a4405 216 // Create the decoder
7491a29f 217 decoder_stack = shared_ptr<data::DecoderStack>(
bdc5c3b0 218 new data::DecoderStack(*this, dec));
4e5a4405 219
d2f46d27
JH
220 // Make a list of all the probes
221 std::vector<const srd_probe*> all_probes;
4e5a4405 222 for(const GSList *i = dec->probes; i; i = i->next)
d2f46d27
JH
223 all_probes.push_back((const srd_probe*)i->data);
224 for(const GSList *i = dec->opt_probes; i; i = i->next)
225 all_probes.push_back((const srd_probe*)i->data);
226
227 // Auto select the initial probes
228 BOOST_FOREACH(const srd_probe *probe, all_probes)
4e5a4405
JH
229 BOOST_FOREACH(shared_ptr<view::Signal> s, _signals)
230 {
231 shared_ptr<view::LogicSignal> l =
232 dynamic_pointer_cast<view::LogicSignal>(s);
27e8df22
JH
233 if (l && QString::fromUtf8(probe->name).
234 toLower().contains(
4e5a4405
JH
235 l->get_name().toLower()))
236 probes[probe] = l;
237 }
4e5a4405 238
7491a29f
JH
239 assert(decoder_stack);
240 assert(!decoder_stack->stack().empty());
241 assert(decoder_stack->stack().front());
242 decoder_stack->stack().front()->set_probes(probes);
4e5a4405
JH
243
244 // Create the decode signal
b9329558 245 shared_ptr<view::DecodeTrace> d(
7491a29f 246 new view::DecodeTrace(*this, decoder_stack,
06bb4e6a 247 _decode_traces.size()));
82c7f640
JH
248 _decode_traces.push_back(d);
249 }
e92cd4e4
JH
250 catch(std::runtime_error e)
251 {
252 return false;
253 }
254
82c7f640 255 signals_changed();
e92cd4e4 256
7491a29f
JH
257 // Do an initial decode
258 decoder_stack->begin_decode();
259
e92cd4e4 260 return true;
82c7f640
JH
261}
262
b9329558 263vector< shared_ptr<view::DecodeTrace> > SigSession::get_decode_signals() const
38eeddea
JH
264{
265 lock_guard<mutex> lock(_signals_mutex);
266 return _decode_traces;
267}
268
b9329558 269void SigSession::remove_decode_signal(view::DecodeTrace *signal)
c51482b3 270{
b9329558 271 for (vector< shared_ptr<view::DecodeTrace> >::iterator i =
c51482b3
JH
272 _decode_traces.begin();
273 i != _decode_traces.end();
274 i++)
275 if ((*i).get() == signal)
276 {
277 _decode_traces.erase(i);
278 signals_changed();
279 return;
280 }
281}
269528f5 282#endif
c51482b3 283
6ac96c2e
JH
284void SigSession::set_capture_state(capture_state state)
285{
949f8050 286 lock_guard<mutex> lock(_sampling_mutex);
2b49eeb0 287 const bool changed = _capture_state != state;
6ac96c2e 288 _capture_state = state;
2b49eeb0
JH
289 if(changed)
290 capture_state_changed(state);
6ac96c2e
JH
291}
292
d873f4d6
JH
293void SigSession::set_default_device()
294{
295 shared_ptr<pv::device::DevInst> default_device;
296 const list< shared_ptr<device::Device> > &devices =
297 _device_manager.devices();
298
299 if (!devices.empty()) {
300 // Fall back to the first device in the list.
301 default_device = devices.front();
302
303 // Try and find the demo device and select that by default
304 BOOST_FOREACH (shared_ptr<pv::device::Device> dev, devices)
305 if (strcmp(dev->dev_inst()->driver->name,
306 "demo") == 0) {
307 default_device = dev;
308 break;
309 }
310 }
311
312 set_device(default_device);
313}
314
94574501 315void SigSession::update_signals(shared_ptr<device::DevInst> dev_inst)
b087ba7f 316{
19adbc2c 317 assert(dev_inst);
b087ba7f
JH
318 assert(_capture_state == Stopped);
319
b087ba7f 320 unsigned int logic_probe_count = 0;
b087ba7f 321
82c7f640
JH
322 // Clear the decode traces
323 _decode_traces.clear();
324
b087ba7f 325 // Detect what data types we will receive
19adbc2c
JH
326 if(dev_inst) {
327 assert(dev_inst->dev_inst());
328 for (const GSList *l = dev_inst->dev_inst()->probes;
329 l; l = l->next) {
b087ba7f
JH
330 const sr_probe *const probe = (const sr_probe *)l->data;
331 if (!probe->enabled)
332 continue;
333
334 switch(probe->type) {
335 case SR_PROBE_LOGIC:
336 logic_probe_count++;
337 break;
b087ba7f
JH
338 }
339 }
340 }
341
bb2cdfff 342 // Create data containers for the logic data snapshots
b087ba7f
JH
343 {
344 lock_guard<mutex> data_lock(_data_mutex);
345
346 _logic_data.reset();
347 if (logic_probe_count != 0) {
348 _logic_data.reset(new data::Logic(
349 logic_probe_count));
350 assert(_logic_data);
351 }
b087ba7f
JH
352 }
353
354 // Make the Signals list
39e680c2 355 do {
b087ba7f
JH
356 lock_guard<mutex> lock(_signals_mutex);
357
358 _signals.clear();
359
19adbc2c 360 if(!dev_inst)
39e680c2
JH
361 break;
362
19adbc2c
JH
363 assert(dev_inst->dev_inst());
364 for (const GSList *l = dev_inst->dev_inst()->probes;
365 l; l = l->next) {
39e680c2
JH
366 shared_ptr<view::Signal> signal;
367 sr_probe *const probe = (sr_probe *)l->data;
368 assert(probe);
369
370 switch(probe->type) {
371 case SR_PROBE_LOGIC:
372 signal = shared_ptr<view::Signal>(
83c23cc9 373 new view::LogicSignal(dev_inst,
8d3e0764 374 probe, _logic_data));
39e680c2
JH
375 break;
376
377 case SR_PROBE_ANALOG:
bb2cdfff
JH
378 {
379 shared_ptr<data::Analog> data(
380 new data::Analog());
39e680c2 381 signal = shared_ptr<view::Signal>(
83c23cc9 382 new view::AnalogSignal(dev_inst,
8d3e0764 383 probe, data));
39e680c2 384 break;
bb2cdfff 385 }
39e680c2
JH
386
387 default:
388 assert(0);
389 break;
b087ba7f 390 }
39e680c2
JH
391
392 assert(signal);
393 _signals.push_back(signal);
b087ba7f 394 }
39e680c2
JH
395
396 } while(0);
b087ba7f
JH
397
398 signals_changed();
399}
400
3ddcc083
JH
401shared_ptr<view::Signal> SigSession::signal_from_probe(
402 const sr_probe *probe) const
403{
404 lock_guard<mutex> lock(_signals_mutex);
405 BOOST_FOREACH(shared_ptr<view::Signal> sig, _signals) {
406 assert(sig);
407 if (sig->probe() == probe)
408 return sig;
409 }
410 return shared_ptr<view::Signal>();
411}
412
deef291c
JH
413void SigSession::read_sample_rate(const sr_dev_inst *const sdi)
414{
415 GVariant *gvar;
416 uint64_t sample_rate = 0;
417
418 // Read out the sample rate
419 if(sdi->driver)
420 {
68162c29
BV
421 const int ret = sr_config_get(sdi->driver, sdi, NULL,
422 SR_CONF_SAMPLERATE, &gvar);
deef291c
JH
423 if (ret != SR_OK) {
424 qDebug("Failed to get samplerate\n");
425 return;
426 }
427
428 sample_rate = g_variant_get_uint64(gvar);
429 g_variant_unref(gvar);
430 }
431
bb2cdfff
JH
432 // Set the sample rate of all data
433 const set< shared_ptr<data::SignalData> > data_set = get_data();
434 BOOST_FOREACH(shared_ptr<data::SignalData> data, data_set) {
435 assert(data);
436 data->set_samplerate(sample_rate);
437 }
deef291c
JH
438}
439
94574501 440void SigSession::sample_thread_proc(shared_ptr<device::DevInst> dev_inst,
f2edb557 441 function<void (const QString)> error_handler)
274d4f13 442{
19adbc2c
JH
443 assert(dev_inst);
444 assert(dev_inst->dev_inst());
f2edb557 445 assert(error_handler);
be73bdfa 446
ae2d1bc5 447 read_sample_rate(dev_inst->dev_inst());
274d4f13 448
ae2d1bc5
JH
449 try {
450 dev_inst->start();
451 } catch(const QString e) {
452 error_handler(e);
eec446e1
JH
453 return;
454 }
455
07dcf561
JH
456 set_capture_state(dev_inst->is_trigger_enabled() ?
457 AwaitingTrigger : Running);
eec446e1 458
ae2d1bc5 459 dev_inst->run();
eec446e1 460 set_capture_state(Stopped);
1a2fe44c
JH
461
462 // Confirm that SR_DF_END was received
bb2cdfff
JH
463 if (_cur_logic_snapshot)
464 {
465 qDebug("SR_DF_END was not received.");
466 assert(0);
467 }
eec446e1
JH
468}
469
470void SigSession::feed_in_header(const sr_dev_inst *sdi)
471{
deef291c 472 read_sample_rate(sdi);
be73bdfa
JH
473}
474
475void SigSession::feed_in_meta(const sr_dev_inst *sdi,
476 const sr_datafeed_meta &meta)
477{
94fe58ef
UH
478 (void)sdi;
479
be73bdfa
JH
480 for (const GSList *l = meta.config; l; l = l->next) {
481 const sr_config *const src = (const sr_config*)l->data;
482 switch (src->key) {
483 case SR_CONF_SAMPLERATE:
484 /// @todo handle samplerate changes
485 /// samplerate = (uint64_t *)src->value;
486 break;
487 default:
488 // Unknown metadata is not an error.
489 break;
490 }
aba1dd16 491 }
74043039
JH
492
493 signals_changed();
aba1dd16
JH
494}
495
82f50b10
JH
496void SigSession::feed_in_frame_begin()
497{
498 if (_cur_logic_snapshot || !_cur_analog_snapshots.empty())
499 frame_began();
500}
501
9c112671
JH
502void SigSession::feed_in_logic(const sr_datafeed_logic &logic)
503{
504 lock_guard<mutex> lock(_data_mutex);
79efbc53
JH
505
506 if (!_logic_data)
9c112671 507 {
79efbc53
JH
508 qDebug() << "Unexpected logic packet";
509 return;
510 }
be73bdfa 511
79efbc53
JH
512 if (!_cur_logic_snapshot)
513 {
bb2cdfff 514 // This could be the first packet after a trigger
2b49eeb0
JH
515 set_capture_state(Running);
516
9c112671 517 // Create a new data snapshot
1b1ec774 518 _cur_logic_snapshot = shared_ptr<data::LogicSnapshot>(
27d7c96b 519 new data::LogicSnapshot(logic, _dev_inst->get_sample_limit()));
9c112671 520 _logic_data->push_snapshot(_cur_logic_snapshot);
82f50b10
JH
521
522 // @todo Putting this here means that only listeners querying
523 // for logic will be notified. Currently the only user of
524 // frame_began is DecoderStack, but in future we need to signal
525 // this after both analog and logic sweeps have begun.
526 frame_began();
9c112671
JH
527 }
528 else
529 {
530 // Append to the existing data snapshot
531 _cur_logic_snapshot->append_payload(logic);
532 }
533
1f374035 534 data_received();
9c112671
JH
535}
536
aba1dd16
JH
537void SigSession::feed_in_analog(const sr_datafeed_analog &analog)
538{
539 lock_guard<mutex> lock(_data_mutex);
79efbc53 540
bb2cdfff
JH
541 const unsigned int probe_count = g_slist_length(analog.probes);
542 const size_t sample_count = analog.num_samples / probe_count;
543 const float *data = analog.data;
544 bool sweep_beginning = false;
be73bdfa 545
bb2cdfff 546 for (GSList *p = analog.probes; p; p = p->next)
79efbc53 547 {
bb2cdfff 548 shared_ptr<data::AnalogSnapshot> snapshot;
2b49eeb0 549
bb2cdfff
JH
550 sr_probe *const probe = (sr_probe*)p->data;
551 assert(probe);
552
553 // Try to get the snapshot of the probe
554 const map< const sr_probe*, shared_ptr<data::AnalogSnapshot> >::
555 iterator iter = _cur_analog_snapshots.find(probe);
556 if (iter != _cur_analog_snapshots.end())
557 snapshot = (*iter).second;
558 else
559 {
560 // If no snapshot was found, this means we havn't
561 // created one yet. i.e. this is the first packet
562 // in the sweep containing this snapshot.
563 sweep_beginning = true;
564
565 // Create a snapshot, keep it in the maps of probes
566 snapshot = shared_ptr<data::AnalogSnapshot>(
27d7c96b 567 new data::AnalogSnapshot(_dev_inst->get_sample_limit()));
bb2cdfff
JH
568 _cur_analog_snapshots[probe] = snapshot;
569
570 // Find the annalog data associated with the probe
571 shared_ptr<view::AnalogSignal> sig =
572 dynamic_pointer_cast<view::AnalogSignal>(
573 signal_from_probe(probe));
574 assert(sig);
575
576 shared_ptr<data::Analog> data(sig->analog_data());
577 assert(data);
578
579 // Push the snapshot into the analog data.
580 data->push_snapshot(snapshot);
581 }
582
583 assert(snapshot);
584
585 // Append the samples in the snapshot
586 snapshot->append_interleaved_samples(data++, sample_count,
587 probe_count);
aba1dd16 588 }
bb2cdfff
JH
589
590 if (sweep_beginning) {
591 // This could be the first packet after a trigger
592 set_capture_state(Running);
aba1dd16
JH
593 }
594
1f374035 595 data_received();
aba1dd16 596}
9c112671 597
b0e1d01d
JH
598void SigSession::data_feed_in(const struct sr_dev_inst *sdi,
599 const struct sr_datafeed_packet *packet)
600{
601 assert(sdi);
602 assert(packet);
603
604 switch (packet->type) {
605 case SR_DF_HEADER:
eec446e1 606 feed_in_header(sdi);
b0e1d01d
JH
607 break;
608
be73bdfa 609 case SR_DF_META:
aba1dd16 610 assert(packet->payload);
be73bdfa
JH
611 feed_in_meta(sdi,
612 *(const sr_datafeed_meta*)packet->payload);
aba1dd16
JH
613 break;
614
82f50b10
JH
615 case SR_DF_FRAME_BEGIN:
616 feed_in_frame_begin();
617 break;
618
2e2946fe 619 case SR_DF_LOGIC:
28a4c9c5 620 assert(packet->payload);
9c112671 621 feed_in_logic(*(const sr_datafeed_logic*)packet->payload);
2953961c
JH
622 break;
623
aba1dd16
JH
624 case SR_DF_ANALOG:
625 assert(packet->payload);
626 feed_in_analog(*(const sr_datafeed_analog*)packet->payload);
627 break;
628
2953961c 629 case SR_DF_END:
2e2946fe
JH
630 {
631 {
632 lock_guard<mutex> lock(_data_mutex);
633 _cur_logic_snapshot.reset();
bb2cdfff 634 _cur_analog_snapshots.clear();
2e2946fe 635 }
1f374035 636 frame_ended();
2953961c
JH
637 break;
638 }
2e2946fe 639 }
2953961c
JH
640}
641
04abfae9 642void SigSession::data_feed_in_proc(const struct sr_dev_inst *sdi,
5045f16d 643 const struct sr_datafeed_packet *packet, void *cb_data)
2953961c 644{
5045f16d 645 (void) cb_data;
04abfae9
JH
646 assert(_session);
647 _session->data_feed_in(sdi, packet);
2953961c 648}
51e77110
JH
649
650} // namespace pv