summaryrefslogtreecommitdiffstats
path: root/core/device.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2016-06-20 21:07:36 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-08-14 10:22:41 -0700
commitc840ab43323f351043e7f74502f933ae46d3ea9e (patch)
treefaf08b80c67a9146d89ad41f7579a3788a64e8b7 /core/device.c
parent777cbd9cfe7cd026315bfcbac15126512a016a90 (diff)
downloadsubsurface-c840ab43323f351043e7f74502f933ae46d3ea9e.tar.gz
Fill in divecomputer serial number and firmware version on loading
We have the serial number and firmware version fields in "struct divecomputer", but we don't actually fill them in when loading the data from git or xml, because we save all that information in the separate device table instead. But in order to always have the serial number associated with a device, let's make sure to fill those fields in. It won't hurt, and this way we have the information available whether we just loaded the dive from a file, or imported it from the dive computer. One less semantic difference to worry about. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/device.c')
-rw-r--r--core/device.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/core/device.c b/core/device.c
index 6c4452f78..afd52b8ef 100644
--- a/core/device.c
+++ b/core/device.c
@@ -182,3 +182,31 @@ struct divecomputer *fake_dc(struct divecomputer *dc, bool alloc)
/* Even that didn't work? Give up, there's something wrong */
return &fakedc;
}
+
+static void match_id(void *_dc, const char *model, uint32_t deviceid,
+ const char *nickname, const char *serial, const char *firmware)
+{
+ struct divecomputer *dc = _dc;
+
+ if (dc->deviceid != deviceid)
+ return;
+ if (strcmp(dc->model, model))
+ return;
+
+ if (serial && !dc->serial)
+ dc->serial = strdup(serial);
+ if (firmware && !dc->fw_version)
+ dc->fw_version = strdup(firmware);
+}
+
+/*
+ * When setting the device ID, we also fill in the
+ * serial number and firmware version data
+ */
+void set_dc_deviceid(struct divecomputer *dc, unsigned int deviceid)
+{
+ if (deviceid) {
+ dc->deviceid = deviceid;
+ call_for_each_dc(dc, match_id, false);
+ }
+}