summaryrefslogtreecommitdiffstats
path: root/uemis-downloader.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2015-09-19 21:09:58 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-09-19 21:30:33 -0700
commite4d2092f339008b2a0180e57501e85683f20aba0 (patch)
tree0b18b46846523f40b79cdaa30a85aff805baf464 /uemis-downloader.c
parentad0806406b724b4d0007698e4cca208d90cf650f (diff)
downloadsubsurface-e4d2092f339008b2a0180e57501e85683f20aba0.tar.gz
Uemis downloader: start downloading using the correct dive ID
The logic to pick the initial dive ID for the uemis downloader was very confused, and did not work at all when restarting a download when the Uemis filled up, and the "Force download all dives" flag was set. It also required a rather odd Uemis-specific callback from the download UI because of how it picked the initial ID. This changes the logic to just look at the list of downloaded dives when restarting, which simplifies the logic a lot, gets rid of the odd special callback, and also means that the whole "Force download" issue just goes away. It seems to work now. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'uemis-downloader.c')
-rw-r--r--uemis-downloader.c40
1 files changed, 22 insertions, 18 deletions
diff --git a/uemis-downloader.c b/uemis-downloader.c
index 70cc3f78d..3b8ddf900 100644
--- a/uemis-downloader.c
+++ b/uemis-downloader.c
@@ -928,23 +928,32 @@ static bool process_raw_buffer(device_data_t *devdata, uint32_t deviceid, char *
return true;
}
-static int max_diveid_from_dialog;
-
-void uemis_set_max_diveid_from_dialog(int diveid)
-{
- max_diveid_from_dialog = diveid;
-}
-
-static char *uemis_get_divenr(char *deviceidstr)
+static char *uemis_get_divenr(char *deviceidstr, int force)
{
uint32_t deviceid, maxdiveid = 0;
int i;
char divenr[10];
-
+ struct dive_table *table;
deviceid = atoi(deviceidstr);
- struct dive *d;
- for_each_dive (i, d) {
+
+ /*
+ * If we are are retrying after a disconnect/reconnect, we
+ * will look up the highest dive number in the dives we
+ * already have.
+ *
+ * Also, if "force_download" is true, do this even if we
+ * don't have any dives (maxdiveid will remain zero)
+ */
+ if (force || downloadTable.nr)
+ table = &downloadTable;
+ else
+ table = &dive_table;
+
+ for (i = 0; i < table->nr; i++) {
+ struct dive *d = table->dives[i];
struct divecomputer *dc;
+ if (!d)
+ continue;
for_each_dc (d, dc) {
if (dc->model && !strcmp(dc->model, "Uemis Zurich") &&
(dc->deviceid == 0 || dc->deviceid == 0x7fffffff || dc->deviceid == deviceid) &&
@@ -952,7 +961,7 @@ static char *uemis_get_divenr(char *deviceidstr)
maxdiveid = dc->diveid;
}
}
- snprintf(divenr, 10, "%d", maxdiveid > max_diveid_from_dialog ? maxdiveid : max_diveid_from_dialog);
+ snprintf(divenr, 10, "%d", maxdiveid);
return strdup(divenr);
}
@@ -1215,12 +1224,7 @@ const char *do_uemis_import(device_data_t *data)
goto bail;
param_buff[1] = "notempty";
- /* if we force it we start downloading from the first dive on the Uemis;
- * otherwise check which was the last dive downloaded */
- if (!force_download)
- newmax = uemis_get_divenr(deviceid);
- else
- newmax = strdup("0");
+ newmax = uemis_get_divenr(deviceid, force_download);
first = start = atoi(newmax);
dive_to_read = first;