PulseView  unreleased development snapshot
A Qt-based sigrok GUI
device.cpp
Go to the documentation of this file.
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
17  * along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #include <cstdint>
21 
22 #include <QDebug>
23 
24 #include "device.hpp"
25 
26 #include <pv/prop/bool.hpp>
27 #include <pv/prop/enum.hpp>
28 #include <pv/prop/int.hpp>
29 
30 #include <libsigrokcxx/libsigrokcxx.hpp>
31 
32 using boost::optional;
33 
34 using std::function;
35 using std::pair;
36 using std::set;
37 using std::shared_ptr;
38 using std::string;
39 using std::vector;
40 
41 using sigrok::Capability;
42 using sigrok::Configurable;
43 using sigrok::ConfigKey;
44 using sigrok::Error;
45 
46 using pv::prop::Bool;
47 using pv::prop::Enum;
48 using pv::prop::Int;
49 using pv::prop::Property;
50 
51 namespace pv {
52 namespace binding {
53 
54 Device::Device(shared_ptr<sigrok::Configurable> configurable) :
55  configurable_(configurable)
56 {
57 
58  auto keys = configurable->config_keys();
59 
60  for (auto key : keys) {
61 
62  string descr_str;
63  try {
64  descr_str = key->description();
65  } catch (Error& e) {
66  descr_str = key->name();
67  }
68  const QString descr = QString::fromStdString(descr_str);
69 
70  auto capabilities = configurable->config_capabilities(key);
71 
72  if (!capabilities.count(Capability::GET) ||
73  !capabilities.count(Capability::SET)) {
74 
75  // Ignore common read-only keys
76  if ((key->id() == SR_CONF_CONTINUOUS) || (key->id() == SR_CONF_TRIGGER_MATCH) ||
77  (key->id() == SR_CONF_CONN) || (key->id() == SR_CONF_SERIALCOMM) || (key->id() == SR_CONF_NUM_LOGIC_CHANNELS) ||
78  (key->id() == SR_CONF_NUM_ANALOG_CHANNELS) || (key->id() == SR_CONF_SESSIONFILE) || (key->id() == SR_CONF_CAPTUREFILE) ||
79  (key->id() == SR_CONF_CAPTURE_UNITSIZE))
80  continue;
81 
82  qDebug() << QString(tr("Note for device developers: Ignoring device configuration capability '%1' " \
83  "as it is missing GET and/or SET")).arg(descr);
84  continue;
85  }
86 
87  const Property::Getter get = [&, key]() {
88  return configurable_->config_get(key); };
89  const Property::Setter set = [&, key](Glib::VariantBase value) {
90  configurable_->config_set(key, value);
92  };
93 
94  switch (key->id()) {
95  case SR_CONF_SAMPLERATE:
96  // Sample rate values are not bound because they are shown
97  // in the MainBar
98  break;
99 
100  case SR_CONF_CAPTURE_RATIO:
101  bind_int(descr, "", "%", pair<int64_t, int64_t>(0, 100), get, set);
102  break;
103 
104  case SR_CONF_LIMIT_FRAMES:
105  // Value 0 means that there is no limit
106  bind_int(descr, "", "", pair<int64_t, int64_t>(0, 1000000), get, set,
107  tr("No Limit"));
108  break;
109 
110  case SR_CONF_PATTERN_MODE:
111  case SR_CONF_BUFFERSIZE:
112  case SR_CONF_TRIGGER_SOURCE:
113  case SR_CONF_TRIGGER_SLOPE:
114  case SR_CONF_COUPLING:
115  case SR_CONF_CLOCK_EDGE:
116  case SR_CONF_DATA_SOURCE:
117  case SR_CONF_EXTERNAL_CLOCK_SOURCE:
118  bind_enum(descr, "", key, capabilities, get, set);
119  break;
120 
121  case SR_CONF_FILTER:
122  case SR_CONF_EXTERNAL_CLOCK:
123  case SR_CONF_RLE:
124  case SR_CONF_POWER_OFF:
125  case SR_CONF_AVERAGING:
126  case SR_CONF_CONTINUOUS:
127  bind_bool(descr, "", get, set);
128  break;
129 
130  case SR_CONF_TIMEBASE:
131  bind_enum(descr, "", key, capabilities, get, set, print_timebase);
132  break;
133 
134  case SR_CONF_VDIV:
135  bind_enum(descr, "", key, capabilities, get, set, print_vdiv);
136  break;
137 
138  case SR_CONF_VOLTAGE_THRESHOLD:
139  bind_enum(descr, "", key, capabilities, get, set, print_voltage_threshold);
140  break;
141 
142  case SR_CONF_PROBE_FACTOR:
143  if (capabilities.count(Capability::LIST))
144  bind_enum(descr, "", key, capabilities, get, set, print_probe_factor);
145  else
146  bind_int(descr, "", "", pair<int64_t, int64_t>(1, 500), get, set);
147  break;
148 
149  case SR_CONF_AVG_SAMPLES:
150  if (capabilities.count(Capability::LIST))
151  bind_enum(descr, "", key, capabilities, get, set, print_averages);
152  else
153  bind_int(descr, "", "", pair<int64_t, int64_t>(0, INT32_MAX), get, set);
154  break;
155 
156  default:
157  break;
158  }
159  }
160 }
161 
162 void Device::bind_bool(const QString &name, const QString &desc,
163  Property::Getter getter, Property::Setter setter)
164 {
165  assert(configurable_);
166  properties_.push_back(shared_ptr<Property>(new Bool(
167  name, desc, getter, setter)));
168 }
169 
170 void Device::bind_enum(const QString &name, const QString &desc,
171  const ConfigKey *key, set<const Capability *> capabilities,
172  Property::Getter getter,
173  Property::Setter setter, function<QString (Glib::VariantBase)> printer)
174 {
175  assert(configurable_);
176 
177  if (!capabilities.count(Capability::LIST))
178  return;
179 
180  try {
181  Glib::VariantContainerBase gvar = configurable_->config_list(key);
182  Glib::VariantIter iter(gvar);
183 
184  vector< pair<Glib::VariantBase, QString> > values;
185  while ((iter.next_value(gvar)))
186  values.emplace_back(gvar, printer(gvar));
187 
188  properties_.push_back(shared_ptr<Property>(new Enum(name, desc, values,
189  getter, setter)));
190 
191  } catch (sigrok::Error& e) {
192  qDebug() << "Error: Listing device key" << name << "failed!";
193  return;
194  }
195 }
196 
197 void Device::bind_int(const QString &name, const QString &desc, QString suffix,
198  optional< pair<int64_t, int64_t> > range, Property::Getter getter,
199  Property::Setter setter, QString special_value_text)
200 {
201  assert(configurable_);
202 
203  properties_.push_back(shared_ptr<Property>(new Int(name, desc, suffix,
204  range, getter, setter, special_value_text)));
205 }
206 
207 QString Device::print_timebase(Glib::VariantBase gvar)
208 {
209  uint64_t p, q;
210  g_variant_get(gvar.gobj(), "(tt)", &p, &q);
211  return QString::fromUtf8(sr_period_string(p, q));
212 }
213 
214 QString Device::print_vdiv(Glib::VariantBase gvar)
215 {
216  uint64_t p, q;
217  g_variant_get(gvar.gobj(), "(tt)", &p, &q);
218  return QString::fromUtf8(sr_voltage_string(p, q));
219 }
220 
221 QString Device::print_voltage_threshold(Glib::VariantBase gvar)
222 {
223  gdouble lo, hi;
224  g_variant_get(gvar.gobj(), "(dd)", &lo, &hi);
225  return QString("L<%1V H>%2V").arg(lo, 0, 'f', 1).arg(hi, 0, 'f', 1);
226 }
227 
228 QString Device::print_probe_factor(Glib::VariantBase gvar)
229 {
230  uint64_t factor;
231  factor = g_variant_get_uint64(gvar.gobj());
232  return QString("%1x").arg(factor);
233 }
234 
235 QString Device::print_averages(Glib::VariantBase gvar)
236 {
237  uint64_t avg;
238  avg = g_variant_get_uint64(gvar.gobj());
239  return QString("%1").arg(avg);
240 }
241 
242 } // namespace binding
243 } // namespace pv
static QString print_probe_factor(Glib::VariantBase gvar)
Definition: device.cpp:228
static QString print_voltage_threshold(Glib::VariantBase gvar)
Definition: device.cpp:221
static QString print_averages(Glib::VariantBase gvar)
Definition: device.cpp:235
shared_ptr< sigrok::Configurable > configurable_
Definition: device.hpp:75
T value(details::expression_node< T > *n)
Definition: exprtk.hpp:12358
static QString print_timebase(Glib::VariantBase gvar)
Definition: device.cpp:207
vector< shared_ptr< prop::Property > > properties_
Definition: binding.hpp:73
void bind_bool(const QString &name, const QString &desc, prop::Property::Getter getter, prop::Property::Setter setter)
Definition: device.cpp:162
static QString print_vdiv(Glib::VariantBase gvar)
Definition: device.cpp:214
void bind_enum(const QString &name, const QString &desc, const sigrok::ConfigKey *key, set< const sigrok::Capability * > capabilities, prop::Property::Getter getter, prop::Property::Setter setter, function< QString(Glib::VariantBase)> printer=print_gvariant)
Definition: device.cpp:170
manual txt set(MANUAL_OUT_HTML"${CMAKE_CURRENT_BINARY_DIR}/manual.html") set(MANUAL_OUT_PDF"$
Definition: CMakeLists.txt:36
Device(shared_ptr< sigrok::Configurable > configurable)
Definition: device.cpp:54
void bind_int(const QString &name, const QString &desc, QString suffix, boost::optional< pair< int64_t, int64_t > > range, prop::Property::Getter getter, prop::Property::Setter setter, QString special_value_text="")
Definition: device.cpp:197