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