X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=main.cpp;h=07cfa2facfb9eefce062c243ad4f6d7ead0a417b;hp=715dc526c2f07fce90eb9d111cf253acf57dc09a;hb=e563a7c0fd19cc3fd4ef114cf58dff249a33255f;hpb=140181a46034cf65739ba4bf0bf1260ab94ac736 diff --git a/main.cpp b/main.cpp index 715dc526..07cfa2fa 100644 --- a/main.cpp +++ b/main.cpp @@ -18,9 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifdef ENABLE_SIGROKDECODE -#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ -#endif +#include /* First, so we avoid a _POSIX_C_SOURCE warning. */ #include #include @@ -34,6 +32,7 @@ #include "signalhandler.h" #endif +#include "pv/devicemanager.h" #include "pv/mainwindow.h" #include "config.h" @@ -83,10 +82,7 @@ int main(int argc, char *argv[]) { const int loglevel = atoi(optarg); sr_log_loglevel_set(loglevel); - -#ifdef ENABLE_SIGROKDECODE srd_log_loglevel_set(loglevel); -#endif break; } @@ -117,7 +113,6 @@ int main(int argc, char *argv[]) do { -#ifdef ENABLE_SIGROKDECODE // Initialise libsigrokdecode if (srd_init(NULL) != SRD_OK) { qDebug() << "ERROR: libsigrokdecode init failed."; @@ -126,22 +121,13 @@ int main(int argc, char *argv[]) // Load the protocol decoders srd_decoder_load_all(); -#endif - // 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; - } - } + try { + // Create the device manager, initialise the drivers + pv::DeviceManager device_manager(sr_ctx); - if (ret == 0) { // Initialise the main window - pv::MainWindow w(open_file); + pv::MainWindow w(device_manager, open_file); w.show(); #ifdef ENABLE_SIGNALS @@ -162,12 +148,13 @@ int main(int argc, char *argv[]) // Run the application ret = a.exec(); + + } catch(std::exception e) { + qDebug() << e.what(); } -#ifdef ENABLE_SIGROKDECODE // Destroy libsigrokdecode srd_exit(); -#endif } while (0);