]> sigrok.org Git - pulseview.git/blame - main.cpp
Ported pv::prop::binding::DeviceOptions to GVariants
[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
664fca5c
JH
21#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
22#include <stdint.h>
23#include <libsigrok/libsigrok.h>
664fca5c 24
f7951df4
JH
25#include <getopt.h>
26
d7bed479 27#include <QtGui/QApplication>
664fca5c 28#include <QDebug>
075fb499 29
7a255aa9 30#include "signalhandler.h"
51e77110 31#include "pv/mainwindow.h"
d7bed479 32
075fb499
AG
33#include "config.h"
34
d4384c6d
JH
35void usage()
36{
9fd5bb6e 37 fprintf(stdout,
d4384c6d 38 "Usage:\n"
1d478458 39 " %s [OPTION…] [FILE] — %s\n"
d4384c6d
JH
40 "\n"
41 "Help Options:\n"
9b5099b6 42 " -l, --loglevel Set libsigrok/libsigrokdecode loglevel\n"
d4384c6d
JH
43 " -V, --version Show release version\n"
44 " -h, -?, --help Show help option\n"
45 "\n", PV_BIN_NAME, PV_DESCRIPTION);
46}
47
d7bed479
JH
48int main(int argc, char *argv[])
49{
be03620e 50 int ret = 0;
f2242929 51 struct sr_context *sr_ctx = NULL;
1d478458 52 const char *open_file = NULL;
f2242929 53
d7bed479 54 QApplication a(argc, argv);
d7bed479 55
6a6772b7 56 // Set some application metadata
075fb499 57 QApplication::setApplicationVersion(PV_VERSION_STRING);
3623c8d3 58 QApplication::setApplicationName("PulseView");
640e5565
JH
59 QApplication::setOrganizationDomain("http://www.sigrok.org");
60
f7951df4
JH
61 // Parse arguments
62 while (1) {
63 static const struct option long_options[] = {
9b5099b6 64 {"loglevel", required_argument, 0, 'l'},
333d5bbc
UH
65 {"version", no_argument, 0, 'V'},
66 {"help", no_argument, 0, 'h'},
f7951df4
JH
67 {0, 0, 0, 0}
68 };
69
815b3f26 70 const int c = getopt_long(argc, argv,
9b5099b6 71 "l:Vh?", long_options, NULL);
f7951df4
JH
72 if (c == -1)
73 break;
74
75 switch (c) {
9b5099b6
JH
76 case 'l':
77 {
78 const int loglevel = atoi(optarg);
79 sr_log_loglevel_set(loglevel);
80 srd_log_loglevel_set(loglevel);
81 break;
82 }
83
f7951df4
JH
84 case 'V':
85 // Print version info
9fd5bb6e 86 fprintf(stdout, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
f7951df4 87 return 0;
d4384c6d
JH
88
89 case 'h':
90 case '?':
91 usage();
92 return 0;
f7951df4
JH
93 }
94 }
95
1d478458
JH
96 if (argc - optind > 1) {
97 fprintf(stderr, "Only one file can be openened.\n");
98 return 1;
99 } else if (argc - optind == 1)
100 open_file = argv[argc - 1];
101
6a6772b7 102 // Initialise libsigrok
f2242929 103 if (sr_init(&sr_ctx) != SR_OK) {
664fca5c
JH
104 qDebug() << "ERROR: libsigrok init failed.";
105 return 1;
106 }
107
6a6772b7 108 // Initialise libsigrokdecode
be03620e
JH
109 if (srd_init(NULL) == SRD_OK) {
110
111 // Load the protocol decoders
112 srd_decoder_load_all();
113
114 // Initialize all libsigrok drivers
115 sr_dev_driver **const drivers = sr_driver_list();
116 for (sr_dev_driver **driver = drivers; *driver; driver++) {
24ea28e7 117 if (sr_driver_init(sr_ctx, *driver) != SR_OK) {
be03620e
JH
118 qDebug("Failed to initialize driver %s",
119 (*driver)->name);
120 ret = 1;
121 break;
122 }
123 }
664fca5c 124
333d5bbc 125 if (ret == 0) {
be03620e 126 // Initialise the main window
1d478458 127 pv::MainWindow w(open_file);
be03620e 128 w.show();
664fca5c 129
708605aa
JH
130 if(SignalHandler::prepare_signals()) {
131 SignalHandler *const handler =
7a255aa9 132 new SignalHandler(&w);
708605aa
JH
133 QObject::connect(handler,
134 SIGNAL(int_received()),
7a255aa9 135 &w, SLOT(close()));
708605aa
JH
136 QObject::connect(handler,
137 SIGNAL(term_received()),
7a255aa9
JH
138 &w, SLOT(close()));
139 } else {
140 qWarning() <<
141 "Could not prepare signal handler.";
142 }
143
be03620e
JH
144 // Run the application
145 ret = a.exec();
6fb67b27 146 }
6fb67b27 147
be03620e
JH
148 // Destroy libsigrokdecode and libsigrok
149 srd_exit();
664fca5c 150
be03620e
JH
151 } else {
152 qDebug() << "ERROR: libsigrokdecode init failed.";
153 }
664fca5c 154
f2242929
PS
155 if (sr_ctx)
156 sr_exit(sr_ctx);
664fca5c
JH
157
158 return ret;
d7bed479 159}