]> sigrok.org Git - pulseview.git/blob - pv/prop/binding/decoderoptions.cpp
Addded support for decoder options with a values list
[pulseview.git] / pv / prop / binding / decoderoptions.cpp
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 <libsigrokdecode/libsigrokdecode.h>
22
23 #include "decoderoptions.h"
24
25 #include <boost/bind.hpp>
26 #include <boost/foreach.hpp>
27 #include <boost/none_t.hpp>
28
29 #include <pv/data/decoderstack.h>
30 #include <pv/data/decode/decoder.h>
31 #include <pv/prop/enum.h>
32 #include <pv/prop/int.h>
33 #include <pv/prop/string.h>
34
35 using boost::bind;
36 using boost::none;
37 using boost::shared_ptr;
38 using std::make_pair;
39 using std::map;
40 using std::pair;
41 using std::string;
42 using std::vector;
43
44 namespace pv {
45 namespace prop {
46 namespace binding {
47
48 DecoderOptions::DecoderOptions(
49         shared_ptr<pv::data::DecoderStack> decoder_stack,
50         shared_ptr<data::decode::Decoder> decoder) :
51         _decoder_stack(decoder_stack),
52         _decoder(decoder)
53 {
54         assert(_decoder);
55
56         const srd_decoder *const dec = _decoder->decoder();
57         assert(dec);
58
59         for (GSList *l = dec->options; l; l = l->next)
60         {
61                 const srd_decoder_option *const opt =
62                         (srd_decoder_option*)l->data;
63
64                 const QString name = QString::fromUtf8(opt->desc);
65
66                 const Property::Getter getter = bind(
67                         &DecoderOptions::getter, this, opt->id);
68                 const Property::Setter setter = bind(
69                         &DecoderOptions::setter, this, opt->id, _1);
70
71                 shared_ptr<Property> prop;
72
73                 if (opt->values)
74                         prop = bind_enum(name, opt, getter, setter);
75                 else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("x")))
76                         prop = shared_ptr<Property>(
77                                 new Int(name, "", none, getter, setter));
78                 else if (g_variant_is_of_type(opt->def, G_VARIANT_TYPE("s")))
79                         prop = shared_ptr<Property>(
80                                 new String(name, getter, setter));
81                 else
82                         continue;
83
84                 _properties.push_back(prop);
85         }
86 }
87
88 shared_ptr<Property> DecoderOptions::bind_enum(
89         const QString &name, const srd_decoder_option *option,
90         Property::Getter getter, Property::Setter setter)
91 {
92         vector< pair<GVariant*, QString> > values;
93         for (GSList *l = option->values; l; l = l->next) {
94                 GVariant *const var = (GVariant*)l->data;
95                 assert(var);
96                 values.push_back(make_pair(var, print_gvariant(var)));
97         }
98
99         return shared_ptr<Property>(new Enum(name, values, getter, setter));
100 }
101
102 GVariant* DecoderOptions::getter(const char *id)
103 {
104         GVariant *val = NULL;
105
106         assert(_decoder);
107
108         // Get the value from the hash table if it is already present
109         const map<string, GVariant*>& options = _decoder->options();
110         map<string, GVariant*>::const_iterator iter = options.find(id);
111
112         if (iter != options.end())
113                 val = (*iter).second;
114         else
115         {
116                 assert(_decoder->decoder());
117
118                 // Get the default value if not
119                 for (GSList *l = _decoder->decoder()->options; l; l = l->next)
120                 {
121                         const srd_decoder_option *const opt =
122                                 (srd_decoder_option*)l->data;
123                         if (strcmp(opt->id, id) == 0) {
124                                 val = opt->def;
125                                 break;
126                         }
127                 }
128         }
129
130         if (val)
131                 g_variant_ref(val);
132
133         return val;
134 }
135
136 void DecoderOptions::setter(const char *id, GVariant *value)
137 {
138         assert(_decoder);
139         _decoder->set_option(id, value);
140
141         assert(_decoder_stack);
142         _decoder_stack->begin_decode();
143 }
144
145 } // binding
146 } // prop
147 } // pv