Various minor whitespace and consistency fixes.
[pulseview.git] / pv / toolbars / mainbar.cpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2012-2015 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 <algorithm>
24 #include <cassert>
25
26 #include <QAction>
27 #include <QDebug>
28 #include <QHelpEvent>
29 #include <QMenu>
30 #include <QToolTip>
31
32 #include "mainbar.hpp"
33
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>
42
43 #include <libsigrokcxx/libsigrokcxx.hpp>
44
45 using std::back_inserter;
46 using std::copy;
47 using std::list;
48 using std::map;
49 using std::max;
50 using std::min;
51 using std::shared_ptr;
52 using std::string;
53 using std::vector;
54
55 using sigrok::Capability;
56 using sigrok::ConfigKey;
57 using sigrok::Error;
58 using sigrok::InputFormat;
59
60 namespace pv {
61 namespace toolbars {
62
63 const uint64_t MainBar::MinSampleCount = 100ULL;
64 const uint64_t MainBar::MaxSampleCount = 1000000000000ULL;
65 const uint64_t MainBar::DefaultSampleCount = 1000000;
66
67 MainBar::MainBar(Session &session, MainWindow &main_window) :
68         QToolBar("Sampling Bar", &main_window),
69         session_(session),
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),
87         menu_button_(this)
88 {
89         setObjectName(QString::fromUtf8("MainBar"));
90
91         setMovable(false);
92         setFloatable(false);
93         setContextMenuPolicy(Qt::PreventContextMenu);
94
95         // Open button
96         QToolButton *const open_button = new QToolButton(this);
97
98         widgets::ImportMenu *import_menu = new widgets::ImportMenu(this,
99                 session.device_manager().context(),
100                 main_window.action_open());
101         connect(import_menu,
102                 SIGNAL(format_selected(std::shared_ptr<sigrok::InputFormat>)),
103                 &main_window_,
104                 SLOT(import_file(std::shared_ptr<sigrok::InputFormat>)));
105
106         open_button->setMenu(import_menu);
107         open_button->setDefaultAction(main_window.action_open());
108         open_button->setPopupMode(QToolButton::MenuButtonPopup);
109
110         // Save button
111         QToolButton *const save_button = new QToolButton(this);
112
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());
116
117         widgets::ExportMenu *export_menu = new widgets::ExportMenu(this,
118                 session.device_manager().context(),
119                 open_actions);
120         connect(export_menu,
121                 SIGNAL(format_selected(std::shared_ptr<sigrok::OutputFormat>)),
122                 &main_window_,
123                 SLOT(export_file(std::shared_ptr<sigrok::OutputFormat>)));
124
125         save_button->setMenu(export_menu);
126         save_button->setDefaultAction(main_window.action_save_as());
127         save_button->setPopupMode(QToolButton::MenuButtonPopup);
128
129         // Device selector menu
130         connect(&device_selector_, SIGNAL(device_selected()),
131                 this, SLOT(on_device_selected()));
132
133         // Setup the decoder button
134 #ifdef ENABLE_DECODE
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());
140 #endif
141
142         // Setup the burger menu
143         QMenu *const menu = new QMenu(this);
144
145         QMenu *const menu_view = new QMenu;
146         menu_view->setTitle(tr("&View"));
147         menu_view->addAction(main_window.action_view_sticky_scrolling());
148
149         QMenu *const menu_help = new QMenu;
150         menu_help->setTitle(tr("&Help"));
151         menu_help->addAction(main_window.action_about());
152
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());
158
159         menu_button_.setMenu(menu);
160         menu_button_.setPopupMode(QToolButton::InstantPopup);
161         menu_button_.setIcon(QIcon::fromTheme("menu",
162                 QIcon(":/icons/menu.svg")));
163
164         // Setup the toolbar
165         addWidget(open_button);
166         addWidget(save_button);
167         addSeparator();
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());
172         addSeparator();
173         addAction(main_window.action_view_show_cursors());
174         addSeparator();
175
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()));
182
183         sample_count_.show_min_max_step(0, UINT64_MAX, 1);
184
185         set_capture_state(pv::Session::Stopped);
186
187         configure_button_.setIcon(QIcon::fromTheme("configure",
188                 QIcon(":/icons/configure.png")));
189
190         channels_button_.setIcon(QIcon::fromTheme("channels",
191                 QIcon(":/icons/channels.svg")));
192
193         run_stop_button_.setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
194
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_);
201 #ifdef ENABLE_DECODE
202         addSeparator();
203         addWidget(add_decoder_button);
204 #endif
205
206         QWidget *const spacer = new QWidget();
207         spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
208         addWidget(spacer);
209
210         addWidget(&menu_button_);
211
212         sample_count_.installEventFilter(this);
213         sample_rate_.installEventFilter(this);
214 }
215
216 void MainBar::update_device_list()
217 {
218         DeviceManager &mgr = session_.device_manager();
219         shared_ptr<devices::Device> selected_device = session_.device();
220         list< shared_ptr<devices::Device> > devs;
221
222         copy(mgr.devices().begin(), mgr.devices().end(), back_inserter(devs));
223
224         if (std::find(devs.begin(), devs.end(), selected_device) == devs.end())
225                 devs.push_back(selected_device);
226
227         device_selector_.set_device_list(devs, selected_device);
228         update_device_config_widgets();
229 }
230
231
232 void MainBar::set_capture_state(pv::Session::capture_state state)
233 {
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));
239
240         bool ui_enabled = (state == pv::Session::Stopped) ? true : false;
241
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);
247 }
248
249 void MainBar::update_sample_rate_selector()
250 {
251         Glib::VariantContainerBase gvar_dict;
252         GVariant *gvar_list;
253         const uint64_t *elements = nullptr;
254         gsize num_elements;
255         map< const ConfigKey*, std::set<Capability> > keys;
256
257         if (updating_sample_rate_) {
258                 sample_rate_.show_none();
259                 return;
260         }
261
262         const shared_ptr<devices::Device> device =
263                 device_selector_.selected_device();
264         if (!device)
265                 return;
266
267         assert(!updating_sample_rate_);
268         updating_sample_rate_ = true;
269
270         const shared_ptr<sigrok::Device> sr_dev = device->device();
271
272         try {
273                 keys = sr_dev->config_keys(ConfigKey::DEVICE_OPTIONS);
274         } catch (Error) {}
275
276         const auto iter = keys.find(ConfigKey::SAMPLERATE);
277         if (iter != keys.end() &&
278                 (*iter).second.find(sigrok::LIST) != (*iter).second.end()) {
279                 try {
280                         gvar_dict = sr_dev->config_list(ConfigKey::SAMPLERATE);
281                 } catch (const sigrok::Error &e) {
282                         // Failed to enunmerate samplerate
283                         (void)e;
284                 }
285         }
286
287         if (!gvar_dict.gobj()) {
288                 sample_rate_.show_none();
289                 updating_sample_rate_ = false;
290                 return;
291         }
292
293         if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
294                         "samplerate-steps", G_VARIANT_TYPE("at")))) {
295                 elements = (const uint64_t *)g_variant_get_fixed_array(
296                                 gvar_list, &num_elements, sizeof(uint64_t));
297
298                 const uint64_t min = elements[0];
299                 const uint64_t max = elements[1];
300                 const uint64_t step = elements[2];
301
302                 g_variant_unref(gvar_list);
303
304                 assert(min > 0);
305                 assert(max > 0);
306                 assert(max > min);
307                 assert(step > 0);
308
309                 if (step == 1)
310                         sample_rate_.show_125_list(min, max);
311                 else {
312                         // When the step is not 1, we cam't make a 1-2-5-10
313                         // list of sample rates, because we may not be able to
314                         // make round numbers. Therefore in this case, show a
315                         // spin box.
316                         sample_rate_.show_min_max_step(min, max, step);
317                 }
318         } else if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
319                         "samplerates", G_VARIANT_TYPE("at")))) {
320                 elements = (const uint64_t *)g_variant_get_fixed_array(
321                                 gvar_list, &num_elements, sizeof(uint64_t));
322                 sample_rate_.show_list(elements, num_elements);
323                 g_variant_unref(gvar_list);
324         }
325         updating_sample_rate_ = false;
326
327         update_sample_rate_selector_value();
328 }
329
330 void MainBar::update_sample_rate_selector_value()
331 {
332         if (updating_sample_rate_)
333                 return;
334
335         const shared_ptr<devices::Device> device =
336                 device_selector_.selected_device();
337         if (!device)
338                 return;
339
340         try {
341                 auto gvar = device->device()->config_get(ConfigKey::SAMPLERATE);
342                 uint64_t samplerate =
343                         Glib::VariantBase::cast_dynamic<Glib::Variant<guint64>>(gvar).get();
344                 assert(!updating_sample_rate_);
345                 updating_sample_rate_ = true;
346                 sample_rate_.set_value(samplerate);
347                 updating_sample_rate_ = false;
348         } catch (Error error) {
349                 qDebug() << "WARNING: Failed to get value of sample rate";
350                 return;
351         }
352 }
353
354 void MainBar::update_sample_count_selector()
355 {
356         if (updating_sample_count_)
357                 return;
358
359         const shared_ptr<devices::Device> device =
360                 device_selector_.selected_device();
361         if (!device)
362                 return;
363
364         const shared_ptr<sigrok::Device> sr_dev = device->device();
365
366         assert(!updating_sample_count_);
367         updating_sample_count_ = true;
368
369         if (!sample_count_supported_) {
370                 sample_count_.show_none();
371                 updating_sample_count_ = false;
372                 return;
373         }
374
375         uint64_t sample_count = sample_count_.value();
376         uint64_t min_sample_count = 0;
377         uint64_t max_sample_count = MaxSampleCount;
378
379         if (sample_count == 0)
380                 sample_count = DefaultSampleCount;
381
382         const auto keys = sr_dev->config_keys(ConfigKey::DEVICE_OPTIONS);
383         const auto iter = keys.find(ConfigKey::LIMIT_SAMPLES);
384         if (iter != keys.end() &&
385                 (*iter).second.find(sigrok::LIST) != (*iter).second.end()) {
386                 try {
387                         auto gvar =
388                                 sr_dev->config_list(ConfigKey::LIMIT_SAMPLES);
389                         if (gvar.gobj())
390                                 g_variant_get(gvar.gobj(), "(tt)",
391                                         &min_sample_count, &max_sample_count);
392                 } catch (const sigrok::Error &e) {
393                         // Failed to query sample limit
394                         (void)e;
395                 }
396         }
397
398         min_sample_count = min(max(min_sample_count, MinSampleCount),
399                 max_sample_count);
400
401         sample_count_.show_125_list(
402                 min_sample_count, max_sample_count);
403
404         try {
405                 auto gvar = sr_dev->config_get(ConfigKey::LIMIT_SAMPLES);
406                 sample_count = g_variant_get_uint64(gvar.gobj());
407                 if (sample_count == 0)
408                         sample_count = DefaultSampleCount;
409                 sample_count = min(max(sample_count, MinSampleCount),
410                         max_sample_count);
411         } catch (Error error) {}
412
413         sample_count_.set_value(sample_count);
414
415         updating_sample_count_ = false;
416 }
417
418 void MainBar::update_device_config_widgets()
419 {
420         using namespace pv::popups;
421
422         const shared_ptr<devices::Device> device =
423                 device_selector_.selected_device();
424
425         // Hide the widgets if no device is selected
426         channels_button_action_->setVisible(!!device);
427         run_stop_button_action_->setVisible(!!device);
428         if (!device) {
429                 configure_button_action_->setVisible(false);
430                 sample_count_.show_none();
431                 sample_rate_.show_none();
432                 return;
433         }
434
435         const shared_ptr<sigrok::Device> sr_dev = device->device();
436         if (!sr_dev)
437                 return;
438
439         // Update the configure popup
440         DeviceOptions *const opts = new DeviceOptions(sr_dev, this);
441         configure_button_action_->setVisible(
442                 !opts->binding().properties().empty());
443         configure_button_.set_popup(opts);
444
445         // Update the channels popup
446         Channels *const channels = new Channels(session_, this);
447         channels_button_.set_popup(channels);
448
449         // Update supported options.
450         sample_count_supported_ = false;
451
452         try {
453                 for (auto entry : sr_dev->config_keys(ConfigKey::DEVICE_OPTIONS)) {
454                         auto key = entry.first;
455                         auto capabilities = entry.second;
456                         switch (key->id()) {
457                         case SR_CONF_LIMIT_SAMPLES:
458                                 if (capabilities.count(Capability::SET))
459                                         sample_count_supported_ = true;
460                                 break;
461                         case SR_CONF_LIMIT_FRAMES:
462                                 if (capabilities.count(Capability::SET)) {
463                                         sr_dev->config_set(ConfigKey::LIMIT_FRAMES,
464                                                 Glib::Variant<guint64>::create(1));
465                                         on_config_changed();
466                                 }
467                                 break;
468                         default:
469                                 break;
470                         }
471                 }
472         } catch (Error error) {}
473
474         // Add notification of reconfigure events
475         disconnect(this, SLOT(on_config_changed()));
476         connect(&opts->binding(), SIGNAL(config_changed()),
477                 this, SLOT(on_config_changed()));
478
479         // Update sweep timing widgets.
480         update_sample_count_selector();
481         update_sample_rate_selector();
482 }
483
484 void MainBar::commit_sample_count()
485 {
486         uint64_t sample_count = 0;
487
488         const shared_ptr<devices::Device> device =
489                 device_selector_.selected_device();
490         if (!device)
491                 return;
492
493         const shared_ptr<sigrok::Device> sr_dev = device->device();
494
495         sample_count = sample_count_.value();
496         if (sample_count_supported_) {
497                 try {
498                         sr_dev->config_set(ConfigKey::LIMIT_SAMPLES,
499                                 Glib::Variant<guint64>::create(sample_count));
500                         update_sample_count_selector();
501                 } catch (Error error) {
502                         qDebug() << "Failed to configure sample count.";
503                         return;
504                 }
505         }
506
507         // Devices with built-in memory might impose limits on certain
508         // configurations, so let's check what sample rate the driver
509         // lets us use now.
510         update_sample_rate_selector();
511 }
512
513 void MainBar::commit_sample_rate()
514 {
515         uint64_t sample_rate = 0;
516
517         const shared_ptr<devices::Device> device =
518                 device_selector_.selected_device();
519         if (!device)
520                 return;
521
522         const shared_ptr<sigrok::Device> sr_dev = device->device();
523
524         sample_rate = sample_rate_.value();
525         if (sample_rate == 0)
526                 return;
527
528         try {
529                 sr_dev->config_set(ConfigKey::SAMPLERATE,
530                         Glib::Variant<guint64>::create(sample_rate));
531                 update_sample_rate_selector();
532         } catch (Error error) {
533                 qDebug() << "Failed to configure samplerate.";
534                 return;
535         }
536
537         // Devices with built-in memory might impose limits on certain
538         // configurations, so let's check what sample count the driver
539         // lets us use now.
540         update_sample_count_selector();
541 }
542
543 void MainBar::on_device_selected()
544 {
545         shared_ptr<devices::Device> device = device_selector_.selected_device();
546         if (!device)
547                 return;
548
549         main_window_.select_device(device);
550
551         update_device_config_widgets();
552 }
553
554 void MainBar::on_sample_count_changed()
555 {
556         if (!updating_sample_count_)
557                 commit_sample_count();
558 }
559
560 void MainBar::on_sample_rate_changed()
561 {
562         if (!updating_sample_rate_)
563                 commit_sample_rate();
564 }
565
566 void MainBar::on_run_stop()
567 {
568         commit_sample_count();
569         commit_sample_rate();   
570         main_window_.run_stop();
571 }
572
573 void MainBar::on_config_changed()
574 {
575         commit_sample_count();
576         commit_sample_rate();   
577 }
578
579 bool MainBar::eventFilter(QObject *watched, QEvent *event)
580 {
581         if (sample_count_supported_ && (watched == &sample_count_ ||
582                         watched == &sample_rate_) &&
583                         (event->type() == QEvent::ToolTip)) {
584                 auto sec = pv::util::Timestamp(sample_count_.value()) / sample_rate_.value();
585                 QHelpEvent *help_event = static_cast<QHelpEvent*>(event);
586
587                 QString str = tr("Total sampling time: %1").arg(
588                         pv::util::format_time_si(sec, pv::util::SIPrefix::unspecified, 0, "s", false));
589                 QToolTip::showText(help_event->globalPos(), str);
590
591                 return true;
592         }
593
594         return false;
595 }
596
597 } // namespace toolbars
598 } // namespace pv