]> sigrok.org Git - pulseview.git/blame - pv/data/decode/decoder.cpp
DecodeTrace: Highlight row expand markers when a class is hidden
[pulseview.git] / pv / data / decode / decoder.cpp
CommitLineData
7491a29f
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
7491a29f
JH
18 */
19
943edd76
MC
20#include <cassert>
21
8ce0e732
SA
22#include <QDebug>
23
fe3a1c21 24#include <libsigrokcxx/libsigrokcxx.hpp>
7491a29f
JH
25#include <libsigrokdecode/libsigrokdecode.h>
26
2acdb232 27#include "decoder.hpp"
7491a29f 28
04394ded 29#include <pv/data/signalbase.hpp>
27a3f09b 30#include <pv/data/decodesignal.hpp>
7491a29f 31
819f4c25
JH
32using std::map;
33using std::string;
7491a29f
JH
34
35namespace pv {
36namespace data {
37namespace decode {
38
39Decoder::Decoder(const srd_decoder *const dec) :
cbb2e4da 40 srd_decoder_(dec),
8ce0e732
SA
41 shown_(true),
42 decoder_inst_(nullptr)
7491a29f 43{
6a26fc44 44 // Query the annotation output classes
ac9494ef 45 uint32_t i = 0;
6a26fc44
SA
46 for (GSList *l = dec->annotations; l; l = l->next) {
47 char **ann_class = (char**)l->data;
48 char *name = ann_class[0];
49 char *desc = ann_class[1];
50 ann_classes_.push_back({i++, name, desc, nullptr, true}); // Visible by default
51 }
52
53 // Query the binary output classes
54 i = 0;
e77de61f
SA
55 for (GSList *l = dec->binary; l; l = l->next) {
56 char **bin_class = (char**)l->data;
57 char *name = bin_class[0];
58 char *desc = bin_class[1];
59 bin_classes_.push_back({i++, name, desc});
60 }
6a26fc44
SA
61
62 // Query the annotation rows and reference them by the classes that use them
63 uint32_t row_count = 0;
64 for (const GSList *rl = srd_decoder_->annotation_rows; rl; rl = rl->next)
65 row_count++;
66 rows_.reserve(row_count);
67
68 i = 0;
69 for (const GSList *rl = srd_decoder_->annotation_rows; rl; rl = rl->next) {
70 const srd_decoder_annotation_row *const srd_row = (srd_decoder_annotation_row *)rl->data;
71 assert(srd_row);
72 rows_.push_back({i++, this, srd_row});
73
74 // FIXME PV can crash from .at() if a PD's ann classes are defined incorrectly
75 for (const GSList *cl = srd_row->ann_classes; cl; cl = cl->next)
76 ann_classes_.at((size_t)cl->data).row = &(rows_.back());
77 }
78
79 if (rows_.empty())
80 // Make sure there is a row for PDs without row declarations
81 rows_.emplace_back(0, this);
7491a29f
JH
82}
83
84Decoder::~Decoder()
85{
27c05210 86 for (auto& option : options_)
da50281d 87 g_variant_unref(option.second);
7491a29f
JH
88}
89
6a26fc44 90const srd_decoder* Decoder::get_srd_decoder() const
7491a29f 91{
cbb2e4da 92 return srd_decoder_;
7491a29f
JH
93}
94
e77de61f
SA
95const char* Decoder::name() const
96{
cbb2e4da 97 return srd_decoder_->name;
e77de61f
SA
98}
99
dd048a7e
JH
100bool Decoder::shown() const
101{
8dbbc7f0 102 return shown_;
dd048a7e
JH
103}
104
105void Decoder::show(bool show)
106{
8dbbc7f0 107 shown_ = show;
dd048a7e
JH
108}
109
27a3f09b 110const vector<DecodeChannel*>& Decoder::channels() const
7491a29f 111{
8dbbc7f0 112 return channels_;
7491a29f
JH
113}
114
27a3f09b 115void Decoder::set_channels(vector<DecodeChannel*> channels)
7491a29f 116{
8dbbc7f0 117 channels_ = channels;
7491a29f
JH
118}
119
6f925ba9 120const map<string, GVariant*>& Decoder::options() const
7491a29f 121{
8dbbc7f0 122 return options_;
7491a29f
JH
123}
124
125void Decoder::set_option(const char *id, GVariant *value)
126{
615f6d25 127 assert(value);
7491a29f 128 g_variant_ref(value);
8dbbc7f0 129 options_[id] = value;
8ce0e732
SA
130
131 // If we have a decoder instance, apply option value immediately
72486b78
SA
132 apply_all_options();
133}
134
135void Decoder::apply_all_options()
136{
8ce0e732
SA
137 if (decoder_inst_) {
138 GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
139 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
140
c5f47334
SA
141 for (const auto& option : options_) {
142 GVariant *const value = option.second;
143 g_variant_ref(value);
144 g_hash_table_replace(opt_hash, (void*)g_strdup(
145 option.first.c_str()), value);
146 }
8ce0e732
SA
147
148 srd_inst_option_set(decoder_inst_, opt_hash);
149 g_hash_table_destroy(opt_hash);
150 }
7491a29f
JH
151}
152
6ac6242b 153bool Decoder::have_required_channels() const
a2d4b551 154{
27a3f09b
SA
155 for (DecodeChannel *ch : channels_)
156 if (!ch->assigned_signal && !ch->is_optional)
a2d4b551 157 return false;
a2d4b551
JH
158
159 return true;
160}
161
8ce0e732 162srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session)
7491a29f 163{
615f6d25
JH
164 GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
165 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
166
27c05210 167 for (const auto& option : options_) {
da50281d 168 GVariant *const value = option.second;
615f6d25
JH
169 g_variant_ref(value);
170 g_hash_table_replace(opt_hash, (void*)g_strdup(
da50281d 171 option.first.c_str()), value);
615f6d25
JH
172 }
173
8ce0e732
SA
174 if (decoder_inst_)
175 qDebug() << "WARNING: previous decoder instance" << decoder_inst_ << "exists";
176
cbb2e4da 177 decoder_inst_ = srd_inst_new(session, srd_decoder_->id, opt_hash);
615f6d25
JH
178 g_hash_table_destroy(opt_hash);
179
8ce0e732 180 if (!decoder_inst_)
4c60462b 181 return nullptr;
7491a29f 182
6ac6242b 183 // Setup the channels
f5295834 184 GArray *const init_pin_states = g_array_sized_new(false, true,
9f97b357
SA
185 sizeof(uint8_t), channels_.size());
186
187 g_array_set_size(init_pin_states, channels_.size());
188
6ac6242b 189 GHashTable *const channels = g_hash_table_new_full(g_str_hash,
7491a29f
JH
190 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
191
27a3f09b 192 for (DecodeChannel *ch : channels_) {
6e7a4a00
SA
193 if (!ch->assigned_signal)
194 continue;
195
27a3f09b 196 init_pin_states->data[ch->id] = ch->initial_pin_state;
9f97b357 197
6e7a4a00 198 GVariant *const gvar = g_variant_new_int32(ch->bit_id); // bit_id = bit position
7491a29f 199 g_variant_ref_sink(gvar);
6e7a4a00 200 // key is channel name (pdch->id), value is bit position in each sample (gvar)
27a3f09b 201 g_hash_table_insert(channels, ch->pdch_->id, gvar);
7491a29f
JH
202 }
203
8ce0e732 204 srd_inst_channel_set_all(decoder_inst_, channels);
7491a29f 205
8ce0e732 206 srd_inst_initial_pins_set_all(decoder_inst_, init_pin_states);
f5295834 207 g_array_free(init_pin_states, true);
407c9ebe 208
8ce0e732
SA
209 return decoder_inst_;
210}
211
212void Decoder::invalidate_decoder_inst()
213{
214 decoder_inst_ = nullptr;
7491a29f
JH
215}
216
6a26fc44
SA
217vector<Row*> Decoder::get_rows()
218{
219 vector<Row*> result;
220
221 for (Row& row : rows_)
222 result.push_back(&row);
223
224 return result;
225}
226
227Row* Decoder::get_row_by_id(size_t id)
228{
229 if (id > rows_.size())
230 return nullptr;
231
232 return &(rows_[id]);
233}
234
235vector<const AnnotationClass*> Decoder::ann_classes() const
236{
237 vector<const AnnotationClass*> result;
238
239 for (const AnnotationClass& c : ann_classes_)
240 result.push_back(&c);
241
242 return result;
243}
244
245AnnotationClass* Decoder::get_ann_class_by_id(size_t id)
246{
247 if (id >= ann_classes_.size())
248 return nullptr;
249
250 return &(ann_classes_[id]);
251}
252
ac9494ef 253uint32_t Decoder::get_binary_class_count() const
e77de61f
SA
254{
255 return bin_classes_.size();
256}
257
ac9494ef 258const DecodeBinaryClassInfo* Decoder::get_binary_class(uint32_t id) const
e77de61f
SA
259{
260 return &(bin_classes_.at(id));
261}
262
870ea3db
UH
263} // namespace decode
264} // namespace data
265} // namespace pv