]> sigrok.org Git - pulseview.git/blame - pv/data/decode/decoder.cpp
Replaced lengthy iterator types with the auto keyword
[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
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
19 */
20
8d3e0764 21#include <libsigrok/libsigrok.h>
7491a29f
JH
22#include <libsigrokdecode/libsigrokdecode.h>
23
24#include "decoder.h"
25
26#include <pv/view/logicsignal.h>
27
819f4c25 28using boost::shared_ptr;
ddee4cf8 29using std::set;
819f4c25
JH
30using std::map;
31using std::string;
7491a29f
JH
32
33namespace pv {
34namespace data {
35namespace decode {
36
37Decoder::Decoder(const srd_decoder *const dec) :
dd048a7e
JH
38 _decoder(dec),
39 _shown(true)
7491a29f
JH
40{
41}
42
43Decoder::~Decoder()
44{
f46e495e 45 for (auto i = _options.begin(); i != _options.end(); i++)
615f6d25 46 g_variant_unref((*i).second);
7491a29f
JH
47}
48
49const srd_decoder* Decoder::decoder() const
50{
51 return _decoder;
52}
53
dd048a7e
JH
54bool Decoder::shown() const
55{
56 return _shown;
57}
58
59void Decoder::show(bool show)
60{
61 _shown = show;
62}
63
8bd26d8b
UH
64const map<const srd_channel*, shared_ptr<view::LogicSignal> >&
65Decoder::channels() const
7491a29f
JH
66{
67 return _probes;
68}
69
8bd26d8b 70void Decoder::set_probes(std::map<const srd_channel*,
7491a29f
JH
71 boost::shared_ptr<view::LogicSignal> > probes)
72{
73 _probes = probes;
74}
75
615f6d25 76const std::map<std::string, GVariant*>& Decoder::options() const
7491a29f
JH
77{
78 return _options;
79}
80
81void Decoder::set_option(const char *id, GVariant *value)
82{
615f6d25 83 assert(value);
7491a29f 84 g_variant_ref(value);
615f6d25 85 _options[id] = value;
7491a29f
JH
86}
87
a2d4b551
JH
88bool Decoder::have_required_probes() const
89{
8bd26d8b
UH
90 for (GSList *l = _decoder->channels; l; l = l->next) {
91 const srd_channel *const pdch = (const srd_channel*)l->data;
92 assert(pdch);
93 if (_probes.find(pdch) == _probes.end())
a2d4b551
JH
94 return false;
95 }
96
97 return true;
98}
99
ddee4cf8
JH
100set< shared_ptr<pv::data::Logic> > Decoder::get_data()
101{
102 set< shared_ptr<pv::data::Logic> > data;
f46e495e 103 for(auto i = _probes.cbegin(); i != _probes.cend(); i++) {
ddee4cf8
JH
104 shared_ptr<view::LogicSignal> signal((*i).second);
105 assert(signal);
106 data.insert(signal->logic_data());
107 }
108
109 return data;
110}
111
13a3528c 112srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session, int unit_size) const
7491a29f 113{
615f6d25
JH
114 GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
115 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
116
f46e495e 117 for (auto i = _options.cbegin(); i != _options.cend(); i++)
615f6d25
JH
118 {
119 GVariant *const value = (*i).second;
120 g_variant_ref(value);
121 g_hash_table_replace(opt_hash, (void*)g_strdup(
122 (*i).first.c_str()), value);
123 }
124
7491a29f 125 srd_decoder_inst *const decoder_inst = srd_inst_new(
615f6d25
JH
126 session, _decoder->id, opt_hash);
127 g_hash_table_destroy(opt_hash);
128
7491a29f
JH
129 if(!decoder_inst)
130 return NULL;
131
132 // Setup the probes
133 GHashTable *const probes = g_hash_table_new_full(g_str_hash,
134 g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
135
f46e495e 136 for(auto i = _probes.cbegin(); i != _probes.cend(); i++)
7491a29f
JH
137 {
138 shared_ptr<view::LogicSignal> signal((*i).second);
139 GVariant *const gvar = g_variant_new_int32(
140 signal->probe()->index);
141 g_variant_ref_sink(gvar);
142 g_hash_table_insert(probes, (*i).first->id, gvar);
143 }
144
8bd26d8b 145 srd_inst_channel_set_all(decoder_inst, probes, unit_size);
7491a29f
JH
146
147 return decoder_inst;
148}
149
150} // decode
151} // data
152} // pv