]> sigrok.org Git - pulseview.git/blob - main.cpp
Change main() to have only one exit code flow, used also on errors
[pulseview.git] / main.cpp
1 /*
2  * This file is part of the PulseView project.
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
21 extern "C" {
22 #include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
23 #include <stdint.h>
24 #include <libsigrok/libsigrok.h>
25 }
26
27 #include <getopt.h>
28
29 #include <QtGui/QApplication>
30 #include <QDebug>
31
32 #include "pv/mainwindow.h"
33
34 #include "config.h"
35
36 void usage()
37 {
38         fprintf(stderr,
39                 "Usage:\n"
40                 "  %s — %s\n"
41                 "\n"
42                 "Help Options:\n"
43                 "  -V, --version                   Show release version\n"
44                 "  -h, -?, --help                  Show help option\n"
45                 "\n", PV_BIN_NAME, PV_DESCRIPTION);
46 }
47
48 int main(int argc, char *argv[])
49 {
50         int ret = 0;
51         QApplication a(argc, argv);
52
53         // Set some application metadata
54         QApplication::setApplicationVersion(PV_VERSION_STRING);
55         QApplication::setApplicationName("PulseView");
56         QApplication::setOrganizationDomain("http://www.sigrok.org");
57
58         // Parse arguments
59         while (1) {
60                 static const struct option long_options[] = {
61                         {"version", no_argument, 0,  'V'},
62                         {"help", no_argument, 0,  'h'},
63                         {0, 0, 0, 0}
64                 };
65
66                 const char c = getopt_long(argc, argv,
67                         "Vh?", long_options, NULL);
68                 if (c == -1)
69                         break;
70
71                 switch (c) {
72                 case 'V':
73                         // Print version info
74                         fprintf(stderr, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
75                         return 0;
76
77                 case 'h':
78                 case '?':
79                         usage();
80                         return 0;
81                 }
82         }
83
84         // Initialise libsigrok
85         if (sr_init() != SR_OK) {
86                 qDebug() << "ERROR: libsigrok init failed.";
87                 return 1;
88         }
89
90         // Initialise libsigrokdecode
91         if (srd_init(NULL) == SRD_OK) {
92
93                 // Load the protocol decoders
94                 srd_decoder_load_all();
95
96                 // Initialize all libsigrok drivers
97                 sr_dev_driver **const drivers = sr_driver_list();
98                 for (sr_dev_driver **driver = drivers; *driver; driver++) {
99                         if (sr_driver_init(*driver) != SR_OK) {
100                                 qDebug("Failed to initialize driver %s",
101                                         (*driver)->name);
102                                 ret = 1;
103                                 break;
104                         }
105                 }
106
107                 if(ret == 0) {
108                         // Initialise the main window
109                         pv::MainWindow w;
110                         w.show();
111
112                         // Run the application
113                         ret = a.exec();
114                 }
115
116                 // Destroy libsigrokdecode and libsigrok
117                 srd_exit();
118
119         } else {
120                 qDebug() << "ERROR: libsigrokdecode init failed.";
121         }
122
123         sr_exit();
124
125         return ret;
126 }