]> sigrok.org Git - pulseview.git/blame - pv/toolbars/samplingbar.cpp
Split DeviceOptions dialog into two popups: DeviceOptions and Probes
[pulseview.git] / pv / toolbars / samplingbar.cpp
CommitLineData
d4984fe7 1/*
b3f22de0 2 * This file is part of the PulseView project.
d4984fe7
JH
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
09f5d123 21#include <extdef.h>
dde1a563 22
09f5d123 23#include <assert.h>
215f9499 24
18203d86
JH
25#include <boost/foreach.hpp>
26
6fb67b27 27#include <libsigrok/libsigrok.h>
6fb67b27 28
dde1a563 29#include <QAction>
48888313 30#include <QDebug>
dde1a563 31
d4984fe7
JH
32#include "samplingbar.h"
33
dd63af74 34#include <pv/devicemanager.h>
51d4a9ab 35#include <pv/popups/deviceoptions.h>
cdb50f67 36
dd63af74
JH
37using namespace std;
38
51e77110 39namespace pv {
f4c92e1c 40namespace toolbars {
51e77110 41
09f5d123
JH
42const uint64_t SamplingBar::RecordLengths[20] = {
43 1000,
44 2500,
45 5000,
46 10000,
47 25000,
48 50000,
49 100000,
50 250000,
51 500000,
215f9499
JH
52 1000000,
53 2000000,
54 5000000,
55 10000000,
56 25000000,
57 50000000,
58 100000000,
59 250000000,
60 500000000,
61 1000000000,
d2aad781 62 10000000000ULL,
215f9499
JH
63};
64
09f5d123
JH
65const uint64_t SamplingBar::DefaultRecordLength = 1000000;
66
d4984fe7 67SamplingBar::SamplingBar(QWidget *parent) :
6fb67b27 68 QToolBar("Sampling Bar", parent),
dde1a563 69 _device_selector(this),
cdb50f67 70 _configure_button(this),
51d4a9ab 71 _probes_button(this),
215f9499 72 _record_length_selector(this),
274d4f13 73 _sample_rate_list(this),
2b49eeb0 74 _icon_red(":/icons/status-red.svg"),
f5798068
JH
75 _icon_green(":/icons/status-green.svg"),
76 _icon_grey(":/icons/status-grey.svg"),
274d4f13 77 _run_stop_button(this)
6fb67b27 78{
cdb50f67 79 connect(&_run_stop_button, SIGNAL(clicked()),
9f3d12f3 80 this, SLOT(on_run_stop()));
dde1a563
JH
81 connect(&_device_selector, SIGNAL(currentIndexChanged (int)),
82 this, SLOT(on_device_selected()));
83
84 _sample_rate_value.setDecimals(0);
85 _sample_rate_value.setSuffix("Hz");
86
9ba4ca35 87 for (size_t i = 0; i < countof(RecordLengths); i++)
215f9499 88 {
09f5d123 89 const uint64_t &l = RecordLengths[i];
215f9499
JH
90 char *const text = sr_si_string_u64(l, " samples");
91 _record_length_selector.addItem(QString(text),
92 qVariantFromValue(l));
93 g_free(text);
09f5d123 94
9ba4ca35 95 if (l == DefaultRecordLength)
09f5d123 96 _record_length_selector.setCurrentIndex(i);
215f9499
JH
97 }
98
2b49eeb0 99 set_capture_state(pv::SigSession::Stopped);
274d4f13 100
688ef645
JH
101 _configure_button.setIcon(QIcon::fromTheme("configure",
102 QIcon(":/icons/configure.png")));
51d4a9ab
JH
103 _probes_button.setIcon(QIcon::fromTheme("probes",
104 QIcon(":/icons/probes.svg")));
cdb50f67 105
f5798068
JH
106 _run_stop_button.setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
107
6fb67b27 108 addWidget(&_device_selector);
cdb50f67 109 addWidget(&_configure_button);
51d4a9ab 110 addWidget(&_probes_button);
215f9499 111 addWidget(&_record_length_selector);
dde1a563
JH
112 _sample_rate_list_action = addWidget(&_sample_rate_list);
113 _sample_rate_value_action = addWidget(&_sample_rate_value);
274d4f13 114 addWidget(&_run_stop_button);
6fb67b27 115
48888313
JH
116 connect(&_sample_rate_list, SIGNAL(currentIndexChanged(int)),
117 this, SLOT(on_sample_rate_changed()));
18203d86 118 connect(&_sample_rate_value, SIGNAL(editingFinished()),
48888313 119 this, SLOT(on_sample_rate_changed()));
6fb67b27
JH
120}
121
18203d86
JH
122void SamplingBar::set_device_list(
123 const std::list<struct sr_dev_inst*> &devices)
124{
125 _device_selector.clear();
126
127 BOOST_FOREACH (sr_dev_inst *sdi, devices) {
dd63af74
JH
128 const string title = DeviceManager::format_device_title(sdi);
129 _device_selector.addItem(title.c_str(),
130 qVariantFromValue((void*)sdi));
18203d86
JH
131 }
132
133 update_sample_rate_selector();
134}
135
6fb67b27 136struct sr_dev_inst* SamplingBar::get_selected_device() const
d4984fe7 137{
6fb67b27 138 const int index = _device_selector.currentIndex();
333d5bbc 139 if (index < 0)
6fb67b27
JH
140 return NULL;
141
142 return (sr_dev_inst*)_device_selector.itemData(
143 index).value<void*>();
144}
145
dba73e73
JH
146void SamplingBar::set_selected_device(struct sr_dev_inst *const sdi)
147{
793f8096
UH
148 for (int i = 0; i < _device_selector.count(); i++)
149 if (sdi == _device_selector.itemData(i).value<void*>()) {
dba73e73
JH
150 _device_selector.setCurrentIndex(i);
151 return;
152 }
153}
154
215f9499
JH
155uint64_t SamplingBar::get_record_length() const
156{
157 const int index = _record_length_selector.currentIndex();
333d5bbc 158 if (index < 0)
215f9499
JH
159 return 0;
160
161 return _record_length_selector.itemData(index).value<uint64_t>();
162}
163
2b49eeb0 164void SamplingBar::set_capture_state(pv::SigSession::capture_state state)
6ac96c2e 165{
2b49eeb0
JH
166 const QIcon *icons[] = {&_icon_grey, &_icon_red, &_icon_green};
167 _run_stop_button.setIcon(*icons[state]);
168 _run_stop_button.setText((state == pv::SigSession::Stopped) ?
169 tr("Run") : tr("Stop"));
6ac96c2e
JH
170}
171
dde1a563
JH
172void SamplingBar::update_sample_rate_selector()
173{
174 const sr_dev_inst *const sdi = get_selected_device();
488f5d3f
BV
175 GVariant *gvar_dict, *gvar_list;
176 const uint64_t *elements = NULL;
177 gsize num_elements;
f9541bde 178 QAction *selector_action = NULL;
dde1a563
JH
179
180 assert(_sample_rate_value_action);
181 assert(_sample_rate_list_action);
182
ef4d0201
JH
183 if (!sdi)
184 return;
185
c0be28da 186 if (sr_config_list(sdi->driver, SR_CONF_SAMPLERATE,
488f5d3f 187 &gvar_dict, sdi) != SR_OK)
dde1a563
JH
188 return;
189
190 _sample_rate_list_action->setVisible(false);
191 _sample_rate_value_action->setVisible(false);
192
488f5d3f
BV
193 if ((gvar_list = g_variant_lookup_value(gvar_dict,
194 "samplerate-steps", G_VARIANT_TYPE("at")))) {
195 elements = (const uint64_t *)g_variant_get_fixed_array(
196 gvar_list, &num_elements, sizeof(uint64_t));
197 _sample_rate_value.setRange(elements[0], elements[1]);
198 _sample_rate_value.setSingleStep(elements[2]);
488f5d3f 199 g_variant_unref(gvar_list);
f9541bde
JH
200
201 selector_action = _sample_rate_value_action;
dde1a563 202 }
488f5d3f
BV
203 else if ((gvar_list = g_variant_lookup_value(gvar_dict,
204 "samplerates", G_VARIANT_TYPE("at"))))
dde1a563 205 {
488f5d3f
BV
206 elements = (const uint64_t *)g_variant_get_fixed_array(
207 gvar_list, &num_elements, sizeof(uint64_t));
dde1a563 208 _sample_rate_list.clear();
488f5d3f
BV
209
210 for (unsigned int i = 0; i < num_elements; i++)
211 {
212 char *const s = sr_samplerate_string(elements[i]);
213 _sample_rate_list.addItem(QString(s),
214 qVariantFromValue(elements[i]));
215 g_free(s);
216 }
217
dde1a563 218 _sample_rate_list.show();
488f5d3f 219 g_variant_unref(gvar_list);
f9541bde
JH
220
221 selector_action = _sample_rate_list_action;
dde1a563 222 }
48888313 223
488f5d3f 224 g_variant_unref(gvar_dict);
48888313 225 update_sample_rate_selector_value();
f9541bde
JH
226
227 // We delay showing the action, so that value change events
228 // are ignored.
229 if (selector_action)
230 selector_action->setVisible(true);
48888313
JH
231}
232
233void SamplingBar::update_sample_rate_selector_value()
234{
235 sr_dev_inst *const sdi = get_selected_device();
488f5d3f
BV
236 GVariant *gvar;
237 uint64_t samplerate;
238
48888313
JH
239 assert(sdi);
240
793f8096 241 if (sr_config_get(sdi->driver, SR_CONF_SAMPLERATE,
488f5d3f 242 &gvar, sdi) != SR_OK) {
eb4008a6
JH
243 qDebug() <<
244 "WARNING: Failed to get value of sample rate";
245 return;
246 }
488f5d3f
BV
247 samplerate = g_variant_get_uint64(gvar);
248 g_variant_unref(gvar);
48888313
JH
249
250 assert(_sample_rate_value_action);
251 assert(_sample_rate_list_action);
252
253 if (_sample_rate_value_action->isVisible())
488f5d3f 254 _sample_rate_value.setValue(samplerate);
48888313
JH
255 else if (_sample_rate_list_action->isVisible())
256 {
793f8096 257 for (int i = 0; i < _sample_rate_list.count(); i++)
488f5d3f 258 if (samplerate == _sample_rate_list.itemData(
48888313
JH
259 i).value<uint64_t>())
260 _sample_rate_list.setCurrentIndex(i);
261 }
262}
263
264void SamplingBar::commit_sample_rate()
265{
266 uint64_t sample_rate = 0;
267
268 sr_dev_inst *const sdi = get_selected_device();
269 assert(sdi);
270
271 assert(_sample_rate_value_action);
272 assert(_sample_rate_list_action);
273
274 if (_sample_rate_value_action->isVisible())
275 sample_rate = (uint64_t)_sample_rate_value.value();
276 else if (_sample_rate_list_action->isVisible())
277 {
278 const int index = _sample_rate_list.currentIndex();
279 if (index >= 0)
280 sample_rate = _sample_rate_list.itemData(
281 index).value<uint64_t>();
282 }
283
f9541bde
JH
284 if (sample_rate == 0)
285 return;
286
48888313
JH
287 // Set the samplerate
288 if (sr_config_set(sdi, SR_CONF_SAMPLERATE,
488f5d3f 289 g_variant_new_uint64(sample_rate)) != SR_OK) {
48888313
JH
290 qDebug() << "Failed to configure samplerate.";
291 return;
292 }
dde1a563
JH
293}
294
295void SamplingBar::on_device_selected()
296{
51d4a9ab
JH
297 using namespace pv::popups;
298
dde1a563 299 update_sample_rate_selector();
51d4a9ab
JH
300
301 sr_dev_inst *const sdi = get_selected_device();
302
303 _configure_button.set_popup(new DeviceOptions(sdi, this));
304 _probes_button.set_popup(new Probes(sdi, this));
305
5ac961e3 306 device_selected();
dde1a563 307}
51e77110 308
48888313
JH
309void SamplingBar::on_sample_rate_changed()
310{
311 commit_sample_rate();
312}
313
9f3d12f3
JH
314void SamplingBar::on_run_stop()
315{
316 commit_sample_rate();
317 run_stop();
318}
319
f4c92e1c 320} // namespace toolbars
51e77110 321} // namespace pv