]> sigrok.org Git - pulseview.git/blame - pv/data/decode/decoder.cpp
DecodeSignal: Re-set decoder metadata after stack termination
[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
27a3f09b 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),
8ce0e732
SA
42 shown_(true),
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
27a3f09b 68const vector<DecodeChannel*>& Decoder::channels() const
7491a29f 69{
8dbbc7f0 70 return channels_;
7491a29f
JH
71}
72
27a3f09b 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;
8ce0e732
SA
88
89 // If we have a decoder instance, apply option value immediately
72486b78
SA
90 apply_all_options();
91}
92
93void Decoder::apply_all_options()
94{
8ce0e732
SA
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
c5f47334
SA
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 }
8ce0e732
SA
105
106 srd_inst_option_set(decoder_inst_, opt_hash);
107 g_hash_table_destroy(opt_hash);
108 }
7491a29f
JH
109}
110
6ac6242b 111bool Decoder::have_required_channels() const
a2d4b551 112{
27a3f09b
SA
113 for (DecodeChannel *ch : channels_)
114 if (!ch->assigned_signal && !ch->is_optional)
a2d4b551 115 return false;
a2d4b551
JH
116
117 return true;
118}
119
8ce0e732 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
8ce0e732
SA
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
8ce0e732 138 if (!decoder_inst_)
4c60462b 139 return nullptr;
7491a29f 140
6ac6242b 141 // Setup the channels
f5295834 142 GArray *const init_pin_states = g_array_sized_new(false, true,
9f97b357
SA
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
27a3f09b 150 for (DecodeChannel *ch : channels_) {
6e7a4a00
SA
151 if (!ch->assigned_signal)
152 continue;
153
27a3f09b 154 init_pin_states->data[ch->id] = ch->initial_pin_state;
9f97b357 155
6e7a4a00 156 GVariant *const gvar = g_variant_new_int32(ch->bit_id); // bit_id = bit position
7491a29f 157 g_variant_ref_sink(gvar);
6e7a4a00 158 // key is channel name (pdch->id), value is bit position in each sample (gvar)
27a3f09b 159 g_hash_table_insert(channels, ch->pdch_->id, gvar);
7491a29f
JH
160 }
161
8ce0e732 162 srd_inst_channel_set_all(decoder_inst_, channels);
7491a29f 163
8ce0e732 164 srd_inst_initial_pins_set_all(decoder_inst_, init_pin_states);
f5295834 165 g_array_free(init_pin_states, true);
407c9ebe 166
8ce0e732
SA
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