]> git.tdb.fi Git - ext/subsurface.git/blobdiff - libdivecomputer.c
Update test dives
[ext/subsurface.git] / libdivecomputer.c
index 49c4f3695da6ca60bf3d42904d26c3f1b61e2588..b1c86c5ee8d378ad1852a88e7d396d88885b78a1 100644 (file)
@@ -1,37 +1,12 @@
 #include <stdio.h>
-#include <gtk/gtk.h>
+#include <pthread.h>
 
 #include "dive.h"
 #include "divelist.h"
 #include "display.h"
+#include "display-gtk.h"
 
-/* libdivecomputer */
-#include <device.h>
-#include <suunto.h>
-#include <reefnet.h>
-#include <uwatec.h>
-#include <oceanic.h>
-#include <mares.h>
-#include <hw.h>
-#include <cressi.h>
-#include <zeagle.h>
-#include <atomics.h>
-#include <utils.h>
-
-/* handling uemis Zurich SDA files */
-#include "uemis.h"
-
-/*
- * I'd love to do a while-loop here for pending events, but
- * that seems to screw up with the dive computer reading timing.
- *
- * I may need to spawn a new thread to do the computer
- * reading stuff..
- */
-static int run_gtk_mainloop(void)
-{
-       return gtk_main_iteration_do(0);
-}
+#include "libdivecomputer.h"
 
 static void error(const char *fmt, ...)
 {
@@ -47,14 +22,6 @@ static void error(const char *fmt, ...)
        g_error_free(error);
 }
 
-typedef struct device_data_t {
-       device_type_t type;
-       const char *name, *devname;
-       GtkWidget *progressbar;
-       device_devinfo_t devinfo;
-       device_clock_t clock;
-} device_data_t;
-
 static parser_status_t create_parser(device_data_t *devdata, parser_t **parser)
 {
        switch (devdata->type) {
@@ -103,7 +70,7 @@ static parser_status_t create_parser(device_data_t *devdata, parser_t **parser)
                return mares_nemo_parser_create(parser, devdata->devinfo.model);
 
        case DEVICE_TYPE_MARES_ICONHD:
-               return mares_iconhd_parser_create(parser);
+               return mares_iconhd_parser_create(parser, devdata->devinfo.model);
 
        case DEVICE_TYPE_HW_OSTC:
                return hw_ostc_parser_create(parser);
@@ -151,16 +118,47 @@ static int parse_gasmixes(struct dive *dive, parser_t *parser, int ngases)
        return PARSER_STATUS_SUCCESS;
 }
 
-void
-sample_cb(parser_sample_type_t type, parser_sample_value_t value, void *userdata)
+static void handle_event(struct dive *dive, struct sample *sample, parser_sample_value_t value)
 {
-       int i;
+       int type, time;
        static const char *events[] = {
                "none", "deco", "rbt", "ascent", "ceiling", "workload", "transmitter",
                "violation", "bookmark", "surface", "safety stop", "gaschange",
                "safety stop (voluntary)", "safety stop (mandatory)", "deepstop",
                "ceiling (safety stop)", "unknown", "divetime", "maxdepth",
-               "OLF", "PO2", "airtime", "rgbm", "heading", "tissue level warning"};
+               "OLF", "PO2", "airtime", "rgbm", "heading", "tissue level warning"
+       };
+       const int nr_events = sizeof(events) / sizeof(const char *);
+       const char *name;
+
+       /*
+        * Just ignore surface events.  They are pointless.  What "surface"
+        * means depends on the dive computer (and possibly even settings
+        * in the dive computer). It does *not* necessarily mean "depth 0",
+        * so don't even turn it into that.
+        */
+       if (value.event.type == SAMPLE_EVENT_SURFACE)
+               return;
+
+       /*
+        * Other evens might be more interesting, but for now we just print them out.
+        */
+       type = value.event.type;
+       name = "invalid event number";
+       if (type < nr_events)
+               name = events[type];
+
+       time = value.event.time;
+       if (sample)
+               time += sample->time.seconds;
+
+       add_event(dive, time, type, value.event.flags, value.event.value, name);
+}
+
+void
+sample_cb(parser_sample_type_t type, parser_sample_value_t value, void *userdata)
+{
+       int i;
        struct dive **divep = userdata;
        struct dive *dive = *divep;
        struct sample *sample;
@@ -188,8 +186,7 @@ sample_cb(parser_sample_type_t type, parser_sample_value_t value, void *userdata
                sample->temperature.mkelvin = (value.temperature + 273.15) * 1000 + 0.5;
                break;
        case SAMPLE_TYPE_EVENT:
-               printf("   <event type=\"%u\" time=\"%u\" flags=\"%u\" value=\"%u\">%s</event>\n",
-                       value.event.type, value.event.time, value.event.flags, value.event.value, events[value.event.type]);
+               handle_event(dive, sample, value);
                break;
        case SAMPLE_TYPE_RBT:
                printf("   <rbt>%u</rbt>\n", value.rbt);
@@ -219,6 +216,23 @@ static int parse_samples(struct dive **divep, parser_t *parser)
        return parser_samples_foreach(parser, sample_cb, divep);
 }
 
+/*
+ * Check if this dive already existed before the import
+ */
+static int find_dive(struct dive *dive, device_data_t *devdata)
+{
+       int i;
+
+       for (i = 0; i < dive_table.preexisting; i++) {
+               struct dive *old = dive_table.dives[i];
+
+               if (dive->when != old->when)
+                       continue;
+               return 1;
+       }
+       return 0;
+}
+
 static int dive_cb(const unsigned char *data, unsigned int size,
        const unsigned char *fingerprint, unsigned int fsize,
        void *userdata)
@@ -230,18 +244,15 @@ static int dive_cb(const unsigned char *data, unsigned int size,
        struct tm tm;
        struct dive *dive;
 
-       /* Christ, this is hacky */
-       run_gtk_mainloop();
-
        rc = create_parser(devdata, &parser);
        if (rc != PARSER_STATUS_SUCCESS) {
-               error("Unable to create parser for %s", devdata->name);
+               fprintf(stderr, "Unable to create parser for %s", devdata->name);
                return rc;
        }
 
        rc = parser_set_data(parser, data, size);
        if (rc != PARSER_STATUS_SUCCESS) {
-               error("Error registering the data.");
+               fprintf(stderr, "Error registering the data.");
                parser_destroy(parser);
                return rc;
        }
@@ -249,7 +260,7 @@ static int dive_cb(const unsigned char *data, unsigned int size,
        dive = alloc_dive();
        rc = parser_get_datetime(parser, &dt);
        if (rc != PARSER_STATUS_SUCCESS && rc != PARSER_STATUS_UNSUPPORTED) {
-               error("Error parsing the datetime.");
+               fprintf(stderr, "Error parsing the datetime.");
                parser_destroy (parser);
                return rc;
        }
@@ -267,7 +278,7 @@ static int dive_cb(const unsigned char *data, unsigned int size,
        unsigned int divetime = 0;
        rc = parser_get_field (parser, FIELD_TYPE_DIVETIME, 0, &divetime);
        if (rc != PARSER_STATUS_SUCCESS && rc != PARSER_STATUS_UNSUPPORTED) {
-               error("Error parsing the divetime.");
+               fprintf(stderr, "Error parsing the divetime.");
                parser_destroy(parser);
                return rc;
        }
@@ -278,7 +289,7 @@ static int dive_cb(const unsigned char *data, unsigned int size,
        double maxdepth = 0.0;
        rc = parser_get_field(parser, FIELD_TYPE_MAXDEPTH, 0, &maxdepth);
        if (rc != PARSER_STATUS_SUCCESS && rc != PARSER_STATUS_UNSUPPORTED) {
-               error("Error parsing the maxdepth.");
+               fprintf(stderr, "Error parsing the maxdepth.");
                parser_destroy(parser);
                return rc;
        }
@@ -289,14 +300,14 @@ static int dive_cb(const unsigned char *data, unsigned int size,
        unsigned int ngases = 0;
        rc = parser_get_field(parser, FIELD_TYPE_GASMIX_COUNT, 0, &ngases);
        if (rc != PARSER_STATUS_SUCCESS && rc != PARSER_STATUS_UNSUPPORTED) {
-               error("Error parsing the gas mix count.");
+               fprintf(stderr, "Error parsing the gas mix count.");
                parser_destroy(parser);
                return rc;
        }
 
        rc = parse_gasmixes(dive, parser, ngases);
        if (rc != PARSER_STATUS_SUCCESS) {
-               error("Error parsing the gas mix.");
+               fprintf(stderr, "Error parsing the gas mix.");
                parser_destroy(parser);
                return rc;
        }
@@ -304,13 +315,18 @@ static int dive_cb(const unsigned char *data, unsigned int size,
        // Initialize the sample data.
        rc = parse_samples(&dive, parser);
        if (rc != PARSER_STATUS_SUCCESS) {
-               error("Error parsing the samples.");
+               fprintf(stderr, "Error parsing the samples.");
                parser_destroy(parser);
                return rc;
        }
-       record_dive(dive);
 
        parser_destroy(parser);
+
+       /* If we already saw this dive, abort. */
+       if (find_dive(dive, devdata))
+               return 0;
+
+       record_dive(dive);
        return 1;
 }
 
@@ -393,23 +409,19 @@ static device_status_t device_open(const char *devname,
        }
 }
 
-static void
-event_cb(device_t *device, device_event_t event, const void *data, void *userdata)
+static void event_cb(device_t *device, device_event_t event, const void *data, void *userdata)
 {
-       const device_progress_t *progress = (device_progress_t *) data;
-       const device_devinfo_t *devinfo = (device_devinfo_t *) data;
-       const device_clock_t *clock = (device_clock_t *) data;
-       device_data_t *devdata = (device_data_t *) userdata;
-
-       /* Christ, this is hacky */
-       run_gtk_mainloop();
+       const device_progress_t *progress = data;
+       const device_devinfo_t *devinfo = data;
+       const device_clock_t *clock = data;
+       device_data_t *devdata = userdata;
 
        switch (event) {
        case DEVICE_EVENT_WAITING:
                printf("Event: waiting for user action\n");
                break;
        case DEVICE_EVENT_PROGRESS:
-               gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(devdata->progressbar),
+               update_progressbar(&devdata->progress,
                        (double) progress->current / (double) progress->maximum);
                break;
        case DEVICE_EVENT_DEVINFO:
@@ -429,52 +441,72 @@ event_cb(device_t *device, device_event_t event, const void *data, void *userdat
        }
 }
 
+static int import_thread_done = 0, import_thread_cancelled;
+
 static int
 cancel_cb(void *userdata)
 {
-       return run_gtk_mainloop();
+       return import_thread_cancelled;
 }
 
-static void do_import(device_data_t *data)
+static const char *do_libdivecomputer_import(device_data_t *data)
 {
        device_t *device = NULL;
        device_status_t rc;
 
-       if (data->type == DEVICE_TYPE_UEMIS) {
-               return uemis_import();
-       }
-
        rc = device_open(data->devname, data->type, &device);
-       if (rc != DEVICE_STATUS_SUCCESS) {
-               error("Unable to open %s (%s)", data->name, data->devname);
-               return;
-       }
+       if (rc != DEVICE_STATUS_SUCCESS)
+               return "Unable to open %s (%s)";
 
        // Register the event handler.
        int events = DEVICE_EVENT_WAITING | DEVICE_EVENT_PROGRESS | DEVICE_EVENT_DEVINFO | DEVICE_EVENT_CLOCK;
        rc = device_set_events(device, events, event_cb, data);
        if (rc != DEVICE_STATUS_SUCCESS) {
-               error("Error registering the event handler.");
                device_close(device);
-               return;
+               return "Error registering the event handler.";
        }
 
        // Register the cancellation handler.
        rc = device_set_cancel(device, cancel_cb, data);
        if (rc != DEVICE_STATUS_SUCCESS) {
-               error("Error registering the cancellation handler.");
                device_close(device);
-               return;
+               return "Error registering the cancellation handler.";
        }
 
        rc = import_device_data(device, data);
        if (rc != DEVICE_STATUS_SUCCESS) {
-               error("Dive data import error");
                device_close(device);
-               return;
+               return "Dive data import error";
        }
 
        device_close(device);
+       return NULL;
+}
+
+static void *pthread_wrapper(void *_data)
+{
+       device_data_t *data = _data;
+       const char *err_string = do_libdivecomputer_import(data);
+       import_thread_done = 1;
+       return (void *)err_string;
+}
+
+void do_import(device_data_t *data)
+{
+       pthread_t pthread;
+       void *retval;
+
+       /* I'm sure there is some better interface for waiting on a thread in a UI main loop */
+       import_thread_done = 0;
+       pthread_create(&pthread, NULL, pthread_wrapper, data);
+       while (!import_thread_done) {
+               import_thread_cancelled = process_ui_events();
+               usleep(100000);
+       }
+       if (pthread_join(pthread, &retval) < 0)
+               retval = "Odd pthread error return";
+       if (retval)
+               error(retval, data->name, data->devname);
 }
 
 /*
@@ -484,10 +516,7 @@ static void do_import(device_data_t *data)
  * libdivecomputer tell us what devices it supports,
  * rather than have the application have to know..
  */
-struct device_list {
-       const char *name;
-       device_type_t type;
-} device_list[] = {
+struct device_list device_list[] = {
        { "Suunto Solution",    DEVICE_TYPE_SUUNTO_SOLUTION },
        { "Suunto Eon",         DEVICE_TYPE_SUUNTO_EON },
        { "Suunto Vyper",       DEVICE_TYPE_SUUNTO_VYPER },
@@ -509,93 +538,5 @@ struct device_list {
        { "Cressi Edy",         DEVICE_TYPE_CRESSI_EDY },
        { "Zeagle N2iTiON 3",   DEVICE_TYPE_ZEAGLE_N2ITION3 },
        { "Atomics Cobalt",     DEVICE_TYPE_ATOMICS_COBALT },
-       { "Uemis Zurich SDA",   DEVICE_TYPE_UEMIS },
        { NULL }
 };
-
-static void fill_computer_list(GtkListStore *store)
-{
-       GtkTreeIter iter;
-       struct device_list *list = device_list;
-
-       for (list = device_list ; list->name ; list++) {
-               gtk_list_store_append(store, &iter);
-               gtk_list_store_set(store, &iter,
-                       0, list->name,
-                       1, list->type,
-                       -1);
-       }
-}
-
-static GtkComboBox *dive_computer_selector(GtkWidget *dialog)
-{
-       GtkWidget *hbox, *combo_box;
-       GtkListStore *model;
-       GtkCellRenderer *renderer;
-
-       hbox = gtk_hbox_new(FALSE, 6);
-       gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), hbox, FALSE, FALSE, 3);
-
-       model = gtk_list_store_new(2, G_TYPE_STRING, G_TYPE_INT);
-       fill_computer_list(model);
-
-       combo_box = gtk_combo_box_new_with_model(GTK_TREE_MODEL(model));
-       gtk_box_pack_start(GTK_BOX(hbox), combo_box, FALSE, TRUE, 3);
-
-       renderer = gtk_cell_renderer_text_new();
-       gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(combo_box), renderer, TRUE);
-       gtk_cell_layout_set_attributes(GTK_CELL_LAYOUT(combo_box), renderer, "text", 0, NULL);
-
-       return GTK_COMBO_BOX(combo_box);
-}
-
-void import_dialog(GtkWidget *w, gpointer data)
-{
-       int result;
-       GtkWidget *dialog, *hbox;
-       GtkComboBox *computer;
-       device_data_t devicedata = {
-               .devname = "/dev/ttyUSB0",
-       };
-
-       dialog = gtk_dialog_new_with_buttons("Import from dive computer",
-               GTK_WINDOW(main_window),
-               GTK_DIALOG_DESTROY_WITH_PARENT,
-               GTK_STOCK_OK, GTK_RESPONSE_ACCEPT,
-               GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
-               NULL);
-
-       computer = dive_computer_selector(dialog);
-
-       hbox = gtk_hbox_new(FALSE, 6);
-       gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog)->vbox), hbox, FALSE, TRUE, 3);
-       devicedata.progressbar = gtk_progress_bar_new();
-       gtk_container_add(GTK_CONTAINER(hbox), devicedata.progressbar);
-
-       gtk_widget_show_all(dialog);
-       result = gtk_dialog_run(GTK_DIALOG(dialog));
-       switch (result) {
-               int type;
-               GtkTreeIter iter;
-               GtkTreeModel *model;
-               const char *comp;
-       case GTK_RESPONSE_ACCEPT:
-               if (!gtk_combo_box_get_active_iter(computer, &iter))
-                       break;
-               model = gtk_combo_box_get_model(computer);
-               gtk_tree_model_get(model, &iter,
-                       0, &comp,
-                       1, &type,
-                       -1);
-               devicedata.type = type;
-               devicedata.name = comp;
-               do_import(&devicedata);
-               break;
-       default:
-               break;
-       }
-       gtk_widget_destroy(dialog);
-
-       report_dives();
-       dive_list_update_dives(dive_list);
-}