]> sigrok.org Git - pulseview.git/blame - pv/binding/device.cpp
View: Prevent header from being resized when view is resized
[pulseview.git] / pv / binding / device.cpp
CommitLineData
cf47ef78
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012 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/>.
cf47ef78
JH
18 */
19
eb8269e3 20#include <cstdint>
4d5d5d6a 21
48c88445
JH
22#include <QDebug>
23
3cc9ad7b 24#include "device.hpp"
cf47ef78 25
2acdb232 26#include <pv/prop/bool.hpp>
2acdb232
JH
27#include <pv/prop/enum.hpp>
28#include <pv/prop/int.hpp>
7b3810db 29
fe3a1c21 30#include <libsigrokcxx/libsigrokcxx.hpp>
19adbc2c 31
819f4c25 32using boost::optional;
6f925ba9 33
6db73158 34using std::function;
819f4c25
JH
35using std::make_pair;
36using std::pair;
6f925ba9 37using std::set;
f9abf97e 38using std::shared_ptr;
819f4c25
JH
39using std::string;
40using std::vector;
7b3810db 41
e8d00928
ML
42using sigrok::Capability;
43using sigrok::Configurable;
44using sigrok::ConfigKey;
45using sigrok::Error;
46
61703a01 47using pv::prop::Bool;
61703a01
JH
48using pv::prop::Enum;
49using pv::prop::Int;
50using pv::prop::Property;
51
cf47ef78 52namespace pv {
cf47ef78
JH
53namespace binding {
54
3cc9ad7b 55Device::Device(shared_ptr<sigrok::Configurable> configurable) :
8dbbc7f0 56 configurable_(configurable)
cf47ef78 57{
7b3810db 58
7bb0fbf4
ML
59 auto keys = configurable->config_keys();
60
61 for (auto key : keys) {
1e1b3a66 62
7bb0fbf4 63 auto capabilities = configurable->config_capabilities(key);
7b3810db 64
e8d00928
ML
65 if (!capabilities.count(Capability::GET) ||
66 !capabilities.count(Capability::SET))
de1d99bb
JH
67 continue;
68
e8d00928
ML
69 string name_str;
70 try {
71 name_str = key->description();
72 } catch (Error e) {
73 name_str = key->name();
74 }
75
76 const QString name = QString::fromStdString(name_str);
4d5d5d6a 77
6db73158 78 const Property::Getter get = [&, key]() {
8dbbc7f0 79 return configurable_->config_get(key); };
e8d00928 80 const Property::Setter set = [&, key](Glib::VariantBase value) {
8dbbc7f0 81 configurable_->config_set(key, value);
e8d00928
ML
82 config_changed();
83 };
6db73158 84
2ad82c2e 85 switch (key->id()) {
9f6af8bd 86 case SR_CONF_SAMPLERATE:
117ef009 87 // Sample rate values are not bound because they are shown
7c657094 88 // in the MainBar
9f6af8bd
JH
89 break;
90
a2b92157 91 case SR_CONF_CAPTURE_RATIO:
9f95aad1 92 bind_int(name, "", "%", pair<int64_t, int64_t>(0, 100), get, set);
a2b92157
JH
93 break;
94
10b1be92 95 case SR_CONF_PATTERN_MODE:
10b1be92 96 case SR_CONF_BUFFERSIZE:
10b1be92 97 case SR_CONF_TRIGGER_SOURCE:
5be76b1a 98 case SR_CONF_TRIGGER_SLOPE:
4d5d5d6a 99 case SR_CONF_COUPLING:
5be76b1a 100 case SR_CONF_CLOCK_EDGE:
9a267f8d 101 bind_enum(name, "", key, capabilities, get, set);
7b3810db
JH
102 break;
103
0623eb8c 104 case SR_CONF_FILTER:
5be76b1a 105 case SR_CONF_EXTERNAL_CLOCK:
de1d99bb 106 case SR_CONF_RLE:
198f9bc7 107 case SR_CONF_POWER_OFF:
9a267f8d 108 bind_bool(name, "", get, set);
de1d99bb
JH
109 break;
110
4d5d5d6a 111 case SR_CONF_TIMEBASE:
9a267f8d 112 bind_enum(name, "", key, capabilities, get, set, print_timebase);
7b3810db
JH
113 break;
114
4d5d5d6a 115 case SR_CONF_VDIV:
9a267f8d 116 bind_enum(name, "", key, capabilities, get, set, print_vdiv);
7b3810db 117 break;
62874984
MC
118
119 case SR_CONF_VOLTAGE_THRESHOLD:
9a267f8d 120 bind_enum(name, "", key, capabilities, get, set, print_voltage_threshold);
62874984 121 break;
4d5d5d6a 122
198f9bc7 123 case SR_CONF_PROBE_FACTOR:
49c62417 124 if (capabilities.count(Capability::LIST))
9a267f8d 125 bind_enum(name, "", key, capabilities, get, set, print_probe_factor);
49c62417 126 else
9a267f8d 127 bind_int(name, "", "", pair<int64_t, int64_t>(1, 500), get, set);
198f9bc7
BG
128 break;
129
e8d00928
ML
130 default:
131 break;
132 }
7b3810db
JH
133 }
134}
135
9a267f8d 136void Device::bind_bool(const QString &name, const QString &desc,
6db73158 137 Property::Getter getter, Property::Setter setter)
de1d99bb 138{
8dbbc7f0
JH
139 assert(configurable_);
140 properties_.push_back(shared_ptr<Property>(new Bool(
9a267f8d 141 name, desc, getter, setter)));
de1d99bb
JH
142}
143
9a267f8d 144void Device::bind_enum(const QString &name, const QString &desc,
6f925ba9 145 const ConfigKey *key, set<const Capability *> capabilities,
ef2986c0 146 Property::Getter getter,
e8d00928 147 Property::Setter setter, function<QString (Glib::VariantBase)> printer)
9f6af8bd 148{
8dbbc7f0 149 assert(configurable_);
de1d99bb 150
ef2986c0
AJ
151 if (!capabilities.count(Capability::LIST))
152 return;
153
a9627352
SA
154 try {
155 Glib::VariantContainerBase gvar = configurable_->config_list(key);
156 Glib::VariantIter iter(gvar);
157
158 vector< pair<Glib::VariantBase, QString> > values;
159 while ((iter.next_value(gvar)))
160 values.push_back(make_pair(gvar, printer(gvar)));
161
162 properties_.push_back(shared_ptr<Property>(new Enum(name, desc, values,
163 getter, setter)));
9f6af8bd 164
a9627352
SA
165 } catch (sigrok::Error& e) {
166 qDebug() << "Error: Listing device key" << name << "failed!";
167 return;
168 }
9f6af8bd
JH
169}
170
9a267f8d 171void Device::bind_int(const QString &name, const QString &desc, QString suffix,
6f925ba9 172 optional< pair<int64_t, int64_t> > range,
6db73158 173 Property::Getter getter, Property::Setter setter)
a2b92157 174{
8dbbc7f0 175 assert(configurable_);
19adbc2c 176
9a267f8d
UH
177 properties_.push_back(shared_ptr<Property>(new Int(name, desc, suffix,
178 range, getter, setter)));
a2b92157
JH
179}
180
3cc9ad7b 181QString Device::print_timebase(Glib::VariantBase gvar)
4d5d5d6a
BV
182{
183 uint64_t p, q;
e8d00928 184 g_variant_get(gvar.gobj(), "(tt)", &p, &q);
634ecdcd 185 return QString::fromUtf8(sr_period_string(p, q));
4d5d5d6a
BV
186}
187
3cc9ad7b 188QString Device::print_vdiv(Glib::VariantBase gvar)
4d5d5d6a
BV
189{
190 uint64_t p, q;
e8d00928 191 g_variant_get(gvar.gobj(), "(tt)", &p, &q);
27e8df22 192 return QString::fromUtf8(sr_voltage_string(p, q));
9f6af8bd
JH
193}
194
3cc9ad7b 195QString Device::print_voltage_threshold(Glib::VariantBase gvar)
62874984
MC
196{
197 gdouble lo, hi;
e8d00928 198 g_variant_get(gvar.gobj(), "(dd)", &lo, &hi);
b47e449a 199 return QString("L<%1V H>%2V").arg(lo, 0, 'f', 1).arg(hi, 0, 'f', 1);
62874984
MC
200}
201
49c62417
AJ
202QString Device::print_probe_factor(Glib::VariantBase gvar)
203{
204 uint64_t factor;
205 factor = g_variant_get_uint64(gvar.gobj());
206 return QString("%1x").arg(factor);
207}
208
870ea3db
UH
209} // namespace binding
210} // namespace pv