]> sigrok.org Git - pulseview.git/blame - pv/data/decoderstack.cpp
Session: Renamed pv::SigSession to Session
[pulseview.git] / pv / data / decoderstack.cpp
CommitLineData
119aff65
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
e332f6d3
JH
21#include <libsigrokdecode/libsigrokdecode.h>
22
e92cd4e4
JH
23#include <stdexcept>
24
b213ef09
JH
25#include <QDebug>
26
2acdb232 27#include "decoderstack.hpp"
119aff65 28
2acdb232
JH
29#include <pv/data/logic.hpp>
30#include <pv/data/logicsnapshot.hpp>
31#include <pv/data/decode/decoder.hpp>
32#include <pv/data/decode/annotation.hpp>
33#include <pv/sigsession.hpp>
34#include <pv/view/logicsignal.hpp>
708c5523 35
3b68d03d
JH
36using std::lock_guard;
37using std::mutex;
f70d8673 38using boost::optional;
3b68d03d 39using std::unique_lock;
819f4c25 40using std::deque;
f9101a91
JH
41using std::make_pair;
42using std::max;
819f4c25
JH
43using std::min;
44using std::list;
f9101a91
JH
45using std::map;
46using std::pair;
f9abf97e 47using std::shared_ptr;
819f4c25 48using std::vector;
e332f6d3 49
f9101a91
JH
50using namespace pv::data::decode;
51
119aff65
JH
52namespace pv {
53namespace data {
54
6e89374a
JH
55const double DecoderStack::DecodeMargin = 1.0;
56const double DecoderStack::DecodeThreshold = 0.2;
57const int64_t DecoderStack::DecodeChunkLength = 4096;
4c581c79 58const unsigned int DecoderStack::DecodeNotifyPeriod = 65536;
e0fc5810 59
8dbbc7f0 60mutex DecoderStack::global_decode_mutex_;
fe89c961 61
2b81ae46 62DecoderStack::DecoderStack(pv::Session &session,
bdc5c3b0 63 const srd_decoder *const dec) :
8dbbc7f0
JH
64 session_(session),
65 sample_count_(0),
66 frame_complete_(false),
67 samples_decoded_(0)
119aff65 68{
8dbbc7f0 69 connect(&session_, SIGNAL(frame_began()),
f70d8673 70 this, SLOT(on_new_frame()));
8dbbc7f0 71 connect(&session_, SIGNAL(data_received()),
f70d8673 72 this, SLOT(on_data_received()));
8dbbc7f0 73 connect(&session_, SIGNAL(frame_ended()),
f70d8673 74 this, SLOT(on_frame_ended()));
82f50b10 75
8dbbc7f0 76 stack_.push_back(shared_ptr<decode::Decoder>(
7491a29f 77 new decode::Decoder(dec)));
119aff65
JH
78}
79
6e89374a 80DecoderStack::~DecoderStack()
640d69ce 81{
8dbbc7f0
JH
82 if (decode_thread_.joinable()) {
83 interrupt_ = true;
84 input_cond_.notify_one();
85 decode_thread_.join();
6d483b8b 86 }
4e5a4405
JH
87}
88
f9abf97e 89const std::list< std::shared_ptr<decode::Decoder> >&
7491a29f 90DecoderStack::stack() const
4e5a4405 91{
8dbbc7f0 92 return stack_;
4e5a4405
JH
93}
94
f9abf97e 95void DecoderStack::push(std::shared_ptr<decode::Decoder> decoder)
4e5a4405 96{
7491a29f 97 assert(decoder);
8dbbc7f0 98 stack_.push_back(decoder);
4e5a4405
JH
99}
100
613d097c
JH
101void DecoderStack::remove(int index)
102{
613d097c 103 assert(index >= 0);
8dbbc7f0 104 assert(index < (int)stack_.size());
613d097c
JH
105
106 // Find the decoder in the stack
8dbbc7f0 107 auto iter = stack_.begin();
613d097c 108 for(int i = 0; i < index; i++, iter++)
8dbbc7f0 109 assert(iter != stack_.end());
613d097c
JH
110
111 // Delete the element
8dbbc7f0 112 stack_.erase(iter);
613d097c
JH
113}
114
5dfeb70f
JH
115int64_t DecoderStack::samples_decoded() const
116{
8dbbc7f0
JH
117 lock_guard<mutex> decode_lock(output_mutex_);
118 return samples_decoded_;
5dfeb70f
JH
119}
120
dd048a7e 121std::vector<Row> DecoderStack::get_visible_rows() const
f9101a91 122{
8dbbc7f0 123 lock_guard<mutex> lock(output_mutex_);
f9101a91
JH
124
125 vector<Row> rows;
126
8dbbc7f0 127 for (const shared_ptr<decode::Decoder> &dec : stack_)
f9101a91
JH
128 {
129 assert(dec);
dd048a7e
JH
130 if (!dec->shown())
131 continue;
132
f9101a91
JH
133 const srd_decoder *const decc = dec->decoder();
134 assert(dec->decoder());
135
136 // Add a row for the decoder if it doesn't have a row list
137 if (!decc->annotation_rows)
138 rows.push_back(Row(decc));
139
140 // Add the decoder rows
141 for (const GSList *l = decc->annotation_rows; l; l = l->next)
142 {
143 const srd_decoder_annotation_row *const ann_row =
144 (srd_decoder_annotation_row *)l->data;
145 assert(ann_row);
146 rows.push_back(Row(decc, ann_row));
147 }
148 }
149
150 return rows;
151}
152
92421299
JH
153void DecoderStack::get_annotation_subset(
154 std::vector<pv::data::decode::Annotation> &dest,
f9101a91
JH
155 const Row &row, uint64_t start_sample,
156 uint64_t end_sample) const
e0fc5810 157{
8dbbc7f0 158 lock_guard<mutex> lock(output_mutex_);
92421299 159
8dbbc7f0
JH
160 const auto iter = rows_.find(row);
161 if (iter != rows_.end())
f9101a91
JH
162 (*iter).second.get_annotation_subset(dest,
163 start_sample, end_sample);
e0fc5810
JH
164}
165
6e89374a 166QString DecoderStack::error_message()
b6b267bb 167{
8dbbc7f0
JH
168 lock_guard<mutex> lock(output_mutex_);
169 return error_message_;
b6b267bb
JH
170}
171
f9101a91
JH
172void DecoderStack::clear()
173{
8dbbc7f0
JH
174 sample_count_ = 0;
175 frame_complete_ = false;
176 samples_decoded_ = 0;
177 error_message_ = QString();
178 rows_.clear();
179 class_rows_.clear();
f9101a91
JH
180}
181
6e89374a 182void DecoderStack::begin_decode()
640d69ce 183{
7491a29f
JH
184 shared_ptr<pv::view::LogicSignal> logic_signal;
185 shared_ptr<pv::data::Logic> data;
186
8dbbc7f0
JH
187 if (decode_thread_.joinable()) {
188 interrupt_ = true;
189 input_cond_.notify_one();
190 decode_thread_.join();
6d483b8b 191 }
640d69ce 192
92421299 193 clear();
4e5a4405 194
8bd26d8b 195 // Check that all decoders have the required channels
8dbbc7f0 196 for (const shared_ptr<decode::Decoder> &dec : stack_)
6ac6242b 197 if (!dec->have_required_channels()) {
8dbbc7f0 198 error_message_ = tr("One or more required channels "
df4c1a06
JH
199 "have not been specified");
200 return;
201 }
202
f9101a91 203 // Add classes
8dbbc7f0 204 for (const shared_ptr<decode::Decoder> &dec : stack_)
f9101a91
JH
205 {
206 assert(dec);
207 const srd_decoder *const decc = dec->decoder();
208 assert(dec->decoder());
209
210 // Add a row for the decoder if it doesn't have a row list
211 if (!decc->annotation_rows)
8dbbc7f0 212 rows_[Row(decc)] = decode::RowData();
f9101a91
JH
213
214 // Add the decoder rows
215 for (const GSList *l = decc->annotation_rows; l; l = l->next)
216 {
217 const srd_decoder_annotation_row *const ann_row =
218 (srd_decoder_annotation_row *)l->data;
219 assert(ann_row);
220
221 const Row row(decc, ann_row);
222
223 // Add a new empty row data object
8dbbc7f0 224 rows_[row] = decode::RowData();
f9101a91
JH
225
226 // Map out all the classes
227 for (const GSList *ll = ann_row->ann_classes;
228 ll; ll = ll->next)
8dbbc7f0 229 class_rows_[make_pair(decc,
f9101a91
JH
230 GPOINTER_TO_INT(ll->data))] = row;
231 }
232 }
233
8bd26d8b 234 // We get the logic data of the first channel in the list.
e0fc5810
JH
235 // This works because we are currently assuming all
236 // LogicSignals have the same data/snapshot
8dbbc7f0 237 for (const shared_ptr<decode::Decoder> &dec : stack_)
8bd26d8b
UH
238 if (dec && !dec->channels().empty() &&
239 ((logic_signal = (*dec->channels().begin()).second)) &&
7aa09b00 240 ((data = logic_signal->logic_data())))
7491a29f
JH
241 break;
242
243 if (!data)
244 return;
245
f70d8673
JH
246 // Check we have a snapshot of data
247 const deque< shared_ptr<pv::data::LogicSnapshot> > &snapshots =
248 data->get_snapshots();
249 if (snapshots.empty())
250 return;
8dbbc7f0 251 snapshot_ = snapshots.front();
f70d8673 252
7491a29f 253 // Get the samplerate and start time
8dbbc7f0
JH
254 start_time_ = data->get_start_time();
255 samplerate_ = data->samplerate();
256 if (samplerate_ == 0.0)
257 samplerate_ = 1.0;
e0fc5810 258
8dbbc7f0
JH
259 interrupt_ = false;
260 decode_thread_ = std::thread(&DecoderStack::decode_proc, this);
640d69ce
JH
261}
262
a007f5ad
JH
263uint64_t DecoderStack::get_max_sample_count() const
264{
f9101a91
JH
265 uint64_t max_sample_count = 0;
266
8dbbc7f0 267 for (auto i = rows_.cbegin(); i != rows_.end(); i++)
f9101a91
JH
268 max_sample_count = max(max_sample_count,
269 (*i).second.get_max_sample());
270
271 return max_sample_count;
a007f5ad
JH
272}
273
f70d8673
JH
274optional<int64_t> DecoderStack::wait_for_data() const
275{
8dbbc7f0
JH
276 unique_lock<mutex> input_lock(input_mutex_);
277 while(!interrupt_ && !frame_complete_ &&
278 samples_decoded_ >= sample_count_)
279 input_cond_.wait(input_lock);
280 return boost::make_optional(!interrupt_ &&
281 (samples_decoded_ < sample_count_ || !frame_complete_),
282 sample_count_);
f70d8673
JH
283}
284
f67d9e9b 285void DecoderStack::decode_data(
f70d8673 286 const int64_t sample_count, const unsigned int unit_size,
f67d9e9b
JH
287 srd_session *const session)
288{
289 uint8_t chunk[DecodeChunkLength];
290
f67d9e9b 291 const unsigned int chunk_sample_count =
8dbbc7f0 292 DecodeChunkLength / snapshot_->unit_size();
f67d9e9b 293
8dbbc7f0 294 for (int64_t i = 0; !interrupt_ && i < sample_count;
f67d9e9b
JH
295 i += chunk_sample_count)
296 {
8dbbc7f0 297 lock_guard<mutex> decode_lock(global_decode_mutex_);
f67d9e9b
JH
298
299 const int64_t chunk_end = min(
300 i + chunk_sample_count, sample_count);
8dbbc7f0 301 snapshot_->get_samples(chunk, i, chunk_end);
f67d9e9b
JH
302
303 if (srd_session_send(session, i, i + sample_count, chunk,
304 (chunk_end - i) * unit_size) != SRD_OK) {
8dbbc7f0 305 error_message_ = tr("Decoder reported an error");
f67d9e9b
JH
306 break;
307 }
308
309 {
8dbbc7f0
JH
310 lock_guard<mutex> lock(output_mutex_);
311 samples_decoded_ = chunk_end;
f67d9e9b 312 }
4c581c79
JH
313
314 if (i % DecodeNotifyPeriod == 0)
315 new_decode_data();
f67d9e9b
JH
316 }
317
1c5fb759 318 new_decode_data();
f67d9e9b
JH
319}
320
c1b2865e 321void DecoderStack::decode_proc()
119aff65 322{
f70d8673 323 optional<int64_t> sample_count;
b6b267bb 324 srd_session *session;
7491a29f 325 srd_decoder_inst *prev_di = NULL;
e0fc5810 326
8dbbc7f0 327 assert(snapshot_);
e0fc5810 328
b6b267bb
JH
329 // Create the session
330 srd_session_new(&session);
331 assert(session);
e0fc5810 332
7491a29f 333 // Create the decoders
8dbbc7f0 334 const unsigned int unit_size = snapshot_->unit_size();
f67d9e9b 335
8dbbc7f0 336 for (const shared_ptr<decode::Decoder> &dec : stack_)
7491a29f 337 {
13a3528c 338 srd_decoder_inst *const di = dec->create_decoder_inst(session, unit_size);
e0fc5810 339
7491a29f
JH
340 if (!di)
341 {
8dbbc7f0 342 error_message_ = tr("Failed to create decoder instance");
7491a29f
JH
343 srd_session_destroy(session);
344 return;
345 }
b6b267bb 346
7491a29f
JH
347 if (prev_di)
348 srd_inst_stack (session, prev_di, di);
b6b267bb 349
7491a29f 350 prev_di = di;
b6b267bb
JH
351 }
352
f70d8673
JH
353 // Get the intial sample count
354 {
8dbbc7f0
JH
355 unique_lock<mutex> input_lock(input_mutex_);
356 sample_count = sample_count_ = snapshot_->get_sample_count();
f70d8673
JH
357 }
358
b6b267bb 359 // Start the session
7491a29f 360 srd_session_metadata_set(session, SRD_CONF_SAMPLERATE,
8dbbc7f0 361 g_variant_new_uint64((uint64_t)samplerate_));
7491a29f
JH
362
363 srd_pd_output_callback_add(session, SRD_OUTPUT_ANN,
364 DecoderStack::annotation_callback, this);
365
b6b267bb
JH
366 srd_session_start(session);
367
f70d8673
JH
368 do {
369 decode_data(*sample_count, unit_size, session);
8dbbc7f0 370 } while(error_message_.isEmpty() && (sample_count = wait_for_data()));
b6b267bb
JH
371
372 // Destroy the session
373 srd_session_destroy(session);
e0fc5810
JH
374}
375
6e89374a 376void DecoderStack::annotation_callback(srd_proto_data *pdata, void *decoder)
e0fc5810 377{
e0fc5810
JH
378 assert(pdata);
379 assert(decoder);
380
6e89374a 381 DecoderStack *const d = (DecoderStack*)decoder;
f9101a91 382 assert(d);
e0fc5810 383
8dbbc7f0 384 lock_guard<mutex> lock(d->output_mutex_);
6d8b0562 385
f9101a91
JH
386 const Annotation a(pdata);
387
388 // Find the row
389 assert(pdata->pdo);
390 assert(pdata->pdo->di);
391 const srd_decoder *const decc = pdata->pdo->di->decoder;
392 assert(decc);
393
8dbbc7f0 394 auto row_iter = d->rows_.end();
f9101a91
JH
395
396 // Try looking up the sub-row of this class
8dbbc7f0
JH
397 const auto r = d->class_rows_.find(make_pair(decc, a.format()));
398 if (r != d->class_rows_.end())
399 row_iter = d->rows_.find((*r).second);
f9101a91 400 else
6d8b0562 401 {
f9101a91 402 // Failing that, use the decoder as a key
8dbbc7f0 403 row_iter = d->rows_.find(Row(decc));
6d8b0562
UH
404 }
405
8dbbc7f0
JH
406 assert(row_iter != d->rows_.end());
407 if (row_iter == d->rows_.end()) {
f9101a91
JH
408 qDebug() << "Unexpected annotation: decoder = " << decc <<
409 ", format = " << a.format();
410 assert(0);
411 return;
412 }
9cef9567 413
f9101a91
JH
414 // Add the annotation
415 (*row_iter).second.push_annotation(a);
119aff65
JH
416}
417
82f50b10
JH
418void DecoderStack::on_new_frame()
419{
420 begin_decode();
421}
422
f70d8673
JH
423void DecoderStack::on_data_received()
424{
425 {
8dbbc7f0
JH
426 unique_lock<mutex> lock(input_mutex_);
427 if (snapshot_)
428 sample_count_ = snapshot_->get_sample_count();
f70d8673 429 }
8dbbc7f0 430 input_cond_.notify_one();
f70d8673
JH
431}
432
433void DecoderStack::on_frame_ended()
434{
435 {
8dbbc7f0
JH
436 unique_lock<mutex> lock(input_mutex_);
437 if (snapshot_)
438 frame_complete_ = true;
f70d8673 439 }
8dbbc7f0 440 input_cond_.notify_one();
f70d8673
JH
441}
442
119aff65
JH
443} // namespace data
444} // namespace pv