]> sigrok.org Git - pulseview.git/blame - main.cpp
LogicSegment: Check upper bound when performing edge search
[pulseview.git] / main.cpp
CommitLineData
d7bed479 1/*
b3f22de0 2 * This file is part of the PulseView project.
d7bed479
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d7bed479
JH
18 */
19
269528f5 20#ifdef ENABLE_DECODE
aaabd61b 21#include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
269528f5 22#endif
d52d8455 23
15a69e54 24#include <cstdint>
c5d6200c 25#include <fstream>
f7951df4 26#include <getopt.h>
caa2b3e9 27#include <vector>
f7951df4 28
c5d6200c
SA
29#include <libsigrokcxx/libsigrokcxx.hpp>
30
31#include <QCheckBox>
664fca5c 32#include <QDebug>
c5d6200c
SA
33#include <QFile>
34#include <QFileInfo>
35#include <QMessageBox>
0bd39c0c 36#include <QSettings>
c5d6200c 37#include <QTextStream>
075fb499 38
49719858
SA
39#include "config.h"
40
140181a4 41#ifdef ENABLE_SIGNALS
2acdb232 42#include "signalhandler.hpp"
140181a4
JH
43#endif
44
c1a688de
SA
45#ifdef ENABLE_STACKTRACE
46#include <signal.h>
47#include <boost/stacktrace.hpp>
48#include <QStandardPaths>
49#endif
50
2acdb232
JH
51#include "pv/application.hpp"
52#include "pv/devicemanager.hpp"
bcb4c327
SA
53#include "pv/globalsettings.hpp"
54#include "pv/logging.hpp"
2acdb232 55#include "pv/mainwindow.hpp"
419ec4e1 56#include "pv/session.hpp"
c1a688de 57
9137928c 58#ifdef ANDROID
aff51746 59#include <libsigrokandroidutils/libsigrokandroidutils.h>
dddff2e7 60#include "android/assetreader.hpp"
2acdb232 61#include "android/loghandler.hpp"
9137928c 62#endif
d7bed479 63
11a04e2a 64#ifdef _WIN32
11a04e2a 65#include <QtPlugin>
09f55d96
UH
66Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
67Q_IMPORT_PLUGIN(QSvgPlugin)
11a04e2a
UH
68#endif
69
6f925ba9 70using std::exception;
c5d6200c
SA
71using std::ifstream;
72using std::ofstream;
6f925ba9
UH
73using std::shared_ptr;
74using std::string;
75
c1a688de
SA
76#if ENABLE_STACKTRACE
77QString stacktrace_filename;
78
79void signal_handler(int signum)
80{
81 ::signal(signum, SIG_DFL);
82 boost::stacktrace::safe_dump_to(stacktrace_filename.toLocal8Bit().data());
83 ::raise(SIGABRT);
84}
c5d6200c
SA
85
86void process_stacktrace(QString temp_path)
87{
88 const QString stacktrace_outfile = temp_path + "/pv_stacktrace.txt";
89
90 ifstream ifs(stacktrace_filename.toLocal8Bit().data());
91 ofstream ofs(stacktrace_outfile.toLocal8Bit().data(),
92 ofstream::out | ofstream::trunc);
93
94 boost::stacktrace::stacktrace st =
95 boost::stacktrace::stacktrace::from_dump(ifs);
96 ofs << st;
97
98 ofs.close();
99 ifs.close();
100
101 QFile f(stacktrace_outfile);
102 f.open(QFile::ReadOnly | QFile::Text);
103 QTextStream fs(&f);
104 QString stacktrace = fs.readAll();
105 stacktrace = stacktrace.trimmed().replace('\n', "<br />");
106
107 qDebug() << QObject::tr("Stack trace of previous crash:");
108 qDebug() << "---------------------------------------------------------";
109 // Note: qDebug() prints quotation marks for QString output, so we feed it char*
110 qDebug() << stacktrace.toLocal8Bit().data();
111 qDebug() << "---------------------------------------------------------";
112
113 f.close();
114
115 // Remove stack trace so we don't process it again the next time we run
116 QFile::remove(stacktrace_filename.toLocal8Bit().data());
117
118 // Show notification dialog if permitted
119 pv::GlobalSettings settings;
120 if (settings.value(pv::GlobalSettings::Key_Log_NotifyOfStacktrace).toBool()) {
121 QCheckBox *cb = new QCheckBox(QObject::tr("Don't show this message again"));
122
123 QMessageBox msgbox;
124 msgbox.setText(QObject::tr("When %1 last crashed, it created a stack trace.\n" \
125 "A human-readable form has been saved to disk and was written to " \
126 "the log. You may access it from the settings dialog.").arg(PV_TITLE));
127 msgbox.setIcon(QMessageBox::Icon::Information);
128 msgbox.addButton(QMessageBox::Ok);
129 msgbox.setCheckBox(cb);
130
131 QObject::connect(cb, &QCheckBox::stateChanged, [](int state){
132 pv::GlobalSettings settings;
133 settings.setValue(pv::GlobalSettings::Key_Log_NotifyOfStacktrace,
134 !state); });
135
136 msgbox.exec();
137 }
138}
c1a688de
SA
139#endif
140
d4384c6d
JH
141void usage()
142{
9fd5bb6e 143 fprintf(stdout,
d4384c6d 144 "Usage:\n"
41e2ade4 145 " %s [OPTIONS] [FILE]\n"
d4384c6d
JH
146 "\n"
147 "Help Options:\n"
d4384c6d 148 " -h, -?, --help Show help option\n"
aa90e86b
JH
149 "\n"
150 "Application Options:\n"
151 " -V, --version Show release version\n"
152 " -l, --loglevel Set libsigrok/libsigrokdecode loglevel\n"
58d8e4c6 153 " -d, --driver Specify the device driver to use\n"
0e96068d 154 " -D, --dont-scan Don't auto-scan for devices, use -d spec only\n"
e3c79b07
JH
155 " -i, --input-file Load input from file\n"
156 " -I, --input-format Input format\n"
156f06e9 157 " -c, --clean Don't restore previous sessions on startup\n"
41e2ade4 158 "\n", PV_BIN_NAME);
d4384c6d
JH
159}
160
d7bed479
JH
161int main(int argc, char *argv[])
162{
be03620e 163 int ret = 0;
6f925ba9 164 shared_ptr<sigrok::Context> context;
caa2b3e9
SA
165 string open_file_format, driver;
166 vector<string> open_files;
156f06e9 167 bool restore_sessions = true;
1d6e35dc 168 bool do_scan = true;
49719858 169 bool show_version = false;
f2242929 170
dac1bb97 171 Application a(argc, argv);
640e5565 172
9137928c 173#ifdef ANDROID
aff51746 174 srau_init_environment();
9137928c 175 pv::AndroidLogHandler::install_callbacks();
dddff2e7 176 pv::AndroidAssetReader asset_reader;
9137928c
MC
177#endif
178
f7951df4 179 // Parse arguments
15a69e54 180 while (true) {
f7951df4 181 static const struct option long_options[] = {
f74015db
UH
182 {"help", no_argument, nullptr, 'h'},
183 {"version", no_argument, nullptr, 'V'},
184 {"loglevel", required_argument, nullptr, 'l'},
58d8e4c6 185 {"driver", required_argument, nullptr, 'd'},
0e96068d 186 {"dont-scan", no_argument, nullptr, 'D'},
f74015db
UH
187 {"input-file", required_argument, nullptr, 'i'},
188 {"input-format", required_argument, nullptr, 'I'},
156f06e9 189 {"clean", no_argument, nullptr, 'c'},
c062efdc 190 {"log-to-stdout", no_argument, nullptr, 's'},
f74015db 191 {nullptr, 0, nullptr, 0}
f7951df4
JH
192 };
193
815b3f26 194 const int c = getopt_long(argc, argv,
4b923408 195 "h?VDcl:d:i:I:", long_options, nullptr);
f7951df4
JH
196 if (c == -1)
197 break;
198
199 switch (c) {
aa90e86b
JH
200 case 'h':
201 case '?':
202 usage();
203 return 0;
204
205 case 'V':
49719858
SA
206 show_version = true;
207 break;
aa90e86b 208
9b5099b6
JH
209 case 'l':
210 {
211 const int loglevel = atoi(optarg);
ed6f8680
GS
212 if (loglevel < 0 || loglevel > 5) {
213 qDebug() << "ERROR: invalid log level spec.";
214 break;
215 }
e8d00928 216 context->set_log_level(sigrok::LogLevel::get(loglevel));
269528f5
JH
217
218#ifdef ENABLE_DECODE
9b5099b6 219 srd_log_loglevel_set(loglevel);
269528f5 220#endif
d52d8455 221
0bd39c0c
UH
222 if (loglevel >= 5) {
223 const QSettings settings;
224 qDebug() << "Settings:" << settings.fileName()
225 << "format" << settings.format();
226 }
9b5099b6
JH
227 break;
228 }
e3c79b07 229
58d8e4c6
GS
230 case 'd':
231 driver = optarg;
232 break;
233
1d6e35dc
GS
234 case 'D':
235 do_scan = false;
236 break;
237
e3c79b07 238 case 'i':
1f2082e2 239 open_files.emplace_back(optarg);
e3c79b07
JH
240 break;
241
242 case 'I':
243 open_file_format = optarg;
244 break;
156f06e9
SA
245
246 case 'c':
247 restore_sessions = false;
248 break;
f7951df4
JH
249 }
250 }
6a96e1b2
GS
251 argc -= optind;
252 argv += optind;
f7951df4 253
6a96e1b2 254 for (int i = 0; i < argc; i++)
1f2082e2 255 open_files.emplace_back(argv[i]);
1d478458 256
bcb4c327
SA
257 // Prepare the global settings since logging needs them early on
258 pv::GlobalSettings settings;
259 settings.set_defaults_where_needed();
260
4b923408 261 pv::logging.init();
bcb4c327 262
6a6772b7 263 // Initialise libsigrok
e8d00928 264 context = sigrok::Context::create();
419ec4e1
SA
265 pv::Session::sr_context = context;
266
c1a688de
SA
267#if ENABLE_STACKTRACE
268 QString temp_path = QStandardPaths::standardLocations(
269 QStandardPaths::TempLocation).at(0);
270 stacktrace_filename = temp_path + "/pv_stacktrace.dmp";
271 qDebug() << "Stack trace file is" << stacktrace_filename;
272
273 ::signal(SIGSEGV, &signal_handler);
274 ::signal(SIGABRT, &signal_handler);
c5d6200c
SA
275
276 if (QFileInfo::exists(stacktrace_filename))
277 process_stacktrace(temp_path);
c1a688de
SA
278#endif
279
dddff2e7
DE
280#ifdef ANDROID
281 context->set_resource_reader(&asset_reader);
282#endif
d52d8455
JH
283 do {
284
269528f5 285#ifdef ENABLE_DECODE
d52d8455 286 // Initialise libsigrokdecode
4c60462b 287 if (srd_init(nullptr) != SRD_OK) {
d52d8455
JH
288 qDebug() << "ERROR: libsigrokdecode init failed.";
289 break;
290 }
be03620e
JH
291
292 // Load the protocol decoders
293 srd_decoder_load_all();
269528f5 294#endif
be03620e 295
c1a688de 296#ifndef ENABLE_STACKTRACE
107ca6d3 297 try {
c1a688de 298#endif
664fca5c 299
c1a688de
SA
300 // Create the device manager, initialise the drivers
301 pv::DeviceManager device_manager(context, driver, do_scan);
664fca5c 302
49719858
SA
303 a.collect_version_info(context);
304 if (show_version) {
305 a.print_version_info();
306 } else {
307 // Initialise the main window
308 pv::MainWindow w(device_manager);
309 w.show();
3ed18835 310
49719858
SA
311 if (restore_sessions)
312 w.restore_sessions();
c1a688de 313
49719858
SA
314 if (open_files.empty())
315 w.add_default_session();
316 else
317 for (string open_file : open_files)
318 w.add_session_with_file(open_file, open_file_format);
3ed18835 319
140181a4 320#ifdef ENABLE_SIGNALS
49719858
SA
321 if (SignalHandler::prepare_signals()) {
322 SignalHandler *const handler = new SignalHandler(&w);
323 QObject::connect(handler, SIGNAL(int_received()),
324 &w, SLOT(close()));
325 QObject::connect(handler, SIGNAL(term_received()),
326 &w, SLOT(close()));
327 } else
328 qWarning() << "Could not prepare signal handler.";
140181a4 329#endif
7a255aa9 330
49719858
SA
331 // Run the application
332 ret = a.exec();
333 }
107ca6d3 334
c1a688de 335#ifndef ENABLE_STACKTRACE
30677c13 336 } catch (exception& e) {
c1a688de 337 qDebug() << "Exception:" << e.what();
6fb67b27 338 }
c1a688de 339#endif
6fb67b27 340
269528f5 341#ifdef ENABLE_DECODE
d52d8455 342 // Destroy libsigrokdecode
be03620e 343 srd_exit();
269528f5 344#endif
664fca5c 345
15a69e54 346 } while (false);
664fca5c 347
664fca5c 348 return ret;
d7bed479 349}