2 * This file is part of the PulseView project.
4 * Copyright (C) 2017 Soeren Apel <soeren@apelpie.net>
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.
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.
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/>.
25 #include "logicsegment.hpp"
26 #include "decodesignal.hpp"
27 #include "signaldata.hpp"
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>
35 using std::lock_guard;
37 using std::make_shared;
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;
49 const double DecodeSignal::DecodeMargin = 1.0;
50 const double DecodeSignal::DecodeThreshold = 0.2;
51 const int64_t DecodeSignal::DecodeChunkLength = 256 * 1024;
54 DecodeSignal::DecodeSignal(pv::Session &session) :
55 SignalBase(nullptr, SignalBase::DecodeChannel),
57 srd_session_(nullptr),
58 logic_mux_data_invalid_(false),
59 current_segment_id_(0)
61 connect(&session_, SIGNAL(capture_state_changed(int)),
62 this, SLOT(on_capture_state_changed(int)));
65 DecodeSignal::~DecodeSignal()
70 const vector< shared_ptr<Decoder> >& DecodeSignal::decoder_stack() const
75 void DecodeSignal::stack_decoder(const srd_decoder *decoder)
78 const shared_ptr<Decoder> dec = make_shared<decode::Decoder>(decoder);
80 stack_.push_back(dec);
82 // Set name if this decoder is the first in the list
83 if (stack_.size() == 1)
84 set_name(QString::fromUtf8(decoder->name));
86 // Include the newly created decode channels in the channel lists
87 update_channel_list();
89 auto_assign_signals(dec);
90 commit_decoder_channels();
94 void DecodeSignal::remove_decoder(int index)
97 assert(index < (int)stack_.size());
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());
104 // Delete the element
107 // Update channels and decoded data
108 update_channel_list();
112 bool DecodeSignal::toggle_decoder_visibility(int index)
114 auto iter = stack_.cbegin();
115 for (int i = 0; i < index; i++, iter++)
116 assert(iter != stack_.end());
118 shared_ptr<Decoder> dec = *iter;
120 // Toggle decoder visibility
123 state = !dec->shown();
130 void DecodeSignal::reset_decode()
132 if (decode_thread_.joinable()) {
133 decode_interrupt_ = true;
134 decode_input_cond_.notify_one();
135 decode_thread_.join();
138 if (logic_mux_thread_.joinable()) {
139 logic_mux_interrupt_ = true;
140 logic_mux_cond_.notify_one();
141 logic_mux_thread_.join();
147 current_segment_id_ = 0;
150 logic_mux_data_.reset();
151 logic_mux_data_invalid_ = true;
153 error_message_ = QString();
158 void DecodeSignal::begin_decode()
160 if (decode_thread_.joinable()) {
161 decode_interrupt_ = true;
162 decode_input_cond_.notify_one();
163 decode_thread_.join();
166 if (logic_mux_thread_.joinable()) {
167 logic_mux_interrupt_ = true;
168 logic_mux_cond_.notify_one();
169 logic_mux_thread_.join();
174 if (stack_.size() == 0) {
175 error_message_ = tr("No decoders");
179 assert(channels_.size() > 0);
181 if (get_assigned_signal_count() == 0) {
182 error_message_ = tr("There are no channels assigned to this decoder");
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;
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");
201 // Map out all the annotation classes
202 for (const shared_ptr<decode::Decoder> &dec : stack_) {
204 const srd_decoder *const decc = dec->decoder();
205 assert(dec->decoder());
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;
212 const Row row(decc, ann_row);
214 for (const GSList *ll = ann_row->ann_classes;
216 class_rows_[make_pair(decc,
217 GPOINTER_TO_INT(ll->data))] = row;
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();
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);
231 // Receive notifications when new sample data is available
232 connect_input_notifiers();
234 if (get_input_segment_count() == 0) {
235 error_message_ = tr("No input data");
239 // Make sure the logic output data is complete and up-to-date
240 logic_mux_interrupt_ = false;
241 logic_mux_thread_ = std::thread(&DecodeSignal::logic_mux_proc, this);
243 // Decode the muxed logic data
244 decode_interrupt_ = false;
245 decode_thread_ = std::thread(&DecodeSignal::decode_proc, this);
248 QString DecodeSignal::error_message() const
250 lock_guard<mutex> lock(output_mutex_);
251 return error_message_;
254 const vector<data::DecodeChannel> DecodeSignal::get_channels() const
259 void DecodeSignal::auto_assign_signals(const shared_ptr<Decoder> dec)
261 bool new_assignment = false;
263 // Try to auto-select channels that don't have signals assigned yet
264 for (data::DecodeChannel &ch : channels_) {
265 // If a decoder is given, auto-assign only its channels
266 if (dec && (ch.decoder_ != dec))
269 if (ch.assigned_signal)
272 for (shared_ptr<data::SignalBase> s : session_.signalbases()) {
273 const QString ch_name = ch.name.toLower();
274 const QString s_name = s->name().toLower();
276 if (s->logic_data() &&
277 ((ch_name.contains(s_name)) || (s_name.contains(ch_name)))) {
278 ch.assigned_signal = s.get();
279 new_assignment = true;
284 if (new_assignment) {
285 logic_mux_data_invalid_ = true;
286 commit_decoder_channels();
291 void DecodeSignal::assign_signal(const uint16_t channel_id, const SignalBase *signal)
293 for (data::DecodeChannel &ch : channels_)
294 if (ch.id == channel_id) {
295 ch.assigned_signal = signal;
296 logic_mux_data_invalid_ = true;
299 commit_decoder_channels();
304 int DecodeSignal::get_assigned_signal_count() const
306 // Count all channels that have a signal assigned to them
307 return count_if(channels_.begin(), channels_.end(),
308 [](data::DecodeChannel ch) { return ch.assigned_signal; });
311 void DecodeSignal::set_initial_pin_state(const uint16_t channel_id, const int init_state)
313 for (data::DecodeChannel &ch : channels_)
314 if (ch.id == channel_id)
315 ch.initial_pin_state = init_state;
322 double DecodeSignal::samplerate() const
326 // TODO For now, we simply return the first samplerate that we have
327 if (segments_.size() > 0)
328 result = segments_.front().samplerate;
333 const pv::util::Timestamp DecodeSignal::start_time() const
335 pv::util::Timestamp result;
337 // TODO For now, we simply return the first start time that we have
338 if (segments_.size() > 0)
339 result = segments_.front().start_time;
344 int64_t DecodeSignal::get_working_sample_count(uint32_t segment_id) const
346 // The working sample count is the highest sample number for
347 // which all used signals have data available, so go through all
348 // channels and use the lowest overall sample count of the segment
350 int64_t count = std::numeric_limits<int64_t>::max();
351 bool no_signals_assigned = true;
353 for (const data::DecodeChannel &ch : channels_)
354 if (ch.assigned_signal) {
355 no_signals_assigned = false;
357 const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
358 if (!logic_data || logic_data->logic_segments().empty())
362 const shared_ptr<LogicSegment> segment = logic_data->logic_segments().at(segment_id);
363 count = min(count, (int64_t)segment->get_sample_count());
364 } catch (out_of_range&) {
369 return (no_signals_assigned ? 0 : count);
372 int64_t DecodeSignal::get_decoded_sample_count(uint32_t segment_id) const
374 lock_guard<mutex> decode_lock(output_mutex_);
379 const DecodeSegment *segment = &(segments_.at(segment_id));
380 result = segment->samples_decoded;
381 } catch (out_of_range&) {
388 vector<Row> DecodeSignal::visible_rows() const
390 lock_guard<mutex> lock(output_mutex_);
394 for (const shared_ptr<decode::Decoder> &dec : stack_) {
399 const srd_decoder *const decc = dec->decoder();
400 assert(dec->decoder());
402 // Add a row for the decoder if it doesn't have a row list
403 if (!decc->annotation_rows)
404 rows.emplace_back(decc);
406 // Add the decoder rows
407 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
408 const srd_decoder_annotation_row *const ann_row =
409 (srd_decoder_annotation_row *)l->data;
411 rows.emplace_back(decc, ann_row);
418 void DecodeSignal::get_annotation_subset(
419 vector<pv::data::decode::Annotation> &dest,
420 const decode::Row &row, uint32_t segment_id, uint64_t start_sample,
421 uint64_t end_sample) const
423 lock_guard<mutex> lock(output_mutex_);
426 const DecodeSegment *segment = &(segments_.at(segment_id));
427 const map<const decode::Row, decode::RowData> *rows =
428 &(segment->annotation_rows);
430 const auto iter = rows->find(row);
431 if (iter != rows->end())
432 (*iter).second.get_annotation_subset(dest,
433 start_sample, end_sample);
434 } catch (out_of_range&) {
439 void DecodeSignal::save_settings(QSettings &settings) const
441 SignalBase::save_settings(settings);
443 settings.setValue("decoders", (int)(stack_.size()));
445 // Save decoder stack
447 for (shared_ptr<decode::Decoder> decoder : stack_) {
448 settings.beginGroup("decoder" + QString::number(decoder_idx++));
450 settings.setValue("id", decoder->decoder()->id);
452 // Save decoder options
453 const map<string, GVariant*>& options = decoder->options();
455 settings.setValue("options", (int)options.size());
457 // Note: decode::Decoder::options() returns only the options
458 // that differ from the default. See binding::Decoder::getter()
460 for (auto option : options) {
461 settings.beginGroup("option" + QString::number(i));
462 settings.setValue("name", QString::fromStdString(option.first));
463 GlobalSettings::store_gvariant(settings, option.second);
471 // Save channel mapping
472 settings.setValue("channels", (int)channels_.size());
474 for (unsigned int channel_id = 0; channel_id < channels_.size(); channel_id++) {
475 auto channel = find_if(channels_.begin(), channels_.end(),
476 [&](data::DecodeChannel ch) { return ch.id == channel_id; });
478 if (channel == channels_.end()) {
479 qDebug() << "ERROR: Gap in channel index:" << channel_id;
483 settings.beginGroup("channel" + QString::number(channel_id));
485 settings.setValue("name", channel->name); // Useful for debugging
486 settings.setValue("initial_pin_state", channel->initial_pin_state);
488 if (channel->assigned_signal)
489 settings.setValue("assigned_signal_name", channel->assigned_signal->name());
495 void DecodeSignal::restore_settings(QSettings &settings)
497 SignalBase::restore_settings(settings);
499 // Restore decoder stack
500 GSList *dec_list = g_slist_copy((GSList*)srd_decoder_list());
502 int decoders = settings.value("decoders").toInt();
504 for (int decoder_idx = 0; decoder_idx < decoders; decoder_idx++) {
505 settings.beginGroup("decoder" + QString::number(decoder_idx));
507 QString id = settings.value("id").toString();
509 for (GSList *entry = dec_list; entry; entry = entry->next) {
510 const srd_decoder *dec = (srd_decoder*)entry->data;
514 if (QString::fromUtf8(dec->id) == id) {
515 shared_ptr<decode::Decoder> decoder =
516 make_shared<decode::Decoder>(dec);
518 stack_.push_back(decoder);
520 // Restore decoder options that differ from their default
521 int options = settings.value("options").toInt();
523 for (int i = 0; i < options; i++) {
524 settings.beginGroup("option" + QString::number(i));
525 QString name = settings.value("name").toString();
526 GVariant *value = GlobalSettings::restore_gvariant(settings);
527 decoder->set_option(name.toUtf8(), value);
531 // Include the newly created decode channels in the channel lists
532 update_channel_list();
541 // Restore channel mapping
542 unsigned int channels = settings.value("channels").toInt();
544 const unordered_set< shared_ptr<data::SignalBase> > signalbases =
545 session_.signalbases();
547 for (unsigned int channel_id = 0; channel_id < channels; channel_id++) {
548 auto channel = find_if(channels_.begin(), channels_.end(),
549 [&](data::DecodeChannel ch) { return ch.id == channel_id; });
551 if (channel == channels_.end()) {
552 qDebug() << "ERROR: Non-existant channel index:" << channel_id;
556 settings.beginGroup("channel" + QString::number(channel_id));
558 QString assigned_signal_name = settings.value("assigned_signal_name").toString();
560 for (shared_ptr<data::SignalBase> signal : signalbases)
561 if (signal->name() == assigned_signal_name)
562 channel->assigned_signal = signal.get();
564 channel->initial_pin_state = settings.value("initial_pin_state").toInt();
569 // Update the internal structures
570 update_channel_list();
571 commit_decoder_channels();
576 uint32_t DecodeSignal::get_input_segment_count() const
578 uint64_t count = std::numeric_limits<uint64_t>::max();
579 bool no_signals_assigned = true;
581 for (const data::DecodeChannel &ch : channels_)
582 if (ch.assigned_signal) {
583 no_signals_assigned = false;
585 const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
586 if (!logic_data || logic_data->logic_segments().empty())
589 // Find the min value of all segment counts
590 if ((uint64_t)(logic_data->logic_segments().size()) < count)
591 count = logic_data->logic_segments().size();
594 return (no_signals_assigned ? 0 : count);
597 uint32_t DecodeSignal::get_input_samplerate(uint32_t segment_id) const
599 double samplerate = 0;
601 for (const data::DecodeChannel &ch : channels_)
602 if (ch.assigned_signal) {
603 const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
604 if (!logic_data || logic_data->logic_segments().empty())
608 const shared_ptr<LogicSegment> segment = logic_data->logic_segments().at(segment_id);
609 samplerate = segment->samplerate();
610 } catch (out_of_range&) {
619 void DecodeSignal::update_channel_list()
621 vector<data::DecodeChannel> prev_channels = channels_;
626 // Copy existing entries, create new as needed
627 for (shared_ptr<Decoder> decoder : stack_) {
628 const srd_decoder* srd_d = decoder->decoder();
631 // Mandatory channels
632 for (l = srd_d->channels; l; l = l->next) {
633 const struct srd_channel *const pdch = (struct srd_channel *)l->data;
634 bool ch_added = false;
636 // Copy but update ID if this channel was in the list before
637 for (data::DecodeChannel &ch : prev_channels)
638 if (ch.pdch_ == pdch) {
640 channels_.push_back(ch);
646 // Create new entry without a mapped signal
647 data::DecodeChannel ch = {id++, 0, false, nullptr,
648 QString::fromUtf8(pdch->name), QString::fromUtf8(pdch->desc),
649 SRD_INITIAL_PIN_SAME_AS_SAMPLE0, decoder, pdch};
650 channels_.push_back(ch);
655 for (l = srd_d->opt_channels; l; l = l->next) {
656 const struct srd_channel *const pdch = (struct srd_channel *)l->data;
657 bool ch_added = false;
659 // Copy but update ID if this channel was in the list before
660 for (data::DecodeChannel &ch : prev_channels)
661 if (ch.pdch_ == pdch) {
663 channels_.push_back(ch);
669 // Create new entry without a mapped signal
670 data::DecodeChannel ch = {id++, 0, true, nullptr,
671 QString::fromUtf8(pdch->name), QString::fromUtf8(pdch->desc),
672 SRD_INITIAL_PIN_SAME_AS_SAMPLE0, decoder, pdch};
673 channels_.push_back(ch);
678 // Invalidate the logic output data if the channel assignment changed
679 if (prev_channels.size() != channels_.size()) {
680 // The number of channels changed, there's definitely a difference
681 logic_mux_data_invalid_ = true;
683 // Same number but assignment may still differ, so compare all channels
684 for (size_t i = 0; i < channels_.size(); i++) {
685 const data::DecodeChannel &p_ch = prev_channels[i];
686 const data::DecodeChannel &ch = channels_[i];
688 if ((p_ch.pdch_ != ch.pdch_) ||
689 (p_ch.assigned_signal != ch.assigned_signal)) {
690 logic_mux_data_invalid_ = true;
700 void DecodeSignal::commit_decoder_channels()
702 // Submit channel list to every decoder, containing only the relevant channels
703 for (shared_ptr<decode::Decoder> dec : stack_) {
704 vector<data::DecodeChannel*> channel_list;
706 for (data::DecodeChannel &ch : channels_)
707 if (ch.decoder_ == dec)
708 channel_list.push_back(&ch);
710 dec->set_channels(channel_list);
713 // Channel bit IDs must be in sync with the channel's apperance in channels_
715 for (data::DecodeChannel &ch : channels_)
716 if (ch.assigned_signal)
720 void DecodeSignal::mux_logic_samples(uint32_t segment_id, const int64_t start, const int64_t end)
722 // Enforce end to be greater than start
726 // Fetch the channel segments and their data
727 vector<shared_ptr<LogicSegment> > segments;
728 vector<const uint8_t*> signal_data;
729 vector<uint8_t> signal_in_bytepos;
730 vector<uint8_t> signal_in_bitpos;
732 for (data::DecodeChannel &ch : channels_)
733 if (ch.assigned_signal) {
734 const shared_ptr<Logic> logic_data = ch.assigned_signal->logic_data();
736 shared_ptr<LogicSegment> segment;
738 segment = logic_data->logic_segments().at(segment_id);
739 } catch (out_of_range&) {
740 qDebug() << "Muxer error for" << name() << ":" << ch.assigned_signal->name() \
741 << "has no logic segment" << segment_id;
744 segments.push_back(segment);
746 uint8_t* data = new uint8_t[(end - start) * segment->unit_size()];
747 segment->get_samples(start, end, data);
748 signal_data.push_back(data);
750 const int bitpos = ch.assigned_signal->logic_bit_index();
751 signal_in_bytepos.push_back(bitpos / 8);
752 signal_in_bitpos.push_back(bitpos % 8);
756 shared_ptr<LogicSegment> output_segment;
758 output_segment = logic_mux_data_->logic_segments().at(segment_id);
759 } catch (out_of_range&) {
760 qDebug() << "Muxer error for" << name() << ": no logic mux segment" \
761 << segment_id << "in mux_logic_samples(), mux segments size is" \
762 << logic_mux_data_->logic_segments().size();
766 // Perform the muxing of signal data into the output data
767 uint8_t* output = new uint8_t[(end - start) * output_segment->unit_size()];
768 unsigned int signal_count = signal_data.size();
770 for (int64_t sample_cnt = 0; sample_cnt < (end - start); sample_cnt++) {
774 const int out_sample_pos = sample_cnt * output_segment->unit_size();
775 for (unsigned int i = 0; i < output_segment->unit_size(); i++)
776 output[out_sample_pos + i] = 0;
778 for (unsigned int i = 0; i < signal_count; i++) {
779 const int in_sample_pos = sample_cnt * segments[i]->unit_size();
780 const uint8_t in_sample = 1 &
781 ((signal_data[i][in_sample_pos + signal_in_bytepos[i]]) >> (signal_in_bitpos[i]));
783 const uint8_t out_sample = output[out_sample_pos + bytepos];
785 output[out_sample_pos + bytepos] = out_sample | (in_sample << bitpos);
795 output_segment->append_payload(output, (end - start) * output_segment->unit_size());
798 for (const uint8_t* data : signal_data)
802 void DecodeSignal::logic_mux_proc()
804 uint32_t segment_id = 0;
806 assert(logic_mux_data_);
808 // Create initial logic mux segment
809 shared_ptr<LogicSegment> output_segment =
810 make_shared<LogicSegment>(*logic_mux_data_, segment_id,
811 logic_mux_unit_size_, 0);
812 logic_mux_data_->push_segment(output_segment);
814 output_segment->set_samplerate(get_input_samplerate(0));
817 const uint64_t input_sample_count = get_working_sample_count(segment_id);
818 const uint64_t output_sample_count = output_segment->get_sample_count();
820 const uint64_t samples_to_process =
821 (input_sample_count > output_sample_count) ?
822 (input_sample_count - output_sample_count) : 0;
824 // Process the samples if necessary...
825 if (samples_to_process > 0) {
826 const uint64_t unit_size = output_segment->unit_size();
827 const uint64_t chunk_sample_count = DecodeChunkLength / unit_size;
829 uint64_t processed_samples = 0;
831 const uint64_t start_sample = output_sample_count + processed_samples;
832 const uint64_t sample_count =
833 min(samples_to_process - processed_samples, chunk_sample_count);
835 mux_logic_samples(segment_id, start_sample, start_sample + sample_count);
836 processed_samples += sample_count;
838 // ...and process the newly muxed logic data
839 decode_input_cond_.notify_one();
840 } while (processed_samples < samples_to_process);
843 if (samples_to_process == 0) {
844 // TODO Optimize this by caching the input segment count and only
845 // querying it when the cached value was reached
846 if (segment_id < get_input_segment_count() - 1) {
847 // Process next segment
851 make_shared<LogicSegment>(*logic_mux_data_, segment_id,
852 logic_mux_unit_size_, 0);
853 logic_mux_data_->push_segment(output_segment);
855 output_segment->set_samplerate(get_input_samplerate(segment_id));
858 // All segments have been processed
859 logic_mux_data_invalid_ = false;
861 // Wait for more input
862 unique_lock<mutex> logic_mux_lock(logic_mux_mutex_);
863 logic_mux_cond_.wait(logic_mux_lock);
866 } while (!logic_mux_interrupt_);
869 void DecodeSignal::decode_data(
870 const int64_t abs_start_samplenum, const int64_t sample_count,
871 const shared_ptr<LogicSegment> input_segment)
873 const int64_t unit_size = input_segment->unit_size();
874 const int64_t chunk_sample_count = DecodeChunkLength / unit_size;
876 for (int64_t i = abs_start_samplenum;
877 !decode_interrupt_ && (i < (abs_start_samplenum + sample_count));
878 i += chunk_sample_count) {
880 const int64_t chunk_end = min(i + chunk_sample_count,
881 abs_start_samplenum + sample_count);
883 int64_t data_size = (chunk_end - i) * unit_size;
884 uint8_t* chunk = new uint8_t[data_size];
885 input_segment->get_samples(i, chunk_end, chunk);
887 if (srd_session_send(srd_session_, i, chunk_end, chunk,
888 data_size, unit_size) != SRD_OK) {
889 error_message_ = tr("Decoder reported an error");
897 lock_guard<mutex> lock(output_mutex_);
898 segments_.at(current_segment_id_).samples_decoded = chunk_end;
901 // Notify the frontend that we processed some data and
902 // possibly have new annotations as well
907 void DecodeSignal::decode_proc()
909 current_segment_id_ = 0;
911 // If there is no input data available yet, wait until it is or we're interrupted
912 if (logic_mux_data_->logic_segments().size() == 0) {
913 unique_lock<mutex> input_wait_lock(input_mutex_);
914 decode_input_cond_.wait(input_wait_lock);
917 if (decode_interrupt_)
920 shared_ptr<LogicSegment> input_segment = logic_mux_data_->logic_segments().front();
921 assert(input_segment);
923 // Create the initial segment and set its sample rate so that we can pass it to SRD
924 create_decode_segment();
925 segments_.at(current_segment_id_).samplerate = input_segment->samplerate();
926 segments_.at(current_segment_id_).start_time = input_segment->start_time();
930 uint64_t sample_count = 0;
931 uint64_t abs_start_samplenum = 0;
933 // Keep processing new samples until we exhaust the input data
935 lock_guard<mutex> input_lock(input_mutex_);
936 sample_count = input_segment->get_sample_count() - abs_start_samplenum;
938 if (sample_count > 0) {
939 decode_data(abs_start_samplenum, sample_count, input_segment);
940 abs_start_samplenum += sample_count;
942 } while (error_message_.isEmpty() && (sample_count > 0) && !decode_interrupt_);
944 if (error_message_.isEmpty() && !decode_interrupt_ && sample_count == 0) {
945 if (current_segment_id_ < logic_mux_data_->logic_segments().size() - 1) {
946 // Process next segment
947 current_segment_id_++;
950 input_segment = logic_mux_data_->logic_segments().at(current_segment_id_);
951 } catch (out_of_range&) {
952 qDebug() << "Decode error for" << name() << ": no logic mux segment" \
953 << current_segment_id_ << "in decode_proc(), mux segments size is" \
954 << logic_mux_data_->logic_segments().size();
957 abs_start_samplenum = 0;
959 // Create the next segment and set its metadata
960 create_decode_segment();
961 segments_.at(current_segment_id_).samplerate = input_segment->samplerate();
962 segments_.at(current_segment_id_).start_time = input_segment->start_time();
964 // Reset decoder state
968 // All segments have been processed
971 // Wait for new input data or an interrupt was requested
972 unique_lock<mutex> input_wait_lock(input_mutex_);
973 decode_input_cond_.wait(input_wait_lock);
976 } while (error_message_.isEmpty() && !decode_interrupt_);
979 void DecodeSignal::start_srd_session()
986 // Create the session
987 srd_session_new(&srd_session_);
988 assert(srd_session_);
990 // Create the decoders
991 srd_decoder_inst *prev_di = nullptr;
992 for (const shared_ptr<decode::Decoder> &dec : stack_) {
993 srd_decoder_inst *const di = dec->create_decoder_inst(srd_session_);
996 error_message_ = tr("Failed to create decoder instance");
997 srd_session_destroy(srd_session_);
998 srd_session_ = nullptr;
1003 srd_inst_stack(srd_session_, prev_di, di);
1008 // Start the session
1009 samplerate = segments_.at(current_segment_id_).samplerate;
1011 srd_session_metadata_set(srd_session_, SRD_CONF_SAMPLERATE,
1012 g_variant_new_uint64(samplerate));
1014 srd_pd_output_callback_add(srd_session_, SRD_OUTPUT_ANN,
1015 DecodeSignal::annotation_callback, this);
1017 srd_session_start(srd_session_);
1020 void DecodeSignal::stop_srd_session()
1023 // Destroy the session
1024 srd_session_destroy(srd_session_);
1025 srd_session_ = nullptr;
1029 void DecodeSignal::connect_input_notifiers()
1031 // Disconnect the notification slot from the previous set of signals
1032 disconnect(this, SLOT(on_data_cleared()));
1033 disconnect(this, SLOT(on_data_received()));
1035 // Connect the currently used signals to our slot
1036 for (data::DecodeChannel &ch : channels_) {
1037 if (!ch.assigned_signal)
1040 const data::SignalBase *signal = ch.assigned_signal;
1041 connect(signal, SIGNAL(samples_cleared()),
1042 this, SLOT(on_data_cleared()));
1043 connect(signal, SIGNAL(samples_added(uint64_t, uint64_t, uint64_t)),
1044 this, SLOT(on_data_received()));
1048 void DecodeSignal::create_decode_segment()
1050 // Create annotation segment
1051 segments_.emplace_back(DecodeSegment());
1053 // Add annotation classes
1054 for (const shared_ptr<decode::Decoder> &dec : stack_) {
1056 const srd_decoder *const decc = dec->decoder();
1057 assert(dec->decoder());
1059 // Add a row for the decoder if it doesn't have a row list
1060 if (!decc->annotation_rows)
1061 (segments_.back().annotation_rows)[Row(decc)] =
1064 // Add the decoder rows
1065 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
1066 const srd_decoder_annotation_row *const ann_row =
1067 (srd_decoder_annotation_row *)l->data;
1070 const Row row(decc, ann_row);
1072 // Add a new empty row data object
1073 (segments_.back().annotation_rows)[row] =
1079 void DecodeSignal::annotation_callback(srd_proto_data *pdata, void *decode_signal)
1082 assert(decode_signal);
1084 DecodeSignal *const ds = (DecodeSignal*)decode_signal;
1087 lock_guard<mutex> lock(ds->output_mutex_);
1091 assert(pdata->pdo->di);
1092 const srd_decoder *const decc = pdata->pdo->di->decoder;
1095 const srd_proto_data_annotation *const pda =
1096 (const srd_proto_data_annotation*)pdata->data;
1099 auto row_iter = ds->segments_.at(ds->current_segment_id_).annotation_rows.end();
1101 // Try looking up the sub-row of this class
1102 const auto format = pda->ann_class;
1103 const auto r = ds->class_rows_.find(make_pair(decc, format));
1104 if (r != ds->class_rows_.end())
1105 row_iter = ds->segments_.at(ds->current_segment_id_).annotation_rows.find((*r).second);
1107 // Failing that, use the decoder as a key
1108 row_iter = ds->segments_.at(ds->current_segment_id_).annotation_rows.find(Row(decc));
1111 if (row_iter == ds->segments_.at(ds->current_segment_id_).annotation_rows.end()) {
1112 qDebug() << "Unexpected annotation: decoder = " << decc <<
1113 ", format = " << format;
1118 // Add the annotation
1119 (*row_iter).second.emplace_annotation(pdata);
1122 void DecodeSignal::on_capture_state_changed(int state)
1124 // If a new acquisition was started, we need to start decoding from scratch
1125 if (state == Session::Running) {
1126 logic_mux_data_invalid_ = true;
1131 void DecodeSignal::on_data_cleared()
1136 void DecodeSignal::on_data_received()
1138 if (!logic_mux_thread_.joinable())
1141 logic_mux_cond_.notify_one();