]> sigrok.org Git - pulseview.git/blobdiff - main.cpp
Generate a config.h file for versioning
[pulseview.git] / main.cpp
index af81536712484a82ae8118a7628f14defcd9cdf3..661c84a6d23c0ea40d128a52fe8584608f624fd7 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the PulseView project.
  *
  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
  *
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+extern "C" {
+#include <sigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
+#include <stdint.h>
+#include <libsigrok/libsigrok.h>
+}
+
 #include <QtGui/QApplication>
-#include "mainwindow.h"
+#include <QDebug>
+
+#include "pv/mainwindow.h"
+
+#include "config.h"
 
 int main(int argc, char *argv[])
 {
        QApplication a(argc, argv);
-       MainWindow w;
+
+       /* 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;
+       }
+
+       /* Initialise libsigrokdecode */
+       if (srd_init(NULL) != SRD_OK) {
+               qDebug() << "ERROR: libsigrokdecode init failed.";
+               return 1;
+       }
+
+       /* 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;
+               }
+       }
+
+       /* Initialise the main window */
+       pv::MainWindow w;
        w.show();
 
-       return a.exec();
+       /* Run the application */
+       const int ret = a.exec();
+
+       /* Destroy libsigrokdecode and libsigrok */
+       srd_exit();
+       sr_exit();
+
+       return ret;
 }