2017-04-27 20:24:53 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-02-11 11:22:00 -08:00
|
|
|
#ifndef DIVESITE_H
|
|
|
|
#define DIVESITE_H
|
|
|
|
|
|
|
|
#include "units.h"
|
2015-07-01 12:28:15 -07:00
|
|
|
#include "taxonomy.h"
|
2015-02-11 11:22:00 -08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-02-12 01:59:16 -08:00
|
|
|
#ifdef __cplusplus
|
2015-10-07 19:34:02 -03:00
|
|
|
#include <QString>
|
2017-10-16 15:52:13 +02:00
|
|
|
#include <QObject>
|
2015-02-12 01:59:16 -08:00
|
|
|
extern "C" {
|
2015-02-13 22:53:03 -08:00
|
|
|
#else
|
|
|
|
#include <stdbool.h>
|
2015-02-12 01:59:16 -08:00
|
|
|
#endif
|
|
|
|
|
2015-02-11 11:22:00 -08:00
|
|
|
struct dive_site
|
|
|
|
{
|
|
|
|
uint32_t uuid;
|
|
|
|
char *name;
|
2018-10-20 14:12:15 -04:00
|
|
|
location_t location;
|
2015-02-11 11:22:00 -08:00
|
|
|
char *description;
|
|
|
|
char *notes;
|
2015-07-01 12:28:15 -07:00
|
|
|
struct taxonomy_data taxonomy;
|
2015-02-11 11:22:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct dive_site_table {
|
|
|
|
int nr, allocated;
|
|
|
|
struct dive_site **dive_sites;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct dive_site_table dive_site_table;
|
|
|
|
|
|
|
|
static inline struct dive_site *get_dive_site(int nr)
|
|
|
|
{
|
|
|
|
if (nr >= dive_site_table.nr || nr < 0)
|
|
|
|
return NULL;
|
|
|
|
return dive_site_table.dive_sites[nr];
|
|
|
|
}
|
|
|
|
|
2015-02-12 01:26:57 -08:00
|
|
|
/* iterate over each dive site */
|
|
|
|
#define for_each_dive_site(_i, _x) \
|
|
|
|
for ((_i) = 0; ((_x) = get_dive_site(_i)) != NULL; (_i)++)
|
|
|
|
|
2019-02-26 11:03:57 +01:00
|
|
|
struct dive_site *get_dive_site_by_uuid(uint32_t uuid);
|
2015-08-24 11:07:57 -07:00
|
|
|
void dive_site_table_sort();
|
2015-09-29 12:58:16 -04:00
|
|
|
struct dive_site *alloc_or_get_dive_site(uint32_t uuid);
|
2018-10-23 18:31:39 +02:00
|
|
|
int nr_of_dives_at_dive_site(struct dive_site *ds, bool select_only);
|
2018-10-23 18:55:42 +02:00
|
|
|
bool is_dive_site_used(struct dive_site *ds, bool select_only);
|
2018-10-14 23:30:31 +02:00
|
|
|
void free_dive_site(struct dive_site *ds);
|
2018-10-23 19:11:13 +02:00
|
|
|
void delete_dive_site(struct dive_site *ds);
|
2018-10-23 13:29:04 +02:00
|
|
|
struct dive_site *create_dive_site(const char *name, timestamp_t divetime);
|
|
|
|
struct dive_site *create_dive_site_with_gps(const char *name, const location_t *, timestamp_t divetime);
|
2018-10-23 12:42:01 +02:00
|
|
|
struct dive_site *get_dive_site_by_name(const char *name);
|
|
|
|
struct dive_site *get_dive_site_by_gps(const location_t *);
|
|
|
|
struct dive_site *get_dive_site_by_gps_and_name(char *name, const location_t *);
|
|
|
|
struct dive_site *get_dive_site_by_gps_proximity(const location_t *, int distance);
|
2015-02-13 22:53:03 -08:00
|
|
|
bool dive_site_is_empty(struct dive_site *ds);
|
2017-10-02 22:57:26 -07:00
|
|
|
void copy_dive_site_taxonomy(struct dive_site *orig, struct dive_site *copy);
|
2015-06-26 14:40:12 -03:00
|
|
|
void copy_dive_site(struct dive_site *orig, struct dive_site *copy);
|
2017-02-19 14:11:37 -08:00
|
|
|
void merge_dive_site(struct dive_site *a, struct dive_site *b);
|
2018-10-20 14:12:15 -04:00
|
|
|
unsigned int get_distance(const location_t *loc1, const location_t *loc2);
|
2018-10-23 13:29:04 +02:00
|
|
|
struct dive_site *find_or_create_dive_site_with_name(const char *name, timestamp_t divetime);
|
2018-10-23 19:40:41 +02:00
|
|
|
void merge_dive_sites(struct dive_site *ref, struct dive_site *dive_sites[], int count);
|
2019-01-01 11:45:26 +02:00
|
|
|
void purge_empty_dive_sites();
|
2015-02-12 11:19:05 -08:00
|
|
|
|
2015-02-12 01:59:16 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2018-10-13 11:52:59 +02:00
|
|
|
QString constructLocationTags(struct taxonomy_data *taxonomy, bool for_maintab);
|
2015-10-07 19:34:02 -03:00
|
|
|
|
2018-10-28 21:16:42 +01:00
|
|
|
/* Make pointer-to-dive_site a "Qt metatype" so that we can pass it through QVariants */
|
|
|
|
Q_DECLARE_METATYPE(dive_site *);
|
|
|
|
|
2015-02-12 01:59:16 -08:00
|
|
|
#endif
|
2015-08-31 21:35:17 -03:00
|
|
|
|
2015-02-11 11:22:00 -08:00
|
|
|
#endif // DIVESITE_H
|