]> sigrok.org Git - pulseview.git/blame_incremental - pv/data/decoder.cpp
Moved all srd commands into decode thread, implemented error messages
[pulseview.git] / pv / data / decoder.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/thread/thread.hpp>
24
25#include <stdexcept>
26
27#include <QDebug>
28
29#include "decoder.h"
30
31#include <pv/data/logic.h>
32#include <pv/data/logicsnapshot.h>
33#include <pv/view/logicsignal.h>
34#include <pv/view/decode/annotation.h>
35
36using namespace boost;
37using namespace std;
38
39namespace pv {
40namespace data {
41
42const double Decoder::DecodeMargin = 1.0;
43const double Decoder::DecodeThreshold = 0.2;
44const int64_t Decoder::DecodeChunkLength = 4096;
45
46Decoder::Decoder(const srd_decoder *const dec,
47 std::map<const srd_probe*,
48 boost::shared_ptr<pv::view::LogicSignal> > probes,
49 GHashTable *options) :
50 _decoder(dec),
51 _probes(probes),
52 _options(options)
53{
54 init_decoder();
55
56 begin_decode();
57}
58
59Decoder::~Decoder()
60{
61 _decode_thread.interrupt();
62 _decode_thread.join();
63
64 g_hash_table_destroy(_options);
65}
66
67const srd_decoder* Decoder::get_decoder() const
68{
69 return _decoder;
70}
71
72const vector< shared_ptr<view::decode::Annotation> >
73 Decoder::annotations() const
74{
75 lock_guard<mutex> lock(_mutex);
76 return _annotations;
77}
78
79QString Decoder::error_message()
80{
81 lock_guard<mutex> lock(_mutex);
82 return _error_message;
83}
84
85void Decoder::begin_decode()
86{
87 _decode_thread.interrupt();
88 _decode_thread.join();
89
90 if (_probes.empty())
91 return;
92
93 // We get the logic data of the first probe in the list.
94 // This works because we are currently assuming all
95 // LogicSignals have the same data/snapshot
96 shared_ptr<pv::view::LogicSignal> sig = (*_probes.begin()).second;
97 assert(sig);
98 shared_ptr<data::Logic> data = sig->data();
99
100 _decode_thread = boost::thread(&Decoder::decode_proc, this,
101 data);
102}
103
104void Decoder::clear_snapshots()
105{
106}
107
108void Decoder::init_decoder()
109{
110 if (!_probes.empty())
111 {
112 shared_ptr<pv::view::LogicSignal> logic_signal =
113 dynamic_pointer_cast<pv::view::LogicSignal>(
114 (*_probes.begin()).second);
115 if (logic_signal) {
116 shared_ptr<pv::data::Logic> data(
117 logic_signal->data());
118 if (data) {
119 _start_time = data->get_start_time();
120 _samplerate = data->get_samplerate();
121 if (_samplerate == 0.0)
122 _samplerate = 1.0;
123 }
124 }
125 }
126}
127
128void Decoder::decode_proc(shared_ptr<data::Logic> data)
129{
130 srd_session *session;
131 uint8_t chunk[DecodeChunkLength];
132
133 assert(data);
134
135 _annotations.clear();
136
137 const deque< shared_ptr<pv::data::LogicSnapshot> > &snapshots =
138 data->get_snapshots();
139 if (snapshots.empty())
140 return;
141
142 const shared_ptr<pv::data::LogicSnapshot> &snapshot =
143 snapshots.front();
144 const int64_t sample_count = snapshot->get_sample_count() - 1;
145
146 // Create the session
147 srd_session_new(&session);
148 assert(session);
149
150 srd_session_config_set(session, SRD_CONF_NUM_PROBES,
151 g_variant_new_uint64(_probes.size()));
152 srd_session_config_set(session, SRD_CONF_UNITSIZE,
153 g_variant_new_uint64(snapshot->unit_size()));
154 srd_session_config_set(session, SRD_CONF_SAMPLERATE,
155 g_variant_new_uint64((uint64_t)_samplerate));
156
157 srd_pd_output_callback_add(session, SRD_OUTPUT_ANN,
158 Decoder::annotation_callback, this);
159
160 // Create the decoder instance
161 srd_decoder_inst *const decoder_inst = srd_inst_new(
162 session, _decoder->id, _options);
163 if(!decoder_inst) {
164 _error_message = tr("Failed to initialise decoder");
165 return;
166 }
167
168 decoder_inst->data_samplerate = _samplerate;
169
170 // Setup the probes
171 GHashTable *const probes = g_hash_table_new_full(g_str_hash,
172 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
173
174 for(map<const srd_probe*, shared_ptr<view::LogicSignal> >::
175 const_iterator i = _probes.begin();
176 i != _probes.end(); i++)
177 {
178 shared_ptr<view::Signal> signal((*i).second);
179 GVariant *const gvar = g_variant_new_int32(
180 signal->probe()->index);
181 g_variant_ref_sink(gvar);
182 g_hash_table_insert(probes, (*i).first->id, gvar);
183 }
184
185 srd_inst_probe_set_all(decoder_inst, probes);
186
187 // Start the session
188 srd_session_start(session);
189
190 for (int64_t i = 0;
191 !this_thread::interruption_requested() && i < sample_count;
192 i += DecodeChunkLength)
193 {
194 const int64_t chunk_end = min(
195 i + DecodeChunkLength, sample_count);
196 snapshot->get_samples(chunk, i, chunk_end);
197
198 if (srd_session_send(session, i, chunk, chunk_end - i) !=
199 SRD_OK) {
200 _error_message = tr("Failed to initialise decoder");
201 break;
202 }
203 }
204
205 // Destroy the session
206 srd_session_destroy(session);
207}
208
209void Decoder::annotation_callback(srd_proto_data *pdata, void *decoder)
210{
211 using namespace pv::view::decode;
212
213 assert(pdata);
214 assert(decoder);
215
216 Decoder *const d = (Decoder*)decoder;
217
218 shared_ptr<Annotation> a(new Annotation(pdata));
219 lock_guard<mutex> lock(d->_mutex);
220 d->_annotations.push_back(a);
221
222 d->new_decode_data();
223}
224
225} // namespace data
226} // namespace pv