]> sigrok.org Git - pulseview.git/blame_incremental - pv/toolbars/samplingbar.cpp
Adjust pv::toolbars::SamplingBar to GVariant-based sr_config_* functions
[pulseview.git] / pv / toolbars / samplingbar.cpp
... / ...
CommitLineData
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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <extdef.h>
22
23#include <assert.h>
24
25#include <boost/foreach.hpp>
26
27#include <libsigrok/libsigrok.h>
28
29#include <QAction>
30#include <QDebug>
31
32#include "samplingbar.h"
33
34#include <pv/dialogs/deviceoptions.h>
35
36namespace pv {
37namespace toolbars {
38
39const uint64_t SamplingBar::RecordLengths[20] = {
40 1000,
41 2500,
42 5000,
43 10000,
44 25000,
45 50000,
46 100000,
47 250000,
48 500000,
49 1000000,
50 2000000,
51 5000000,
52 10000000,
53 25000000,
54 50000000,
55 100000000,
56 250000000,
57 500000000,
58 1000000000,
59 10000000000ULL,
60};
61
62const uint64_t SamplingBar::DefaultRecordLength = 1000000;
63
64SamplingBar::SamplingBar(QWidget *parent) :
65 QToolBar("Sampling Bar", parent),
66 _device_selector(this),
67 _configure_button(this),
68 _record_length_selector(this),
69 _sample_rate_list(this),
70 _icon_green(":/icons/status-green.svg"),
71 _icon_grey(":/icons/status-grey.svg"),
72 _run_stop_button(this)
73{
74 connect(&_run_stop_button, SIGNAL(clicked()),
75 this, SIGNAL(run_stop()));
76 connect(&_device_selector, SIGNAL(currentIndexChanged (int)),
77 this, SLOT(on_device_selected()));
78 connect(&_configure_button, SIGNAL(clicked()),
79 this, SLOT(configure()));
80
81 _sample_rate_value.setDecimals(0);
82 _sample_rate_value.setSuffix("Hz");
83
84 for (size_t i = 0; i < countof(RecordLengths); i++)
85 {
86 const uint64_t &l = RecordLengths[i];
87 char *const text = sr_si_string_u64(l, " samples");
88 _record_length_selector.addItem(QString(text),
89 qVariantFromValue(l));
90 g_free(text);
91
92 if (l == DefaultRecordLength)
93 _record_length_selector.setCurrentIndex(i);
94 }
95
96 set_sampling(false);
97
98 _configure_button.setIcon(QIcon::fromTheme("configure",
99 QIcon(":/icons/configure.png")));
100
101 _run_stop_button.setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
102
103 addWidget(&_device_selector);
104 addWidget(&_configure_button);
105 addWidget(&_record_length_selector);
106 _sample_rate_list_action = addWidget(&_sample_rate_list);
107 _sample_rate_value_action = addWidget(&_sample_rate_value);
108 addWidget(&_run_stop_button);
109
110 connect(&_sample_rate_list, SIGNAL(currentIndexChanged(int)),
111 this, SLOT(on_sample_rate_changed()));
112 connect(&_sample_rate_value, SIGNAL(editingFinished()),
113 this, SLOT(on_sample_rate_changed()));
114}
115
116void SamplingBar::set_device_list(
117 const std::list<struct sr_dev_inst*> &devices)
118{
119 _device_selector.clear();
120
121 BOOST_FOREACH (sr_dev_inst *sdi, devices) {
122 QString title;
123 if (sdi->vendor && sdi->vendor[0])
124 title += sdi->vendor + QString(" ");
125 if (sdi->model && sdi->model[0])
126 title += sdi->model + QString(" ");
127 if (sdi->version && sdi->version[0])
128 title += sdi->version + QString(" ");
129
130 _device_selector.addItem(title, qVariantFromValue(
131 (void*)sdi));
132 }
133
134 update_sample_rate_selector();
135}
136
137struct sr_dev_inst* SamplingBar::get_selected_device() const
138{
139 const int index = _device_selector.currentIndex();
140 if (index < 0)
141 return NULL;
142
143 return (sr_dev_inst*)_device_selector.itemData(
144 index).value<void*>();
145}
146
147void SamplingBar::set_selected_device(struct sr_dev_inst *const sdi)
148{
149 for (int i = 0; i < _device_selector.count(); i++)
150 if (sdi == _device_selector.itemData(i).value<void*>()) {
151 _device_selector.setCurrentIndex(i);
152 return;
153 }
154}
155
156uint64_t SamplingBar::get_record_length() const
157{
158 const int index = _record_length_selector.currentIndex();
159 if (index < 0)
160 return 0;
161
162 return _record_length_selector.itemData(index).value<uint64_t>();
163}
164
165void SamplingBar::set_sampling(bool sampling)
166{
167 _run_stop_button.setIcon(sampling ? _icon_green : _icon_grey);
168 _run_stop_button.setText(sampling ? "Stop" : "Run");
169}
170
171void SamplingBar::update_sample_rate_selector()
172{
173 const sr_dev_inst *const sdi = get_selected_device();
174 GVariant *gvar_dict, *gvar_list;
175 const uint64_t *elements = NULL;
176 gsize num_elements;
177
178 assert(_sample_rate_value_action);
179 assert(_sample_rate_list_action);
180
181 if (!sdi)
182 return;
183
184 if (sr_config_list(sdi->driver, SR_CONF_SAMPLERATE,
185 &gvar_dict, sdi) != SR_OK)
186 return;
187
188 _sample_rate_list_action->setVisible(false);
189 _sample_rate_value_action->setVisible(false);
190
191 if ((gvar_list = g_variant_lookup_value(gvar_dict,
192 "samplerate-steps", G_VARIANT_TYPE("at")))) {
193 elements = (const uint64_t *)g_variant_get_fixed_array(
194 gvar_list, &num_elements, sizeof(uint64_t));
195 _sample_rate_value.setRange(elements[0], elements[1]);
196 _sample_rate_value.setSingleStep(elements[2]);
197 _sample_rate_value_action->setVisible(true);
198 g_variant_unref(gvar_list);
199 }
200 else if ((gvar_list = g_variant_lookup_value(gvar_dict,
201 "samplerates", G_VARIANT_TYPE("at"))))
202 {
203 elements = (const uint64_t *)g_variant_get_fixed_array(
204 gvar_list, &num_elements, sizeof(uint64_t));
205 _sample_rate_list.clear();
206
207 for (unsigned int i = 0; i < num_elements; i++)
208 {
209 char *const s = sr_samplerate_string(elements[i]);
210 _sample_rate_list.addItem(QString(s),
211 qVariantFromValue(elements[i]));
212 g_free(s);
213 }
214
215 _sample_rate_list.show();
216 _sample_rate_list_action->setVisible(true);
217 g_variant_unref(gvar_list);
218 }
219
220 g_variant_unref(gvar_dict);
221 update_sample_rate_selector_value();
222}
223
224void SamplingBar::update_sample_rate_selector_value()
225{
226 sr_dev_inst *const sdi = get_selected_device();
227 GVariant *gvar;
228 uint64_t samplerate;
229
230 assert(sdi);
231
232 if (sr_config_get(sdi->driver, SR_CONF_SAMPLERATE,
233 &gvar, sdi) != SR_OK) {
234 qDebug() <<
235 "WARNING: Failed to get value of sample rate";
236 return;
237 }
238 samplerate = g_variant_get_uint64(gvar);
239 g_variant_unref(gvar);
240
241 assert(_sample_rate_value_action);
242 assert(_sample_rate_list_action);
243
244 if (_sample_rate_value_action->isVisible())
245 _sample_rate_value.setValue(samplerate);
246 else if (_sample_rate_list_action->isVisible())
247 {
248 for (int i = 0; i < _sample_rate_list.count(); i++)
249 if (samplerate == _sample_rate_list.itemData(
250 i).value<uint64_t>())
251 _sample_rate_list.setCurrentIndex(i);
252 }
253}
254
255void SamplingBar::commit_sample_rate()
256{
257 uint64_t sample_rate = 0;
258
259 sr_dev_inst *const sdi = get_selected_device();
260 assert(sdi);
261
262 assert(_sample_rate_value_action);
263 assert(_sample_rate_list_action);
264
265 if (_sample_rate_value_action->isVisible())
266 sample_rate = (uint64_t)_sample_rate_value.value();
267 else if (_sample_rate_list_action->isVisible())
268 {
269 const int index = _sample_rate_list.currentIndex();
270 if (index >= 0)
271 sample_rate = _sample_rate_list.itemData(
272 index).value<uint64_t>();
273 }
274
275 // Set the samplerate
276 if (sr_config_set(sdi, SR_CONF_SAMPLERATE,
277 g_variant_new_uint64(sample_rate)) != SR_OK) {
278 qDebug() << "Failed to configure samplerate.";
279 return;
280 }
281}
282
283void SamplingBar::on_device_selected()
284{
285 update_sample_rate_selector();
286}
287
288void SamplingBar::on_sample_rate_changed()
289{
290 commit_sample_rate();
291}
292
293void SamplingBar::configure()
294{
295 commit_sample_rate();
296
297 sr_dev_inst *const sdi = get_selected_device();
298 assert(sdi);
299
300 pv::dialogs::DeviceOptions dlg(this, sdi);
301 dlg.exec();
302
303 update_sample_rate_selector_value();
304}
305
306} // namespace toolbars
307} // namespace pv