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"
|
2020-05-01 13:43:52 +02:00
|
|
|
#include "divelist.h"
|
2015-02-11 11:22:00 -08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-02-12 01:59:16 -08:00
|
|
|
#ifdef __cplusplus
|
2017-10-16 15:52:13 +02:00
|
|
|
#include <QObject>
|
2015-02-12 01:59:16 -08:00
|
|
|
|
2015-02-11 11:22:00 -08:00
|
|
|
struct dive_site
|
|
|
|
{
|
2024-05-04 13:39:04 +02:00
|
|
|
uint32_t uuid = 0;
|
|
|
|
char *name = nullptr;
|
2024-05-04 14:41:04 +02:00
|
|
|
std::vector<dive *> dives;
|
2024-05-04 13:39:04 +02:00
|
|
|
location_t location = { { 9 }, { 0 } };
|
|
|
|
char *description = nullptr;
|
|
|
|
char *notes = nullptr;
|
|
|
|
taxonomy_data taxonomy;
|
|
|
|
dive_site();
|
|
|
|
dive_site(const char *name);
|
|
|
|
dive_site(const char *name, const location_t *loc);
|
|
|
|
~dive_site();
|
2015-02-11 11:22:00 -08:00
|
|
|
};
|
|
|
|
|
2019-03-03 15:12:22 +01:00
|
|
|
typedef struct dive_site_table {
|
2015-02-11 11:22:00 -08:00
|
|
|
int nr, allocated;
|
|
|
|
struct dive_site **dive_sites;
|
2019-03-03 15:12:22 +01:00
|
|
|
} dive_site_table_t;
|
2015-02-11 11:22:00 -08:00
|
|
|
|
2020-01-08 21:25:02 -08:00
|
|
|
static const dive_site_table_t empty_dive_site_table = { 0, 0, (struct dive_site **)0 };
|
|
|
|
|
2019-02-26 22:26:11 +01:00
|
|
|
static inline struct dive_site *get_dive_site(int nr, struct dive_site_table *ds_table)
|
2015-02-11 11:22:00 -08:00
|
|
|
{
|
2019-02-26 22:26:11 +01:00
|
|
|
if (nr >= ds_table->nr || nr < 0)
|
2015-02-11 11:22:00 -08:00
|
|
|
return NULL;
|
2019-02-26 22:26:11 +01:00
|
|
|
return ds_table->dive_sites[nr];
|
2015-02-11 11:22:00 -08:00
|
|
|
}
|
|
|
|
|
2015-02-12 01:26:57 -08:00
|
|
|
/* iterate over each dive site */
|
2019-02-26 22:26:11 +01:00
|
|
|
#define for_each_dive_site(_i, _x, _ds_table) \
|
|
|
|
for ((_i) = 0; ((_x) = get_dive_site(_i, _ds_table)) != NULL; (_i)++)
|
2015-02-12 01:26:57 -08:00
|
|
|
|
2019-02-26 22:26:11 +01:00
|
|
|
int get_divesite_idx(const struct dive_site *ds, struct dive_site_table *ds_table);
|
|
|
|
struct dive_site *get_dive_site_by_uuid(uint32_t uuid, struct dive_site_table *ds_table);
|
2019-03-10 22:28:14 +01:00
|
|
|
void sort_dive_site_table(struct dive_site_table *ds_table);
|
2019-03-12 00:25:31 +01:00
|
|
|
int add_dive_site_to_table(struct dive_site *ds, struct dive_site_table *ds_table);
|
2019-02-26 22:26:11 +01:00
|
|
|
struct dive_site *alloc_or_get_dive_site(uint32_t uuid, struct dive_site_table *ds_table);
|
2019-03-03 17:10:09 +01:00
|
|
|
struct dive_site *alloc_dive_site();
|
2024-05-04 14:41:04 +02:00
|
|
|
size_t nr_of_dives_at_dive_site(const struct dive_site &ds);
|
|
|
|
bool is_dive_site_selected(const struct dive_site &ds);
|
2019-03-12 00:25:31 +01:00
|
|
|
int unregister_dive_site(struct dive_site *ds);
|
|
|
|
int register_dive_site(struct dive_site *ds);
|
2019-02-26 22:26:11 +01:00
|
|
|
void delete_dive_site(struct dive_site *ds, struct dive_site_table *ds_table);
|
2019-03-03 18:39:12 +01:00
|
|
|
struct dive_site *create_dive_site(const char *name, struct dive_site_table *ds_table);
|
|
|
|
struct dive_site *create_dive_site_with_gps(const char *name, const location_t *, struct dive_site_table *ds_table);
|
2019-02-26 22:26:11 +01:00
|
|
|
struct dive_site *get_dive_site_by_name(const char *name, struct dive_site_table *ds_table);
|
|
|
|
struct dive_site *get_dive_site_by_gps(const location_t *, struct dive_site_table *ds_table);
|
2024-02-28 22:01:51 +01:00
|
|
|
struct dive_site *get_dive_site_by_gps_and_name(const char *name, const location_t *, struct dive_site_table *ds_table);
|
2019-02-26 22:26:11 +01:00
|
|
|
struct dive_site *get_dive_site_by_gps_proximity(const location_t *, int distance, struct dive_site_table *ds_table);
|
2019-03-03 15:12:22 +01:00
|
|
|
struct dive_site *get_same_dive_site(const struct dive_site *);
|
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);
|
2019-03-03 18:39:12 +01:00
|
|
|
struct dive_site *find_or_create_dive_site_with_name(const char *name, struct dive_site_table *ds_table);
|
2019-02-26 22:26:11 +01:00
|
|
|
void purge_empty_dive_sites(struct dive_site_table *ds_table);
|
2019-02-28 22:45:17 +01:00
|
|
|
void clear_dive_site_table(struct dive_site_table *ds_table);
|
2019-09-25 20:17:41 +02:00
|
|
|
void move_dive_site_table(struct dive_site_table *src, struct dive_site_table *dst);
|
2019-03-04 23:20:29 +01:00
|
|
|
void add_dive_to_dive_site(struct dive *d, struct dive_site *ds);
|
|
|
|
struct dive_site *unregister_dive_from_dive_site(struct dive *d);
|
2024-05-04 14:55:10 +02:00
|
|
|
std::string constructLocationTags(const 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
|