diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-03 21:32:28 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-06 19:47:06 -0700 |
commit | e5dca8228e6b60cac5957726700c66d0565c064e (patch) | |
tree | 6ef0e32eb50d5838921602a1fbcab8c8747481cc | |
parent | ab14889563317b561eb22ad46d05f302cc582600 (diff) | |
download | subsurface-e5dca8228e6b60cac5957726700c66d0565c064e.tar.gz |
Import: remove dive->downloaded logic
Dive importing is now performed via a distinct table which is
merged into the main dive table. Thus, it is known which of the
dive is new and which is old. This information can now be
implicitely encoded in the parameter-position of merge_dive()
[i.e. pass old as first and new as second dive].
This makes marking of downloaded dives via a flag unnecessary.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r-- | core/dive.c | 50 | ||||
-rw-r--r-- | core/divelist.c | 7 |
2 files changed, 21 insertions, 36 deletions
diff --git a/core/dive.c b/core/dive.c index 83789f686..d7a2f11a8 100644 --- a/core/dive.c +++ b/core/dive.c @@ -2759,11 +2759,6 @@ static int match_dc_dive(const struct divecomputer *a, const struct divecomputer return 0; } -static bool new_without_trip(const struct dive *a) -{ - return a->downloaded && !a->divetrip; -} - /* * Do we want to automatically try to merge two dives that * look like they are the same dive? @@ -2802,16 +2797,13 @@ static int likely_same_dive(const struct dive *a, const struct dive *b) same_string(b->dc.model, "manually added dive")) return 0; - /* Don't try to merge dives with different trip information */ - if (a->divetrip != b->divetrip) { - /* - * Exception: if the dive is downloaded without any - * explicit trip information, we do want to merge it - * with existing old dives even if they have trips. - */ - if (!new_without_trip(a) && !new_without_trip(b)) - return 0; - } + /* Don't try to merge dives with different trip information + * Exception: if the dive is downloaded without any + * explicit trip information, we do want to merge it + * with existing old dives even if they have trips. + */ + if (a->divetrip != b->divetrip && b->divetrip) + return 0; /* * Do some basic sanity testing of the values we @@ -2843,6 +2835,11 @@ static int likely_same_dive(const struct dive *a, const struct dive *b) * This could do a lot more merging. Right now it really only * merges almost exact duplicates - something that happens easily * with overlapping dive downloads. + * + * If new dives are merged into the dive table, dive a is supposed to + * be the old dive and dive b is supposed to be the newly imported + * dive. If the flag "prefer_downloaded" is set, data of the latter + * will take priority over the former. */ struct dive *try_to_merge(struct dive *a, struct dive *b, bool prefer_downloaded) { @@ -3328,16 +3325,20 @@ int count_dives_with_suit(const char *suit) * two must have a different start time, and "offset" is the relative * time difference between the two. * - * (a) two different dive computers that we might want to merge into + * (b) two different dive computers that we might want to merge into * one single dive with multiple dive computers. * * This is the "try_to_merge()" case, which will have offset == 0, * even if the dive times might be different. + * + * If new dives are merged into the dive table, dive a is supposed to + * be the old dive and dive b is supposed to be the newly imported + * dive. If the flag "prefer_downloaded" is set, data of the latter + * will take priority over the former. */ struct dive *merge_dives(struct dive *a, struct dive *b, int offset, bool prefer_downloaded) { struct dive *res = alloc_dive(); - struct dive *dl = NULL; if (offset) { /* @@ -3348,15 +3349,6 @@ struct dive *merge_dives(struct dive *a, struct dive *b, int offset, bool prefer */ if (likely_same_dive(a, b)) offset = 0; - } else { - /* Aim for newly downloaded dives to be 'b' (keep old dive data first) */ - if (a->downloaded && !b->downloaded) { - struct dive *tmp = a; - a = b; - b = tmp; - } - if (prefer_downloaded && b->downloaded) - dl = b; } if (same_string(a->dc.model, "planned dive")) { @@ -3364,7 +3356,7 @@ struct dive *merge_dives(struct dive *a, struct dive *b, int offset, bool prefer a = b; b = tmp; } - res->when = dl ? dl->when : a->when; + res->when = prefer_downloaded ? b->when : a->when; res->selected = a->selected || b->selected; merge_trip(res, a, b); MERGE_TXT(res, a, b, notes, "\n--\n"); @@ -3379,9 +3371,9 @@ struct dive *merge_dives(struct dive *a, struct dive *b, int offset, bool prefer taglist_merge(&res->tag_list, a->tag_list, b->tag_list); merge_equipment(res, a, b); merge_temperatures(res, a, b); - if (dl) { + if (prefer_downloaded) { /* If we prefer downloaded, do those first, and get rid of "might be same" computers */ - join_dive_computers(&res->dc, &dl->dc, &a->dc, 1); + join_dive_computers(&res->dc, &b->dc, &a->dc, 1); } else if (offset && might_be_same_device(&a->dc, &b->dc)) interleave_dive_computers(&res->dc, &a->dc, &b->dc, offset); else diff --git a/core/divelist.c b/core/divelist.c index 41ebc4364..71556101c 100644 --- a/core/divelist.c +++ b/core/divelist.c @@ -1367,9 +1367,6 @@ void process_imported_dives(struct dive_table *import_table, bool prefer_importe sort_table(import_table); merge_imported_dives(import_table); - for (i = 0; i < import_table->nr; i++) - import_table->dives[i]->downloaded = true; - /* Merge newly imported dives into the dive table. * Since both lists (old and new) are sorted, we can step * through them concurrently and locate the insertions points. @@ -1416,10 +1413,6 @@ void process_imported_dives(struct dive_table *import_table, bool prefer_importe for ( ; i < import_table->nr; i++) add_single_dive(dive_table.nr, import_table->dives[i]); - /* make sure no dives are still marked as downloaded */ - for (i = 0; i < dive_table.nr; i++) - dive_table.dives[i]->downloaded = false; - /* we took care of all dives, clean up the import table */ import_table->nr = 0; |