2017-04-27 18:24:53 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-02-11 19:22:00 +00:00
|
|
|
#ifndef DIVESITE_H
|
|
|
|
#define DIVESITE_H
|
|
|
|
|
|
|
|
#include "units.h"
|
2015-07-01 19:28:15 +00:00
|
|
|
#include "taxonomy.h"
|
2020-05-01 11:43:52 +00:00
|
|
|
#include "divelist.h"
|
2015-02-11 19:22:00 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-02-12 09:59:16 +00:00
|
|
|
#ifdef __cplusplus
|
2017-10-16 13:52:13 +00:00
|
|
|
#include <QObject>
|
2015-02-12 09:59:16 +00:00
|
|
|
|
2015-02-11 19:22:00 +00:00
|
|
|
struct dive_site
|
|
|
|
{
|
2024-05-04 11:39:04 +00:00
|
|
|
uint32_t uuid = 0;
|
2024-05-04 15:18:08 +00:00
|
|
|
std::string name;
|
2024-05-04 12:41:04 +00:00
|
|
|
std::vector<dive *> dives;
|
2024-05-04 11:39:04 +00:00
|
|
|
location_t location = { { 9 }, { 0 } };
|
2024-05-04 15:18:08 +00:00
|
|
|
std::string description;
|
|
|
|
std::string notes;
|
2024-05-04 11:39:04 +00:00
|
|
|
taxonomy_data taxonomy;
|
|
|
|
dive_site();
|
2024-05-04 15:18:08 +00:00
|
|
|
dive_site(const std::string &name);
|
|
|
|
dive_site(const std::string &name, const location_t *loc);
|
2024-05-04 11:39:04 +00:00
|
|
|
~dive_site();
|
2015-02-11 19:22:00 +00:00
|
|
|
};
|
|
|
|
|
2019-03-03 14:12:22 +00:00
|
|
|
typedef struct dive_site_table {
|
2015-02-11 19:22:00 +00:00
|
|
|
int nr, allocated;
|
|
|
|
struct dive_site **dive_sites;
|
2019-03-03 14:12:22 +00:00
|
|
|
} dive_site_table_t;
|
2015-02-11 19:22:00 +00:00
|
|
|
|
2020-01-09 05:25:02 +00:00
|
|
|
static const dive_site_table_t empty_dive_site_table = { 0, 0, (struct dive_site **)0 };
|
|
|
|
|
2019-02-26 21:26:11 +00:00
|
|
|
static inline struct dive_site *get_dive_site(int nr, struct dive_site_table *ds_table)
|
2015-02-11 19:22:00 +00:00
|
|
|
{
|
2019-02-26 21:26:11 +00:00
|
|
|
if (nr >= ds_table->nr || nr < 0)
|
2015-02-11 19:22:00 +00:00
|
|
|
return NULL;
|
2019-02-26 21:26:11 +00:00
|
|
|
return ds_table->dive_sites[nr];
|
2015-02-11 19:22:00 +00:00
|
|
|
}
|
|
|
|
|
2015-02-12 09:26:57 +00:00
|
|
|
/* iterate over each dive site */
|
2019-02-26 21:26:11 +00: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 09:26:57 +00:00
|
|
|
|
2019-02-26 21:26:11 +00: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 21:28:14 +00:00
|
|
|
void sort_dive_site_table(struct dive_site_table *ds_table);
|
2019-03-11 23:25:31 +00:00
|
|
|
int add_dive_site_to_table(struct dive_site *ds, struct dive_site_table *ds_table);
|
2019-02-26 21:26:11 +00:00
|
|
|
struct dive_site *alloc_or_get_dive_site(uint32_t uuid, struct dive_site_table *ds_table);
|
2019-03-03 16:10:09 +00:00
|
|
|
struct dive_site *alloc_dive_site();
|
2024-05-04 12:41:04 +00: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-11 23:25:31 +00:00
|
|
|
int unregister_dive_site(struct dive_site *ds);
|
|
|
|
int register_dive_site(struct dive_site *ds);
|
2019-02-26 21:26:11 +00:00
|
|
|
void delete_dive_site(struct dive_site *ds, struct dive_site_table *ds_table);
|
2024-05-04 15:18:08 +00:00
|
|
|
struct dive_site *create_dive_site(const std::string &name, struct dive_site_table *ds_table);
|
|
|
|
struct dive_site *create_dive_site_with_gps(const std::string &name, const location_t *, struct dive_site_table *ds_table);
|
|
|
|
struct dive_site *get_dive_site_by_name(const std::string &name, struct dive_site_table *ds_table);
|
2019-02-26 21:26:11 +00:00
|
|
|
struct dive_site *get_dive_site_by_gps(const location_t *, struct dive_site_table *ds_table);
|
2024-05-04 15:18:08 +00:00
|
|
|
struct dive_site *get_dive_site_by_gps_and_name(const std::string &name, const location_t *, struct dive_site_table *ds_table);
|
2019-02-26 21:26:11 +00:00
|
|
|
struct dive_site *get_dive_site_by_gps_proximity(const location_t *, int distance, struct dive_site_table *ds_table);
|
2019-03-03 14:12:22 +00:00
|
|
|
struct dive_site *get_same_dive_site(const struct dive_site *);
|
2015-02-14 06:53:03 +00:00
|
|
|
bool dive_site_is_empty(struct dive_site *ds);
|
2017-02-19 22:11:37 +00:00
|
|
|
void merge_dive_site(struct dive_site *a, struct dive_site *b);
|
2018-10-20 18:12:15 +00:00
|
|
|
unsigned int get_distance(const location_t *loc1, const location_t *loc2);
|
2024-05-04 15:18:08 +00:00
|
|
|
struct dive_site *find_or_create_dive_site_with_name(const std::string &name, struct dive_site_table *ds_table);
|
2019-02-26 21:26:11 +00:00
|
|
|
void purge_empty_dive_sites(struct dive_site_table *ds_table);
|
2019-02-28 21:45:17 +00:00
|
|
|
void clear_dive_site_table(struct dive_site_table *ds_table);
|
2019-09-25 18:17:41 +00:00
|
|
|
void move_dive_site_table(struct dive_site_table *src, struct dive_site_table *dst);
|
2019-03-04 22:20:29 +00: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 12:55:10 +00:00
|
|
|
std::string constructLocationTags(const taxonomy_data &taxonomy, bool for_maintab);
|
2015-10-07 22:34:02 +00:00
|
|
|
|
2018-10-28 20:16:42 +00: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 09:59:16 +00:00
|
|
|
#endif
|
2015-09-01 00:35:17 +00:00
|
|
|
|
2015-02-11 19:22:00 +00:00
|
|
|
#endif // DIVESITE_H
|