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"
|
2019-03-04 22:20:29 +00:00
|
|
|
#include "dive.h"
|
2015-02-11 19:22:00 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-02-12 09:59:16 +00:00
|
|
|
#ifdef __cplusplus
|
2015-10-07 22:34:02 +00:00
|
|
|
#include <QString>
|
2017-10-16 13:52:13 +00:00
|
|
|
#include <QObject>
|
2015-02-12 09:59:16 +00:00
|
|
|
extern "C" {
|
2015-02-14 06:53:03 +00:00
|
|
|
#else
|
|
|
|
#include <stdbool.h>
|
2015-02-12 09:59:16 +00:00
|
|
|
#endif
|
|
|
|
|
2015-02-11 19:22:00 +00:00
|
|
|
struct dive_site
|
|
|
|
{
|
|
|
|
uint32_t uuid;
|
|
|
|
char *name;
|
2019-03-04 22:20:29 +00:00
|
|
|
struct dive_table dives;
|
2018-10-20 18:12:15 +00:00
|
|
|
location_t location;
|
2015-02-11 19:22:00 +00:00
|
|
|
char *description;
|
|
|
|
char *notes;
|
2015-07-01 19:28:15 +00:00
|
|
|
struct taxonomy_data taxonomy;
|
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
|
|
|
|
|
|
|
extern struct dive_site_table dive_site_table;
|
|
|
|
|
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();
|
2019-03-07 08:01:18 +00:00
|
|
|
int nr_of_dives_at_dive_site(struct dive_site *ds);
|
2018-10-23 16:55:42 +00:00
|
|
|
bool is_dive_site_used(struct dive_site *ds, bool select_only);
|
2018-10-14 21:30:31 +00:00
|
|
|
void free_dive_site(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);
|
2019-03-03 17:39:12 +00: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 21:26:11 +00: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);
|
|
|
|
struct dive_site *get_dive_site_by_gps_and_name(char *name, const location_t *, struct dive_site_table *ds_table);
|
|
|
|
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-10-03 05:57:26 +00:00
|
|
|
void copy_dive_site_taxonomy(struct dive_site *orig, struct dive_site *copy);
|
2015-06-26 17:40:12 +00:00
|
|
|
void copy_dive_site(struct dive_site *orig, struct dive_site *copy);
|
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);
|
2019-03-03 17:39:12 +00:00
|
|
|
struct dive_site *find_or_create_dive_site_with_name(const char *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-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);
|
2015-02-12 19:19:05 +00:00
|
|
|
|
2015-02-12 09:59:16 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2018-10-13 09:52:59 +00:00
|
|
|
QString constructLocationTags(struct 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 *);
|
2019-03-04 22:20:29 +00:00
|
|
|
Q_DECLARE_METATYPE(dive_site_table_t *);
|
2018-10-28 20:16:42 +00:00
|
|
|
|
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
|