]> sigrok.org Git - pulseview.git/blame - main.cpp
Random simplifications, cosmetics/whitespace/consistency fixes.
[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>
fe3a1c21 25#include <libsigrokcxx/libsigrokcxx.hpp>
664fca5c 26
f7951df4
JH
27#include <getopt.h>
28
664fca5c 29#include <QDebug>
075fb499 30
140181a4 31#ifdef ENABLE_SIGNALS
2acdb232 32#include "signalhandler.hpp"
140181a4
JH
33#endif
34
2acdb232
JH
35#include "pv/application.hpp"
36#include "pv/devicemanager.hpp"
37#include "pv/mainwindow.hpp"
9137928c 38#ifdef ANDROID
aff51746 39#include <libsigrokandroidutils/libsigrokandroidutils.h>
dddff2e7 40#include "android/assetreader.hpp"
2acdb232 41#include "android/loghandler.hpp"
9137928c 42#endif
d7bed479 43
075fb499
AG
44#include "config.h"
45
11a04e2a 46#ifdef _WIN32
11a04e2a 47#include <QtPlugin>
09f55d96
UH
48Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
49Q_IMPORT_PLUGIN(QSvgPlugin)
11a04e2a
UH
50#endif
51
6f925ba9
UH
52using std::exception;
53using std::shared_ptr;
54using std::string;
55
d4384c6d
JH
56void usage()
57{
9fd5bb6e 58 fprintf(stdout,
d4384c6d 59 "Usage:\n"
e3c79b07 60 " %s [OPTION…] — %s\n"
d4384c6d
JH
61 "\n"
62 "Help Options:\n"
d4384c6d 63 " -h, -?, --help Show help option\n"
aa90e86b
JH
64 "\n"
65 "Application Options:\n"
66 " -V, --version Show release version\n"
67 " -l, --loglevel Set libsigrok/libsigrokdecode loglevel\n"
e3c79b07
JH
68 " -i, --input-file Load input from file\n"
69 " -I, --input-format Input format\n"
d4384c6d
JH
70 "\n", PV_BIN_NAME, PV_DESCRIPTION);
71}
72
d7bed479
JH
73int main(int argc, char *argv[])
74{
be03620e 75 int ret = 0;
6f925ba9
UH
76 shared_ptr<sigrok::Context> context;
77 string open_file, open_file_format;
f2242929 78
dac1bb97 79 Application a(argc, argv);
640e5565 80
9137928c 81#ifdef ANDROID
aff51746 82 srau_init_environment();
9137928c 83 pv::AndroidLogHandler::install_callbacks();
dddff2e7 84 pv::AndroidAssetReader asset_reader;
9137928c
MC
85#endif
86
f7951df4 87 // Parse arguments
15a69e54 88 while (true) {
f7951df4 89 static const struct option long_options[] = {
f74015db
UH
90 {"help", no_argument, nullptr, 'h'},
91 {"version", no_argument, nullptr, 'V'},
92 {"loglevel", required_argument, nullptr, 'l'},
93 {"input-file", required_argument, nullptr, 'i'},
94 {"input-format", required_argument, nullptr, 'I'},
95 {nullptr, 0, nullptr, 0}
f7951df4
JH
96 };
97
815b3f26 98 const int c = getopt_long(argc, argv,
e3c79b07 99 "l:Vh?i:I:", long_options, nullptr);
f7951df4
JH
100 if (c == -1)
101 break;
102
103 switch (c) {
aa90e86b
JH
104 case 'h':
105 case '?':
106 usage();
107 return 0;
108
109 case 'V':
110 // Print version info
111 fprintf(stdout, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
112 return 0;
113
9b5099b6
JH
114 case 'l':
115 {
116 const int loglevel = atoi(optarg);
e8d00928 117 context->set_log_level(sigrok::LogLevel::get(loglevel));
269528f5
JH
118
119#ifdef ENABLE_DECODE
9b5099b6 120 srd_log_loglevel_set(loglevel);
269528f5 121#endif
d52d8455 122
9b5099b6
JH
123 break;
124 }
e3c79b07
JH
125
126 case 'i':
127 open_file = optarg;
128 break;
129
130 case 'I':
131 open_file_format = optarg;
132 break;
f7951df4
JH
133 }
134 }
135
3e5bc268 136 if (argc - optind > 1) {
39ccf9c3 137 fprintf(stderr, "Only one file can be opened.\n");
1d478458 138 return 1;
e3c79b07 139 }
1d478458 140
c063290a
UH
141 if (argc - optind == 1)
142 open_file = argv[argc - 1];
143
6a6772b7 144 // Initialise libsigrok
e8d00928 145 context = sigrok::Context::create();
dddff2e7
DE
146#ifdef ANDROID
147 context->set_resource_reader(&asset_reader);
148#endif
d52d8455
JH
149 do {
150
269528f5 151#ifdef ENABLE_DECODE
d52d8455 152 // Initialise libsigrokdecode
4c60462b 153 if (srd_init(nullptr) != SRD_OK) {
d52d8455
JH
154 qDebug() << "ERROR: libsigrokdecode init failed.";
155 break;
156 }
be03620e
JH
157
158 // Load the protocol decoders
159 srd_decoder_load_all();
269528f5 160#endif
be03620e 161
107ca6d3
JH
162 try {
163 // Create the device manager, initialise the drivers
e8d00928 164 pv::DeviceManager device_manager(context);
664fca5c 165
be03620e 166 // Initialise the main window
e3c79b07
JH
167 pv::MainWindow w(device_manager,
168 open_file, open_file_format);
be03620e 169 w.show();
664fca5c 170
140181a4 171#ifdef ENABLE_SIGNALS
f3290553 172 if (SignalHandler::prepare_signals()) {
708605aa 173 SignalHandler *const handler =
7a255aa9 174 new SignalHandler(&w);
708605aa
JH
175 QObject::connect(handler,
176 SIGNAL(int_received()),
7a255aa9 177 &w, SLOT(close()));
708605aa
JH
178 QObject::connect(handler,
179 SIGNAL(term_received()),
7a255aa9 180 &w, SLOT(close()));
360ab9be 181 } else {
7a255aa9
JH
182 qWarning() <<
183 "Could not prepare signal handler.";
184 }
140181a4 185#endif
7a255aa9 186
be03620e
JH
187 // Run the application
188 ret = a.exec();
107ca6d3 189
6f925ba9 190 } catch (exception e) {
107ca6d3 191 qDebug() << e.what();
6fb67b27 192 }
6fb67b27 193
269528f5 194#ifdef ENABLE_DECODE
d52d8455 195 // Destroy libsigrokdecode
be03620e 196 srd_exit();
269528f5 197#endif
664fca5c 198
15a69e54 199 } while (false);
664fca5c 200
664fca5c 201 return ret;
d7bed479 202}