2 * This file is part of the PulseView project.
4 * Copyright (C) 2012-2015 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
32 #include "mainbar.hpp"
34 #include <pv/devicemanager.hpp>
35 #include <pv/devices/hardwaredevice.hpp>
36 #include <pv/mainwindow.hpp>
37 #include <pv/popups/deviceoptions.hpp>
38 #include <pv/popups/channels.hpp>
39 #include <pv/util.hpp>
40 #include <pv/widgets/exportmenu.hpp>
41 #include <pv/widgets/importmenu.hpp>
43 #include <libsigrokcxx/libsigrokcxx.hpp>
45 using std::back_inserter;
51 using std::shared_ptr;
55 using sigrok::Capability;
56 using sigrok::ConfigKey;
58 using sigrok::InputFormat;
63 const uint64_t MainBar::MinSampleCount = 100ULL;
64 const uint64_t MainBar::MaxSampleCount = 1000000000000ULL;
65 const uint64_t MainBar::DefaultSampleCount = 1000000;
67 MainBar::MainBar(Session &session, MainWindow &main_window) :
68 QToolBar("Sampling Bar", &main_window),
70 main_window_(main_window),
71 device_selector_(this, session.device_manager(),
72 main_window.action_connect()),
73 configure_button_(this),
74 configure_button_action_(nullptr),
75 channels_button_(this),
76 channels_button_action_(nullptr),
77 sample_count_(" samples", this),
78 sample_rate_("Hz", this),
79 updating_sample_rate_(false),
80 updating_sample_count_(false),
81 sample_count_supported_(false),
82 icon_red_(":/icons/status-red.svg"),
83 icon_green_(":/icons/status-green.svg"),
84 icon_grey_(":/icons/status-grey.svg"),
85 run_stop_button_(this),
86 run_stop_button_action_(nullptr),
89 setObjectName(QString::fromUtf8("MainBar"));
93 setContextMenuPolicy(Qt::PreventContextMenu);
96 QToolButton *const open_button = new QToolButton(this);
98 widgets::ImportMenu *import_menu = new widgets::ImportMenu(this,
99 session.device_manager().context(),
100 main_window.action_open());
102 SIGNAL(format_selected(std::shared_ptr<sigrok::InputFormat>)),
104 SLOT(import_file(std::shared_ptr<sigrok::InputFormat>)));
106 open_button->setMenu(import_menu);
107 open_button->setDefaultAction(main_window.action_open());
108 open_button->setPopupMode(QToolButton::MenuButtonPopup);
111 QToolButton *const save_button = new QToolButton(this);
113 vector<QAction *> open_actions;
114 open_actions.push_back(main_window.action_save_as());
115 open_actions.push_back(main_window.action_save_selection_as());
117 widgets::ExportMenu *export_menu = new widgets::ExportMenu(this,
118 session.device_manager().context(),
121 SIGNAL(format_selected(std::shared_ptr<sigrok::OutputFormat>)),
123 SLOT(export_file(std::shared_ptr<sigrok::OutputFormat>)));
125 save_button->setMenu(export_menu);
126 save_button->setDefaultAction(main_window.action_save_as());
127 save_button->setPopupMode(QToolButton::MenuButtonPopup);
129 // Device selector menu
130 connect(&device_selector_, SIGNAL(device_selected()),
131 this, SLOT(on_device_selected()));
133 // Setup the decoder button
135 QToolButton *add_decoder_button = new QToolButton(this);
136 add_decoder_button->setIcon(QIcon::fromTheme("add-decoder",
137 QIcon(":/icons/add-decoder.svg")));
138 add_decoder_button->setPopupMode(QToolButton::InstantPopup);
139 add_decoder_button->setMenu(main_window_.menu_decoder_add());
142 // Setup the burger menu
143 QMenu *const menu = new QMenu(this);
145 QMenu *const menu_view = new QMenu;
146 menu_view->setTitle(tr("&View"));
147 menu_view->addAction(main_window.action_view_sticky_scrolling());
149 QMenu *const menu_help = new QMenu;
150 menu_help->setTitle(tr("&Help"));
151 menu_help->addAction(main_window.action_about());
153 menu->addAction(menu_view->menuAction());
154 menu->addSeparator();
155 menu->addAction(menu_help->menuAction());
156 menu->addSeparator();
157 menu->addAction(main_window.action_quit());
159 menu_button_.setMenu(menu);
160 menu_button_.setPopupMode(QToolButton::InstantPopup);
161 menu_button_.setIcon(QIcon::fromTheme("menu",
162 QIcon(":/icons/menu.svg")));
165 addWidget(open_button);
166 addWidget(save_button);
168 addAction(main_window.action_view_zoom_in());
169 addAction(main_window.action_view_zoom_out());
170 addAction(main_window.action_view_zoom_fit());
171 addAction(main_window.action_view_zoom_one_to_one());
173 addAction(main_window.action_view_show_cursors());
176 connect(&run_stop_button_, SIGNAL(clicked()),
177 this, SLOT(on_run_stop()));
178 connect(&sample_count_, SIGNAL(value_changed()),
179 this, SLOT(on_sample_count_changed()));
180 connect(&sample_rate_, SIGNAL(value_changed()),
181 this, SLOT(on_sample_rate_changed()));
183 sample_count_.show_min_max_step(0, UINT64_MAX, 1);
185 set_capture_state(pv::Session::Stopped);
187 configure_button_.setIcon(QIcon::fromTheme("configure",
188 QIcon(":/icons/configure.png")));
190 channels_button_.setIcon(QIcon::fromTheme("channels",
191 QIcon(":/icons/channels.svg")));
193 run_stop_button_.setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
195 addWidget(&device_selector_);
196 configure_button_action_ = addWidget(&configure_button_);
197 channels_button_action_ = addWidget(&channels_button_);
198 addWidget(&sample_count_);
199 addWidget(&sample_rate_);
200 run_stop_button_action_ = addWidget(&run_stop_button_);
203 addWidget(add_decoder_button);
206 QWidget *const spacer = new QWidget();
207 spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
210 addWidget(&menu_button_);
212 sample_count_.installEventFilter(this);
213 sample_rate_.installEventFilter(this);
216 void MainBar::update_device_list()
218 DeviceManager &mgr = session_.device_manager();
219 shared_ptr<devices::Device> selected_device = session_.device();
220 list< shared_ptr<devices::Device> > devs;
222 copy(mgr.devices().begin(), mgr.devices().end(), back_inserter(devs));
224 if (std::find(devs.begin(), devs.end(), selected_device) == devs.end())
225 devs.push_back(selected_device);
227 device_selector_.set_device_list(devs, selected_device);
228 update_device_config_widgets();
232 void MainBar::set_capture_state(pv::Session::capture_state state)
234 const QIcon *icons[] = {&icon_grey_, &icon_red_, &icon_green_};
235 run_stop_button_.setIcon(*icons[state]);
236 run_stop_button_.setText((state == pv::Session::Stopped) ?
237 tr("Run") : tr("Stop"));
238 run_stop_button_.setShortcut(QKeySequence(Qt::Key_Space));
240 bool ui_enabled = (state == pv::Session::Stopped) ? true : false;
242 device_selector_.setEnabled(ui_enabled);
243 configure_button_.setEnabled(ui_enabled);
244 channels_button_.setEnabled(ui_enabled);
245 sample_count_.setEnabled(ui_enabled);
246 sample_rate_.setEnabled(ui_enabled);
249 void MainBar::update_sample_rate_selector()
251 Glib::VariantContainerBase gvar_dict;
253 const uint64_t *elements = nullptr;
255 map< const ConfigKey*, std::set<Capability> > keys;
257 if (updating_sample_rate_) {
258 sample_rate_.show_none();
262 const shared_ptr<devices::Device> device =
263 device_selector_.selected_device();
267 assert(!updating_sample_rate_);
268 updating_sample_rate_ = true;
270 const shared_ptr<sigrok::Device> sr_dev = device->device();
272 if (sr_dev->config_check(ConfigKey::SAMPLERATE, Capability::LIST)) {
273 gvar_dict = sr_dev->config_list(ConfigKey::SAMPLERATE);
275 sample_rate_.show_none();
276 updating_sample_rate_ = false;
280 if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
281 "samplerate-steps", G_VARIANT_TYPE("at")))) {
282 elements = (const uint64_t *)g_variant_get_fixed_array(
283 gvar_list, &num_elements, sizeof(uint64_t));
285 const uint64_t min = elements[0];
286 const uint64_t max = elements[1];
287 const uint64_t step = elements[2];
289 g_variant_unref(gvar_list);
297 sample_rate_.show_125_list(min, max);
299 // When the step is not 1, we cam't make a 1-2-5-10
300 // list of sample rates, because we may not be able to
301 // make round numbers. Therefore in this case, show a
303 sample_rate_.show_min_max_step(min, max, step);
305 } else if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
306 "samplerates", G_VARIANT_TYPE("at")))) {
307 elements = (const uint64_t *)g_variant_get_fixed_array(
308 gvar_list, &num_elements, sizeof(uint64_t));
309 sample_rate_.show_list(elements, num_elements);
310 g_variant_unref(gvar_list);
312 updating_sample_rate_ = false;
314 update_sample_rate_selector_value();
317 void MainBar::update_sample_rate_selector_value()
319 if (updating_sample_rate_)
322 const shared_ptr<devices::Device> device =
323 device_selector_.selected_device();
328 auto gvar = device->device()->config_get(ConfigKey::SAMPLERATE);
329 uint64_t samplerate =
330 Glib::VariantBase::cast_dynamic<Glib::Variant<guint64>>(gvar).get();
331 assert(!updating_sample_rate_);
332 updating_sample_rate_ = true;
333 sample_rate_.set_value(samplerate);
334 updating_sample_rate_ = false;
335 } catch (Error error) {
336 qDebug() << "WARNING: Failed to get value of sample rate";
341 void MainBar::update_sample_count_selector()
343 if (updating_sample_count_)
346 const shared_ptr<devices::Device> device =
347 device_selector_.selected_device();
351 const shared_ptr<sigrok::Device> sr_dev = device->device();
353 assert(!updating_sample_count_);
354 updating_sample_count_ = true;
356 if (!sample_count_supported_) {
357 sample_count_.show_none();
358 updating_sample_count_ = false;
362 uint64_t sample_count = sample_count_.value();
363 uint64_t min_sample_count = 0;
364 uint64_t max_sample_count = MaxSampleCount;
366 if (sample_count == 0)
367 sample_count = DefaultSampleCount;
369 if (sr_dev->config_check(ConfigKey::LIMIT_SAMPLES, Capability::LIST)) {
370 auto gvar = sr_dev->config_list(ConfigKey::LIMIT_SAMPLES);
372 g_variant_get(gvar.gobj(), "(tt)",
373 &min_sample_count, &max_sample_count);
376 min_sample_count = min(max(min_sample_count, MinSampleCount),
379 sample_count_.show_125_list(
380 min_sample_count, max_sample_count);
382 if (sr_dev->config_check(ConfigKey::LIMIT_SAMPLES, Capability::GET)) {
383 auto gvar = sr_dev->config_get(ConfigKey::LIMIT_SAMPLES);
384 sample_count = g_variant_get_uint64(gvar.gobj());
385 if (sample_count == 0)
386 sample_count = DefaultSampleCount;
387 sample_count = min(max(sample_count, MinSampleCount),
391 sample_count_.set_value(sample_count);
393 updating_sample_count_ = false;
396 void MainBar::update_device_config_widgets()
398 using namespace pv::popups;
400 const shared_ptr<devices::Device> device =
401 device_selector_.selected_device();
403 // Hide the widgets if no device is selected
404 channels_button_action_->setVisible(!!device);
405 run_stop_button_action_->setVisible(!!device);
407 configure_button_action_->setVisible(false);
408 sample_count_.show_none();
409 sample_rate_.show_none();
413 const shared_ptr<sigrok::Device> sr_dev = device->device();
417 // Update the configure popup
418 DeviceOptions *const opts = new DeviceOptions(sr_dev, this);
419 configure_button_action_->setVisible(
420 !opts->binding().properties().empty());
421 configure_button_.set_popup(opts);
423 // Update the channels popup
424 Channels *const channels = new Channels(session_, this);
425 channels_button_.set_popup(channels);
427 // Update supported options.
428 sample_count_supported_ = false;
430 if (sr_dev->config_check(ConfigKey::LIMIT_SAMPLES, Capability::SET))
431 sample_count_supported_ = true;
433 if (sr_dev->config_check(ConfigKey::LIMIT_FRAMES, Capability::SET)) {
434 sr_dev->config_set(ConfigKey::LIMIT_FRAMES,
435 Glib::Variant<guint64>::create(1));
439 // Add notification of reconfigure events
440 disconnect(this, SLOT(on_config_changed()));
441 connect(&opts->binding(), SIGNAL(config_changed()),
442 this, SLOT(on_config_changed()));
444 // Update sweep timing widgets.
445 update_sample_count_selector();
446 update_sample_rate_selector();
449 void MainBar::commit_sample_count()
451 uint64_t sample_count = 0;
453 const shared_ptr<devices::Device> device =
454 device_selector_.selected_device();
458 const shared_ptr<sigrok::Device> sr_dev = device->device();
460 sample_count = sample_count_.value();
461 if (sample_count_supported_) {
463 sr_dev->config_set(ConfigKey::LIMIT_SAMPLES,
464 Glib::Variant<guint64>::create(sample_count));
465 update_sample_count_selector();
466 } catch (Error error) {
467 qDebug() << "Failed to configure sample count.";
472 // Devices with built-in memory might impose limits on certain
473 // configurations, so let's check what sample rate the driver
475 update_sample_rate_selector();
478 void MainBar::commit_sample_rate()
480 uint64_t sample_rate = 0;
482 const shared_ptr<devices::Device> device =
483 device_selector_.selected_device();
487 const shared_ptr<sigrok::Device> sr_dev = device->device();
489 sample_rate = sample_rate_.value();
490 if (sample_rate == 0)
494 sr_dev->config_set(ConfigKey::SAMPLERATE,
495 Glib::Variant<guint64>::create(sample_rate));
496 update_sample_rate_selector();
497 } catch (Error error) {
498 qDebug() << "Failed to configure samplerate.";
502 // Devices with built-in memory might impose limits on certain
503 // configurations, so let's check what sample count the driver
505 update_sample_count_selector();
508 void MainBar::on_device_selected()
510 shared_ptr<devices::Device> device = device_selector_.selected_device();
514 main_window_.select_device(device);
516 update_device_config_widgets();
519 void MainBar::on_sample_count_changed()
521 if (!updating_sample_count_)
522 commit_sample_count();
525 void MainBar::on_sample_rate_changed()
527 if (!updating_sample_rate_)
528 commit_sample_rate();
531 void MainBar::on_run_stop()
533 commit_sample_count();
534 commit_sample_rate();
535 main_window_.run_stop();
538 void MainBar::on_config_changed()
540 commit_sample_count();
541 commit_sample_rate();
544 bool MainBar::eventFilter(QObject *watched, QEvent *event)
546 if (sample_count_supported_ && (watched == &sample_count_ ||
547 watched == &sample_rate_) &&
548 (event->type() == QEvent::ToolTip)) {
549 auto sec = pv::util::Timestamp(sample_count_.value()) / sample_rate_.value();
550 QHelpEvent *help_event = static_cast<QHelpEvent*>(event);
552 QString str = tr("Total sampling time: %1").arg(
553 pv::util::format_time_si(sec, pv::util::SIPrefix::unspecified, 0, "s", false));
554 QToolTip::showText(help_event->globalPos(), str);
562 } // namespace toolbars