]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decodesignal.cpp
DecodeSignal: Allow muxed logic data to be cached
[pulseview.git] / pv / data / decodesignal.cpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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 <limits>
21
22#include <QDebug>
23
24#include "logic.hpp"
25#include "logicsegment.hpp"
26#include "decodesignal.hpp"
27#include "signaldata.hpp"
28
29#include <pv/binding/decoder.hpp>
30#include <pv/data/decode/decoder.hpp>
31#include <pv/data/decode/row.hpp>
32#include <pv/globalsettings.hpp>
33#include <pv/session.hpp>
34
35using std::lock_guard;
36using std::make_pair;
37using std::make_shared;
38using std::min;
39using std::out_of_range;
40using std::shared_ptr;
41using std::unique_lock;
42using pv::data::decode::Annotation;
43using pv::data::decode::Decoder;
44using pv::data::decode::Row;
45
46namespace pv {
47namespace data {
48
49const double DecodeSignal::DecodeMargin = 1.0;
50const double DecodeSignal::DecodeThreshold = 0.2;
51const int64_t DecodeSignal::DecodeChunkLength = 256 * 1024;
52
53
54DecodeSignal::DecodeSignal(pv::Session &session) :
55 SignalBase(nullptr, SignalBase::DecodeChannel),
56 session_(session),
57 srd_session_(nullptr),
58 logic_mux_data_invalid_(false),
59 start_time_(0),
60 samplerate_(0),
61 samples_decoded_(0),
62 frame_complete_(false)
63{
64 connect(&session_, SIGNAL(capture_state_changed(int)),
65 this, SLOT(on_capture_state_changed(int)));
66}
67
68DecodeSignal::~DecodeSignal()
69{
70 reset_decode();
71}
72
73const vector< shared_ptr<Decoder> >& DecodeSignal::decoder_stack() const
74{
75 return stack_;
76}
77
78void DecodeSignal::stack_decoder(const srd_decoder *decoder)
79{
80 assert(decoder);
81 const shared_ptr<Decoder> dec = make_shared<decode::Decoder>(decoder);
82
83 stack_.push_back(dec);
84
85 // Set name if this decoder is the first in the list
86 if (stack_.size() == 1)
87 set_name(QString::fromUtf8(decoder->name));
88
89 // Include the newly created decode channels in the channel lists
90 update_channel_list();
91
92 auto_assign_signals(dec);
93 commit_decoder_channels();
94 begin_decode();
95}
96
97void DecodeSignal::remove_decoder(int index)
98{
99 assert(index >= 0);
100 assert(index < (int)stack_.size());
101
102 // Find the decoder in the stack
103 auto iter = stack_.begin();
104 for (int i = 0; i < index; i++, iter++)
105 assert(iter != stack_.end());
106
107 // Delete the element
108 stack_.erase(iter);
109
110 // Update channels and decoded data
111 update_channel_list();
112 begin_decode();
113}
114
115bool DecodeSignal::toggle_decoder_visibility(int index)
116{
117 auto iter = stack_.cbegin();
118 for (int i = 0; i < index; i++, iter++)
119 assert(iter != stack_.end());
120
121 shared_ptr<Decoder> dec = *iter;
122
123 // Toggle decoder visibility
124 bool state = false;
125 if (dec) {
126 state = !dec->shown();
127 dec->show(state);
128 }
129
130 return state;
131}
132
133void DecodeSignal::reset_decode()
134{
135 if (decode_thread_.joinable()) {
136 decode_interrupt_ = true;
137 decode_input_cond_.notify_one();
138 decode_thread_.join();
139 }
140
141 if (logic_mux_thread_.joinable()) {
142 logic_mux_interrupt_ = true;
143 logic_mux_cond_.notify_one();
144 logic_mux_thread_.join();
145 }
146
147 stop_srd_session();
148
149 frame_complete_ = false;
150 samples_decoded_ = 0;
151 currently_processed_segment_ = 0;
152 error_message_ = QString();
153
154 segmented_rows_.clear();
155 current_rows_= nullptr;
156 class_rows_.clear();
157
158 logic_mux_data_.reset();
159 logic_mux_data_invalid_ = true;
160
161 decode_reset();
162}
163
164void DecodeSignal::begin_decode()
165{
166 if (decode_thread_.joinable()) {
167 decode_interrupt_ = true;
168 decode_input_cond_.notify_one();
169 decode_thread_.join();
170 }
171
172 if (logic_mux_thread_.joinable()) {
173 logic_mux_interrupt_ = true;
174 logic_mux_cond_.notify_one();
175 logic_mux_thread_.join();
176 }
177
178 reset_decode();
179
180 if (stack_.size() == 0) {
181 error_message_ = tr("No decoders");
182 return;
183 }
184
185 assert(channels_.size() > 0);
186
187 if (get_assigned_signal_count() == 0) {
188 error_message_ = tr("There are no channels assigned to this decoder");
189 return;
190 }
191
192 // Make sure that all assigned channels still provide logic data
193 // (can happen when a converted signal was assigned but the
194 // conversion removed in the meanwhile)
195 for (data::DecodeChannel &ch : channels_)
196 if (ch.assigned_signal && !(ch.assigned_signal->logic_data() != nullptr))
197 ch.assigned_signal = nullptr;
198
199 // Check that all decoders have the required channels
200 for (const shared_ptr<decode::Decoder> &dec : stack_)
201 if (!dec->have_required_channels()) {
202 error_message_ = tr("One or more required channels "
203 "have not been specified");
204 return;
205 }
206
207 // Map out all the annotation classes
208 for (const shared_ptr<decode::Decoder> &dec : stack_) {
209 assert(dec);
210 const srd_decoder *const decc = dec->decoder();
211 assert(dec->decoder());
212
213 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
214 const srd_decoder_annotation_row *const ann_row =
215 (srd_decoder_annotation_row *)l->data;
216 assert(ann_row);
217
218 const Row row(decc, ann_row);
219
220 for (const GSList *ll = ann_row->ann_classes;
221 ll; ll = ll->next)
222 class_rows_[make_pair(decc,
223 GPOINTER_TO_INT(ll->data))] = row;
224 }
225 }
226
227 create_new_annotation_segment();
228
229 // TODO Allow logic_mux_data and logic_mux_segment to work with multiple segments
230
231 // Free the logic data and its segment(s) if it needs to be updated
232 if (logic_mux_data_invalid_)
233 logic_mux_data_.reset();
234
235 if (!logic_mux_data_) {
236 const int64_t ch_count = get_assigned_signal_count();
237 const int64_t unit_size = (ch_count + 7) / 8;
238 logic_mux_data_ = make_shared<Logic>(ch_count);
239 logic_mux_segment_ = make_shared<LogicSegment>(*logic_mux_data_, unit_size, samplerate_);
240 logic_mux_data_->push_segment(logic_mux_segment_);
241 }
242
243 // Make sure the logic output data is complete and up-to-date
244 logic_mux_interrupt_ = false;
245 logic_mux_thread_ = std::thread(&DecodeSignal::logic_mux_proc, this);
246
247 // Decode the muxed logic data
248 decode_interrupt_ = false;
249 decode_thread_ = std::thread(&DecodeSignal::decode_proc, this);
250
251 // Receive notifications when new sample data is available
252 connect_input_notifiers();
253}
254
255QString DecodeSignal::error_message() const
256{
257 lock_guard<mutex> lock(output_mutex_);
258 return error_message_;
259}
260
261const vector<data::DecodeChannel> DecodeSignal::get_channels() const
262{
263 return channels_;
264}
265
266void DecodeSignal::auto_assign_signals(const shared_ptr<Decoder> dec)
267{
268 bool new_assignment = false;
269
270 // Try to auto-select channels that don't have signals assigned yet
271 for (data::DecodeChannel &ch : channels_) {
272 // If a decoder is given, auto-assign only its channels
273 if (dec && (ch.decoder_ != dec))
274 continue;
275
276 if (ch.assigned_signal)
277 continue;
278
279 for (shared_ptr<data::SignalBase> s : session_.signalbases()) {
280 const QString ch_name = ch.name.toLower();
281 const QString s_name = s->name().toLower();
282
283 if (s->logic_data() &&
284 ((ch_name.contains(s_name)) || (s_name.contains(ch_name)))) {
285 ch.assigned_signal = s.get();
286 new_assignment = true;
287 }
288 }
289 }
290
291 if (new_assignment) {
292 logic_mux_data_invalid_ = true;
293 commit_decoder_channels();
294 channels_updated();
295 }
296}
297
298void DecodeSignal::assign_signal(const uint16_t channel_id, const SignalBase *signal)
299{
300 for (data::DecodeChannel &ch : channels_)
301 if (ch.id == channel_id) {
302 ch.assigned_signal = signal;
303 logic_mux_data_invalid_ = true;
304 }
305
306 commit_decoder_channels();
307 channels_updated();
308 begin_decode();
309}
310
311int DecodeSignal::get_assigned_signal_count() const
312{
313 // Count all channels that have a signal assigned to them
314 return count_if(channels_.begin(), channels_.end(),
315 [](data::DecodeChannel ch) { return ch.assigned_signal; });
316}
317
318void DecodeSignal::set_initial_pin_state(const uint16_t channel_id, const int init_state)
319{
320 for (data::DecodeChannel &ch : channels_)
321 if (ch.id == channel_id)
322 ch.initial_pin_state = init_state;
323
324 channels_updated();
325
326 begin_decode();
327}
328
329double DecodeSignal::samplerate() const
330{
331 return samplerate_;
332}
333
334const pv::util::Timestamp& DecodeSignal::start_time() const
335{
336 return start_time_;
337}
338
339int64_t DecodeSignal::get_working_sample_count(uint32_t segment_id) const
340{
341 // The working sample count is the highest sample number for
342 // which all used signals have data available, so go through
343 // all channels and use the lowest overall sample count of the
344 // current segment
345
346 int64_t count = std::numeric_limits<int64_t>::max();
347 bool no_signals_assigned = true;
348
349 for (const data::DecodeChannel &ch : channels_)
350 if (ch.assigned_signal) {
351 no_signals_assigned = false;
352
353 const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
354 if (!logic_data || logic_data->logic_segments().empty())
355 return 0;
356
357 try {
358 const shared_ptr<LogicSegment> segment = logic_data->logic_segments().at(segment_id);
359 count = min(count, (int64_t)segment->get_sample_count());
360 } catch (out_of_range) {
361 return 0;
362 }
363 }
364
365 return (no_signals_assigned ? 0 : count);
366}
367
368int64_t DecodeSignal::get_decoded_sample_count(uint32_t segment_id) const
369{
370 lock_guard<mutex> decode_lock(output_mutex_);
371
372 int64_t result = 0;
373
374 if (segment_id == currently_processed_segment_)
375 result = samples_decoded_;
376 else
377 if (segment_id < currently_processed_segment_)
378 // Segment was already decoded fully
379 result = get_working_sample_count(segment_id);
380 else
381 // Segment wasn't decoded at all yet
382 result = 0;
383
384 return result;
385}
386
387vector<Row> DecodeSignal::visible_rows() const
388{
389 lock_guard<mutex> lock(output_mutex_);
390
391 vector<Row> rows;
392
393 for (const shared_ptr<decode::Decoder> &dec : stack_) {
394 assert(dec);
395 if (!dec->shown())
396 continue;
397
398 const srd_decoder *const decc = dec->decoder();
399 assert(dec->decoder());
400
401 // Add a row for the decoder if it doesn't have a row list
402 if (!decc->annotation_rows)
403 rows.emplace_back(decc);
404
405 // Add the decoder rows
406 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
407 const srd_decoder_annotation_row *const ann_row =
408 (srd_decoder_annotation_row *)l->data;
409 assert(ann_row);
410 rows.emplace_back(decc, ann_row);
411 }
412 }
413
414 return rows;
415}
416
417void DecodeSignal::get_annotation_subset(
418 vector<pv::data::decode::Annotation> &dest,
419 const decode::Row &row, uint64_t start_sample,
420 uint64_t end_sample) const
421{
422 lock_guard<mutex> lock(output_mutex_);
423
424 if (!current_rows_)
425 return;
426
427 // TODO Instead of current_rows_, use segmented_rows_ and the ID of the segment
428
429 const auto iter = current_rows_->find(row);
430 if (iter != current_rows_->end())
431 (*iter).second.get_annotation_subset(dest,
432 start_sample, end_sample);
433}
434
435void DecodeSignal::save_settings(QSettings &settings) const
436{
437 SignalBase::save_settings(settings);
438
439 settings.setValue("decoders", (int)(stack_.size()));
440
441 // Save decoder stack
442 int decoder_idx = 0;
443 for (shared_ptr<decode::Decoder> decoder : stack_) {
444 settings.beginGroup("decoder" + QString::number(decoder_idx++));
445
446 settings.setValue("id", decoder->decoder()->id);
447
448 // Save decoder options
449 const map<string, GVariant*>& options = decoder->options();
450
451 settings.setValue("options", (int)options.size());
452
453 // Note: decode::Decoder::options() returns only the options
454 // that differ from the default. See binding::Decoder::getter()
455 int i = 0;
456 for (auto option : options) {
457 settings.beginGroup("option" + QString::number(i));
458 settings.setValue("name", QString::fromStdString(option.first));
459 GlobalSettings::store_gvariant(settings, option.second);
460 settings.endGroup();
461 i++;
462 }
463
464 settings.endGroup();
465 }
466
467 // Save channel mapping
468 settings.setValue("channels", (int)channels_.size());
469
470 for (unsigned int channel_id = 0; channel_id < channels_.size(); channel_id++) {
471 auto channel = find_if(channels_.begin(), channels_.end(),
472 [&](data::DecodeChannel ch) { return ch.id == channel_id; });
473
474 if (channel == channels_.end()) {
475 qDebug() << "ERROR: Gap in channel index:" << channel_id;
476 continue;
477 }
478
479 settings.beginGroup("channel" + QString::number(channel_id));
480
481 settings.setValue("name", channel->name); // Useful for debugging
482 settings.setValue("initial_pin_state", channel->initial_pin_state);
483
484 if (channel->assigned_signal)
485 settings.setValue("assigned_signal_name", channel->assigned_signal->name());
486
487 settings.endGroup();
488 }
489}
490
491void DecodeSignal::restore_settings(QSettings &settings)
492{
493 SignalBase::restore_settings(settings);
494
495 // Restore decoder stack
496 GSList *dec_list = g_slist_copy((GSList*)srd_decoder_list());
497
498 int decoders = settings.value("decoders").toInt();
499
500 for (int decoder_idx = 0; decoder_idx < decoders; decoder_idx++) {
501 settings.beginGroup("decoder" + QString::number(decoder_idx));
502
503 QString id = settings.value("id").toString();
504
505 for (GSList *entry = dec_list; entry; entry = entry->next) {
506 const srd_decoder *dec = (srd_decoder*)entry->data;
507 if (!dec)
508 continue;
509
510 if (QString::fromUtf8(dec->id) == id) {
511 shared_ptr<decode::Decoder> decoder =
512 make_shared<decode::Decoder>(dec);
513
514 stack_.push_back(decoder);
515
516 // Restore decoder options that differ from their default
517 int options = settings.value("options").toInt();
518
519 for (int i = 0; i < options; i++) {
520 settings.beginGroup("option" + QString::number(i));
521 QString name = settings.value("name").toString();
522 GVariant *value = GlobalSettings::restore_gvariant(settings);
523 decoder->set_option(name.toUtf8(), value);
524 settings.endGroup();
525 }
526
527 // Include the newly created decode channels in the channel lists
528 update_channel_list();
529 break;
530 }
531 }
532
533 settings.endGroup();
534 channels_updated();
535 }
536
537 // Restore channel mapping
538 unsigned int channels = settings.value("channels").toInt();
539
540 const unordered_set< shared_ptr<data::SignalBase> > signalbases =
541 session_.signalbases();
542
543 for (unsigned int channel_id = 0; channel_id < channels; channel_id++) {
544 auto channel = find_if(channels_.begin(), channels_.end(),
545 [&](data::DecodeChannel ch) { return ch.id == channel_id; });
546
547 if (channel == channels_.end()) {
548 qDebug() << "ERROR: Non-existant channel index:" << channel_id;
549 continue;
550 }
551
552 settings.beginGroup("channel" + QString::number(channel_id));
553
554 QString assigned_signal_name = settings.value("assigned_signal_name").toString();
555
556 for (shared_ptr<data::SignalBase> signal : signalbases)
557 if (signal->name() == assigned_signal_name)
558 channel->assigned_signal = signal.get();
559
560 channel->initial_pin_state = settings.value("initial_pin_state").toInt();
561
562 settings.endGroup();
563 }
564
565 // Update the internal structures
566 update_channel_list();
567 commit_decoder_channels();
568
569 begin_decode();
570}
571
572void DecodeSignal::update_channel_list()
573{
574 vector<data::DecodeChannel> prev_channels = channels_;
575 channels_.clear();
576
577 uint16_t id = 0;
578
579 // Copy existing entries, create new as needed
580 for (shared_ptr<Decoder> decoder : stack_) {
581 const srd_decoder* srd_d = decoder->decoder();
582 const GSList *l;
583
584 // Mandatory channels
585 for (l = srd_d->channels; l; l = l->next) {
586 const struct srd_channel *const pdch = (struct srd_channel *)l->data;
587 bool ch_added = false;
588
589 // Copy but update ID if this channel was in the list before
590 for (data::DecodeChannel &ch : prev_channels)
591 if (ch.pdch_ == pdch) {
592 ch.id = id++;
593 channels_.push_back(ch);
594 ch_added = true;
595 break;
596 }
597
598 if (!ch_added) {
599 // Create new entry without a mapped signal
600 data::DecodeChannel ch = {id++, 0, false, nullptr,
601 QString::fromUtf8(pdch->name), QString::fromUtf8(pdch->desc),
602 SRD_INITIAL_PIN_SAME_AS_SAMPLE0, decoder, pdch};
603 channels_.push_back(ch);
604 }
605 }
606
607 // Optional channels
608 for (l = srd_d->opt_channels; l; l = l->next) {
609 const struct srd_channel *const pdch = (struct srd_channel *)l->data;
610 bool ch_added = false;
611
612 // Copy but update ID if this channel was in the list before
613 for (data::DecodeChannel &ch : prev_channels)
614 if (ch.pdch_ == pdch) {
615 ch.id = id++;
616 channels_.push_back(ch);
617 ch_added = true;
618 break;
619 }
620
621 if (!ch_added) {
622 // Create new entry without a mapped signal
623 data::DecodeChannel ch = {id++, 0, true, nullptr,
624 QString::fromUtf8(pdch->name), QString::fromUtf8(pdch->desc),
625 SRD_INITIAL_PIN_SAME_AS_SAMPLE0, decoder, pdch};
626 channels_.push_back(ch);
627 }
628 }
629 }
630
631 // Invalidate the logic output data if the channel assignment changed
632 if (prev_channels.size() != channels_.size()) {
633 // The number of channels changed, there's definitely a difference
634 logic_mux_data_invalid_ = true;
635 } else {
636 // Same number but assignment may still differ, so compare all channels
637 for (size_t i = 0; i < channels_.size(); i++) {
638 const data::DecodeChannel &p_ch = prev_channels[i];
639 const data::DecodeChannel &ch = channels_[i];
640
641 if ((p_ch.pdch_ != ch.pdch_) ||
642 (p_ch.assigned_signal != ch.assigned_signal)) {
643 logic_mux_data_invalid_ = true;
644 break;
645 }
646 }
647
648 }
649
650 channels_updated();
651}
652
653void DecodeSignal::commit_decoder_channels()
654{
655 // Submit channel list to every decoder, containing only the relevant channels
656 for (shared_ptr<decode::Decoder> dec : stack_) {
657 vector<data::DecodeChannel*> channel_list;
658
659 for (data::DecodeChannel &ch : channels_)
660 if (ch.decoder_ == dec)
661 channel_list.push_back(&ch);
662
663 dec->set_channels(channel_list);
664 }
665
666 // Channel bit IDs must be in sync with the channel's apperance in channels_
667 int id = 0;
668 for (data::DecodeChannel &ch : channels_)
669 if (ch.assigned_signal)
670 ch.bit_id = id++;
671}
672
673void DecodeSignal::mux_logic_samples(const int64_t start, const int64_t end)
674{
675 // Enforce end to be greater than start
676 if (end <= start)
677 return;
678
679 // Fetch all segments and their data
680 // TODO Currently, we assume only a single segment exists
681 vector<shared_ptr<LogicSegment> > segments;
682 vector<const uint8_t*> signal_data;
683 vector<uint8_t> signal_in_bytepos;
684 vector<uint8_t> signal_in_bitpos;
685
686 for (data::DecodeChannel &ch : channels_)
687 if (ch.assigned_signal) {
688 const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
689 const shared_ptr<LogicSegment> segment = logic_data->logic_segments().front();
690 segments.push_back(segment);
691
692 uint8_t* data = new uint8_t[(end - start) * segment->unit_size()];
693 segment->get_samples(start, end, data);
694 signal_data.push_back(data);
695
696 const int bitpos = ch.assigned_signal->logic_bit_index();
697 signal_in_bytepos.push_back(bitpos / 8);
698 signal_in_bitpos.push_back(bitpos % 8);
699 }
700
701 // Perform the muxing of signal data into the output data
702 uint8_t* output = new uint8_t[(end - start) * logic_mux_segment_->unit_size()];
703 unsigned int signal_count = signal_data.size();
704
705 for (int64_t sample_cnt = 0; sample_cnt < (end - start); sample_cnt++) {
706 int bitpos = 0;
707 uint8_t bytepos = 0;
708
709 const int out_sample_pos = sample_cnt * logic_mux_segment_->unit_size();
710 for (unsigned int i = 0; i < logic_mux_segment_->unit_size(); i++)
711 output[out_sample_pos + i] = 0;
712
713 for (unsigned int i = 0; i < signal_count; i++) {
714 const int in_sample_pos = sample_cnt * segments[i]->unit_size();
715 const uint8_t in_sample = 1 &
716 ((signal_data[i][in_sample_pos + signal_in_bytepos[i]]) >> (signal_in_bitpos[i]));
717
718 const uint8_t out_sample = output[out_sample_pos + bytepos];
719
720 output[out_sample_pos + bytepos] = out_sample | (in_sample << bitpos);
721
722 bitpos++;
723 if (bitpos > 7) {
724 bitpos = 0;
725 bytepos++;
726 }
727 }
728 }
729
730 logic_mux_segment_->append_payload(output, (end - start) * logic_mux_segment_->unit_size());
731 delete[] output;
732
733 for (const uint8_t* data : signal_data)
734 delete[] data;
735}
736
737void DecodeSignal::logic_mux_proc()
738{
739 do {
740 const uint64_t input_sample_count = get_working_sample_count(currently_processed_segment_);
741 const uint64_t output_sample_count = logic_mux_segment_->get_sample_count();
742
743 const uint64_t samples_to_process =
744 (input_sample_count > output_sample_count) ?
745 (input_sample_count - output_sample_count) : 0;
746
747 // Process the samples if necessary...
748 if (samples_to_process > 0) {
749 const uint64_t unit_size = logic_mux_segment_->unit_size();
750 const uint64_t chunk_sample_count = DecodeChunkLength / unit_size;
751
752 uint64_t processed_samples = 0;
753 do {
754 const uint64_t start_sample = output_sample_count + processed_samples;
755 const uint64_t sample_count =
756 min(samples_to_process - processed_samples, chunk_sample_count);
757
758 mux_logic_samples(start_sample, start_sample + sample_count);
759 processed_samples += sample_count;
760
761 // ...and process the newly muxed logic data
762 decode_input_cond_.notify_one();
763 } while (processed_samples < samples_to_process);
764 }
765
766 if (samples_to_process == 0) {
767 logic_mux_data_invalid_ = false;
768
769 // Wait for more input
770 unique_lock<mutex> logic_mux_lock(logic_mux_mutex_);
771 logic_mux_cond_.wait(logic_mux_lock);
772 }
773 } while (!logic_mux_interrupt_);
774}
775
776void DecodeSignal::query_input_metadata()
777{
778 // Update the samplerate and start time because we cannot start
779 // the libsrd session without the current samplerate
780
781 // TODO Currently we assume all channels have the same sample rate
782 // and start time
783 bool samplerate_valid = false;
784 data::DecodeChannel *any_channel;
785 shared_ptr<Logic> logic_data;
786
787 do {
788 any_channel = &(*find_if(channels_.begin(), channels_.end(),
789 [](data::DecodeChannel ch) { return ch.assigned_signal; }));
790
791 logic_data = any_channel->assigned_signal->logic_data();
792
793 if (!logic_data) {
794 // Wait until input data is available or an interrupt was requested
795 unique_lock<mutex> input_wait_lock(input_mutex_);
796 decode_input_cond_.wait(input_wait_lock);
797 }
798 } while (!logic_data && !decode_interrupt_);
799
800 if (decode_interrupt_)
801 return;
802
803 do {
804 if (!logic_data->logic_segments().empty()) {
805 shared_ptr<LogicSegment> first_segment =
806 any_channel->assigned_signal->logic_data()->logic_segments().front();
807 start_time_ = first_segment->start_time();
808 samplerate_ = first_segment->samplerate();
809 if (samplerate_ > 0)
810 samplerate_valid = true;
811 }
812
813 if (!samplerate_valid) {
814 // Wait until input data is available or an interrupt was requested
815 unique_lock<mutex> input_wait_lock(input_mutex_);
816 decode_input_cond_.wait(input_wait_lock);
817 }
818 } while (!samplerate_valid && !decode_interrupt_);
819}
820
821void DecodeSignal::decode_data(
822 const int64_t abs_start_samplenum, const int64_t sample_count)
823{
824 const int64_t unit_size = logic_mux_segment_->unit_size();
825 const int64_t chunk_sample_count = DecodeChunkLength / unit_size;
826
827 for (int64_t i = abs_start_samplenum;
828 !decode_interrupt_ && (i < (abs_start_samplenum + sample_count));
829 i += chunk_sample_count) {
830
831 const int64_t chunk_end = min(i + chunk_sample_count,
832 abs_start_samplenum + sample_count);
833
834 int64_t data_size = (chunk_end - i) * unit_size;
835 uint8_t* chunk = new uint8_t[data_size];
836 logic_mux_segment_->get_samples(i, chunk_end, chunk);
837
838 if (srd_session_send(srd_session_, i, chunk_end, chunk,
839 data_size, unit_size) != SRD_OK) {
840 error_message_ = tr("Decoder reported an error");
841 delete[] chunk;
842 break;
843 }
844
845 delete[] chunk;
846
847 {
848 lock_guard<mutex> lock(output_mutex_);
849 samples_decoded_ = chunk_end;
850 }
851
852 // Notify the frontend that we processed some data and
853 // possibly have new annotations as well
854 new_annotations();
855 }
856}
857
858void DecodeSignal::decode_proc()
859{
860 query_input_metadata();
861
862 if (decode_interrupt_)
863 return;
864
865 start_srd_session();
866
867 uint64_t sample_count;
868 uint64_t abs_start_samplenum = 0;
869 do {
870 // Keep processing new samples until we exhaust the input data
871 do {
872 lock_guard<mutex> input_lock(input_mutex_);
873 sample_count = logic_mux_segment_->get_sample_count() - abs_start_samplenum;
874
875 if (sample_count > 0) {
876 decode_data(abs_start_samplenum, sample_count);
877 abs_start_samplenum += sample_count;
878 }
879 } while (error_message_.isEmpty() && (sample_count > 0) && !decode_interrupt_);
880
881 if (error_message_.isEmpty() && !decode_interrupt_) {
882 if (sample_count == 0)
883 decode_finished();
884
885 // Wait for new input data or an interrupt was requested
886 unique_lock<mutex> input_wait_lock(input_mutex_);
887 decode_input_cond_.wait(input_wait_lock);
888 }
889 } while (error_message_.isEmpty() && !decode_interrupt_);
890}
891
892void DecodeSignal::start_srd_session()
893{
894 if (srd_session_)
895 stop_srd_session();
896
897 // Create the session
898 srd_session_new(&srd_session_);
899 assert(srd_session_);
900
901 // Create the decoders
902 srd_decoder_inst *prev_di = nullptr;
903 for (const shared_ptr<decode::Decoder> &dec : stack_) {
904 srd_decoder_inst *const di = dec->create_decoder_inst(srd_session_);
905
906 if (!di) {
907 error_message_ = tr("Failed to create decoder instance");
908 srd_session_destroy(srd_session_);
909 return;
910 }
911
912 if (prev_di)
913 srd_inst_stack(srd_session_, prev_di, di);
914
915 prev_di = di;
916 }
917
918 // Start the session
919 srd_session_metadata_set(srd_session_, SRD_CONF_SAMPLERATE,
920 g_variant_new_uint64(samplerate_));
921
922 srd_pd_output_callback_add(srd_session_, SRD_OUTPUT_ANN,
923 DecodeSignal::annotation_callback, this);
924
925 srd_session_start(srd_session_);
926}
927
928void DecodeSignal::stop_srd_session()
929{
930 if (srd_session_) {
931 // Destroy the session
932 srd_session_destroy(srd_session_);
933 srd_session_ = nullptr;
934 }
935}
936
937void DecodeSignal::connect_input_notifiers()
938{
939 // Disconnect the notification slot from the previous set of signals
940 disconnect(this, SLOT(on_data_cleared()));
941 disconnect(this, SLOT(on_data_received()));
942
943 // Connect the currently used signals to our slot
944 for (data::DecodeChannel &ch : channels_) {
945 if (!ch.assigned_signal)
946 continue;
947
948 const data::SignalBase *signal = ch.assigned_signal;
949 connect(signal, SIGNAL(samples_cleared()),
950 this, SLOT(on_data_cleared()));
951 connect(signal, SIGNAL(samples_added(QObject*, uint64_t, uint64_t)),
952 this, SLOT(on_data_received()));
953 }
954}
955
956void DecodeSignal::create_new_annotation_segment()
957{
958 segmented_rows_.emplace_back(map<const decode::Row, decode::RowData>());
959 current_rows_ = &(segmented_rows_.back());
960
961 // Add annotation classes
962 for (const shared_ptr<decode::Decoder> &dec : stack_) {
963 assert(dec);
964 const srd_decoder *const decc = dec->decoder();
965 assert(dec->decoder());
966
967 // Add a row for the decoder if it doesn't have a row list
968 if (!decc->annotation_rows)
969 (*current_rows_)[Row(decc)] = decode::RowData();
970
971 // Add the decoder rows
972 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
973 const srd_decoder_annotation_row *const ann_row =
974 (srd_decoder_annotation_row *)l->data;
975 assert(ann_row);
976
977 const Row row(decc, ann_row);
978
979 // Add a new empty row data object
980 (*current_rows_)[row] = decode::RowData();
981 }
982 }
983}
984
985void DecodeSignal::annotation_callback(srd_proto_data *pdata, void *decode_signal)
986{
987 assert(pdata);
988 assert(decode_signal);
989
990 DecodeSignal *const ds = (DecodeSignal*)decode_signal;
991 assert(ds);
992
993 lock_guard<mutex> lock(ds->output_mutex_);
994
995 // Find the row
996 assert(pdata->pdo);
997 assert(pdata->pdo->di);
998 const srd_decoder *const decc = pdata->pdo->di->decoder;
999 assert(decc);
1000 assert(ds->current_rows_);
1001
1002 const srd_proto_data_annotation *const pda =
1003 (const srd_proto_data_annotation*)pdata->data;
1004 assert(pda);
1005
1006 auto row_iter = ds->current_rows_->end();
1007
1008 // Try looking up the sub-row of this class
1009 const auto format = pda->ann_class;
1010 const auto r = ds->class_rows_.find(make_pair(decc, format));
1011 if (r != ds->class_rows_.end())
1012 row_iter = ds->current_rows_->find((*r).second);
1013 else {
1014 // Failing that, use the decoder as a key
1015 row_iter = ds->current_rows_->find(Row(decc));
1016 }
1017
1018 if (row_iter == ds->current_rows_->end()) {
1019 qDebug() << "Unexpected annotation: decoder = " << decc <<
1020 ", format = " << format;
1021 assert(false);
1022 return;
1023 }
1024
1025 // Add the annotation
1026 (*row_iter).second.emplace_annotation(pdata);
1027}
1028
1029void DecodeSignal::on_capture_state_changed(int state)
1030{
1031 // If a new acquisition was started, we need to start decoding from scratch
1032 if (state == Session::Running) {
1033 logic_mux_data_invalid_ = true;
1034 begin_decode();
1035 }
1036}
1037
1038void DecodeSignal::on_data_cleared()
1039{
1040 reset_decode();
1041}
1042
1043void DecodeSignal::on_data_received()
1044{
1045 if (!logic_mux_thread_.joinable())
1046 begin_decode();
1047 else
1048 logic_mux_cond_.notify_one();
1049}
1050
1051} // namespace data
1052} // namespace pv