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