mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 23:43:24 +00:00
Uemis downloader: allow continuing download by clicking Retry
When we run out of space in the Uemis filesystem we return an error. The user could reasonably unplug the SDA, insert it again and then retry to continue the download (that's what we tell them to do). In that case we need to make sure we start at the correct dive otherwise the same dives keep getting downloaded over and over again. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
4bccee238c
commit
79f15e913b
3 changed files with 18 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
#include "mainwindow.h"
|
||||
#include "divelistview.h"
|
||||
#include "display.h"
|
||||
#include "uemis.h"
|
||||
|
||||
#include <QTimer>
|
||||
#include <QFileDialog>
|
||||
|
@ -284,6 +285,14 @@ void DownloadFromDCWidget::on_downloadCancelRetryButton_clicked()
|
|||
diveImportedModel->clearTable();
|
||||
clear_table(&downloadTable);
|
||||
}
|
||||
if (ui.vendor->currentText() == "Uemis") {
|
||||
if (currentState == ERROR && downloadTable.nr > 0)
|
||||
// let the uemis code know how far we've gotten
|
||||
uemis_set_max_diveid_from_dialog(downloadTable.dives[downloadTable.nr - 1]->dc.diveid);
|
||||
else
|
||||
// fresh download, so only look at what's in the dive_table
|
||||
uemis_set_max_diveid_from_dialog(0);
|
||||
}
|
||||
updateState(DOWNLOADING);
|
||||
|
||||
// you cannot cancel the dialog, just the download
|
||||
|
|
|
@ -816,6 +816,13 @@ 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)
|
||||
{
|
||||
uint32_t deviceid, maxdiveid = 0;
|
||||
|
@ -833,7 +840,7 @@ static char *uemis_get_divenr(char *deviceidstr)
|
|||
maxdiveid = dc->diveid;
|
||||
}
|
||||
}
|
||||
snprintf(divenr, 10, "%d", maxdiveid);
|
||||
snprintf(divenr, 10, "%d", maxdiveid > max_diveid_from_dialog ? maxdiveid : max_diveid_from_dialog);
|
||||
return strdup(divenr);
|
||||
}
|
||||
|
||||
|
|
1
uemis.h
1
uemis.h
|
@ -16,6 +16,7 @@ void uemis_parse_divelog_binary(char *base64, void *divep);
|
|||
int uemis_get_weight_unit(int diveid);
|
||||
void uemis_mark_divelocation(int diveid, int divespot, uint32_t dive_site_uuid);
|
||||
void uemis_set_divelocation(int divespot, char *text, double longitude, double latitude);
|
||||
void uemis_set_max_diveid_from_dialog(int diveid);
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue