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