]> sigrok.org Git - pulseview.git/blame - main.cpp
Replaced NULL with nullptr
[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 25#include <stdint.h>
fe3a1c21 26#include <libsigrokcxx/libsigrokcxx.hpp>
664fca5c 27
f7951df4
JH
28#include <getopt.h>
29
664fca5c 30#include <QDebug>
075fb499 31
140181a4 32#ifdef ENABLE_SIGNALS
2acdb232 33#include "signalhandler.hpp"
140181a4
JH
34#endif
35
2acdb232
JH
36#include "pv/application.hpp"
37#include "pv/devicemanager.hpp"
38#include "pv/mainwindow.hpp"
9137928c 39#ifdef ANDROID
aff51746 40#include <libsigrokandroidutils/libsigrokandroidutils.h>
2acdb232 41#include "android/loghandler.hpp"
9137928c 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"
d4384c6d 59 " -h, -?, --help Show help option\n"
aa90e86b
JH
60 "\n"
61 "Application Options:\n"
62 " -V, --version Show release version\n"
63 " -l, --loglevel Set libsigrok/libsigrokdecode loglevel\n"
d4384c6d
JH
64 "\n", PV_BIN_NAME, PV_DESCRIPTION);
65}
66
d7bed479
JH
67int main(int argc, char *argv[])
68{
be03620e 69 int ret = 0;
e8d00928 70 std::shared_ptr<sigrok::Context> context;
1d478458 71 const char *open_file = NULL;
f2242929 72
dac1bb97 73 Application a(argc, argv);
640e5565 74
9137928c 75#ifdef ANDROID
aff51746 76 srau_init_environment();
9137928c
MC
77 pv::AndroidLogHandler::install_callbacks();
78#endif
79
f7951df4
JH
80 // Parse arguments
81 while (1) {
82 static const struct option long_options[] = {
333d5bbc 83 {"help", no_argument, 0, 'h'},
aa90e86b
JH
84 {"version", no_argument, 0, 'V'},
85 {"loglevel", required_argument, 0, 'l'},
f7951df4
JH
86 {0, 0, 0, 0}
87 };
88
815b3f26 89 const int c = getopt_long(argc, argv,
4c60462b 90 "l:Vh?", long_options, nullptr);
f7951df4
JH
91 if (c == -1)
92 break;
93
94 switch (c) {
aa90e86b
JH
95 case 'h':
96 case '?':
97 usage();
98 return 0;
99
100 case 'V':
101 // Print version info
102 fprintf(stdout, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
103 return 0;
104
9b5099b6
JH
105 case 'l':
106 {
107 const int loglevel = atoi(optarg);
e8d00928 108 context->set_log_level(sigrok::LogLevel::get(loglevel));
269528f5
JH
109
110#ifdef ENABLE_DECODE
9b5099b6 111 srd_log_loglevel_set(loglevel);
269528f5 112#endif
d52d8455 113
9b5099b6
JH
114 break;
115 }
f7951df4
JH
116 }
117 }
118
1d478458
JH
119 if (argc - optind > 1) {
120 fprintf(stderr, "Only one file can be openened.\n");
121 return 1;
122 } else if (argc - optind == 1)
123 open_file = argv[argc - 1];
124
6a6772b7 125 // Initialise libsigrok
e8d00928 126 context = sigrok::Context::create();
664fca5c 127
d52d8455
JH
128 do {
129
269528f5 130#ifdef ENABLE_DECODE
d52d8455 131 // Initialise libsigrokdecode
4c60462b 132 if (srd_init(nullptr) != SRD_OK) {
d52d8455
JH
133 qDebug() << "ERROR: libsigrokdecode init failed.";
134 break;
135 }
be03620e
JH
136
137 // Load the protocol decoders
138 srd_decoder_load_all();
269528f5 139#endif
be03620e 140
107ca6d3
JH
141 try {
142 // Create the device manager, initialise the drivers
e8d00928 143 pv::DeviceManager device_manager(context);
664fca5c 144
be03620e 145 // Initialise the main window
107ca6d3 146 pv::MainWindow w(device_manager, open_file);
be03620e 147 w.show();
664fca5c 148
140181a4 149#ifdef ENABLE_SIGNALS
708605aa
JH
150 if(SignalHandler::prepare_signals()) {
151 SignalHandler *const handler =
7a255aa9 152 new SignalHandler(&w);
708605aa
JH
153 QObject::connect(handler,
154 SIGNAL(int_received()),
7a255aa9 155 &w, SLOT(close()));
708605aa
JH
156 QObject::connect(handler,
157 SIGNAL(term_received()),
7a255aa9 158 &w, SLOT(close()));
360ab9be 159 } else {
7a255aa9
JH
160 qWarning() <<
161 "Could not prepare signal handler.";
162 }
140181a4 163#endif
7a255aa9 164
be03620e
JH
165 // Run the application
166 ret = a.exec();
107ca6d3
JH
167
168 } catch(std::exception e) {
169 qDebug() << e.what();
6fb67b27 170 }
6fb67b27 171
269528f5 172#ifdef ENABLE_DECODE
d52d8455 173 // Destroy libsigrokdecode
be03620e 174 srd_exit();
269528f5 175#endif
664fca5c 176
d52d8455 177 } while (0);
664fca5c 178
664fca5c 179 return ret;
d7bed479 180}