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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include <libsigrokdecode/libsigrokdecode.h>
23 #include <boost/foreach.hpp>
24 #include <boost/thread/thread.hpp>
30 #include "decoderstack.h"
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/view/logicsignal.h>
38 using boost::lock_guard;
40 using boost::shared_ptr;
50 using namespace pv::data::decode;
55 const double DecoderStack::DecodeMargin = 1.0;
56 const double DecoderStack::DecodeThreshold = 0.2;
57 const int64_t DecoderStack::DecodeChunkLength = 4096;
59 mutex DecoderStack::_global_decode_mutex;
61 DecoderStack::DecoderStack(const srd_decoder *const dec) :
64 _stack.push_back(shared_ptr<decode::Decoder>(
65 new decode::Decoder(dec)));
68 DecoderStack::~DecoderStack()
70 if (_decode_thread.joinable()) {
71 _decode_thread.interrupt();
72 _decode_thread.join();
76 const std::list< boost::shared_ptr<decode::Decoder> >&
77 DecoderStack::stack() const
82 void DecoderStack::push(boost::shared_ptr<decode::Decoder> decoder)
85 _stack.push_back(decoder);
88 void DecoderStack::remove(int index)
91 assert(index < (int)_stack.size());
93 // Find the decoder in the stack
94 list< shared_ptr<Decoder> >::iterator iter = _stack.begin();
95 for(int i = 0; i < index; i++, iter++)
96 assert(iter != _stack.end());
102 int64_t DecoderStack::samples_decoded() const
104 lock_guard<mutex> decode_lock(_mutex);
105 return _samples_decoded;
108 std::vector<Row> DecoderStack::get_visible_rows() const
110 lock_guard<mutex> lock(_mutex);
114 BOOST_FOREACH (const shared_ptr<decode::Decoder> &dec, _stack)
120 const srd_decoder *const decc = dec->decoder();
121 assert(dec->decoder());
123 // Add a row for the decoder if it doesn't have a row list
124 if (!decc->annotation_rows)
125 rows.push_back(Row(decc));
127 // Add the decoder rows
128 for (const GSList *l = decc->annotation_rows; l; l = l->next)
130 const srd_decoder_annotation_row *const ann_row =
131 (srd_decoder_annotation_row *)l->data;
133 rows.push_back(Row(decc, ann_row));
140 void DecoderStack::get_annotation_subset(
141 std::vector<pv::data::decode::Annotation> &dest,
142 const Row &row, uint64_t start_sample,
143 uint64_t end_sample) const
145 lock_guard<mutex> lock(_mutex);
147 std::map<const Row, decode::RowData>::const_iterator iter =
149 if (iter != _rows.end())
150 (*iter).second.get_annotation_subset(dest,
151 start_sample, end_sample);
154 QString DecoderStack::error_message()
156 lock_guard<mutex> lock(_mutex);
157 return _error_message;
160 void DecoderStack::clear()
162 _samples_decoded = 0;
163 _error_message = QString();
168 void DecoderStack::begin_decode()
170 shared_ptr<pv::view::LogicSignal> logic_signal;
171 shared_ptr<pv::data::Logic> data;
173 if (_decode_thread.joinable()) {
174 _decode_thread.interrupt();
175 _decode_thread.join();
181 BOOST_FOREACH (const shared_ptr<decode::Decoder> &dec, _stack)
184 const srd_decoder *const decc = dec->decoder();
185 assert(dec->decoder());
187 // Add a row for the decoder if it doesn't have a row list
188 if (!decc->annotation_rows)
189 _rows[Row(decc)] = decode::RowData();
191 // Add the decoder rows
192 for (const GSList *l = decc->annotation_rows; l; l = l->next)
194 const srd_decoder_annotation_row *const ann_row =
195 (srd_decoder_annotation_row *)l->data;
198 const Row row(decc, ann_row);
200 // Add a new empty row data object
201 _rows[row] = decode::RowData();
203 // Map out all the classes
204 for (const GSList *ll = ann_row->ann_classes;
206 _class_rows[make_pair(decc,
207 GPOINTER_TO_INT(ll->data))] = row;
211 // We get the logic data of the first probe in the list.
212 // This works because we are currently assuming all
213 // LogicSignals have the same data/snapshot
214 BOOST_FOREACH (const shared_ptr<decode::Decoder> &dec, _stack)
215 if (dec && !dec->probes().empty() &&
216 ((logic_signal = (*dec->probes().begin()).second)) &&
217 ((data = logic_signal->logic_data())))
223 // Get the samplerate and start time
224 _start_time = data->get_start_time();
225 _samplerate = data->samplerate();
226 if (_samplerate == 0.0)
229 _decode_thread = boost::thread(&DecoderStack::decode_proc, this,
233 uint64_t DecoderStack::get_max_sample_count() const
235 uint64_t max_sample_count = 0;
237 for (map<const Row, RowData>::const_iterator i = _rows.begin();
238 i != _rows.end(); i++)
239 max_sample_count = max(max_sample_count,
240 (*i).second.get_max_sample());
242 return max_sample_count;
245 void DecoderStack::decode_proc(shared_ptr<data::Logic> data)
247 srd_session *session;
248 uint8_t chunk[DecodeChunkLength];
249 srd_decoder_inst *prev_di = NULL;
253 // Check we have a snapshot of data
254 const deque< shared_ptr<pv::data::LogicSnapshot> > &snapshots =
255 data->get_snapshots();
256 if (snapshots.empty())
259 // Check that all decoders have the required probes
260 BOOST_FOREACH(const shared_ptr<decode::Decoder> &dec, _stack)
261 if (!dec->have_required_probes())
264 const shared_ptr<pv::data::LogicSnapshot> &snapshot =
266 const int64_t sample_count = snapshot->get_sample_count();
267 const unsigned int unit_size = snapshot->unit_size();
268 const unsigned int chunk_sample_count =
269 DecodeChunkLength / unit_size;
271 // Create the session
272 srd_session_new(&session);
275 // Create the decoders
276 BOOST_FOREACH(const shared_ptr<decode::Decoder> &dec, _stack)
278 srd_decoder_inst *const di = dec->create_decoder_inst(session, unit_size);
282 _error_message = tr("Failed to create decoder instance");
283 srd_session_destroy(session);
288 srd_inst_stack (session, prev_di, di);
294 srd_session_metadata_set(session, SRD_CONF_SAMPLERATE,
295 g_variant_new_uint64((uint64_t)_samplerate));
297 srd_pd_output_callback_add(session, SRD_OUTPUT_ANN,
298 DecoderStack::annotation_callback, this);
300 srd_session_start(session);
303 !boost::this_thread::interruption_requested() &&
305 i += chunk_sample_count)
307 lock_guard<mutex> decode_lock(_global_decode_mutex);
309 const int64_t chunk_end = min(
310 i + chunk_sample_count, sample_count);
311 snapshot->get_samples(chunk, i, chunk_end);
313 if (srd_session_send(session, i, i + sample_count, chunk,
314 (chunk_end - i) * unit_size) != SRD_OK) {
315 _error_message = tr("Decoder reported an error");
320 lock_guard<mutex> lock(_mutex);
321 _samples_decoded = chunk_end;
325 // Destroy the session
326 srd_session_destroy(session);
329 void DecoderStack::annotation_callback(srd_proto_data *pdata, void *decoder)
334 DecoderStack *const d = (DecoderStack*)decoder;
337 lock_guard<mutex> lock(d->_mutex);
339 const Annotation a(pdata);
343 assert(pdata->pdo->di);
344 const srd_decoder *const decc = pdata->pdo->di->decoder;
347 map<const Row, decode::RowData>::iterator row_iter = d->_rows.end();
349 // Try looking up the sub-row of this class
350 const map<pair<const srd_decoder*, int>, Row>::const_iterator r =
351 d->_class_rows.find(make_pair(decc, a.format()));
352 if (r != d->_class_rows.end())
353 row_iter = d->_rows.find((*r).second);
356 // Failing that, use the decoder as a key
357 row_iter = d->_rows.find(Row(decc));
360 assert(row_iter != d->_rows.end());
361 if (row_iter == d->_rows.end()) {
362 qDebug() << "Unexpected annotation: decoder = " << decc <<
363 ", format = " << a.format();
368 // Add the annotation
369 (*row_iter).second.push_annotation(a);
371 d->new_decode_data();