X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=main.cpp;h=f4506787364fa11ea01286cf2e569ffed5587c15;hp=d15cff89ee61ed852be33065e764be35e5253366;hb=497a5b8b11a300f5851d0eabe06f62b2905fcfe1;hpb=b3f22de060b73f15ad3eb2dabee04a0b4f5d947e diff --git a/main.cpp b/main.cpp index d15cff89..f4506787 100644 --- a/main.cpp +++ b/main.cpp @@ -24,54 +24,106 @@ extern "C" { #include } +#include + #include #include -#include "mainwindow.h" + +#include "pv/mainwindow.h" + +#include "config.h" + +void usage() +{ + fprintf(stderr, + "Usage:\n" + " %s — %s\n" + "\n" + "Help Options:\n" + " -V, --version Show release version\n" + " -h, -?, --help Show help option\n" + "\n", PV_BIN_NAME, PV_DESCRIPTION); +} int main(int argc, char *argv[]) { + int ret = 0; + struct sr_context *sr_ctx = NULL; + 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 */ - if (sr_init() != SR_OK) { - qDebug() << "ERROR: libsigrok init failed."; - return 1; + // Parse arguments + while (1) { + static const struct option long_options[] = { + {"version", no_argument, 0, 'V'}, + {"help", no_argument, 0, 'h'}, + {0, 0, 0, 0} + }; + + const char c = getopt_long(argc, argv, + "Vh?", 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; + + case 'h': + case '?': + usage(); + return 0; + } } - /* Initialise libsigrokdecode */ - if (srd_init(NULL) != SRD_OK) { - qDebug() << "ERROR: libsigrokdecode init failed."; + // Initialise libsigrok + if (sr_init(&sr_ctx) != SR_OK) { + qDebug() << "ERROR: libsigrok init failed."; return 1; } - /* Load the protocol decoders */ - srd_decoder_load_all(); + // Initialise libsigrokdecode + if (srd_init(NULL) == SRD_OK) { + + // Load the protocol decoders + srd_decoder_load_all(); - /* 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) { - qDebug("Failed to initialize driver %s", - (*driver)->name); - return 1; + // Initialize all libsigrok drivers + sr_dev_driver **const drivers = sr_driver_list(); + for (sr_dev_driver **driver = drivers; *driver; driver++) { + if (sr_driver_init(sr_ctx, *driver) != SR_OK) { + qDebug("Failed to initialize driver %s", + (*driver)->name); + ret = 1; + break; + } } - } - /* Initialise the main window */ - MainWindow w; - w.show(); + if (ret == 0) { + // Initialise the main window + pv::MainWindow w; + w.show(); - /* Run the application */ - const int ret = a.exec(); + // Run the application + ret = a.exec(); + } + + // Destroy libsigrokdecode and libsigrok + srd_exit(); + + } else { + qDebug() << "ERROR: libsigrokdecode init failed."; + } - /* Destroy libsigrokdecode and libsigrok */ - srd_exit(); - sr_exit(); + if (sr_ctx) + sr_exit(sr_ctx); return ret; }