2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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/>.
20 #include <libsigrokdecode/libsigrokdecode.h>
26 #include "decoderstack.hpp"
28 #include <pv/data/logic.hpp>
29 #include <pv/data/logicsegment.hpp>
30 #include <pv/data/decode/decoder.hpp>
31 #include <pv/data/decode/annotation.hpp>
32 #include <pv/session.hpp>
33 #include <pv/view/logicsignal.hpp>
35 using std::lock_guard;
37 using std::unique_lock;
43 using std::shared_ptr;
44 using std::make_shared;
47 using boost::optional;
49 using namespace pv::data::decode;
54 const double DecoderStack::DecodeMargin = 1.0;
55 const double DecoderStack::DecodeThreshold = 0.2;
56 const int64_t DecoderStack::DecodeChunkLength = 10 * 1024 * 1024;
57 const unsigned int DecoderStack::DecodeNotifyPeriod = 1024;
59 mutex DecoderStack::global_srd_mutex_;
61 DecoderStack::DecoderStack(pv::Session &session,
62 const srd_decoder *const dec) :
67 frame_complete_(false),
70 connect(&session_, SIGNAL(frame_began()),
71 this, SLOT(on_new_frame()));
72 connect(&session_, SIGNAL(data_received()),
73 this, SLOT(on_data_received()));
74 connect(&session_, SIGNAL(frame_ended()),
75 this, SLOT(on_frame_ended()));
77 stack_.push_back(make_shared<decode::Decoder>(dec));
80 DecoderStack::~DecoderStack()
82 if (decode_thread_.joinable()) {
84 input_cond_.notify_one();
85 decode_thread_.join();
89 const list< shared_ptr<decode::Decoder> >& DecoderStack::stack() const
94 void DecoderStack::push(shared_ptr<decode::Decoder> decoder)
97 stack_.push_back(decoder);
100 void DecoderStack::remove(int index)
103 assert(index < (int)stack_.size());
105 // Find the decoder in the stack
106 auto iter = stack_.begin();
107 for (int i = 0; i < index; i++, iter++)
108 assert(iter != stack_.end());
110 // Delete the element
114 double DecoderStack::samplerate() const
119 const pv::util::Timestamp& DecoderStack::start_time() const
124 int64_t DecoderStack::samples_decoded() const
126 lock_guard<mutex> decode_lock(output_mutex_);
127 return samples_decoded_;
130 vector<Row> DecoderStack::get_visible_rows() const
132 lock_guard<mutex> lock(output_mutex_);
136 for (const shared_ptr<decode::Decoder> &dec : stack_) {
141 const srd_decoder *const decc = dec->decoder();
142 assert(dec->decoder());
144 // Add a row for the decoder if it doesn't have a row list
145 if (!decc->annotation_rows)
146 rows.emplace_back(decc);
148 // Add the decoder rows
149 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
150 const srd_decoder_annotation_row *const ann_row =
151 (srd_decoder_annotation_row *)l->data;
153 rows.emplace_back(decc, ann_row);
160 void DecoderStack::get_annotation_subset(
161 vector<pv::data::decode::Annotation> &dest,
162 const Row &row, uint64_t start_sample,
163 uint64_t end_sample) const
165 lock_guard<mutex> lock(output_mutex_);
167 const auto iter = rows_.find(row);
168 if (iter != rows_.end())
169 (*iter).second.get_annotation_subset(dest,
170 start_sample, end_sample);
173 QString DecoderStack::error_message()
175 lock_guard<mutex> lock(output_mutex_);
176 return error_message_;
179 void DecoderStack::clear()
182 frame_complete_ = false;
183 samples_decoded_ = 0;
184 error_message_ = QString();
189 void DecoderStack::begin_decode()
191 if (decode_thread_.joinable()) {
193 input_cond_.notify_one();
194 decode_thread_.join();
199 // Check that all decoders have the required channels
200 for (const shared_ptr<decode::Decoder> &dec : stack_)
201 if (!dec->have_required_channels()) {
202 error_message_ = tr("One or more required channels "
203 "have not been specified");
208 for (const shared_ptr<decode::Decoder> &dec : stack_) {
210 const srd_decoder *const decc = dec->decoder();
211 assert(dec->decoder());
213 // Add a row for the decoder if it doesn't have a row list
214 if (!decc->annotation_rows)
215 rows_[Row(decc)] = decode::RowData();
217 // Add the decoder rows
218 for (const GSList *l = decc->annotation_rows; l; l = l->next) {
219 const srd_decoder_annotation_row *const ann_row =
220 (srd_decoder_annotation_row *)l->data;
223 const Row row(decc, ann_row);
225 // Add a new empty row data object
226 rows_[row] = decode::RowData();
228 // Map out all the classes
229 for (const GSList *ll = ann_row->ann_classes;
231 class_rows_[make_pair(decc,
232 GPOINTER_TO_INT(ll->data))] = row;
236 // We get the logic data of the first channel in the list.
237 // This works because we are currently assuming all
238 // logic signals have the same data/segment
239 pv::data::SignalBase *signalbase;
240 pv::data::Logic *data = nullptr;
242 for (const shared_ptr<decode::Decoder> &dec : stack_)
243 if (dec && !dec->channels().empty() &&
244 ((signalbase = (*dec->channels().begin()).second.get())) &&
245 ((data = signalbase->logic_data().get())))
251 // Check we have a segment of data
252 const deque< shared_ptr<pv::data::LogicSegment> > &segments =
253 data->logic_segments();
254 if (segments.empty())
256 segment_ = segments.front();
258 // Get the samplerate and start time
259 start_time_ = segment_->start_time();
260 samplerate_ = segment_->samplerate();
261 if (samplerate_ == 0.0)
265 decode_thread_ = std::thread(&DecoderStack::decode_proc, this);
268 uint64_t DecoderStack::max_sample_count() const
270 uint64_t max_sample_count = 0;
272 for (const auto& row : rows_)
273 max_sample_count = max(max_sample_count,
274 row.second.get_max_sample());
276 return max_sample_count;
279 optional<int64_t> DecoderStack::wait_for_data() const
281 unique_lock<mutex> input_lock(input_mutex_);
283 // Do wait if we decoded all samples but we're still capturing
284 // Do not wait if we're done capturing
285 while (!interrupt_ && !frame_complete_ &&
286 (samples_decoded_ >= sample_count_) &&
287 (session_.get_capture_state() != Session::Stopped)) {
289 input_cond_.wait(input_lock);
292 // Return value is valid if we're not aborting the decode,
293 return boost::make_optional(!interrupt_ &&
294 // and there's more work to do...
295 (samples_decoded_ < sample_count_ || !frame_complete_) &&
296 // and if the end of the data hasn't been reached yet
297 (!((samples_decoded_ >= sample_count_) && (session_.get_capture_state() == Session::Stopped))),
301 void DecoderStack::decode_data(
302 const int64_t abs_start_samplenum, const int64_t sample_count, const unsigned int unit_size,
303 srd_session *const session)
305 const unsigned int chunk_sample_count =
306 DecodeChunkLength / segment_->unit_size();
308 for (int64_t i = abs_start_samplenum; !interrupt_ && i < sample_count;
309 i += chunk_sample_count) {
311 const int64_t chunk_end = min(
312 i + chunk_sample_count, sample_count);
313 const uint8_t* chunk = segment_->get_samples(i, chunk_end);
315 if (srd_session_send(session, i, chunk_end, chunk,
316 (chunk_end - i) * unit_size, unit_size) != SRD_OK) {
317 error_message_ = tr("Decoder reported an error");
324 lock_guard<mutex> lock(output_mutex_);
325 samples_decoded_ = chunk_end;
328 if (i % DecodeNotifyPeriod == 0)
335 void DecoderStack::decode_proc()
337 optional<int64_t> sample_count;
338 srd_session *session;
339 srd_decoder_inst *prev_di = nullptr;
343 // Prevent any other decode threads from accessing libsigrokdecode
344 lock_guard<mutex> srd_lock(global_srd_mutex_);
346 // Create the session
347 srd_session_new(&session);
350 // Create the decoders
351 const unsigned int unit_size = segment_->unit_size();
353 for (const shared_ptr<decode::Decoder> &dec : stack_) {
354 srd_decoder_inst *const di = dec->create_decoder_inst(session);
357 error_message_ = tr("Failed to create decoder instance");
358 srd_session_destroy(session);
363 srd_inst_stack (session, prev_di, di);
368 // Get the intial sample count
370 unique_lock<mutex> input_lock(input_mutex_);
371 sample_count = sample_count_ = segment_->get_sample_count();
375 srd_session_metadata_set(session, SRD_CONF_SAMPLERATE,
376 g_variant_new_uint64((uint64_t)samplerate_));
378 srd_pd_output_callback_add(session, SRD_OUTPUT_ANN,
379 DecoderStack::annotation_callback, this);
381 srd_session_start(session);
383 int64_t abs_start_samplenum = 0;
385 decode_data(abs_start_samplenum, *sample_count, unit_size, session);
386 abs_start_samplenum = *sample_count;
387 } while (error_message_.isEmpty() && (sample_count = wait_for_data()));
389 // Destroy the session
390 srd_session_destroy(session);
393 void DecoderStack::annotation_callback(srd_proto_data *pdata, void *decoder)
398 DecoderStack *const d = (DecoderStack*)decoder;
401 lock_guard<mutex> lock(d->output_mutex_);
403 const Annotation a(pdata);
407 assert(pdata->pdo->di);
408 const srd_decoder *const decc = pdata->pdo->di->decoder;
411 auto row_iter = d->rows_.end();
413 // Try looking up the sub-row of this class
414 const auto r = d->class_rows_.find(make_pair(decc, a.format()));
415 if (r != d->class_rows_.end())
416 row_iter = d->rows_.find((*r).second);
418 // Failing that, use the decoder as a key
419 row_iter = d->rows_.find(Row(decc));
422 assert(row_iter != d->rows_.end());
423 if (row_iter == d->rows_.end()) {
424 qDebug() << "Unexpected annotation: decoder = " << decc <<
425 ", format = " << a.format();
430 // Add the annotation
431 (*row_iter).second.push_annotation(a);
434 void DecoderStack::on_new_frame()
439 void DecoderStack::on_data_received()
442 unique_lock<mutex> lock(input_mutex_);
444 sample_count_ = segment_->get_sample_count();
446 input_cond_.notify_one();
449 void DecoderStack::on_frame_ended()
452 unique_lock<mutex> lock(input_mutex_);
454 frame_complete_ = true;
456 input_cond_.notify_one();