]> sigrok.org Git - pulseview.git/blame - main.cpp
main: Add signal handler for SIGINT
[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
21extern "C" {
22#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
31e6731d 23#include <signal.h>
664fca5c
JH
24#include <stdint.h>
25#include <libsigrok/libsigrok.h>
26}
27
f7951df4
JH
28#include <getopt.h>
29
d7bed479 30#include <QtGui/QApplication>
664fca5c 31#include <QDebug>
075fb499 32
51e77110 33#include "pv/mainwindow.h"
d7bed479 34
075fb499
AG
35#include "config.h"
36
d4384c6d
JH
37void usage()
38{
39 fprintf(stderr,
40 "Usage:\n"
41 " %s — %s\n"
42 "\n"
43 "Help Options:\n"
44 " -V, --version Show release version\n"
45 " -h, -?, --help Show help option\n"
46 "\n", PV_BIN_NAME, PV_DESCRIPTION);
47}
48
31e6731d
AG
49/*
50 * SIGINT handler (likely recieved Ctrl-C from terminal)
51 */
52void sigint(int param)
53{
54 (void) param;
55
56 qDebug("pv: Recieved SIGINT");
57
58 /* TODO: Handle SIGINT */
59}
60
d7bed479
JH
61int main(int argc, char *argv[])
62{
be03620e 63 int ret = 0;
f2242929
PS
64 struct sr_context *sr_ctx = NULL;
65
31e6731d
AG
66 // Register a SIGINT handler
67 signal (SIGINT, sigint);
68
d7bed479 69 QApplication a(argc, argv);
d7bed479 70
6a6772b7 71 // Set some application metadata
075fb499 72 QApplication::setApplicationVersion(PV_VERSION_STRING);
3623c8d3 73 QApplication::setApplicationName("PulseView");
640e5565
JH
74 QApplication::setOrganizationDomain("http://www.sigrok.org");
75
f7951df4
JH
76 // Parse arguments
77 while (1) {
78 static const struct option long_options[] = {
333d5bbc
UH
79 {"version", no_argument, 0, 'V'},
80 {"help", no_argument, 0, 'h'},
f7951df4
JH
81 {0, 0, 0, 0}
82 };
83
d4384c6d
JH
84 const char c = getopt_long(argc, argv,
85 "Vh?", long_options, NULL);
f7951df4
JH
86 if (c == -1)
87 break;
88
89 switch (c) {
90 case 'V':
91 // Print version info
92 fprintf(stderr, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
93 return 0;
d4384c6d
JH
94
95 case 'h':
96 case '?':
97 usage();
98 return 0;
f7951df4
JH
99 }
100 }
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
JH
126 // Initialise the main window
127 pv::MainWindow w;
128 w.show();
664fca5c 129
be03620e
JH
130 // Run the application
131 ret = a.exec();
6fb67b27 132 }
6fb67b27 133
be03620e
JH
134 // Destroy libsigrokdecode and libsigrok
135 srd_exit();
664fca5c 136
be03620e
JH
137 } else {
138 qDebug() << "ERROR: libsigrokdecode init failed.";
139 }
664fca5c 140
f2242929
PS
141 if (sr_ctx)
142 sr_exit(sr_ctx);
664fca5c
JH
143
144 return ret;
d7bed479 145}