1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
/*
* This file is part of the PulseView project.
*
* Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <cassert>
#include <QDebug>
#include <libsigrokcxx/libsigrokcxx.hpp>
#include <libsigrokdecode/libsigrokdecode.h>
#include "decoder.hpp"
#include <pv/data/signalbase.hpp>
#include <pv/data/decodesignal.hpp>
using std::map;
using std::string;
namespace pv {
namespace data {
namespace decode {
Decoder::Decoder(const srd_decoder *const dec) :
srd_decoder_(dec),
visible_(true),
decoder_inst_(nullptr)
{
// Query the annotation output classes
uint32_t i = 0;
for (GSList *l = dec->annotations; l; l = l->next) {
char **ann_class = (char**)l->data;
char *name = ann_class[0];
char *desc = ann_class[1];
ann_classes_.push_back({i++, name, desc, nullptr, true}); // Visible by default
}
// Query the binary output classes
i = 0;
for (GSList *l = dec->binary; l; l = l->next) {
char **bin_class = (char**)l->data;
char *name = bin_class[0];
char *desc = bin_class[1];
bin_classes_.push_back({i++, name, desc});
}
// Query the annotation rows and reference them by the classes that use them
uint32_t row_count = 0;
for (const GSList *rl = srd_decoder_->annotation_rows; rl; rl = rl->next)
row_count++;
rows_.reserve(row_count);
i = 0;
for (const GSList *rl = srd_decoder_->annotation_rows; rl; rl = rl->next) {
const srd_decoder_annotation_row *const srd_row = (srd_decoder_annotation_row *)rl->data;
assert(srd_row);
rows_.emplace_back(i++, this, srd_row);
// FIXME PV can crash from .at() if a PD's ann classes are defined incorrectly
for (const GSList *cl = srd_row->ann_classes; cl; cl = cl->next)
ann_classes_.at((size_t)cl->data).row = &(rows_.back());
}
if (rows_.empty()) {
// Make sure there is a row for PDs without row declarations
rows_.emplace_back(0, this);
for (AnnotationClass& c : ann_classes_)
c.row = &(rows_.back());
}
}
Decoder::~Decoder()
{
for (auto& option : options_)
g_variant_unref(option.second);
}
const srd_decoder* Decoder::get_srd_decoder() const
{
return srd_decoder_;
}
const char* Decoder::name() const
{
return srd_decoder_->name;
}
bool Decoder::visible() const
{
return visible_;
}
void Decoder::set_visible(bool visible)
{
visible_ = visible;
}
const vector<DecodeChannel*>& Decoder::channels() const
{
return channels_;
}
void Decoder::set_channels(vector<DecodeChannel*> channels)
{
channels_ = channels;
}
const map<string, GVariant*>& Decoder::options() const
{
return options_;
}
void Decoder::set_option(const char *id, GVariant *value)
{
assert(value);
g_variant_ref(value);
options_[id] = value;
// If we have a decoder instance, apply option value immediately
apply_all_options();
}
void Decoder::apply_all_options()
{
if (decoder_inst_) {
GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
for (const auto& option : options_) {
GVariant *const value = option.second;
g_variant_ref(value);
g_hash_table_replace(opt_hash, (void*)g_strdup(
option.first.c_str()), value);
}
srd_inst_option_set(decoder_inst_, opt_hash);
g_hash_table_destroy(opt_hash);
}
}
bool Decoder::have_required_channels() const
{
for (DecodeChannel *ch : channels_)
if (!ch->assigned_signal && !ch->is_optional)
return false;
return true;
}
srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session)
{
GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
for (const auto& option : options_) {
GVariant *const value = option.second;
g_variant_ref(value);
g_hash_table_replace(opt_hash, (void*)g_strdup(
option.first.c_str()), value);
}
if (decoder_inst_)
qDebug() << "WARNING: previous decoder instance" << decoder_inst_ << "exists";
decoder_inst_ = srd_inst_new(session, srd_decoder_->id, opt_hash);
g_hash_table_destroy(opt_hash);
if (!decoder_inst_)
return nullptr;
// Setup the channels
GArray *const init_pin_states = g_array_sized_new(false, true,
sizeof(uint8_t), channels_.size());
g_array_set_size(init_pin_states, channels_.size());
GHashTable *const channels = g_hash_table_new_full(g_str_hash,
g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
for (DecodeChannel *ch : channels_) {
if (!ch->assigned_signal)
continue;
init_pin_states->data[ch->id] = ch->initial_pin_state;
GVariant *const gvar = g_variant_new_int32(ch->bit_id); // bit_id = bit position
g_variant_ref_sink(gvar);
// key is channel name (pdch->id), value is bit position in each sample (gvar)
g_hash_table_insert(channels, ch->pdch_->id, gvar);
}
srd_inst_channel_set_all(decoder_inst_, channels);
srd_inst_initial_pins_set_all(decoder_inst_, init_pin_states);
g_array_free(init_pin_states, true);
return decoder_inst_;
}
void Decoder::invalidate_decoder_inst()
{
decoder_inst_ = nullptr;
}
vector<Row*> Decoder::get_rows()
{
vector<Row*> result;
for (Row& row : rows_)
result.push_back(&row);
return result;
}
Row* Decoder::get_row_by_id(size_t id)
{
if (id > rows_.size())
return nullptr;
return &(rows_[id]);
}
vector<const AnnotationClass*> Decoder::ann_classes() const
{
vector<const AnnotationClass*> result;
for (const AnnotationClass& c : ann_classes_)
result.push_back(&c);
return result;
}
vector<AnnotationClass*> Decoder::ann_classes()
{
vector<AnnotationClass*> result;
for (AnnotationClass& c : ann_classes_)
result.push_back(&c);
return result;
}
AnnotationClass* Decoder::get_ann_class_by_id(size_t id)
{
if (id >= ann_classes_.size())
return nullptr;
return &(ann_classes_[id]);
}
const AnnotationClass* Decoder::get_ann_class_by_id(size_t id) const
{
if (id >= ann_classes_.size())
return nullptr;
return &(ann_classes_[id]);
}
uint32_t Decoder::get_binary_class_count() const
{
return bin_classes_.size();
}
const DecodeBinaryClassInfo* Decoder::get_binary_class(uint32_t id) const
{
return &(bin_classes_.at(id));
}
} // namespace decode
} // namespace data
} // namespace pv
|