]> sigrok.org Git - pulseview.git/blame - pv/data/decode/decoder.cpp
Backport recent changes from mainline.
[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
3782d860
UH
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>
3782d860 30#include <pv/data/decodesignal.hpp>
7491a29f 31
3782d860 32using pv::data::DecodeChannel;
819f4c25
JH
33using std::map;
34using std::string;
7491a29f
JH
35
36namespace pv {
37namespace data {
38namespace decode {
39
40Decoder::Decoder(const srd_decoder *const dec) :
8dbbc7f0 41 decoder_(dec),
407c9ebe 42 shown_(true),
3782d860 43 decoder_inst_(nullptr)
7491a29f
JH
44{
45}
46
47Decoder::~Decoder()
48{
27c05210 49 for (auto& option : options_)
da50281d 50 g_variant_unref(option.second);
7491a29f
JH
51}
52
53const srd_decoder* Decoder::decoder() const
54{
8dbbc7f0 55 return decoder_;
7491a29f
JH
56}
57
dd048a7e
JH
58bool Decoder::shown() const
59{
8dbbc7f0 60 return shown_;
dd048a7e
JH
61}
62
63void Decoder::show(bool show)
64{
8dbbc7f0 65 shown_ = show;
dd048a7e
JH
66}
67
3782d860 68const vector<DecodeChannel*>& Decoder::channels() const
7491a29f 69{
8dbbc7f0 70 return channels_;
7491a29f
JH
71}
72
3782d860 73void Decoder::set_channels(vector<DecodeChannel*> channels)
7491a29f 74{
8dbbc7f0 75 channels_ = channels;
7491a29f
JH
76}
77
6f925ba9 78const map<string, GVariant*>& Decoder::options() const
7491a29f 79{
8dbbc7f0 80 return options_;
7491a29f
JH
81}
82
83void Decoder::set_option(const char *id, GVariant *value)
84{
615f6d25 85 assert(value);
7491a29f 86 g_variant_ref(value);
8dbbc7f0 87 options_[id] = value;
3782d860
UH
88
89 // If we have a decoder instance, apply option value immediately
90 apply_all_options();
7491a29f
JH
91}
92
3782d860 93void Decoder::apply_all_options()
a2d4b551 94{
3782d860
UH
95 if (decoder_inst_) {
96 GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
97 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
98
99 for (const auto& option : options_) {
100 GVariant *const value = option.second;
101 g_variant_ref(value);
102 g_hash_table_replace(opt_hash, (void*)g_strdup(
103 option.first.c_str()), value);
104 }
105
106 srd_inst_option_set(decoder_inst_, opt_hash);
107 g_hash_table_destroy(opt_hash);
a2d4b551 108 }
a2d4b551
JH
109}
110
3782d860 111bool Decoder::have_required_channels() const
ddee4cf8 112{
3782d860
UH
113 for (DecodeChannel *ch : channels_)
114 if (!ch->assigned_signal && !ch->is_optional)
115 return false;
ddee4cf8 116
3782d860 117 return true;
ddee4cf8
JH
118}
119
3782d860 120srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session)
7491a29f 121{
615f6d25
JH
122 GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
123 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
124
27c05210 125 for (const auto& option : options_) {
da50281d 126 GVariant *const value = option.second;
615f6d25
JH
127 g_variant_ref(value);
128 g_hash_table_replace(opt_hash, (void*)g_strdup(
da50281d 129 option.first.c_str()), value);
615f6d25
JH
130 }
131
3782d860
UH
132 if (decoder_inst_)
133 qDebug() << "WARNING: previous decoder instance" << decoder_inst_ << "exists";
134
135 decoder_inst_ = srd_inst_new(session, decoder_->id, opt_hash);
615f6d25
JH
136 g_hash_table_destroy(opt_hash);
137
3782d860 138 if (!decoder_inst_)
4c60462b 139 return nullptr;
7491a29f 140
6ac6242b 141 // Setup the channels
3782d860
UH
142 GArray *const init_pin_states = g_array_sized_new(false, true,
143 sizeof(uint8_t), channels_.size());
144
145 g_array_set_size(init_pin_states, channels_.size());
146
6ac6242b 147 GHashTable *const channels = g_hash_table_new_full(g_str_hash,
7491a29f
JH
148 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
149
3782d860
UH
150 for (DecodeChannel *ch : channels_) {
151 if (!ch->assigned_signal)
152 continue;
153
154 init_pin_states->data[ch->id] = ch->initial_pin_state;
155
156 GVariant *const gvar = g_variant_new_int32(ch->bit_id); // bit_id = bit position
7491a29f 157 g_variant_ref_sink(gvar);
3782d860
UH
158 // key is channel name (pdch->id), value is bit position in each sample (gvar)
159 g_hash_table_insert(channels, ch->pdch_->id, gvar);
7491a29f
JH
160 }
161
3782d860 162 srd_inst_channel_set_all(decoder_inst_, channels);
7491a29f 163
3782d860
UH
164 srd_inst_initial_pins_set_all(decoder_inst_, init_pin_states);
165 g_array_free(init_pin_states, true);
407c9ebe 166
3782d860
UH
167 return decoder_inst_;
168}
169
170void Decoder::invalidate_decoder_inst()
171{
172 decoder_inst_ = nullptr;
7491a29f
JH
173}
174
870ea3db
UH
175} // namespace decode
176} // namespace data
177} // namespace pv