mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Dive site: replace dive->dive_site_uuid by dive_site
Replace the UUID reference of struct dive by a pointer to dive_site. This commit is rather large in lines, but nevertheless quite simple since most of the UUID->pointer work was done in previous commits. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
acd44467c1
commit
724055f0af
28 changed files with 181 additions and 169 deletions
|
@ -159,9 +159,9 @@ static void parse_dive_gps(char *line, struct membuffer *str, void *_dive)
|
|||
if (!ds) {
|
||||
ds = get_dive_site_by_gps(&location);
|
||||
if (!ds)
|
||||
dive->dive_site_uuid = create_dive_site_with_gps("", &location, dive->when)->uuid;
|
||||
dive->dive_site = create_dive_site_with_gps("", &location, dive->when);
|
||||
else
|
||||
dive->dive_site_uuid = ds->uuid;
|
||||
dive->dive_site = ds;
|
||||
} else {
|
||||
if (dive_site_has_gps_location(ds) && !same_location(&ds->location, &location)) {
|
||||
const char *coords = printGPSCoords(&location);
|
||||
|
@ -183,9 +183,9 @@ static void parse_dive_location(char *line, struct membuffer *str, void *_dive)
|
|||
if (!ds) {
|
||||
ds = get_dive_site_by_name(name);
|
||||
if (!ds)
|
||||
dive->dive_site_uuid = create_dive_site(name, dive->when)->uuid;
|
||||
dive->dive_site = create_dive_site(name, dive->when);
|
||||
else
|
||||
dive->dive_site_uuid = ds->uuid;
|
||||
dive->dive_site = ds;
|
||||
} else {
|
||||
// we already had a dive site linked to the dive
|
||||
if (empty_string(ds->name)) {
|
||||
|
@ -212,7 +212,7 @@ static void parse_dive_notes(char *line, struct membuffer *str, void *_dive)
|
|||
{ UNUSED(line); struct dive *dive = _dive; dive->notes = get_utf8(str); }
|
||||
|
||||
static void parse_dive_divesiteid(char *line, struct membuffer *str, void *_dive)
|
||||
{ UNUSED(str); struct dive *dive = _dive; dive->dive_site_uuid = get_hex(line); }
|
||||
{ UNUSED(str); struct dive *dive = _dive; dive->dive_site = get_dive_site_by_uuid(get_hex(line)); }
|
||||
|
||||
/*
|
||||
* We can have multiple tags in the membuffer. They are separated by
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue