diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-26 13:04:14 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-26 13:04:14 -0700 |
commit | 5c8305588b9b47805226ee50ffcb069fd9a6b251 (patch) | |
tree | 261721b0b16084c5662cd7ff2981b9f3f6cc3228 /libdivecomputer.h | |
parent | a1a4392e8d0b437ff6f9f79bedbdc7fa14517ec1 (diff) | |
download | subsurface-5c8305588b9b47805226ee50ffcb069fd9a6b251.tar.gz |
Stop libdivecomputer import when we start seeing old dives
I don't know about other dive computers, but the Suunto Vyper Air is
slow as hell to import all the dives from. And libdivecomputer seems to
be importing dives "most recent first", so this just makes it stop
importing dives when it finds a dive that we've already seen.
Caveat: libdivecomputer has this fancy notion of "dive fingerprints",
and claims that's the way to do things. That seems to be overly
complicated, and not worth the bother.
If you worry about the import finishing early due to already having some
dives with the same date in your dive list, just import starting from an
empty state, and thus get a pure "dive computer only" state with no
early out. Then you can just load the old dives afterwards, and depend
on subsurface merging any duplicates.
But for normal operation, when you just want to import a couple of new
dives from your dive computer, the "exit import early when you see a
duplicate" is the right thing to do.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'libdivecomputer.h')
-rw-r--r-- | libdivecomputer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdivecomputer.h b/libdivecomputer.h index abb09e2c4..57d274cc6 100644 --- a/libdivecomputer.h +++ b/libdivecomputer.h @@ -25,6 +25,7 @@ typedef struct device_data_t { progressbar_t progress; device_devinfo_t devinfo; device_clock_t clock; + int preexisting; } device_data_t; struct device_list { |