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/thread/thread.hpp>
27 #include <pv/data/logic.h>
28 #include <pv/data/logicsnapshot.h>
29 #include <pv/view/logicsignal.h>
30 #include <pv/view/decode/annotation.h>
32 using namespace boost;
38 const double Decoder::DecodeMargin = 1.0;
39 const double Decoder::DecodeThreshold = 0.2;
40 const int64_t Decoder::DecodeChunkLength = 4096;
42 Decoder::Decoder(const srd_decoder *const dec,
43 std::map<const srd_probe*,
44 boost::shared_ptr<pv::view::Signal> > probes,
45 GHashTable *options) :
57 _decode_thread.interrupt();
58 _decode_thread.join();
60 g_hash_table_destroy(_options);
63 const srd_decoder* Decoder::get_decoder() const
68 const vector< shared_ptr<view::decode::Annotation> >
69 Decoder::annotations() const
71 lock_guard<mutex> lock(_annotations_mutex);
75 void Decoder::begin_decode()
77 _decode_thread.interrupt();
78 _decode_thread.join();
83 // We get the logic data of the first probe in the list.
84 // This works because we are currently assuming all
85 // LogicSignals have the same data/snapshot
86 shared_ptr<pv::view::Signal> sig = (*_probes.begin()).second;
88 const pv::view::LogicSignal *const l =
89 dynamic_cast<pv::view::LogicSignal*>(sig.get());
91 shared_ptr<data::Logic> data = l->data();
93 _decode_thread = boost::thread(&Decoder::decode_proc, this,
97 void Decoder::clear_snapshots()
101 void Decoder::init_decoder()
103 if (!_probes.empty())
105 shared_ptr<pv::view::LogicSignal> logic_signal =
106 dynamic_pointer_cast<pv::view::LogicSignal>(
107 (*_probes.begin()).second);
109 shared_ptr<pv::data::Logic> data(
110 logic_signal->data());
112 _samplerate = data->get_samplerate();
113 _start_time = data->get_start_time();
118 _decoder_inst = srd_inst_new(_decoder->id, _options);
120 qDebug() << "Failed to initialise decoder";
124 _decoder_inst->data_samplerate = _samplerate;
126 GHashTable *probes = g_hash_table_new_full(g_str_hash,
127 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
129 for(map<const srd_probe*, shared_ptr<view::Signal> >::
130 const_iterator i = _probes.begin();
131 i != _probes.end(); i++)
133 shared_ptr<view::Signal> signal((*i).second);
134 GVariant *const gvar = g_variant_new_int32(
135 signal->probe()->index);
136 g_variant_ref_sink(gvar);
137 g_hash_table_insert(probes, (*i).first->id, gvar);
140 srd_inst_probe_set_all(_decoder_inst, probes);
143 void Decoder::decode_proc(shared_ptr<data::Logic> data)
145 uint8_t chunk[DecodeChunkLength];
149 _annotations.clear();
151 const deque< shared_ptr<pv::data::LogicSnapshot> > &snapshots =
152 data->get_snapshots();
153 if (snapshots.empty())
156 const shared_ptr<pv::data::LogicSnapshot> &snapshot =
158 const int64_t sample_count = snapshot->get_sample_count() - 1;
159 double samplerate = data->get_samplerate();
161 // Show sample rate as 1Hz when it is unknown
162 if (samplerate == 0.0)
165 srd_session_start(_probes.size(), snapshot->unit_size(), samplerate);
167 srd_pd_output_callback_add(SRD_OUTPUT_ANN,
168 Decoder::annotation_callback, this);
171 !this_thread::interruption_requested() && i < sample_count;
172 i += DecodeChunkLength)
174 const int64_t chunk_end = min(
175 i + DecodeChunkLength, sample_count);
176 snapshot->get_samples(chunk, i, chunk_end);
178 if (srd_session_send(i, chunk, chunk_end - i) != SRD_OK)
183 void Decoder::annotation_callback(srd_proto_data *pdata, void *decoder)
185 using namespace pv::view::decode;
190 Decoder *const d = (Decoder*)decoder;
192 shared_ptr<Annotation> a(new Annotation(pdata));
193 lock_guard<mutex> lock(d->_annotations_mutex);
194 d->_annotations.push_back(a);
196 d->new_decode_data();