]> sigrok.org Git - pulseview.git/blobdiff - main.cpp
Added --version option
[pulseview.git] / main.cpp
index d15cff89ee61ed852be33065e764be35e5253366..a94f64c67b07b60b45cf2b96b5cb1fc264fbf8c6 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -24,35 +24,59 @@ extern "C" {
 #include <libsigrok/libsigrok.h>
 }
 
+#include <getopt.h>
+
 #include <QtGui/QApplication>
 #include <QDebug>
-#include "mainwindow.h"
+
+#include "pv/mainwindow.h"
+
+#include "config.h"
 
 int main(int argc, char *argv[])
 {
        QApplication a(argc, argv);
 
-       /* Set some application metadata. */
-       QApplication::setApplicationVersion(APP_VERSION);
+       // Set some application metadata
+       QApplication::setApplicationVersion(PV_VERSION_STRING);
        QApplication::setApplicationName("PulseView");
        QApplication::setOrganizationDomain("http://www.sigrok.org");
 
-       /* Initialise libsigrok */
+       // Parse arguments
+       while (1) {
+               static const struct option long_options[] = {
+                       {"version", no_argument, 0,  'V'},
+                       {0, 0, 0, 0}
+               };
+
+               const char c = getopt_long(argc, argv, "V", long_options, NULL);
+               if (c == -1)
+                       break;
+
+               switch (c) {
+               case 'V':
+                       // Print version info
+                       fprintf(stderr, "%s %s\n", PV_TITLE, PV_VERSION_STRING);
+                       return 0;
+               }
+       }
+
+       // Initialise libsigrok
        if (sr_init() != SR_OK) {
                qDebug() << "ERROR: libsigrok init failed.";
                return 1;
        }
 
-       /* Initialise libsigrokdecode */
+       // Initialise libsigrokdecode
        if (srd_init(NULL) != SRD_OK) {
                qDebug() << "ERROR: libsigrokdecode init failed.";
                return 1;
        }
 
-       /* Load the protocol decoders */
+       // Load the protocol decoders
        srd_decoder_load_all();
 
-       /* Initialize all libsigrok drivers. */
+       // Initialize all libsigrok drivers
        sr_dev_driver **const drivers = sr_driver_list();
        for (sr_dev_driver **driver = drivers; *driver; driver++) {
                if (sr_driver_init(*driver) != SR_OK) {
@@ -62,14 +86,14 @@ int main(int argc, char *argv[])
                }
        }
 
-       /* Initialise the main window */
-       MainWindow w;
+       // Initialise the main window
+       pv::MainWindow w;
        w.show();
 
-       /* Run the application */
+       // Run the application
        const int ret = a.exec();
 
-       /* Destroy libsigrokdecode and libsigrok */
+       // Destroy libsigrokdecode and libsigrok
        srd_exit();
        sr_exit();