]> sigrok.org Git - pulseview.git/blame - pv/toolbars/mainbar.cpp
Session: Break up add_decoder()
[pulseview.git] / pv / toolbars / mainbar.cpp
CommitLineData
d4984fe7 1/*
b3f22de0 2 * This file is part of the PulseView project.
d4984fe7 3 *
079d39ea 4 * Copyright (C) 2012-2015 Joel Holdsworth <joel@airwebreathe.org.uk>
d4984fe7
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d4984fe7
JH
18 */
19
09f5d123 20#include <extdef.h>
dde1a563 21
079d39ea
JH
22#include <algorithm>
23#include <cassert>
215f9499 24
dde1a563 25#include <QAction>
48888313 26#include <QDebug>
0f8f8c18 27#include <QFileDialog>
40065ab6 28#include <QHelpEvent>
87f0df9b 29#include <QMenu>
0f8f8c18
SA
30#include <QMessageBox>
31#include <QSettings>
40065ab6 32#include <QToolTip>
dde1a563 33
7c657094 34#include "mainbar.hpp"
d4984fe7 35
0f8f8c18
SA
36#include <boost/algorithm/string/join.hpp>
37
e771b42d 38#include <pv/data/decodesignal.hpp>
2acdb232 39#include <pv/devicemanager.hpp>
da30ecb7 40#include <pv/devices/hardwaredevice.hpp>
0f8f8c18
SA
41#include <pv/devices/inputfile.hpp>
42#include <pv/devices/sessionfile.hpp>
43#include <pv/dialogs/connect.hpp>
44#include <pv/dialogs/inputoutputoptions.hpp>
45#include <pv/dialogs/storeprogress.hpp>
4e7f5ba8 46#include <pv/mainwindow.hpp>
2acdb232 47#include <pv/popups/channels.hpp>
aca9aa83 48#include <pv/popups/deviceoptions.hpp>
2acdb232 49#include <pv/util.hpp>
1573bf16 50#include <pv/views/trace/view.hpp>
998b89fd 51#include <pv/widgets/exportmenu.hpp>
ed43ef2e 52#include <pv/widgets/importmenu.hpp>
0f8f8c18
SA
53#ifdef ENABLE_DECODE
54#include <pv/widgets/decodermenu.hpp>
55#endif
cdb50f67 56
fe3a1c21 57#include <libsigrokcxx/libsigrokcxx.hpp>
e8d00928 58
079d39ea
JH
59using std::back_inserter;
60using std::copy;
61using std::list;
6f925ba9 62using std::make_pair;
19adbc2c 63using std::map;
b50ef520
JH
64using std::max;
65using std::min;
6f925ba9
UH
66using std::pair;
67using std::set;
f9abf97e 68using std::shared_ptr;
819f4c25 69using std::string;
079d39ea 70using std::vector;
dd63af74 71
e8d00928
ML
72using sigrok::Capability;
73using sigrok::ConfigKey;
e8d00928 74using sigrok::Error;
ed43ef2e 75using sigrok::InputFormat;
0f8f8c18
SA
76using sigrok::OutputFormat;
77
78using boost::algorithm::join;
e8d00928 79
51e77110 80namespace pv {
f4c92e1c 81namespace toolbars {
51e77110 82
7c657094
JH
83const uint64_t MainBar::MinSampleCount = 100ULL;
84const uint64_t MainBar::MaxSampleCount = 1000000000000ULL;
85const uint64_t MainBar::DefaultSampleCount = 1000000;
09f5d123 86
0f8f8c18
SA
87const char *MainBar::SettingOpenDirectory = "MainWindow/OpenDirectory";
88const char *MainBar::SettingSaveDirectory = "MainWindow/SaveDirectory";
89
e0ba4f6f 90MainBar::MainBar(Session &session, QWidget *parent,
f23c4692 91 pv::views::trace::View *view) :
e0ba4f6f 92 StandardBar(session, parent, view, false),
c9da5118 93 action_new_view_(new QAction(this)),
0f8f8c18
SA
94 action_open_(new QAction(this)),
95 action_save_as_(new QAction(this)),
96 action_save_selection_as_(new QAction(this)),
97 action_connect_(new QAction(this)),
e0ba4f6f
SA
98 open_button_(new QToolButton()),
99 save_button_(new QToolButton()),
100 device_selector_(parent, session.device_manager(),
0f8f8c18 101 action_connect_),
8dbbc7f0 102 configure_button_(this),
4c60462b 103 configure_button_action_(nullptr),
8dbbc7f0 104 channels_button_(this),
9dd88889 105 channels_button_action_(nullptr),
8dbbc7f0
JH
106 sample_count_(" samples", this),
107 sample_rate_("Hz", this),
108 updating_sample_rate_(false),
109 updating_sample_count_(false),
3231fbf9 110 sample_count_supported_(false)
0f8f8c18 111#ifdef ENABLE_DECODE
e0ba4f6f
SA
112 , add_decoder_button_(new QToolButton()),
113 menu_decoders_add_(new pv::widgets::DecoderMenu(this, true))
0f8f8c18 114#endif
6fb67b27 115{
7c657094 116 setObjectName(QString::fromUtf8("MainBar"));
0c7cdea2 117
d375140b
SA
118 setContextMenuPolicy(Qt::PreventContextMenu);
119
0f8f8c18 120 // Actions
c9da5118
SA
121 action_new_view_->setText(tr("New &View"));
122 action_new_view_->setIcon(QIcon::fromTheme("window-new",
123 QIcon(":/icons/window-new.png")));
124 connect(action_new_view_, SIGNAL(triggered(bool)),
125 this, SLOT(on_actionNewView_triggered()));
126
0f8f8c18
SA
127 action_open_->setText(tr("&Open..."));
128 action_open_->setIcon(QIcon::fromTheme("document-open",
129 QIcon(":/icons/document-open.png")));
130 action_open_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_O));
d552c5c7
SA
131 connect(action_open_, SIGNAL(triggered(bool)),
132 this, SLOT(on_actionOpen_triggered()));
0f8f8c18
SA
133
134 action_save_as_->setText(tr("&Save As..."));
135 action_save_as_->setIcon(QIcon::fromTheme("document-save-as",
136 QIcon(":/icons/document-save-as.png")));
137 action_save_as_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_S));
d552c5c7
SA
138 connect(action_save_as_, SIGNAL(triggered(bool)),
139 this, SLOT(on_actionSaveAs_triggered()));
0f8f8c18
SA
140
141 action_save_selection_as_->setText(tr("Save Selected &Range As..."));
142 action_save_selection_as_->setIcon(QIcon::fromTheme("document-save-as",
143 QIcon(":/icons/document-save-as.png")));
144 action_save_selection_as_->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_R));
d552c5c7
SA
145 connect(action_save_selection_as_, SIGNAL(triggered(bool)),
146 this, SLOT(on_actionSaveSelectionAs_triggered()));
0f8f8c18
SA
147
148 widgets::ExportMenu *menu_file_export = new widgets::ExportMenu(this,
149 session.device_manager().context());
150 menu_file_export->setTitle(tr("&Export"));
151 connect(menu_file_export,
6f925ba9
UH
152 SIGNAL(format_selected(shared_ptr<sigrok::OutputFormat>)),
153 this, SLOT(export_file(shared_ptr<sigrok::OutputFormat>)));
0f8f8c18
SA
154
155 widgets::ImportMenu *menu_file_import = new widgets::ImportMenu(this,
156 session.device_manager().context());
157 menu_file_import->setTitle(tr("&Import"));
158 connect(menu_file_import,
6f925ba9
UH
159 SIGNAL(format_selected(shared_ptr<sigrok::InputFormat>)),
160 this, SLOT(import_file(shared_ptr<sigrok::InputFormat>)));
0f8f8c18
SA
161
162 action_connect_->setText(tr("&Connect to Device..."));
d552c5c7
SA
163 connect(action_connect_, SIGNAL(triggered(bool)),
164 this, SLOT(on_actionConnect_triggered()));
0f8f8c18 165
ed43ef2e 166 // Open button
ed43ef2e 167 widgets::ImportMenu *import_menu = new widgets::ImportMenu(this,
0f8f8c18 168 session.device_manager().context(), action_open_);
ed43ef2e 169 connect(import_menu,
6f925ba9 170 SIGNAL(format_selected(shared_ptr<sigrok::InputFormat>)),
d552c5c7 171 this,
6f925ba9 172 SLOT(import_file(shared_ptr<sigrok::InputFormat>)));
ed43ef2e 173
e0ba4f6f
SA
174 open_button_->setMenu(import_menu);
175 open_button_->setDefaultAction(action_open_);
176 open_button_->setPopupMode(QToolButton::MenuButtonPopup);
ed43ef2e 177
998b89fd 178 // Save button
686d9151 179 vector<QAction *> open_actions;
0f8f8c18
SA
180 open_actions.push_back(action_save_as_);
181 open_actions.push_back(action_save_selection_as_);
686d9151 182
998b89fd
JH
183 widgets::ExportMenu *export_menu = new widgets::ExportMenu(this,
184 session.device_manager().context(),
686d9151 185 open_actions);
998b89fd 186 connect(export_menu,
6f925ba9 187 SIGNAL(format_selected(shared_ptr<sigrok::OutputFormat>)),
d552c5c7 188 this,
6f925ba9 189 SLOT(export_file(shared_ptr<sigrok::OutputFormat>)));
998b89fd 190
e0ba4f6f
SA
191 save_button_->setMenu(export_menu);
192 save_button_->setDefaultAction(action_save_as_);
193 save_button_->setPopupMode(QToolButton::MenuButtonPopup);
998b89fd 194
079d39ea
JH
195 // Device selector menu
196 connect(&device_selector_, SIGNAL(device_selected()),
197 this, SLOT(on_device_selected()));
198
168888e2
JH
199 // Setup the decoder button
200#ifdef ENABLE_DECODE
0f8f8c18
SA
201 menu_decoders_add_->setTitle(tr("&Add"));
202 connect(menu_decoders_add_, SIGNAL(decoder_selected(srd_decoder*)),
203 this, SLOT(add_decoder(srd_decoder*)));
204
4d8130bb 205 add_decoder_button_->setIcon(QIcon(":/icons/add-decoder.svg"));
e0ba4f6f
SA
206 add_decoder_button_->setPopupMode(QToolButton::InstantPopup);
207 add_decoder_button_->setMenu(menu_decoders_add_);
ae95fe58 208 add_decoder_button_->setToolTip(tr("Add low-level, non-stacked protocol decoder"));
168888e2
JH
209#endif
210
8dbbc7f0 211 connect(&sample_count_, SIGNAL(value_changed()),
124d97de 212 this, SLOT(on_sample_count_changed()));
8dbbc7f0 213 connect(&sample_rate_, SIGNAL(value_changed()),
1198b887 214 this, SLOT(on_sample_rate_changed()));
dde1a563 215
8dbbc7f0 216 sample_count_.show_min_max_step(0, UINT64_MAX, 1);
215f9499 217
2b81ae46 218 set_capture_state(pv::Session::Stopped);
274d4f13 219
5f66b56e 220 configure_button_.setToolTip(tr("Configure Device"));
3432032f
UH
221 configure_button_.setIcon(QIcon::fromTheme("preferences-system",
222 QIcon(":/icons/preferences-system.png")));
b7b659aa 223
5f66b56e 224 channels_button_.setToolTip(tr("Configure Channels"));
4d8130bb 225 channels_button_.setIcon(QIcon(":/icons/channels.svg"));
cdb50f67 226
e0ba4f6f 227 add_toolbar_widgets();
40065ab6 228
8dbbc7f0
JH
229 sample_count_.installEventFilter(this);
230 sample_rate_.installEventFilter(this);
0f8f8c18 231
0f8f8c18 232 // Setup session_ events
d552c5c7 233 connect(&session_, SIGNAL(capture_state_changed(int)),
f4ce3e77 234 this, SLOT(on_capture_state_changed(int)));
d552c5c7
SA
235 connect(&session, SIGNAL(device_changed()),
236 this, SLOT(on_device_changed()));
0f8f8c18 237
101e7a9b 238 update_device_list();
0f8f8c18
SA
239}
240
079d39ea 241void MainBar::update_device_list()
18203d86 242{
079d39ea 243 DeviceManager &mgr = session_.device_manager();
da30ecb7
JH
244 shared_ptr<devices::Device> selected_device = session_.device();
245 list< shared_ptr<devices::Device> > devs;
e8d00928 246
079d39ea 247 copy(mgr.devices().begin(), mgr.devices().end(), back_inserter(devs));
53a7cce4 248
079d39ea
JH
249 if (std::find(devs.begin(), devs.end(), selected_device) == devs.end())
250 devs.push_back(selected_device);
e95e8563 251
079d39ea 252 device_selector_.set_device_list(devs, selected_device);
e95e8563 253 update_device_config_widgets();
18203d86
JH
254}
255
7c657094 256void MainBar::set_capture_state(pv::Session::capture_state state)
6ac96c2e 257{
73e170f9
SA
258 bool ui_enabled = (state == pv::Session::Stopped) ? true : false;
259
260 device_selector_.setEnabled(ui_enabled);
261 configure_button_.setEnabled(ui_enabled);
262 channels_button_.setEnabled(ui_enabled);
263 sample_count_.setEnabled(ui_enabled);
264 sample_rate_.setEnabled(ui_enabled);
6ac96c2e
JH
265}
266
7e0c99bf
SA
267void MainBar::reset_device_selector()
268{
269 device_selector_.reset();
270}
271
0f8f8c18
SA
272QAction* MainBar::action_open() const
273{
274 return action_open_;
275}
276
277QAction* MainBar::action_save_as() const
278{
279 return action_save_as_;
280}
281
282QAction* MainBar::action_save_selection_as() const
283{
284 return action_save_selection_as_;
285}
286
287QAction* MainBar::action_connect() const
288{
289 return action_connect_;
290}
291
7c657094 292void MainBar::update_sample_rate_selector()
dde1a563 293{
e8d00928
ML
294 Glib::VariantContainerBase gvar_dict;
295 GVariant *gvar_list;
4c60462b 296 const uint64_t *elements = nullptr;
488f5d3f 297 gsize num_elements;
6f925ba9 298 map< const ConfigKey*, set<Capability> > keys;
dde1a563 299
9dd88889
JH
300 if (updating_sample_rate_) {
301 sample_rate_.show_none();
3d4f16af 302 return;
9dd88889 303 }
3d4f16af 304
da30ecb7
JH
305 const shared_ptr<devices::Device> device =
306 device_selector_.selected_device();
e8d00928 307 if (!device)
ef4d0201
JH
308 return;
309
8dbbc7f0
JH
310 assert(!updating_sample_rate_);
311 updating_sample_rate_ = true;
1198b887 312
da30ecb7 313 const shared_ptr<sigrok::Device> sr_dev = device->device();
a6ed12bf 314
7bb0fbf4
ML
315 if (sr_dev->config_check(ConfigKey::SAMPLERATE, Capability::LIST)) {
316 gvar_dict = sr_dev->config_list(ConfigKey::SAMPLERATE);
317 } else {
8dbbc7f0
JH
318 sample_rate_.show_none();
319 updating_sample_rate_ = false;
dde1a563 320 return;
1198b887 321 }
dde1a563 322
e8d00928 323 if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
2ad82c2e 324 "samplerate-steps", G_VARIANT_TYPE("at")))) {
488f5d3f
BV
325 elements = (const uint64_t *)g_variant_get_fixed_array(
326 gvar_list, &num_elements, sizeof(uint64_t));
aafe53af
JH
327
328 const uint64_t min = elements[0];
329 const uint64_t max = elements[1];
330 const uint64_t step = elements[2];
331
488f5d3f 332 g_variant_unref(gvar_list);
aafe53af
JH
333
334 assert(min > 0);
335 assert(max > 0);
336 assert(max > min);
337 assert(step > 0);
338
339 if (step == 1)
8dbbc7f0 340 sample_rate_.show_125_list(min, max);
2ad82c2e 341 else {
aafe53af
JH
342 // When the step is not 1, we cam't make a 1-2-5-10
343 // list of sample rates, because we may not be able to
344 // make round numbers. Therefore in this case, show a
345 // spin box.
8dbbc7f0 346 sample_rate_.show_min_max_step(min, max, step);
aafe53af 347 }
2ad82c2e
UH
348 } else if ((gvar_list = g_variant_lookup_value(gvar_dict.gobj(),
349 "samplerates", G_VARIANT_TYPE("at")))) {
488f5d3f
BV
350 elements = (const uint64_t *)g_variant_get_fixed_array(
351 gvar_list, &num_elements, sizeof(uint64_t));
8dbbc7f0 352 sample_rate_.show_list(elements, num_elements);
488f5d3f 353 g_variant_unref(gvar_list);
dde1a563 354 }
8dbbc7f0 355 updating_sample_rate_ = false;
48888313
JH
356
357 update_sample_rate_selector_value();
358}
359
7c657094 360void MainBar::update_sample_rate_selector_value()
48888313 361{
8dbbc7f0 362 if (updating_sample_rate_)
3d4f16af
JH
363 return;
364
da30ecb7
JH
365 const shared_ptr<devices::Device> device =
366 device_selector_.selected_device();
e8d00928 367 if (!device)
19adbc2c
JH
368 return;
369
e8d00928 370 try {
da30ecb7 371 auto gvar = device->device()->config_get(ConfigKey::SAMPLERATE);
e8d00928 372 uint64_t samplerate =
15289d5c 373 Glib::VariantBase::cast_dynamic<Glib::Variant<guint64>>(gvar).get();
8dbbc7f0
JH
374 assert(!updating_sample_rate_);
375 updating_sample_rate_ = true;
376 sample_rate_.set_value(samplerate);
377 updating_sample_rate_ = false;
e8d00928 378 } catch (Error error) {
8dd44190 379 qDebug() << "WARNING: Failed to get value of sample rate";
eb4008a6
JH
380 return;
381 }
48888313
JH
382}
383
7c657094 384void MainBar::update_sample_count_selector()
85756012 385{
8dbbc7f0 386 if (updating_sample_count_)
3d4f16af
JH
387 return;
388
da30ecb7
JH
389 const shared_ptr<devices::Device> device =
390 device_selector_.selected_device();
e8d00928 391 if (!device)
19adbc2c
JH
392 return;
393
da30ecb7
JH
394 const shared_ptr<sigrok::Device> sr_dev = device->device();
395
8dbbc7f0
JH
396 assert(!updating_sample_count_);
397 updating_sample_count_ = true;
85756012 398
2ad82c2e 399 if (!sample_count_supported_) {
3e7636f9
JH
400 sample_count_.show_none();
401 updating_sample_count_ = false;
402 return;
403 }
b50ef520 404
3e7636f9
JH
405 uint64_t sample_count = sample_count_.value();
406 uint64_t min_sample_count = 0;
407 uint64_t max_sample_count = MaxSampleCount;
348f9cec 408 bool default_count_set = false;
3cbffdcf 409
348f9cec 410 if (sample_count == 0) {
3e7636f9 411 sample_count = DefaultSampleCount;
348f9cec
SA
412 default_count_set = true;
413 }
b50ef520 414
7bb0fbf4
ML
415 if (sr_dev->config_check(ConfigKey::LIMIT_SAMPLES, Capability::LIST)) {
416 auto gvar = sr_dev->config_list(ConfigKey::LIMIT_SAMPLES);
417 if (gvar.gobj())
418 g_variant_get(gvar.gobj(), "(tt)",
419 &min_sample_count, &max_sample_count);
ed1d9d81 420 }
1d04852f 421
3e7636f9
JH
422 min_sample_count = min(max(min_sample_count, MinSampleCount),
423 max_sample_count);
b50ef520 424
c063290a 425 sample_count_.show_125_list(min_sample_count, max_sample_count);
b50ef520 426
7bb0fbf4 427 if (sr_dev->config_check(ConfigKey::LIMIT_SAMPLES, Capability::GET)) {
da30ecb7 428 auto gvar = sr_dev->config_get(ConfigKey::LIMIT_SAMPLES);
3e7636f9 429 sample_count = g_variant_get_uint64(gvar.gobj());
348f9cec 430 if (sample_count == 0) {
3e7636f9 431 sample_count = DefaultSampleCount;
348f9cec
SA
432 default_count_set = true;
433 }
3e7636f9
JH
434 sample_count = min(max(sample_count, MinSampleCount),
435 max_sample_count);
7bb0fbf4 436 }
3e7636f9
JH
437
438 sample_count_.set_value(sample_count);
df3c1aa3 439
8dbbc7f0 440 updating_sample_count_ = false;
348f9cec
SA
441
442 // If we show the default rate then make sure the device uses the same
443 if (default_count_set)
444 commit_sample_count();
85756012
ML
445}
446
7c657094 447void MainBar::update_device_config_widgets()
e95e8563 448{
e95e8563
JH
449 using namespace pv::popups;
450
da30ecb7
JH
451 const shared_ptr<devices::Device> device =
452 device_selector_.selected_device();
9dd88889
JH
453
454 // Hide the widgets if no device is selected
455 channels_button_action_->setVisible(!!device);
9dd88889
JH
456 if (!device) {
457 configure_button_action_->setVisible(false);
458 sample_count_.show_none();
459 sample_rate_.show_none();
e95e8563 460 return;
9dd88889 461 }
e95e8563 462
da30ecb7
JH
463 const shared_ptr<sigrok::Device> sr_dev = device->device();
464 if (!sr_dev)
465 return;
466
e95e8563 467 // Update the configure popup
da30ecb7 468 DeviceOptions *const opts = new DeviceOptions(sr_dev, this);
8dbbc7f0 469 configure_button_action_->setVisible(
e95e8563 470 !opts->binding().properties().empty());
8dbbc7f0 471 configure_button_.set_popup(opts);
e95e8563 472
6ac6242b 473 // Update the channels popup
8dbbc7f0
JH
474 Channels *const channels = new Channels(session_, this);
475 channels_button_.set_popup(channels);
e95e8563
JH
476
477 // Update supported options.
8dbbc7f0 478 sample_count_supported_ = false;
e95e8563 479
7bb0fbf4
ML
480 if (sr_dev->config_check(ConfigKey::LIMIT_SAMPLES, Capability::SET))
481 sample_count_supported_ = true;
482
483 if (sr_dev->config_check(ConfigKey::LIMIT_FRAMES, Capability::SET)) {
484 sr_dev->config_set(ConfigKey::LIMIT_FRAMES,
485 Glib::Variant<guint64>::create(1));
486 on_config_changed();
487 }
e95e8563
JH
488
489 // Add notification of reconfigure events
490 disconnect(this, SLOT(on_config_changed()));
e8d00928 491 connect(&opts->binding(), SIGNAL(config_changed()),
e95e8563
JH
492 this, SLOT(on_config_changed()));
493
494 // Update sweep timing widgets.
495 update_sample_count_selector();
496 update_sample_rate_selector();
497}
498
0f8f8c18
SA
499void MainBar::commit_sample_rate()
500{
501 uint64_t sample_rate = 0;
502
503 const shared_ptr<devices::Device> device =
504 device_selector_.selected_device();
505 if (!device)
506 return;
507
508 const shared_ptr<sigrok::Device> sr_dev = device->device();
509
510 sample_rate = sample_rate_.value();
511 if (sample_rate == 0)
512 return;
513
514 try {
515 sr_dev->config_set(ConfigKey::SAMPLERATE,
516 Glib::Variant<guint64>::create(sample_rate));
517 update_sample_rate_selector();
518 } catch (Error error) {
519 qDebug() << "Failed to configure samplerate.";
520 return;
521 }
522
523 // Devices with built-in memory might impose limits on certain
524 // configurations, so let's check what sample count the driver
525 // lets us use now.
526 update_sample_count_selector();
527}
528
7c657094 529void MainBar::commit_sample_count()
124d97de
ML
530{
531 uint64_t sample_count = 0;
532
da30ecb7
JH
533 const shared_ptr<devices::Device> device =
534 device_selector_.selected_device();
e8d00928 535 if (!device)
19adbc2c
JH
536 return;
537
da30ecb7
JH
538 const shared_ptr<sigrok::Device> sr_dev = device->device();
539
8dbbc7f0 540 sample_count = sample_count_.value();
2ad82c2e 541 if (sample_count_supported_) {
e8d00928 542 try {
da30ecb7 543 sr_dev->config_set(ConfigKey::LIMIT_SAMPLES,
15289d5c 544 Glib::Variant<guint64>::create(sample_count));
449aec3c 545 update_sample_count_selector();
e8d00928
ML
546 } catch (Error error) {
547 qDebug() << "Failed to configure sample count.";
548 return;
549 }
124d97de 550 }
e13e7879
SA
551
552 // Devices with built-in memory might impose limits on certain
553 // configurations, so let's check what sample rate the driver
554 // lets us use now.
555 update_sample_rate_selector();
124d97de
ML
556}
557
0f8f8c18 558void MainBar::session_error(const QString text, const QString info_text)
48888313 559{
0f8f8c18
SA
560 QMetaObject::invokeMethod(this, "show_session_error",
561 Qt::QueuedConnection, Q_ARG(QString, text),
562 Q_ARG(QString, info_text));
563}
48888313 564
0f8f8c18
SA
565void MainBar::show_session_error(const QString text, const QString info_text)
566{
567 QMessageBox msg(this);
568 msg.setText(text);
569 msg.setInformativeText(info_text);
570 msg.setStandardButtons(QMessageBox::Ok);
571 msg.setIcon(QMessageBox::Warning);
572 msg.exec();
573}
19adbc2c 574
0f8f8c18
SA
575void MainBar::add_decoder(srd_decoder *decoder)
576{
577#ifdef ENABLE_DECODE
578 assert(decoder);
e771b42d
SA
579 shared_ptr<data::DecodeSignal> signal = session_.add_decode_signal();
580 if (signal)
581 signal->stack_decoder(decoder);
0f8f8c18
SA
582#else
583 (void)decoder;
584#endif
585}
586
c063290a 587void MainBar::export_file(shared_ptr<OutputFormat> format, bool selection_only)
0f8f8c18
SA
588{
589 using pv::dialogs::StoreProgress;
590
591 // Stop any currently running capture session
592 session_.stop_capture();
593
594 QSettings settings;
595 const QString dir = settings.value(SettingSaveDirectory).toString();
596
6f925ba9 597 pair<uint64_t, uint64_t> sample_range;
0f8f8c18
SA
598
599 // Selection only? Verify that the cursors are active and fetch their values
600 if (selection_only) {
f23c4692
SA
601 views::trace::View *trace_view =
602 qobject_cast<views::trace::View*>(session_.main_view().get());
f4e57597
SA
603
604 if (!trace_view->cursors()->enabled()) {
0f8f8c18
SA
605 show_session_error(tr("Missing Cursors"), tr("You need to set the " \
606 "cursors before you can save the data enclosed by them " \
e0ddc2a4 607 "to a session file (e.g. using the Show Cursors button)."));
0f8f8c18
SA
608 return;
609 }
610
611 const double samplerate = session_.get_samplerate();
612
f4e57597
SA
613 const pv::util::Timestamp& start_time = trace_view->cursors()->first()->time();
614 const pv::util::Timestamp& end_time = trace_view->cursors()->second()->time();
0f8f8c18 615
6f925ba9 616 const uint64_t start_sample = (uint64_t)max(
49ec9e07 617 (double)0, start_time.convert_to<double>() * samplerate);
6f925ba9 618 const uint64_t end_sample = (uint64_t)max(
49ec9e07 619 (double)0, end_time.convert_to<double>() * samplerate);
0f8f8c18 620
6f925ba9 621 sample_range = make_pair(start_sample, end_sample);
0f8f8c18 622 } else {
6f925ba9 623 sample_range = make_pair(0, 0);
0f8f8c18
SA
624 }
625
626 // Construct the filter
627 const vector<string> exts = format->extensions();
628 QString filter = tr("%1 files ").arg(
629 QString::fromStdString(format->description()));
630
631 if (exts.empty())
75ab6b87 632 filter += "(*)";
0f8f8c18 633 else
75ab6b87 634 filter += QString("(*.%1);;%2 (*)").arg(
0f8f8c18
SA
635 QString::fromStdString(join(exts, ", *.")),
636 tr("All Files"));
637
638 // Show the file dialog
639 const QString file_name = QFileDialog::getSaveFileName(
640 this, tr("Save File"), dir, filter);
641
642 if (file_name.isEmpty())
f9541bde
JH
643 return;
644
0f8f8c18
SA
645 const QString abs_path = QFileInfo(file_name).absolutePath();
646 settings.setValue(SettingSaveDirectory, abs_path);
647
648 // Show the options dialog
649 map<string, Glib::VariantBase> options;
650 if (!format->options().empty()) {
651 dialogs::InputOutputOptions dlg(
652 tr("Export %1").arg(QString::fromStdString(
653 format->description())),
654 format->options(), this);
655 if (!dlg.exec())
656 return;
657 options = dlg.options();
658 }
659
c32bf63a
SA
660 if (!selection_only)
661 session_.set_name(QFileInfo(file_name).fileName());
101e7a9b 662
0f8f8c18
SA
663 StoreProgress *dlg = new StoreProgress(file_name, format, options,
664 sample_range, session_, this);
665 dlg->run();
666}
667
668void MainBar::import_file(shared_ptr<InputFormat> format)
669{
670 assert(format);
671
672 QSettings settings;
673 const QString dir = settings.value(SettingOpenDirectory).toString();
674
675 // Construct the filter
676 const vector<string> exts = format->extensions();
677 const QString filter = exts.empty() ? "" :
678 tr("%1 files (*.%2)").arg(
679 QString::fromStdString(format->description()),
680 QString::fromStdString(join(exts, ", *.")));
681
682 // Show the file dialog
683 const QString file_name = QFileDialog::getOpenFileName(
684 this, tr("Import File"), dir, tr(
75ab6b87 685 "%1 files (*);;All Files (*)").arg(
0f8f8c18
SA
686 QString::fromStdString(format->description())));
687
688 if (file_name.isEmpty())
48888313 689 return;
0f8f8c18
SA
690
691 // Show the options dialog
692 map<string, Glib::VariantBase> options;
693 if (!format->options().empty()) {
694 dialogs::InputOutputOptions dlg(
695 tr("Import %1").arg(QString::fromStdString(
696 format->description())),
697 format->options(), this);
698 if (!dlg.exec())
699 return;
700 options = dlg.options();
48888313 701 }
e13e7879 702
fd22c71c 703 session_.load_file(file_name, format, options);
0f8f8c18
SA
704
705 const QString abs_path = QFileInfo(file_name).absolutePath();
706 settings.setValue(SettingOpenDirectory, abs_path);
dde1a563
JH
707}
708
7c657094 709void MainBar::on_device_selected()
dde1a563 710{
da30ecb7 711 shared_ptr<devices::Device> device = device_selector_.selected_device();
0f8f8c18
SA
712 if (!device) {
713 reset_device_selector();
19adbc2c 714 return;
0f8f8c18 715 }
19adbc2c 716
fd22c71c 717 session_.select_device(device);
91f8fe8c 718}
51d4a9ab 719
91f8fe8c
SA
720void MainBar::on_device_changed()
721{
722 update_device_list();
e95e8563 723 update_device_config_widgets();
dde1a563 724}
51e77110 725
f4ce3e77
SA
726void MainBar::on_capture_state_changed(int state)
727{
728 set_capture_state((pv::Session::capture_state)state);
729}
730
7c657094 731void MainBar::on_sample_count_changed()
124d97de 732{
449aec3c
SA
733 if (!updating_sample_count_)
734 commit_sample_count();
124d97de
ML
735}
736
7c657094 737void MainBar::on_sample_rate_changed()
48888313 738{
0e0b6b3e
SA
739 if (!updating_sample_rate_)
740 commit_sample_rate();
48888313
JH
741}
742
7c657094 743void MainBar::on_config_changed()
82afd5e3
JH
744{
745 commit_sample_count();
c063290a 746 commit_sample_rate();
82afd5e3
JH
747}
748
c9da5118
SA
749void MainBar::on_actionNewView_triggered()
750{
751 new_view(&session_);
752}
753
0f8f8c18
SA
754void MainBar::on_actionOpen_triggered()
755{
756 QSettings settings;
757 const QString dir = settings.value(SettingOpenDirectory).toString();
758
759 // Show the dialog
760 const QString file_name = QFileDialog::getOpenFileName(
761 this, tr("Open File"), dir, tr(
b0e15aa2 762 "sigrok Sessions (*.sr);;"
75ab6b87 763 "All Files (*)"));
0f8f8c18
SA
764
765 if (!file_name.isEmpty()) {
fd22c71c 766 session_.load_file(file_name);
0f8f8c18
SA
767
768 const QString abs_path = QFileInfo(file_name).absolutePath();
769 settings.setValue(SettingOpenDirectory, abs_path);
770 }
771}
772
773void MainBar::on_actionSaveAs_triggered()
774{
775 export_file(session_.device_manager().context()->output_formats()["srzip"]);
776}
777
778void MainBar::on_actionSaveSelectionAs_triggered()
779{
780 export_file(session_.device_manager().context()->output_formats()["srzip"], true);
781}
782
783void MainBar::on_actionConnect_triggered()
784{
785 // Stop any currently running capture session
786 session_.stop_capture();
787
788 dialogs::Connect dlg(this, session_.device_manager());
789
790 // If the user selected a device, select it in the device list. Select the
791 // current device otherwise.
792 if (dlg.exec())
fd22c71c 793 session_.select_device(dlg.get_selected_device());
0f8f8c18
SA
794
795 update_device_list();
796}
797
e0ba4f6f 798void MainBar::add_toolbar_widgets()
0f8f8c18 799{
e0ba4f6f
SA
800 addAction(action_new_view_);
801 addSeparator();
802 addWidget(open_button_);
803 addWidget(save_button_);
804 addSeparator();
0f8f8c18 805
e0ba4f6f 806 StandardBar::add_toolbar_widgets();
0f8f8c18 807
e0ba4f6f
SA
808 addWidget(&device_selector_);
809 configure_button_action_ = addWidget(&configure_button_);
810 channels_button_action_ = addWidget(&channels_button_);
811 addWidget(&sample_count_);
812 addWidget(&sample_rate_);
813#ifdef ENABLE_DECODE
814 addSeparator();
815 addWidget(add_decoder_button_);
816#endif
d552c5c7
SA
817}
818
7c657094 819bool MainBar::eventFilter(QObject *watched, QEvent *event)
40065ab6 820{
2ad82c2e
UH
821 if (sample_count_supported_ && (watched == &sample_count_ ||
822 watched == &sample_rate_) &&
823 (event->type() == QEvent::ToolTip)) {
60d9b99a 824 auto sec = pv::util::Timestamp(sample_count_.value()) / sample_rate_.value();
40065ab6 825 QHelpEvent *help_event = static_cast<QHelpEvent*>(event);
62974f45 826
3ccf0f7f
JS
827 QString str = tr("Total sampling time: %1").arg(
828 pv::util::format_time_si(sec, pv::util::SIPrefix::unspecified, 0, "s", false));
40065ab6
JS
829 QToolTip::showText(help_event->globalPos(), str);
830
831 return true;
832 }
833
834 return false;
835}
836
f4c92e1c 837} // namespace toolbars
51e77110 838} // namespace pv