]> sigrok.org Git - pulseview.git/blob - main.cpp
Main: Add missing --no-scan long option for -D
[pulseview.git] / main.cpp
1 /*
2  * This file is part of the PulseView project.
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, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifdef ENABLE_DECODE
21 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
22 #endif
23
24 #include <cstdint>
25 #include <libsigrokcxx/libsigrokcxx.hpp>
26
27 #include <getopt.h>
28
29 #include <QDebug>
30 #include <QSettings>
31
32 #ifdef ENABLE_SIGNALS
33 #include "signalhandler.hpp"
34 #endif
35
36 #ifdef ENABLE_STACKTRACE
37 #include <signal.h>
38 #include <boost/stacktrace.hpp>
39 #include <QStandardPaths>
40 #endif
41
42 #include "pv/application.hpp"
43 #include "pv/devicemanager.hpp"
44 #include "pv/globalsettings.hpp"
45 #include "pv/logging.hpp"
46 #include "pv/mainwindow.hpp"
47 #include "pv/session.hpp"
48
49 #ifdef ANDROID
50 #include <libsigrokandroidutils/libsigrokandroidutils.h>
51 #include "android/assetreader.hpp"
52 #include "android/loghandler.hpp"
53 #endif
54
55 #include "config.h"
56
57 #ifdef _WIN32
58 #include <QtPlugin>
59 Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
60 Q_IMPORT_PLUGIN(QSvgPlugin)
61 #endif
62
63 using std::exception;
64 using std::shared_ptr;
65 using std::string;
66
67 #if ENABLE_STACKTRACE
68 QString stacktrace_filename;
69
70 void signal_handler(int signum)
71 {
72         ::signal(signum, SIG_DFL);
73         boost::stacktrace::safe_dump_to(stacktrace_filename.toLocal8Bit().data());
74         ::raise(SIGABRT);
75 }
76 #endif
77
78 void usage()
79 {
80         fprintf(stdout,
81                 "Usage:\n"
82                 "  %s [OPTIONS] [FILE]\n"
83                 "\n"
84                 "Help Options:\n"
85                 "  -h, -?, --help                  Show help option\n"
86                 "\n"
87                 "Application Options:\n"
88                 "  -V, --version                   Show release version\n"
89                 "  -l, --loglevel                  Set libsigrok/libsigrokdecode loglevel\n"
90                 "  -d, --driver                    Specify the device driver to use\n"
91                 "  -D, --no-scan                   Don't auto-scan for devices, use -d spec only\n"
92                 "  -i, --input-file                Load input from file\n"
93                 "  -I, --input-format              Input format\n"
94                 "  -c, --clean                     Don't restore previous sessions on startup\n"
95                 "  -s, --log-to-stdout             Don't use logging, output to stdout instead\n"
96                 "\n", PV_BIN_NAME);
97 }
98
99 int main(int argc, char *argv[])
100 {
101         int ret = 0;
102         shared_ptr<sigrok::Context> context;
103         string open_file, open_file_format, driver;
104         bool restore_sessions = true;
105         bool do_scan = true;
106         bool do_logging = true;
107
108         Application a(argc, argv);
109
110 #ifdef ANDROID
111         srau_init_environment();
112         pv::AndroidLogHandler::install_callbacks();
113         pv::AndroidAssetReader asset_reader;
114 #endif
115
116         // Parse arguments
117         while (true) {
118                 static const struct option long_options[] = {
119                         {"help", no_argument, nullptr, 'h'},
120                         {"version", no_argument, nullptr, 'V'},
121                         {"loglevel", required_argument, nullptr, 'l'},
122                         {"driver", required_argument, nullptr, 'd'},
123                         {"no-scan", no_argument, nullptr, 'D'},
124                         {"input-file", required_argument, nullptr, 'i'},
125                         {"input-format", required_argument, nullptr, 'I'},
126                         {"clean", no_argument, nullptr, 'c'},
127                         {"log-to-stdout", no_argument, nullptr, 's'},
128                         {nullptr, 0, nullptr, 0}
129                 };
130
131                 const int c = getopt_long(argc, argv,
132                         "h?VDcsl:d:i:I:", long_options, nullptr);
133                 if (c == -1)
134                         break;
135
136                 switch (c) {
137                 case 'h':
138                 case '?':
139                         usage();
140                         return 0;
141
142                 case 'V':
143                         // Print version info
144                         fprintf(stdout, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
145                         return 0;
146
147                 case 'l':
148                 {
149                         const int loglevel = atoi(optarg);
150                         if (loglevel < 0 || loglevel > 5) {
151                                 qDebug() << "ERROR: invalid log level spec.";
152                                 break;
153                         }
154                         context->set_log_level(sigrok::LogLevel::get(loglevel));
155
156 #ifdef ENABLE_DECODE
157                         srd_log_loglevel_set(loglevel);
158 #endif
159
160                         if (loglevel >= 5) {
161                                 const QSettings settings;
162                                 qDebug() << "Settings:" << settings.fileName()
163                                         << "format" << settings.format();
164                         }
165                         break;
166                 }
167
168                 case 'd':
169                         driver = optarg;
170                         break;
171
172                 case 'D':
173                         do_scan = false;
174                         break;
175
176                 case 'i':
177                         open_file = optarg;
178                         break;
179
180                 case 'I':
181                         open_file_format = optarg;
182                         break;
183
184                 case 'c':
185                         restore_sessions = false;
186                         break;
187
188                 case 's':
189                         do_logging = false;
190                         break;
191                 }
192         }
193
194         if (argc - optind > 1) {
195                 fprintf(stderr, "Only one file can be opened.\n");
196                 return 1;
197         }
198
199         if (argc - optind == 1)
200                 open_file = argv[argc - 1];
201
202         // Prepare the global settings since logging needs them early on
203         pv::GlobalSettings settings;
204         settings.set_defaults_where_needed();
205
206         if (do_logging)
207                 pv::logging.init();
208
209         // Initialise libsigrok
210         context = sigrok::Context::create();
211         pv::Session::sr_context = context;
212
213 #if ENABLE_STACKTRACE
214         QString temp_path = QStandardPaths::standardLocations(
215                 QStandardPaths::TempLocation).at(0);
216         stacktrace_filename = temp_path + "/pv_stacktrace.dmp";
217         qDebug() << "Stack trace file is" << stacktrace_filename;
218
219         ::signal(SIGSEGV, &signal_handler);
220         ::signal(SIGABRT, &signal_handler);
221 #endif
222
223 #ifdef ANDROID
224         context->set_resource_reader(&asset_reader);
225 #endif
226         do {
227
228 #ifdef ENABLE_DECODE
229                 // Initialise libsigrokdecode
230                 if (srd_init(nullptr) != SRD_OK) {
231                         qDebug() << "ERROR: libsigrokdecode init failed.";
232                         break;
233                 }
234
235                 // Load the protocol decoders
236                 srd_decoder_load_all();
237 #endif
238
239 #ifndef ENABLE_STACKTRACE
240                 try {
241 #endif
242
243                 // Create the device manager, initialise the drivers
244                 pv::DeviceManager device_manager(context, driver, do_scan);
245
246                 // Initialise the main window
247                 pv::MainWindow w(device_manager);
248                 w.show();
249
250                 if (restore_sessions)
251                         w.restore_sessions();
252
253                 if (!open_file.empty())
254                         w.add_session_with_file(open_file, open_file_format);
255                 else
256                         w.add_default_session();
257
258 #ifdef ENABLE_SIGNALS
259                 if (SignalHandler::prepare_signals()) {
260                         SignalHandler *const handler = new SignalHandler(&w);
261                         QObject::connect(handler, SIGNAL(int_received()),
262                                 &w, SLOT(close()));
263                         QObject::connect(handler, SIGNAL(term_received()),
264                                 &w, SLOT(close()));
265                 } else
266                         qWarning() << "Could not prepare signal handler.";
267 #endif
268
269                 // Run the application
270                 ret = a.exec();
271
272 #ifndef ENABLE_STACKTRACE
273                 } catch (exception& e) {
274                         qDebug() << "Exception:" << e.what();
275                 }
276 #endif
277
278 #ifdef ENABLE_DECODE
279                 // Destroy libsigrokdecode
280                 srd_exit();
281 #endif
282
283         } while (false);
284
285         return ret;
286 }