]> sigrok.org Git - pulseview.git/blame - main.cpp
Subclass QApplication to catch exceptions in handlers.
[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
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
269528f5 21#ifdef ENABLE_DECODE
aaabd61b 22#include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
269528f5 23#endif
d52d8455 24
664fca5c
JH
25#include <stdint.h>
26#include <libsigrok/libsigrok.h>
664fca5c 27
f7951df4
JH
28#include <getopt.h>
29
664fca5c 30#include <QDebug>
075fb499 31
140181a4 32#ifdef ENABLE_SIGNALS
7a255aa9 33#include "signalhandler.h"
140181a4
JH
34#endif
35
dac1bb97 36#include "pv/application.h"
107ca6d3 37#include "pv/devicemanager.h"
51e77110 38#include "pv/mainwindow.h"
9137928c 39#ifdef ANDROID
aff51746 40#include <libsigrokandroidutils/libsigrokandroidutils.h>
9137928c
MC
41#include "android/loghandler.h"
42#endif
d7bed479 43
075fb499
AG
44#include "config.h"
45
11a04e2a
UH
46#ifdef _WIN32
47// The static qsvg lib is required for SVG graphics/icons (on Windows).
48#include <QtPlugin>
49Q_IMPORT_PLUGIN(qsvg)
50#endif
51
d4384c6d
JH
52void usage()
53{
9fd5bb6e 54 fprintf(stdout,
d4384c6d 55 "Usage:\n"
1d478458 56 " %s [OPTION…] [FILE] — %s\n"
d4384c6d
JH
57 "\n"
58 "Help Options:\n"
9b5099b6 59 " -l, --loglevel Set libsigrok/libsigrokdecode loglevel\n"
d4384c6d
JH
60 " -V, --version Show release version\n"
61 " -h, -?, --help Show help option\n"
62 "\n", PV_BIN_NAME, PV_DESCRIPTION);
63}
64
d7bed479
JH
65int main(int argc, char *argv[])
66{
be03620e 67 int ret = 0;
f2242929 68 struct sr_context *sr_ctx = NULL;
1d478458 69 const char *open_file = NULL;
f2242929 70
dac1bb97 71 Application a(argc, argv);
640e5565 72
9137928c 73#ifdef ANDROID
aff51746 74 srau_init_environment();
9137928c
MC
75 pv::AndroidLogHandler::install_callbacks();
76#endif
77
f7951df4
JH
78 // Parse arguments
79 while (1) {
80 static const struct option long_options[] = {
9b5099b6 81 {"loglevel", required_argument, 0, 'l'},
333d5bbc
UH
82 {"version", no_argument, 0, 'V'},
83 {"help", no_argument, 0, 'h'},
f7951df4
JH
84 {0, 0, 0, 0}
85 };
86
815b3f26 87 const int c = getopt_long(argc, argv,
9b5099b6 88 "l:Vh?", long_options, NULL);
f7951df4
JH
89 if (c == -1)
90 break;
91
92 switch (c) {
9b5099b6
JH
93 case 'l':
94 {
95 const int loglevel = atoi(optarg);
96 sr_log_loglevel_set(loglevel);
269528f5
JH
97
98#ifdef ENABLE_DECODE
9b5099b6 99 srd_log_loglevel_set(loglevel);
269528f5 100#endif
d52d8455 101
9b5099b6
JH
102 break;
103 }
104
f7951df4
JH
105 case 'V':
106 // Print version info
9fd5bb6e 107 fprintf(stdout, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
f7951df4 108 return 0;
d4384c6d
JH
109
110 case 'h':
111 case '?':
112 usage();
113 return 0;
f7951df4
JH
114 }
115 }
116
1d478458
JH
117 if (argc - optind > 1) {
118 fprintf(stderr, "Only one file can be openened.\n");
119 return 1;
120 } else if (argc - optind == 1)
121 open_file = argv[argc - 1];
122
6a6772b7 123 // Initialise libsigrok
f2242929 124 if (sr_init(&sr_ctx) != SR_OK) {
664fca5c
JH
125 qDebug() << "ERROR: libsigrok init failed.";
126 return 1;
127 }
128
d52d8455
JH
129 do {
130
269528f5 131#ifdef ENABLE_DECODE
d52d8455
JH
132 // Initialise libsigrokdecode
133 if (srd_init(NULL) != SRD_OK) {
134 qDebug() << "ERROR: libsigrokdecode init failed.";
135 break;
136 }
be03620e
JH
137
138 // Load the protocol decoders
139 srd_decoder_load_all();
269528f5 140#endif
be03620e 141
107ca6d3
JH
142 try {
143 // Create the device manager, initialise the drivers
144 pv::DeviceManager device_manager(sr_ctx);
664fca5c 145
be03620e 146 // Initialise the main window
107ca6d3 147 pv::MainWindow w(device_manager, open_file);
be03620e 148 w.show();
664fca5c 149
140181a4 150#ifdef ENABLE_SIGNALS
708605aa
JH
151 if(SignalHandler::prepare_signals()) {
152 SignalHandler *const handler =
7a255aa9 153 new SignalHandler(&w);
708605aa
JH
154 QObject::connect(handler,
155 SIGNAL(int_received()),
7a255aa9 156 &w, SLOT(close()));
708605aa
JH
157 QObject::connect(handler,
158 SIGNAL(term_received()),
7a255aa9
JH
159 &w, SLOT(close()));
160 } else {
161 qWarning() <<
162 "Could not prepare signal handler.";
163 }
140181a4 164#endif
7a255aa9 165
be03620e
JH
166 // Run the application
167 ret = a.exec();
107ca6d3
JH
168
169 } catch(std::exception e) {
170 qDebug() << e.what();
6fb67b27 171 }
6fb67b27 172
269528f5 173#ifdef ENABLE_DECODE
d52d8455 174 // Destroy libsigrokdecode
be03620e 175 srd_exit();
269528f5 176#endif
664fca5c 177
d52d8455 178 } while (0);
664fca5c 179
d52d8455 180 // Destroy libsigrok
f2242929
PS
181 if (sr_ctx)
182 sr_exit(sr_ctx);
664fca5c
JH
183
184 return ret;
d7bed479 185}