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