]> sigrok.org Git - pulseview.git/blame - main.cpp
Use min/max notification for autoranging of analog signals
[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>
0bd39c0c 30#include <QSettings>
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"
419ec4e1 39#include "pv/session.hpp"
9137928c 40#ifdef ANDROID
aff51746 41#include <libsigrokandroidutils/libsigrokandroidutils.h>
dddff2e7 42#include "android/assetreader.hpp"
2acdb232 43#include "android/loghandler.hpp"
9137928c 44#endif
d7bed479 45
075fb499
AG
46#include "config.h"
47
11a04e2a 48#ifdef _WIN32
11a04e2a 49#include <QtPlugin>
09f55d96
UH
50Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
51Q_IMPORT_PLUGIN(QSvgPlugin)
11a04e2a
UH
52#endif
53
6f925ba9
UH
54using std::exception;
55using std::shared_ptr;
56using std::string;
57
d4384c6d
JH
58void usage()
59{
9fd5bb6e 60 fprintf(stdout,
d4384c6d 61 "Usage:\n"
41e2ade4 62 " %s [OPTIONS] [FILE]\n"
d4384c6d
JH
63 "\n"
64 "Help Options:\n"
d4384c6d 65 " -h, -?, --help Show help option\n"
aa90e86b
JH
66 "\n"
67 "Application Options:\n"
68 " -V, --version Show release version\n"
69 " -l, --loglevel Set libsigrok/libsigrokdecode loglevel\n"
58d8e4c6 70 " -d, --driver Specify the device driver to use\n"
e3c79b07
JH
71 " -i, --input-file Load input from file\n"
72 " -I, --input-format Input format\n"
156f06e9 73 " -c, --clean Don't restore previous sessions on startup\n"
41e2ade4 74 "\n", PV_BIN_NAME);
d4384c6d
JH
75}
76
d7bed479
JH
77int main(int argc, char *argv[])
78{
be03620e 79 int ret = 0;
6f925ba9 80 shared_ptr<sigrok::Context> context;
58d8e4c6 81 string open_file, open_file_format, driver;
156f06e9 82 bool restore_sessions = true;
f2242929 83
dac1bb97 84 Application a(argc, argv);
640e5565 85
9137928c 86#ifdef ANDROID
aff51746 87 srau_init_environment();
9137928c 88 pv::AndroidLogHandler::install_callbacks();
dddff2e7 89 pv::AndroidAssetReader asset_reader;
9137928c
MC
90#endif
91
f7951df4 92 // Parse arguments
15a69e54 93 while (true) {
f7951df4 94 static const struct option long_options[] = {
f74015db
UH
95 {"help", no_argument, nullptr, 'h'},
96 {"version", no_argument, nullptr, 'V'},
97 {"loglevel", required_argument, nullptr, 'l'},
58d8e4c6 98 {"driver", required_argument, nullptr, 'd'},
f74015db
UH
99 {"input-file", required_argument, nullptr, 'i'},
100 {"input-format", required_argument, nullptr, 'I'},
156f06e9 101 {"clean", no_argument, nullptr, 'c'},
f74015db 102 {nullptr, 0, nullptr, 0}
f7951df4
JH
103 };
104
815b3f26 105 const int c = getopt_long(argc, argv,
58d8e4c6 106 "l:Vhc?d:i:I:", long_options, nullptr);
f7951df4
JH
107 if (c == -1)
108 break;
109
110 switch (c) {
aa90e86b
JH
111 case 'h':
112 case '?':
113 usage();
114 return 0;
115
116 case 'V':
117 // Print version info
118 fprintf(stdout, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
119 return 0;
120
9b5099b6
JH
121 case 'l':
122 {
123 const int loglevel = atoi(optarg);
e8d00928 124 context->set_log_level(sigrok::LogLevel::get(loglevel));
269528f5
JH
125
126#ifdef ENABLE_DECODE
9b5099b6 127 srd_log_loglevel_set(loglevel);
269528f5 128#endif
d52d8455 129
0bd39c0c
UH
130 if (loglevel >= 5) {
131 const QSettings settings;
132 qDebug() << "Settings:" << settings.fileName()
133 << "format" << settings.format();
134 }
9b5099b6
JH
135 break;
136 }
e3c79b07 137
58d8e4c6
GS
138 case 'd':
139 driver = optarg;
140 break;
141
e3c79b07
JH
142 case 'i':
143 open_file = optarg;
144 break;
145
146 case 'I':
147 open_file_format = optarg;
148 break;
156f06e9
SA
149
150 case 'c':
151 restore_sessions = false;
152 break;
f7951df4
JH
153 }
154 }
155
3e5bc268 156 if (argc - optind > 1) {
39ccf9c3 157 fprintf(stderr, "Only one file can be opened.\n");
1d478458 158 return 1;
e3c79b07 159 }
1d478458 160
c063290a
UH
161 if (argc - optind == 1)
162 open_file = argv[argc - 1];
163
6a6772b7 164 // Initialise libsigrok
e8d00928 165 context = sigrok::Context::create();
419ec4e1
SA
166 pv::Session::sr_context = context;
167
dddff2e7
DE
168#ifdef ANDROID
169 context->set_resource_reader(&asset_reader);
170#endif
d52d8455
JH
171 do {
172
269528f5 173#ifdef ENABLE_DECODE
d52d8455 174 // Initialise libsigrokdecode
4c60462b 175 if (srd_init(nullptr) != SRD_OK) {
d52d8455
JH
176 qDebug() << "ERROR: libsigrokdecode init failed.";
177 break;
178 }
be03620e
JH
179
180 // Load the protocol decoders
181 srd_decoder_load_all();
269528f5 182#endif
be03620e 183
107ca6d3
JH
184 try {
185 // Create the device manager, initialise the drivers
58d8e4c6 186 pv::DeviceManager device_manager(context, driver);
664fca5c 187
be03620e 188 // Initialise the main window
3ed18835 189 pv::MainWindow w(device_manager);
be03620e 190 w.show();
664fca5c 191
3ed18835
SA
192 if (restore_sessions)
193 w.restore_sessions();
194
195 if (!open_file.empty())
196 w.add_session_with_file(open_file, open_file_format);
197 else
198 w.add_default_session();
199
140181a4 200#ifdef ENABLE_SIGNALS
f3290553 201 if (SignalHandler::prepare_signals()) {
708605aa 202 SignalHandler *const handler =
7a255aa9 203 new SignalHandler(&w);
708605aa
JH
204 QObject::connect(handler,
205 SIGNAL(int_received()),
7a255aa9 206 &w, SLOT(close()));
708605aa
JH
207 QObject::connect(handler,
208 SIGNAL(term_received()),
7a255aa9 209 &w, SLOT(close()));
360ab9be 210 } else {
7a255aa9
JH
211 qWarning() <<
212 "Could not prepare signal handler.";
213 }
140181a4 214#endif
7a255aa9 215
be03620e
JH
216 // Run the application
217 ret = a.exec();
107ca6d3 218
6f925ba9 219 } catch (exception e) {
107ca6d3 220 qDebug() << e.what();
6fb67b27 221 }
6fb67b27 222
269528f5 223#ifdef ENABLE_DECODE
d52d8455 224 // Destroy libsigrokdecode
be03620e 225 srd_exit();
269528f5 226#endif
664fca5c 227
15a69e54 228 } while (false);
664fca5c 229
664fca5c 230 return ret;
d7bed479 231}