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