]> sigrok.org Git - pulseview.git/blob - pv/data/decodesignal.cpp
77784de07f84dcdce9431ef03fc634de56aed02e
[pulseview.git] / pv / data / decodesignal.cpp
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 <cstring>
21 #include <forward_list>
22 #include <limits>
23
24 #include <QDebug>
25
26 #include "logic.hpp"
27 #include "logicsegment.hpp"
28 #include "decodesignal.hpp"
29 #include "signaldata.hpp"
30
31 #include <pv/data/decode/decoder.hpp>
32 #include <pv/data/decode/row.hpp>
33 #include <pv/globalsettings.hpp>
34 #include <pv/session.hpp>
35
36 using std::lock_guard;
37 using std::make_shared;
38 using std::min;
39 using std::out_of_range;
40 using std::shared_ptr;
41 using std::unique_lock;
42 using pv::data::decode::AnnotationClass;
43 using pv::data::decode::DecodeChannel;
44
45 namespace pv {
46 namespace data {
47
48 const double DecodeSignal::DecodeMargin = 1.0;
49 const double DecodeSignal::DecodeThreshold = 0.2;
50 const int64_t DecodeSignal::DecodeChunkLength = 256 * 1024;
51
52
53 DecodeSignal::DecodeSignal(pv::Session &session) :
54         SignalBase(nullptr, SignalBase::DecodeChannel),
55         session_(session),
56         srd_session_(nullptr),
57         logic_mux_data_invalid_(false),
58         stack_config_changed_(true),
59         current_segment_id_(0)
60 {
61         connect(&session_, SIGNAL(capture_state_changed(int)),
62                 this, SLOT(on_capture_state_changed(int)));
63 }
64
65 DecodeSignal::~DecodeSignal()
66 {
67         reset_decode(true);
68 }
69
70 const vector< shared_ptr<Decoder> >& DecodeSignal::decoder_stack() const
71 {
72         return stack_;
73 }
74
75 void DecodeSignal::stack_decoder(const srd_decoder *decoder, bool restart_decode)
76 {
77         assert(decoder);
78
79         // Set name if this decoder is the first in the list or the name is unchanged
80         const srd_decoder* prev_dec = stack_.empty() ? nullptr : stack_.back()->get_srd_decoder();
81         const QString prev_dec_name = prev_dec ? QString::fromUtf8(prev_dec->name) : QString();
82
83         if ((stack_.empty()) || ((stack_.size() > 0) && (name() == prev_dec_name)))
84                 set_name(QString::fromUtf8(decoder->name));
85
86         const shared_ptr<Decoder> dec = make_shared<Decoder>(decoder, stack_.size());
87         stack_.push_back(dec);
88
89         // Include the newly created decode channels in the channel lists
90         update_channel_list();
91
92         stack_config_changed_ = true;
93         auto_assign_signals(dec);
94         commit_decoder_channels();
95
96         decoder_stacked((void*)dec.get());
97
98         if (restart_decode)
99                 begin_decode();
100 }
101
102 void DecodeSignal::remove_decoder(int index)
103 {
104         assert(index >= 0);
105         assert(index < (int)stack_.size());
106
107         // Find the decoder in the stack
108         auto iter = stack_.begin();
109         for (int i = 0; i < index; i++, iter++)
110                 assert(iter != stack_.end());
111
112         decoder_removed(iter->get());
113
114         // Delete the element
115         stack_.erase(iter);
116
117         // Update channels and decoded data
118         stack_config_changed_ = true;
119         update_channel_list();
120         begin_decode();
121 }
122
123 bool DecodeSignal::toggle_decoder_visibility(int index)
124 {
125         auto iter = stack_.cbegin();
126         for (int i = 0; i < index; i++, iter++)
127                 assert(iter != stack_.end());
128
129         shared_ptr<Decoder> dec = *iter;
130
131         // Toggle decoder visibility
132         bool state = false;
133         if (dec) {
134                 state = !dec->visible();
135                 dec->set_visible(state);
136         }
137
138         return state;
139 }
140
141 void DecodeSignal::reset_decode(bool shutting_down)
142 {
143         resume_decode();  // Make sure the decode thread isn't blocked by pausing
144
145         if (stack_config_changed_ || shutting_down)
146                 stop_srd_session();
147         else
148                 terminate_srd_session();
149
150         if (decode_thread_.joinable()) {
151                 decode_interrupt_ = true;
152                 decode_input_cond_.notify_one();
153                 decode_thread_.join();
154         }
155
156         if (logic_mux_thread_.joinable()) {
157                 logic_mux_interrupt_ = true;
158                 logic_mux_cond_.notify_one();
159                 logic_mux_thread_.join();
160         }
161
162         current_segment_id_ = 0;
163         segments_.clear();
164
165         logic_mux_data_.reset();
166         logic_mux_data_invalid_ = true;
167
168         if (!error_message_.isEmpty()) {
169                 error_message_ = QString();
170                 // TODO Emulate noquote()
171                 qDebug().nospace() << name() << ": Error cleared";
172         }
173
174         decode_reset();
175 }
176
177 void DecodeSignal::begin_decode()
178 {
179         if (decode_thread_.joinable()) {
180                 decode_interrupt_ = true;
181                 decode_input_cond_.notify_one();
182                 decode_thread_.join();
183         }
184
185         if (logic_mux_thread_.joinable()) {
186                 logic_mux_interrupt_ = true;
187                 logic_mux_cond_.notify_one();
188                 logic_mux_thread_.join();
189         }
190
191         reset_decode();
192
193         if (stack_.size() == 0) {
194                 set_error_message(tr("No decoders"));
195                 return;
196         }
197
198         assert(channels_.size() > 0);
199
200         if (get_assigned_signal_count() == 0) {
201                 set_error_message(tr("There are no channels assigned to this decoder"));
202                 return;
203         }
204
205         // Make sure that all assigned channels still provide logic data
206         // (can happen when a converted signal was assigned but the
207         // conversion removed in the meanwhile)
208         for (decode::DecodeChannel& ch : channels_)
209                 if (ch.assigned_signal && !(ch.assigned_signal->logic_data() != nullptr))
210                         ch.assigned_signal = nullptr;
211
212         // Check that all decoders have the required channels
213         for (const shared_ptr<Decoder>& dec : stack_)
214                 if (!dec->have_required_channels()) {
215                         set_error_message(tr("One or more required channels "
216                                 "have not been specified"));
217                         return;
218                 }
219
220         // Free the logic data and its segment(s) if it needs to be updated
221         if (logic_mux_data_invalid_)
222                 logic_mux_data_.reset();
223
224         if (!logic_mux_data_) {
225                 const uint32_t ch_count = get_assigned_signal_count();
226                 logic_mux_unit_size_ = (ch_count + 7) / 8;
227                 logic_mux_data_ = make_shared<Logic>(ch_count);
228         }
229
230         // Receive notifications when new sample data is available
231         connect_input_notifiers();
232
233         if (get_input_segment_count() == 0) {
234                 set_error_message(tr("No input data"));
235                 return;
236         }
237
238         // Make sure the logic output data is complete and up-to-date
239         logic_mux_interrupt_ = false;
240         logic_mux_thread_ = std::thread(&DecodeSignal::logic_mux_proc, this);
241
242         // Decode the muxed logic data
243         decode_interrupt_ = false;
244         decode_thread_ = std::thread(&DecodeSignal::decode_proc, this);
245 }
246
247 void DecodeSignal::pause_decode()
248 {
249         decode_paused_ = true;
250 }
251
252 void DecodeSignal::resume_decode()
253 {
254         // Manual unlocking is done before notifying, to avoid waking up the
255         // waiting thread only to block again (see notify_one for details)
256         decode_pause_mutex_.unlock();
257         decode_pause_cond_.notify_one();
258         decode_paused_ = false;
259 }
260
261 bool DecodeSignal::is_paused() const
262 {
263         return decode_paused_;
264 }
265
266 QString DecodeSignal::error_message() const
267 {
268         lock_guard<mutex> lock(output_mutex_);
269         return error_message_;
270 }
271
272 const vector<decode::DecodeChannel> DecodeSignal::get_channels() const
273 {
274         return channels_;
275 }
276
277 void DecodeSignal::auto_assign_signals(const shared_ptr<Decoder> dec)
278 {
279         bool new_assignment = false;
280
281         // Try to auto-select channels that don't have signals assigned yet
282         for (decode::DecodeChannel& ch : channels_) {
283                 // If a decoder is given, auto-assign only its channels
284                 if (dec && (ch.decoder_ != dec))
285                         continue;
286
287                 if (ch.assigned_signal)
288                         continue;
289
290                 QString ch_name = ch.name.toLower();
291                 ch_name = ch_name.replace(QRegExp("[-_.]"), " ");
292
293                 shared_ptr<data::SignalBase> match;
294                 for (const shared_ptr<data::SignalBase>& s : session_.signalbases()) {
295                         if (!s->enabled())
296                                 continue;
297
298                         QString s_name = s->name().toLower();
299                         s_name = s_name.replace(QRegExp("[-_.]"), " ");
300
301                         if (s->logic_data() &&
302                                 ((ch_name.contains(s_name)) || (s_name.contains(ch_name)))) {
303                                 if (!match)
304                                         match = s;
305                                 else {
306                                         // Only replace an existing match if it matches more characters
307                                         int old_unmatched = ch_name.length() - match->name().length();
308                                         int new_unmatched = ch_name.length() - s->name().length();
309                                         if (abs(new_unmatched) < abs(old_unmatched))
310                                                 match = s;
311                                 }
312                         }
313                 }
314
315                 if (match) {
316                         ch.assigned_signal = match.get();
317                         new_assignment = true;
318                 }
319         }
320
321         if (new_assignment) {
322                 logic_mux_data_invalid_ = true;
323                 stack_config_changed_ = true;
324                 commit_decoder_channels();
325                 channels_updated();
326         }
327 }
328
329 void DecodeSignal::assign_signal(const uint16_t channel_id, const SignalBase *signal)
330 {
331         for (decode::DecodeChannel& ch : channels_)
332                 if (ch.id == channel_id) {
333                         ch.assigned_signal = signal;
334                         logic_mux_data_invalid_ = true;
335                 }
336
337         stack_config_changed_ = true;
338         commit_decoder_channels();
339         channels_updated();
340         begin_decode();
341 }
342
343 int DecodeSignal::get_assigned_signal_count() const
344 {
345         // Count all channels that have a signal assigned to them
346         return count_if(channels_.begin(), channels_.end(),
347                 [](decode::DecodeChannel ch) { return ch.assigned_signal; });
348 }
349
350 void DecodeSignal::set_initial_pin_state(const uint16_t channel_id, const int init_state)
351 {
352         for (decode::DecodeChannel& ch : channels_)
353                 if (ch.id == channel_id)
354                         ch.initial_pin_state = init_state;
355
356         stack_config_changed_ = true;
357         channels_updated();
358         begin_decode();
359 }
360
361 double DecodeSignal::samplerate() const
362 {
363         double result = 0;
364
365         // TODO For now, we simply return the first samplerate that we have
366         if (segments_.size() > 0)
367                 result = segments_.front().samplerate;
368
369         return result;
370 }
371
372 const pv::util::Timestamp DecodeSignal::start_time() const
373 {
374         pv::util::Timestamp result;
375
376         // TODO For now, we simply return the first start time that we have
377         if (segments_.size() > 0)
378                 result = segments_.front().start_time;
379
380         return result;
381 }
382
383 int64_t DecodeSignal::get_working_sample_count(uint32_t segment_id) const
384 {
385         // The working sample count is the highest sample number for
386         // which all used signals have data available, so go through all
387         // channels and use the lowest overall sample count of the segment
388
389         int64_t count = std::numeric_limits<int64_t>::max();
390         bool no_signals_assigned = true;
391
392         for (const decode::DecodeChannel& ch : channels_)
393                 if (ch.assigned_signal) {
394                         no_signals_assigned = false;
395
396                         const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
397                         if (!logic_data || logic_data->logic_segments().empty())
398                                 return 0;
399
400                         try {
401                                 const shared_ptr<LogicSegment> segment = logic_data->logic_segments().at(segment_id);
402                                 count = min(count, (int64_t)segment->get_sample_count());
403                         } catch (out_of_range&) {
404                                 return 0;
405                         }
406                 }
407
408         return (no_signals_assigned ? 0 : count);
409 }
410
411 int64_t DecodeSignal::get_decoded_sample_count(uint32_t segment_id,
412         bool include_processing) const
413 {
414         lock_guard<mutex> decode_lock(output_mutex_);
415
416         int64_t result = 0;
417
418         if (segment_id >= segments_.size())
419                 return result;
420
421         if (include_processing)
422                 result = segments_[segment_id].samples_decoded_incl;
423         else
424                 result = segments_[segment_id].samples_decoded_excl;
425
426         return result;
427 }
428
429 vector<Row*> DecodeSignal::get_rows(bool visible_only)
430 {
431         vector<Row*> rows;
432
433         for (const shared_ptr<Decoder>& dec : stack_) {
434                 assert(dec);
435                 if (visible_only && !dec->visible())
436                         continue;
437
438                 for (Row* row : dec->get_rows())
439                         rows.push_back(row);
440         }
441
442         return rows;
443 }
444
445 vector<const Row*> DecodeSignal::get_rows(bool visible_only) const
446 {
447         vector<const Row*> rows;
448
449         for (const shared_ptr<Decoder>& dec : stack_) {
450                 assert(dec);
451                 if (visible_only && !dec->visible())
452                         continue;
453
454                 for (const Row* row : dec->get_rows())
455                         rows.push_back(row);
456         }
457
458         return rows;
459 }
460
461
462 uint64_t DecodeSignal::get_annotation_count(const Row* row, uint32_t segment_id) const
463 {
464         if (segment_id >= segments_.size())
465                 return 0;
466
467         const DecodeSegment* segment = &(segments_.at(segment_id));
468
469         auto row_it = segment->annotation_rows.find(row);
470
471         const RowData* rd;
472         if (row_it == segment->annotation_rows.end())
473                 return 0;
474         else
475                 rd = &(row_it->second);
476
477         return rd->get_annotation_count();
478 }
479
480 void DecodeSignal::get_annotation_subset(deque<const Annotation*> &dest,
481         const Row* row, uint32_t segment_id, uint64_t start_sample,
482         uint64_t end_sample) const
483 {
484         lock_guard<mutex> lock(output_mutex_);
485
486         if (segment_id >= segments_.size())
487                 return;
488
489         const DecodeSegment* segment = &(segments_.at(segment_id));
490
491         auto row_it = segment->annotation_rows.find(row);
492
493         const RowData* rd;
494         if (row_it == segment->annotation_rows.end())
495                 return;
496         else
497                 rd = &(row_it->second);
498
499         rd->get_annotation_subset(dest, start_sample, end_sample);
500 }
501
502 void DecodeSignal::get_annotation_subset(deque<const Annotation*> &dest,
503         uint32_t segment_id, uint64_t start_sample, uint64_t end_sample) const
504 {
505         for (const Row* row : get_rows())
506                 get_annotation_subset(dest, row, segment_id, start_sample, end_sample);
507 }
508
509 uint32_t DecodeSignal::get_binary_data_chunk_count(uint32_t segment_id,
510         const Decoder* dec, uint32_t bin_class_id) const
511 {
512         if (segments_.size() == 0)
513                 return 0;
514
515         try {
516                 const DecodeSegment *segment = &(segments_.at(segment_id));
517
518                 for (const DecodeBinaryClass& bc : segment->binary_classes)
519                         if ((bc.decoder == dec) && (bc.info->bin_class_id == bin_class_id))
520                                 return bc.chunks.size();
521         } catch (out_of_range&) {
522                 // Do nothing
523         }
524
525         return 0;
526 }
527
528 void DecodeSignal::get_binary_data_chunk(uint32_t segment_id,
529         const  Decoder* dec, uint32_t bin_class_id, uint32_t chunk_id,
530         const vector<uint8_t> **dest, uint64_t *size)
531 {
532         try {
533                 const DecodeSegment *segment = &(segments_.at(segment_id));
534
535                 for (const DecodeBinaryClass& bc : segment->binary_classes)
536                         if ((bc.decoder == dec) && (bc.info->bin_class_id == bin_class_id)) {
537                                 if (dest) *dest = &(bc.chunks.at(chunk_id).data);
538                                 if (size) *size = bc.chunks.at(chunk_id).data.size();
539                                 return;
540                         }
541         } catch (out_of_range&) {
542                 // Do nothing
543         }
544 }
545
546 void DecodeSignal::get_merged_binary_data_chunks_by_sample(uint32_t segment_id,
547         const Decoder* dec, uint32_t bin_class_id, uint64_t start_sample,
548         uint64_t end_sample, vector<uint8_t> *dest) const
549 {
550         assert(dest != nullptr);
551
552         try {
553                 const DecodeSegment *segment = &(segments_.at(segment_id));
554
555                 const DecodeBinaryClass* bin_class = nullptr;
556                 for (const DecodeBinaryClass& bc : segment->binary_classes)
557                         if ((bc.decoder == dec) && (bc.info->bin_class_id == bin_class_id))
558                                 bin_class = &bc;
559
560                 // Determine overall size before copying to resize dest vector only once
561                 uint64_t size = 0;
562                 uint64_t matches = 0;
563                 for (const DecodeBinaryDataChunk& chunk : bin_class->chunks)
564                         if ((chunk.sample >= start_sample) && (chunk.sample < end_sample)) {
565                                 size += chunk.data.size();
566                                 matches++;
567                         }
568                 dest->resize(size);
569
570                 uint64_t offset = 0;
571                 uint64_t matches2 = 0;
572                 for (const DecodeBinaryDataChunk& chunk : bin_class->chunks)
573                         if ((chunk.sample >= start_sample) && (chunk.sample < end_sample)) {
574                                 memcpy(dest->data() + offset, chunk.data.data(), chunk.data.size());
575                                 offset += chunk.data.size();
576                                 matches2++;
577
578                                 // Make sure we don't overwrite memory if the array grew in the meanwhile
579                                 if (matches2 == matches)
580                                         break;
581                         }
582         } catch (out_of_range&) {
583                 // Do nothing
584         }
585 }
586
587 void DecodeSignal::get_merged_binary_data_chunks_by_offset(uint32_t segment_id,
588         const Decoder* dec, uint32_t bin_class_id, uint64_t start, uint64_t end,
589         vector<uint8_t> *dest) const
590 {
591         assert(dest != nullptr);
592
593         try {
594                 const DecodeSegment *segment = &(segments_.at(segment_id));
595
596                 const DecodeBinaryClass* bin_class = nullptr;
597                 for (const DecodeBinaryClass& bc : segment->binary_classes)
598                         if ((bc.decoder == dec) && (bc.info->bin_class_id == bin_class_id))
599                                 bin_class = &bc;
600
601                 // Determine overall size before copying to resize dest vector only once
602                 uint64_t size = 0;
603                 uint64_t offset = 0;
604                 for (const DecodeBinaryDataChunk& chunk : bin_class->chunks) {
605                         if (offset >= start)
606                                 size += chunk.data.size();
607                         offset += chunk.data.size();
608                         if (offset >= end)
609                                 break;
610                 }
611                 dest->resize(size);
612
613                 offset = 0;
614                 uint64_t dest_offset = 0;
615                 for (const DecodeBinaryDataChunk& chunk : bin_class->chunks) {
616                         if (offset >= start) {
617                                 memcpy(dest->data() + dest_offset, chunk.data.data(), chunk.data.size());
618                                 dest_offset += chunk.data.size();
619                         }
620                         offset += chunk.data.size();
621                         if (offset >= end)
622                                 break;
623                 }
624         } catch (out_of_range&) {
625                 // Do nothing
626         }
627 }
628
629 const DecodeBinaryClass* DecodeSignal::get_binary_data_class(uint32_t segment_id,
630         const Decoder* dec, uint32_t bin_class_id) const
631 {
632         try {
633                 const DecodeSegment *segment = &(segments_.at(segment_id));
634
635                 for (const DecodeBinaryClass& bc : segment->binary_classes)
636                         if ((bc.decoder == dec) && (bc.info->bin_class_id == bin_class_id))
637                                 return &bc;
638         } catch (out_of_range&) {
639                 // Do nothing
640         }
641
642         return nullptr;
643 }
644
645 const deque<const Annotation*>* DecodeSignal::get_all_annotations_by_segment(
646         uint32_t segment_id) const
647 {
648         try {
649                 const DecodeSegment *segment = &(segments_.at(segment_id));
650                 return &(segment->all_annotations);
651         } catch (out_of_range&) {
652                 // Do nothing
653         }
654
655         return nullptr;
656 }
657
658 void DecodeSignal::save_settings(QSettings &settings) const
659 {
660         SignalBase::save_settings(settings);
661
662         settings.setValue("decoders", (int)(stack_.size()));
663
664         // Save decoder stack
665         int decoder_idx = 0;
666         for (const shared_ptr<Decoder>& decoder : stack_) {
667                 settings.beginGroup("decoder" + QString::number(decoder_idx++));
668
669                 settings.setValue("id", decoder->get_srd_decoder()->id);
670                 settings.setValue("visible", decoder->visible());
671
672                 // Save decoder options
673                 const map<string, GVariant*>& options = decoder->options();
674
675                 settings.setValue("options", (int)options.size());
676
677                 // Note: Decoder::options() returns only the options
678                 // that differ from the default. See binding::Decoder::getter()
679                 int i = 0;
680                 for (auto& option : options) {
681                         settings.beginGroup("option" + QString::number(i));
682                         settings.setValue("name", QString::fromStdString(option.first));
683                         GlobalSettings::store_gvariant(settings, option.second);
684                         settings.endGroup();
685                         i++;
686                 }
687
688                 // Save row properties
689                 i = 0;
690                 for (const Row* row : decoder->get_rows()) {
691                         settings.beginGroup("row" + QString::number(i));
692                         settings.setValue("visible", row->visible());
693                         settings.endGroup();
694                         i++;
695                 }
696
697                 // Save class properties
698                 i = 0;
699                 for (const AnnotationClass* ann_class : decoder->ann_classes()) {
700                         settings.beginGroup("ann_class" + QString::number(i));
701                         settings.setValue("visible", ann_class->visible);
702                         settings.endGroup();
703                         i++;
704                 }
705
706                 settings.endGroup();
707         }
708
709         // Save channel mapping
710         settings.setValue("channels", (int)channels_.size());
711
712         for (unsigned int channel_id = 0; channel_id < channels_.size(); channel_id++) {
713                 auto channel = find_if(channels_.begin(), channels_.end(),
714                         [&](decode::DecodeChannel ch) { return ch.id == channel_id; });
715
716                 if (channel == channels_.end()) {
717                         qDebug() << "ERROR: Gap in channel index:" << channel_id;
718                         continue;
719                 }
720
721                 settings.beginGroup("channel" + QString::number(channel_id));
722
723                 settings.setValue("name", channel->name);  // Useful for debugging
724                 settings.setValue("initial_pin_state", channel->initial_pin_state);
725
726                 if (channel->assigned_signal)
727                         settings.setValue("assigned_signal_name", channel->assigned_signal->name());
728
729                 settings.endGroup();
730         }
731 }
732
733 void DecodeSignal::restore_settings(QSettings &settings)
734 {
735         SignalBase::restore_settings(settings);
736
737         // Restore decoder stack
738         GSList *dec_list = g_slist_copy((GSList*)srd_decoder_list());
739
740         int decoders = settings.value("decoders").toInt();
741
742         for (int decoder_idx = 0; decoder_idx < decoders; decoder_idx++) {
743                 settings.beginGroup("decoder" + QString::number(decoder_idx));
744
745                 QString id = settings.value("id").toString();
746
747                 for (GSList *entry = dec_list; entry; entry = entry->next) {
748                         const srd_decoder *dec = (srd_decoder*)entry->data;
749                         if (!dec)
750                                 continue;
751
752                         if (QString::fromUtf8(dec->id) == id) {
753                                 shared_ptr<Decoder> decoder = make_shared<Decoder>(dec, stack_.size());
754
755                                 stack_.push_back(decoder);
756                                 decoder->set_visible(settings.value("visible", true).toBool());
757
758                                 // Restore decoder options that differ from their default
759                                 int options = settings.value("options").toInt();
760
761                                 for (int i = 0; i < options; i++) {
762                                         settings.beginGroup("option" + QString::number(i));
763                                         QString name = settings.value("name").toString();
764                                         GVariant *value = GlobalSettings::restore_gvariant(settings);
765                                         decoder->set_option(name.toUtf8(), value);
766                                         settings.endGroup();
767                                 }
768
769                                 // Include the newly created decode channels in the channel lists
770                                 update_channel_list();
771
772                                 // Restore row properties
773                                 int i = 0;
774                                 for (Row* row : decoder->get_rows()) {
775                                         settings.beginGroup("row" + QString::number(i));
776                                         row->set_visible(settings.value("visible", true).toBool());
777                                         settings.endGroup();
778                                         i++;
779                                 }
780
781                                 // Restore class properties
782                                 i = 0;
783                                 for (AnnotationClass* ann_class : decoder->ann_classes()) {
784                                         settings.beginGroup("ann_class" + QString::number(i));
785                                         ann_class->visible = settings.value("visible", true).toBool();
786                                         settings.endGroup();
787                                         i++;
788                                 }
789
790                                 break;
791                         }
792                 }
793
794                 settings.endGroup();
795                 channels_updated();
796         }
797
798         // Restore channel mapping
799         unsigned int channels = settings.value("channels").toInt();
800
801         const vector< shared_ptr<data::SignalBase> > signalbases =
802                 session_.signalbases();
803
804         for (unsigned int channel_id = 0; channel_id < channels; channel_id++) {
805                 auto channel = find_if(channels_.begin(), channels_.end(),
806                         [&](decode::DecodeChannel ch) { return ch.id == channel_id; });
807
808                 if (channel == channels_.end()) {
809                         qDebug() << "ERROR: Non-existant channel index:" << channel_id;
810                         continue;
811                 }
812
813                 settings.beginGroup("channel" + QString::number(channel_id));
814
815                 QString assigned_signal_name = settings.value("assigned_signal_name").toString();
816
817                 for (const shared_ptr<data::SignalBase>& signal : signalbases)
818                         if (signal->name() == assigned_signal_name)
819                                 channel->assigned_signal = signal.get();
820
821                 channel->initial_pin_state = settings.value("initial_pin_state").toInt();
822
823                 settings.endGroup();
824         }
825
826         // Update the internal structures
827         stack_config_changed_ = true;
828         update_channel_list();
829         commit_decoder_channels();
830
831         begin_decode();
832 }
833
834 void DecodeSignal::set_error_message(QString msg)
835 {
836         error_message_ = msg;
837         // TODO Emulate noquote()
838         qDebug().nospace() << name() << ": " << msg;
839 }
840
841 uint32_t DecodeSignal::get_input_segment_count() const
842 {
843         uint64_t count = std::numeric_limits<uint64_t>::max();
844         bool no_signals_assigned = true;
845
846         for (const decode::DecodeChannel& ch : channels_)
847                 if (ch.assigned_signal) {
848                         no_signals_assigned = false;
849
850                         const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
851                         if (!logic_data || logic_data->logic_segments().empty())
852                                 return 0;
853
854                         // Find the min value of all segment counts
855                         if ((uint64_t)(logic_data->logic_segments().size()) < count)
856                                 count = logic_data->logic_segments().size();
857                 }
858
859         return (no_signals_assigned ? 0 : count);
860 }
861
862 uint32_t DecodeSignal::get_input_samplerate(uint32_t segment_id) const
863 {
864         double samplerate = 0;
865
866         for (const decode::DecodeChannel& ch : channels_)
867                 if (ch.assigned_signal) {
868                         const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
869                         if (!logic_data || logic_data->logic_segments().empty())
870                                 continue;
871
872                         try {
873                                 const shared_ptr<LogicSegment> segment = logic_data->logic_segments().at(segment_id);
874                                 samplerate = segment->samplerate();
875                         } catch (out_of_range&) {
876                                 // Do nothing
877                         }
878                         break;
879                 }
880
881         return samplerate;
882 }
883
884 Decoder* DecodeSignal::get_decoder_by_instance(const srd_decoder *const srd_dec)
885 {
886         for (shared_ptr<Decoder>& d : stack_)
887                 if (d->get_srd_decoder() == srd_dec)
888                         return d.get();
889
890         return nullptr;
891 }
892
893 void DecodeSignal::update_channel_list()
894 {
895         vector<decode::DecodeChannel> prev_channels = channels_;
896         channels_.clear();
897
898         uint16_t id = 0;
899
900         // Copy existing entries, create new as needed
901         for (shared_ptr<Decoder>& decoder : stack_) {
902                 const srd_decoder* srd_dec = decoder->get_srd_decoder();
903                 const GSList *l;
904
905                 // Mandatory channels
906                 for (l = srd_dec->channels; l; l = l->next) {
907                         const struct srd_channel *const pdch = (struct srd_channel *)l->data;
908                         bool ch_added = false;
909
910                         // Copy but update ID if this channel was in the list before
911                         for (decode::DecodeChannel& ch : prev_channels)
912                                 if (ch.pdch_ == pdch) {
913                                         ch.id = id++;
914                                         channels_.push_back(ch);
915                                         ch_added = true;
916                                         break;
917                                 }
918
919                         if (!ch_added) {
920                                 // Create new entry without a mapped signal
921                                 decode::DecodeChannel ch = {id++, 0, false, nullptr,
922                                         QString::fromUtf8(pdch->name), QString::fromUtf8(pdch->desc),
923                                         SRD_INITIAL_PIN_SAME_AS_SAMPLE0, decoder, pdch};
924                                 channels_.push_back(ch);
925                         }
926                 }
927
928                 // Optional channels
929                 for (l = srd_dec->opt_channels; l; l = l->next) {
930                         const struct srd_channel *const pdch = (struct srd_channel *)l->data;
931                         bool ch_added = false;
932
933                         // Copy but update ID if this channel was in the list before
934                         for (decode::DecodeChannel& ch : prev_channels)
935                                 if (ch.pdch_ == pdch) {
936                                         ch.id = id++;
937                                         channels_.push_back(ch);
938                                         ch_added = true;
939                                         break;
940                                 }
941
942                         if (!ch_added) {
943                                 // Create new entry without a mapped signal
944                                 decode::DecodeChannel ch = {id++, 0, true, nullptr,
945                                         QString::fromUtf8(pdch->name), QString::fromUtf8(pdch->desc),
946                                         SRD_INITIAL_PIN_SAME_AS_SAMPLE0, decoder, pdch};
947                                 channels_.push_back(ch);
948                         }
949                 }
950         }
951
952         // Invalidate the logic output data if the channel assignment changed
953         if (prev_channels.size() != channels_.size()) {
954                 // The number of channels changed, there's definitely a difference
955                 logic_mux_data_invalid_ = true;
956         } else {
957                 // Same number but assignment may still differ, so compare all channels
958                 for (size_t i = 0; i < channels_.size(); i++) {
959                         const decode::DecodeChannel& p_ch = prev_channels[i];
960                         const decode::DecodeChannel& ch = channels_[i];
961
962                         if ((p_ch.pdch_ != ch.pdch_) ||
963                                 (p_ch.assigned_signal != ch.assigned_signal)) {
964                                 logic_mux_data_invalid_ = true;
965                                 break;
966                         }
967                 }
968
969         }
970
971         channels_updated();
972 }
973
974 void DecodeSignal::commit_decoder_channels()
975 {
976         // Submit channel list to every decoder, containing only the relevant channels
977         for (shared_ptr<Decoder> dec : stack_) {
978                 vector<decode::DecodeChannel*> channel_list;
979
980                 for (decode::DecodeChannel& ch : channels_)
981                         if (ch.decoder_ == dec)
982                                 channel_list.push_back(&ch);
983
984                 dec->set_channels(channel_list);
985         }
986
987         // Channel bit IDs must be in sync with the channel's apperance in channels_
988         int id = 0;
989         for (decode::DecodeChannel& ch : channels_)
990                 if (ch.assigned_signal)
991                         ch.bit_id = id++;
992 }
993
994 void DecodeSignal::mux_logic_samples(uint32_t segment_id, const int64_t start, const int64_t end)
995 {
996         // Enforce end to be greater than start
997         if (end <= start)
998                 return;
999
1000         // Fetch the channel segments and their data
1001         vector<shared_ptr<LogicSegment> > segments;
1002         vector<const uint8_t*> signal_data;
1003         vector<uint8_t> signal_in_bytepos;
1004         vector<uint8_t> signal_in_bitpos;
1005
1006         for (decode::DecodeChannel& ch : channels_)
1007                 if (ch.assigned_signal) {
1008                         const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
1009
1010                         shared_ptr<LogicSegment> segment;
1011                         try {
1012                                 segment = logic_data->logic_segments().at(segment_id);
1013                         } catch (out_of_range&) {
1014                                 qDebug() << "Muxer error for" << name() << ":" << ch.assigned_signal->name() \
1015                                         << "has no logic segment" << segment_id;
1016                                 return;
1017                         }
1018                         segments.push_back(segment);
1019
1020                         uint8_t* data = new uint8_t[(end - start) * segment->unit_size()];
1021                         segment->get_samples(start, end, data);
1022                         signal_data.push_back(data);
1023
1024                         const int bitpos = ch.assigned_signal->logic_bit_index();
1025                         signal_in_bytepos.push_back(bitpos / 8);
1026                         signal_in_bitpos.push_back(bitpos % 8);
1027                 }
1028
1029
1030         shared_ptr<LogicSegment> output_segment;
1031         try {
1032                 output_segment = logic_mux_data_->logic_segments().at(segment_id);
1033         } catch (out_of_range&) {
1034                 qDebug() << "Muxer error for" << name() << ": no logic mux segment" \
1035                         << segment_id << "in mux_logic_samples(), mux segments size is" \
1036                         << logic_mux_data_->logic_segments().size();
1037                 return;
1038         }
1039
1040         // Perform the muxing of signal data into the output data
1041         uint8_t* output = new uint8_t[(end - start) * output_segment->unit_size()];
1042         unsigned int signal_count = signal_data.size();
1043
1044         for (int64_t sample_cnt = 0; !logic_mux_interrupt_ && (sample_cnt < (end - start));
1045                 sample_cnt++) {
1046
1047                 int bitpos = 0;
1048                 uint8_t bytepos = 0;
1049
1050                 const int out_sample_pos = sample_cnt * output_segment->unit_size();
1051                 for (unsigned int i = 0; i < output_segment->unit_size(); i++)
1052                         output[out_sample_pos + i] = 0;
1053
1054                 for (unsigned int i = 0; i < signal_count; i++) {
1055                         const int in_sample_pos = sample_cnt * segments[i]->unit_size();
1056                         const uint8_t in_sample = 1 &
1057                                 ((signal_data[i][in_sample_pos + signal_in_bytepos[i]]) >> (signal_in_bitpos[i]));
1058
1059                         const uint8_t out_sample = output[out_sample_pos + bytepos];
1060
1061                         output[out_sample_pos + bytepos] = out_sample | (in_sample << bitpos);
1062
1063                         bitpos++;
1064                         if (bitpos > 7) {
1065                                 bitpos = 0;
1066                                 bytepos++;
1067                         }
1068                 }
1069         }
1070
1071         output_segment->append_payload(output, (end - start) * output_segment->unit_size());
1072         delete[] output;
1073
1074         for (const uint8_t* data : signal_data)
1075                 delete[] data;
1076 }
1077
1078 void DecodeSignal::logic_mux_proc()
1079 {
1080         uint32_t segment_id = 0;
1081
1082         assert(logic_mux_data_);
1083
1084         // Create initial logic mux segment
1085         shared_ptr<LogicSegment> output_segment =
1086                 make_shared<LogicSegment>(*logic_mux_data_, segment_id,
1087                         logic_mux_unit_size_, 0);
1088         logic_mux_data_->push_segment(output_segment);
1089
1090         output_segment->set_samplerate(get_input_samplerate(0));
1091
1092         do {
1093                 const uint64_t input_sample_count = get_working_sample_count(segment_id);
1094                 const uint64_t output_sample_count = output_segment->get_sample_count();
1095
1096                 const uint64_t samples_to_process =
1097                         (input_sample_count > output_sample_count) ?
1098                         (input_sample_count - output_sample_count) : 0;
1099
1100                 // Process the samples if necessary...
1101                 if (samples_to_process > 0) {
1102                         const uint64_t unit_size = output_segment->unit_size();
1103                         const uint64_t chunk_sample_count = DecodeChunkLength / unit_size;
1104
1105                         uint64_t processed_samples = 0;
1106                         do {
1107                                 const uint64_t start_sample = output_sample_count + processed_samples;
1108                                 const uint64_t sample_count =
1109                                         min(samples_to_process - processed_samples,     chunk_sample_count);
1110
1111                                 mux_logic_samples(segment_id, start_sample, start_sample + sample_count);
1112                                 processed_samples += sample_count;
1113
1114                                 // ...and process the newly muxed logic data
1115                                 decode_input_cond_.notify_one();
1116                         } while (!logic_mux_interrupt_ && (processed_samples < samples_to_process));
1117                 }
1118
1119                 if (samples_to_process == 0) {
1120                         // TODO Optimize this by caching the input segment count and only
1121                         // querying it when the cached value was reached
1122                         if (segment_id < get_input_segment_count() - 1) {
1123                                 // Process next segment
1124                                 segment_id++;
1125
1126                                 output_segment =
1127                                         make_shared<LogicSegment>(*logic_mux_data_, segment_id,
1128                                                 logic_mux_unit_size_, 0);
1129                                 logic_mux_data_->push_segment(output_segment);
1130
1131                                 output_segment->set_samplerate(get_input_samplerate(segment_id));
1132
1133                         } else {
1134                                 // All segments have been processed
1135                                 logic_mux_data_invalid_ = false;
1136
1137                                 // Wait for more input
1138                                 unique_lock<mutex> logic_mux_lock(logic_mux_mutex_);
1139                                 logic_mux_cond_.wait(logic_mux_lock);
1140                         }
1141                 }
1142
1143         } while (!logic_mux_interrupt_);
1144 }
1145
1146 void DecodeSignal::decode_data(
1147         const int64_t abs_start_samplenum, const int64_t sample_count,
1148         const shared_ptr<LogicSegment> input_segment)
1149 {
1150         const int64_t unit_size = input_segment->unit_size();
1151         const int64_t chunk_sample_count = DecodeChunkLength / unit_size;
1152
1153         for (int64_t i = abs_start_samplenum;
1154                 error_message_.isEmpty() && !decode_interrupt_ &&
1155                         (i < (abs_start_samplenum + sample_count));
1156                 i += chunk_sample_count) {
1157
1158                 const int64_t chunk_end = min(i + chunk_sample_count,
1159                         abs_start_samplenum + sample_count);
1160
1161                 {
1162                         lock_guard<mutex> lock(output_mutex_);
1163                         // Update the sample count showing the samples including currently processed ones
1164                         segments_.at(current_segment_id_).samples_decoded_incl = chunk_end;
1165                 }
1166
1167                 int64_t data_size = (chunk_end - i) * unit_size;
1168                 uint8_t* chunk = new uint8_t[data_size];
1169                 input_segment->get_samples(i, chunk_end, chunk);
1170
1171                 if (srd_session_send(srd_session_, i, chunk_end, chunk,
1172                                 data_size, unit_size) != SRD_OK)
1173                         set_error_message(tr("Decoder reported an error"));
1174
1175                 delete[] chunk;
1176
1177                 {
1178                         lock_guard<mutex> lock(output_mutex_);
1179                         // Now that all samples are processed, the exclusive sample count catches up
1180                         segments_.at(current_segment_id_).samples_decoded_excl = chunk_end;
1181                 }
1182
1183                 // Notify the frontend that we processed some data and
1184                 // possibly have new annotations as well
1185                 new_annotations();
1186
1187                 if (decode_paused_) {
1188                         unique_lock<mutex> pause_wait_lock(decode_pause_mutex_);
1189                         decode_pause_cond_.wait(pause_wait_lock);
1190                 }
1191         }
1192 }
1193
1194 void DecodeSignal::decode_proc()
1195 {
1196         current_segment_id_ = 0;
1197
1198         // If there is no input data available yet, wait until it is or we're interrupted
1199         if (logic_mux_data_->logic_segments().size() == 0) {
1200                 unique_lock<mutex> input_wait_lock(input_mutex_);
1201                 decode_input_cond_.wait(input_wait_lock);
1202         }
1203
1204         if (decode_interrupt_)
1205                 return;
1206
1207         shared_ptr<LogicSegment> input_segment = logic_mux_data_->logic_segments().front();
1208         assert(input_segment);
1209
1210         // Create the initial segment and set its sample rate so that we can pass it to SRD
1211         create_decode_segment();
1212         segments_.at(current_segment_id_).samplerate = input_segment->samplerate();
1213         segments_.at(current_segment_id_).start_time = input_segment->start_time();
1214
1215         start_srd_session();
1216
1217         uint64_t sample_count = 0;
1218         uint64_t abs_start_samplenum = 0;
1219         do {
1220                 // Keep processing new samples until we exhaust the input data
1221                 do {
1222                         lock_guard<mutex> input_lock(input_mutex_);
1223                         sample_count = input_segment->get_sample_count() - abs_start_samplenum;
1224
1225                         if (sample_count > 0) {
1226                                 decode_data(abs_start_samplenum, sample_count, input_segment);
1227                                 abs_start_samplenum += sample_count;
1228                         }
1229                 } while (error_message_.isEmpty() && (sample_count > 0) && !decode_interrupt_);
1230
1231                 if (error_message_.isEmpty() && !decode_interrupt_ && sample_count == 0) {
1232                         if (current_segment_id_ < logic_mux_data_->logic_segments().size() - 1) {
1233                                 // Process next segment
1234                                 current_segment_id_++;
1235
1236                                 try {
1237                                         input_segment = logic_mux_data_->logic_segments().at(current_segment_id_);
1238                                 } catch (out_of_range&) {
1239                                         qDebug() << "Decode error for" << name() << ": no logic mux segment" \
1240                                                 << current_segment_id_ << "in decode_proc(), mux segments size is" \
1241                                                 << logic_mux_data_->logic_segments().size();
1242                                         return;
1243                                 }
1244                                 abs_start_samplenum = 0;
1245
1246                                 // Create the next segment and set its metadata
1247                                 create_decode_segment();
1248                                 segments_.at(current_segment_id_).samplerate = input_segment->samplerate();
1249                                 segments_.at(current_segment_id_).start_time = input_segment->start_time();
1250
1251                                 // Reset decoder state but keep the decoder stack intact
1252                                 terminate_srd_session();
1253                         } else {
1254                                 // All segments have been processed
1255                                 decode_finished();
1256
1257                                 // Wait for new input data or an interrupt was requested
1258                                 unique_lock<mutex> input_wait_lock(input_mutex_);
1259                                 decode_input_cond_.wait(input_wait_lock);
1260                         }
1261                 }
1262         } while (error_message_.isEmpty() && !decode_interrupt_);
1263
1264         // Potentially reap decoders when the application no longer is
1265         // interested in their (pending) results.
1266         if (decode_interrupt_)
1267                 terminate_srd_session();
1268 }
1269
1270 void DecodeSignal::start_srd_session()
1271 {
1272         // If there were stack changes, the session has been destroyed by now, so if
1273         // it hasn't been destroyed, we can just reset and re-use it
1274         if (srd_session_) {
1275                 // When a decoder stack was created before, re-use it
1276                 // for the next stream of input data, after terminating
1277                 // potentially still executing operations, and resetting
1278                 // internal state. Skip the rather expensive (teardown
1279                 // and) construction of another decoder stack.
1280
1281                 // TODO Reduce redundancy, use a common code path for
1282                 // the meta/start sequence?
1283                 terminate_srd_session();
1284
1285                 // Metadata is cleared also, so re-set it
1286                 uint64_t samplerate = 0;
1287                 if (segments_.size() > 0)
1288                         samplerate = segments_.at(current_segment_id_).samplerate;
1289                 if (samplerate)
1290                         srd_session_metadata_set(srd_session_, SRD_CONF_SAMPLERATE,
1291                                 g_variant_new_uint64(samplerate));
1292                 for (const shared_ptr<Decoder>& dec : stack_)
1293                         dec->apply_all_options();
1294                 srd_session_start(srd_session_);
1295
1296                 return;
1297         }
1298
1299         // Create the session
1300         srd_session_new(&srd_session_);
1301         assert(srd_session_);
1302
1303         // Create the decoders
1304         srd_decoder_inst *prev_di = nullptr;
1305         for (const shared_ptr<Decoder>& dec : stack_) {
1306                 srd_decoder_inst *const di = dec->create_decoder_inst(srd_session_);
1307
1308                 if (!di) {
1309                         set_error_message(tr("Failed to create decoder instance"));
1310                         srd_session_destroy(srd_session_);
1311                         srd_session_ = nullptr;
1312                         return;
1313                 }
1314
1315                 if (prev_di)
1316                         srd_inst_stack(srd_session_, prev_di, di);
1317
1318                 prev_di = di;
1319         }
1320
1321         // Start the session
1322         if (segments_.size() > 0)
1323                 srd_session_metadata_set(srd_session_, SRD_CONF_SAMPLERATE,
1324                         g_variant_new_uint64(segments_.at(current_segment_id_).samplerate));
1325
1326         srd_pd_output_callback_add(srd_session_, SRD_OUTPUT_ANN,
1327                 DecodeSignal::annotation_callback, this);
1328
1329         srd_pd_output_callback_add(srd_session_, SRD_OUTPUT_BINARY,
1330                 DecodeSignal::binary_callback, this);
1331
1332         srd_session_start(srd_session_);
1333
1334         // We just recreated the srd session, so all stack changes are applied now
1335         stack_config_changed_ = false;
1336 }
1337
1338 void DecodeSignal::terminate_srd_session()
1339 {
1340         // Call the "terminate and reset" routine for the decoder stack
1341         // (if available). This does not harm those stacks which already
1342         // have completed their operation, and reduces response time for
1343         // those stacks which still are processing data while the
1344         // application no longer wants them to.
1345         if (srd_session_) {
1346                 srd_session_terminate_reset(srd_session_);
1347
1348                 // Metadata is cleared also, so re-set it
1349                 uint64_t samplerate = 0;
1350                 if (segments_.size() > 0)
1351                         samplerate = segments_.at(current_segment_id_).samplerate;
1352                 if (samplerate)
1353                         srd_session_metadata_set(srd_session_, SRD_CONF_SAMPLERATE,
1354                                 g_variant_new_uint64(samplerate));
1355                 for (const shared_ptr<Decoder>& dec : stack_)
1356                         dec->apply_all_options();
1357         }
1358 }
1359
1360 void DecodeSignal::stop_srd_session()
1361 {
1362         if (srd_session_) {
1363                 // Destroy the session
1364                 srd_session_destroy(srd_session_);
1365                 srd_session_ = nullptr;
1366
1367                 // Mark the decoder instances as non-existant since they were deleted
1368                 for (const shared_ptr<Decoder>& dec : stack_)
1369                         dec->invalidate_decoder_inst();
1370         }
1371 }
1372
1373 void DecodeSignal::connect_input_notifiers()
1374 {
1375         // Disconnect the notification slot from the previous set of signals
1376         disconnect(this, SLOT(on_data_cleared()));
1377         disconnect(this, SLOT(on_data_received()));
1378
1379         // Connect the currently used signals to our slot
1380         for (decode::DecodeChannel& ch : channels_) {
1381                 if (!ch.assigned_signal)
1382                         continue;
1383
1384                 const data::SignalBase *signal = ch.assigned_signal;
1385                 connect(signal, SIGNAL(samples_cleared()),
1386                         this, SLOT(on_data_cleared()));
1387                 connect(signal, SIGNAL(samples_added(uint64_t, uint64_t, uint64_t)),
1388                         this, SLOT(on_data_received()));
1389         }
1390 }
1391
1392 void DecodeSignal::create_decode_segment()
1393 {
1394         // Create annotation segment
1395         segments_.emplace_back();
1396
1397         // Add annotation classes
1398         for (const shared_ptr<Decoder>& dec : stack_)
1399                 for (Row* row : dec->get_rows())
1400                         segments_.back().annotation_rows.emplace(row, RowData(row));
1401
1402         // Prepare our binary output classes
1403         for (const shared_ptr<Decoder>& dec : stack_) {
1404                 uint32_t n = dec->get_binary_class_count();
1405
1406                 for (uint32_t i = 0; i < n; i++)
1407                         segments_.back().binary_classes.push_back(
1408                                 {dec.get(), dec->get_binary_class(i), deque<DecodeBinaryDataChunk>()});
1409         }
1410 }
1411
1412 void DecodeSignal::annotation_callback(srd_proto_data *pdata, void *decode_signal)
1413 {
1414         assert(pdata);
1415         assert(decode_signal);
1416
1417         DecodeSignal *const ds = (DecodeSignal*)decode_signal;
1418         assert(ds);
1419
1420         if (ds->decode_interrupt_)
1421                 return;
1422
1423         if (ds->segments_.empty())
1424                 return;
1425
1426         lock_guard<mutex> lock(ds->output_mutex_);
1427
1428         // Get the decoder and the annotation data
1429         assert(pdata->pdo);
1430         assert(pdata->pdo->di);
1431         const srd_decoder *const srd_dec = pdata->pdo->di->decoder;
1432         assert(srd_dec);
1433
1434         const srd_proto_data_annotation *const pda = (const srd_proto_data_annotation*)pdata->data;
1435         assert(pda);
1436
1437         // Find the row
1438         Decoder* dec = ds->get_decoder_by_instance(srd_dec);
1439         assert(dec);
1440
1441         AnnotationClass* ann_class = dec->get_ann_class_by_id(pda->ann_class);
1442         if (!ann_class) {
1443                 qWarning() << "Decoder" << ds->display_name() << "wanted to add annotation" <<
1444                         "with class ID" << pda->ann_class << "but there are only" <<
1445                         dec->ann_classes().size() << "known classes";
1446                 return;
1447         }
1448
1449         const Row* row = ann_class->row;
1450
1451         if (!row)
1452                 row = dec->get_row_by_id(0);
1453
1454         RowData& row_data = ds->segments_[ds->current_segment_id_].annotation_rows.at(row);
1455
1456         // Add the annotation to the row
1457         const Annotation* ann = row_data.emplace_annotation(pdata);
1458
1459         // Add the annotation to the global annotation list
1460         deque<const Annotation*>& all_annotations =
1461                 ds->segments_[ds->current_segment_id_].all_annotations;
1462         all_annotations.emplace_back(ann);
1463
1464         // When emplace_annotation() inserts instead of appends an annotation,
1465         // the pointers in all_annotations that follow the inserted annotation and
1466         // point to annotations for this row are off by one and must be updated
1467         if (&(row_data.annotations().back()) != ann) {
1468                 // Search backwards until we find the annotation we just added
1469                 auto row_it = row_data.annotations().end();
1470                 auto all_it = all_annotations.end();
1471                 do {
1472                         all_it--;
1473                         if ((*all_it)->row_data() == &row_data)
1474                                 row_it--;
1475                 } while (&(*row_it) != ann);
1476
1477                 // Update the annotation addresses for this row's annotations until the end
1478                 do {
1479                         if ((*all_it)->row_data() == &row_data) {
1480                                 *all_it = &(*row_it);
1481                                 row_it++;
1482                         }
1483                         all_it++;
1484                 } while (all_it != all_annotations.end());
1485         }
1486 }
1487
1488 void DecodeSignal::binary_callback(srd_proto_data *pdata, void *decode_signal)
1489 {
1490         assert(pdata);
1491         assert(decode_signal);
1492
1493         DecodeSignal *const ds = (DecodeSignal*)decode_signal;
1494         assert(ds);
1495
1496         if (ds->decode_interrupt_)
1497                 return;
1498
1499         // Get the decoder and the binary data
1500         assert(pdata->pdo);
1501         assert(pdata->pdo->di);
1502         const srd_decoder *const srd_dec = pdata->pdo->di->decoder;
1503         assert(srd_dec);
1504
1505         const srd_proto_data_binary *const pdb = (const srd_proto_data_binary*)pdata->data;
1506         assert(pdb);
1507
1508         // Find the matching DecodeBinaryClass
1509         DecodeSegment* segment = &(ds->segments_.at(ds->current_segment_id_));
1510
1511         DecodeBinaryClass* bin_class = nullptr;
1512         for (DecodeBinaryClass& bc : segment->binary_classes)
1513                 if ((bc.decoder->get_srd_decoder() == srd_dec) &&
1514                         (bc.info->bin_class_id == (uint32_t)pdb->bin_class))
1515                         bin_class = &bc;
1516
1517         if (!bin_class) {
1518                 qWarning() << "Could not find valid DecodeBinaryClass in segment" <<
1519                                 ds->current_segment_id_ << "for binary class ID" << pdb->bin_class <<
1520                                 ", segment only knows" << segment->binary_classes.size() << "classes";
1521                 return;
1522         }
1523
1524         // Add the data chunk
1525         bin_class->chunks.emplace_back();
1526         DecodeBinaryDataChunk* chunk = &(bin_class->chunks.back());
1527
1528         chunk->sample = pdata->start_sample;
1529         chunk->data.resize(pdb->size);
1530         memcpy(chunk->data.data(), pdb->data, pdb->size);
1531
1532         Decoder* dec = ds->get_decoder_by_instance(srd_dec);
1533
1534         ds->new_binary_data(ds->current_segment_id_, (void*)dec, pdb->bin_class);
1535 }
1536
1537 void DecodeSignal::on_capture_state_changed(int state)
1538 {
1539         // If a new acquisition was started, we need to start decoding from scratch
1540         if (state == Session::Running) {
1541                 logic_mux_data_invalid_ = true;
1542                 begin_decode();
1543         }
1544 }
1545
1546 void DecodeSignal::on_data_cleared()
1547 {
1548         reset_decode();
1549 }
1550
1551 void DecodeSignal::on_data_received()
1552 {
1553         // If we detected a lack of input data when trying to start decoding,
1554         // we have set an error message. Only try again if we now have data
1555         // to work with
1556         if ((!error_message_.isEmpty()) && (get_input_segment_count() == 0))
1557                 return;
1558
1559         if (!logic_mux_thread_.joinable())
1560                 begin_decode();
1561         else
1562                 logic_mux_cond_.notify_one();
1563 }
1564
1565 } // namespace data
1566 } // namespace pv