PulseView  0.3.0
A Qt-based sigrok GUI
decoder.cpp
Go to the documentation of this file.
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 
21 #include <cassert>
22 
23 #include <libsigrokcxx/libsigrokcxx.hpp>
24 #include <libsigrokdecode/libsigrokdecode.h>
25 
26 #include "decoder.hpp"
27 
28 #include <pv/view/logicsignal.hpp>
29 
30 using std::set;
31 using std::map;
32 using std::shared_ptr;
33 using std::string;
34 
35 namespace pv {
36 namespace data {
37 namespace decode {
38 
39 Decoder::Decoder(const srd_decoder *const dec) :
40  decoder_(dec),
41  shown_(true)
42 {
43 }
44 
46 {
47  for (auto i = options_.begin(); i != options_.end(); i++)
48  g_variant_unref((*i).second);
49 }
50 
51 const srd_decoder* Decoder::decoder() const
52 {
53  return decoder_;
54 }
55 
56 bool Decoder::shown() const
57 {
58  return shown_;
59 }
60 
61 void Decoder::show(bool show)
62 {
63  shown_ = show;
64 }
65 
66 const map<const srd_channel*, shared_ptr<view::LogicSignal> >&
68 {
69  return channels_;
70 }
71 
72 void Decoder::set_channels(std::map<const srd_channel*,
73  std::shared_ptr<view::LogicSignal> > channels)
74 {
76 }
77 
78 const std::map<std::string, GVariant*>& Decoder::options() const
79 {
80  return options_;
81 }
82 
83 void Decoder::set_option(const char *id, GVariant *value)
84 {
85  assert(value);
86  g_variant_ref(value);
87  options_[id] = value;
88 }
89 
91 {
92  for (GSList *l = decoder_->channels; l; l = l->next) {
93  const srd_channel *const pdch = (const srd_channel*)l->data;
94  assert(pdch);
95  if (channels_.find(pdch) == channels_.end())
96  return false;
97  }
98 
99  return true;
100 }
101 
102 set< shared_ptr<pv::data::Logic> > Decoder::get_data()
103 {
104  set< shared_ptr<pv::data::Logic> > data;
105  for (auto i = channels_.cbegin(); i != channels_.cend(); i++) {
106  shared_ptr<view::LogicSignal> signal((*i).second);
107  assert(signal);
108  data.insert(signal->logic_data());
109  }
110 
111  return data;
112 }
113 
114 srd_decoder_inst* Decoder::create_decoder_inst(srd_session *session) const
115 {
116  GHashTable *const opt_hash = g_hash_table_new_full(g_str_hash,
117  g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
118 
119  for (auto i = options_.cbegin(); i != options_.cend(); i++)
120  {
121  GVariant *const value = (*i).second;
122  g_variant_ref(value);
123  g_hash_table_replace(opt_hash, (void*)g_strdup(
124  (*i).first.c_str()), value);
125  }
126 
127  srd_decoder_inst *const decoder_inst = srd_inst_new(
128  session, decoder_->id, opt_hash);
129  g_hash_table_destroy(opt_hash);
130 
131  if (!decoder_inst)
132  return nullptr;
133 
134  // Setup the channels
135  GHashTable *const channels = g_hash_table_new_full(g_str_hash,
136  g_str_equal, g_free, (GDestroyNotify)g_variant_unref);
137 
138  for (auto i = channels_.cbegin(); i != channels_.cend(); i++)
139  {
140  shared_ptr<view::LogicSignal> signal((*i).second);
141  GVariant *const gvar = g_variant_new_int32(
142  signal->channel()->index());
143  g_variant_ref_sink(gvar);
144  g_hash_table_insert(channels, (*i).first->id, gvar);
145  }
146 
147  srd_inst_channel_set_all(decoder_inst, channels);
148 
149  return decoder_inst;
150 }
151 
152 } // decode
153 } // data
154 } // pv
std::map< const srd_channel *, std::shared_ptr< pv::view::LogicSignal > > channels_
Definition: decoder.hpp:81
const srd_decoder *const decoder_
Definition: decoder.hpp:76
void set_channels(std::map< const srd_channel *, std::shared_ptr< view::LogicSignal > > channels)
Definition: decoder.cpp:72
std::map< std::string, GVariant * > options_
Definition: decoder.hpp:82
const srd_decoder * decoder() const
Definition: decoder.cpp:51
const std::map< const srd_channel *, std::shared_ptr< view::LogicSignal > > & channels() const
Definition: decoder.cpp:67
Decoder(const srd_decoder *const decoder)
Definition: decoder.cpp:39
bool shown() const
Definition: decoder.cpp:56
void set_option(const char *id, GVariant *value)
Definition: decoder.cpp:83
bool have_required_channels() const
Definition: decoder.cpp:90
std::set< std::shared_ptr< pv::data::Logic > > get_data()
Definition: decoder.cpp:102
const std::map< std::string, GVariant * > & options() const
Definition: decoder.cpp:78
srd_decoder_inst * create_decoder_inst(srd_session *session) const
Definition: decoder.cpp:114
void show(bool show=true)
Definition: decoder.cpp:61