2017-04-27 20:18:03 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-04-14 20:10:25 -07:00
|
|
|
/*
|
|
|
|
* statistics.h
|
|
|
|
*
|
|
|
|
* core logic functions called from statistics UI
|
|
|
|
* common types and variables
|
|
|
|
*/
|
2013-05-06 20:55:27 -07:00
|
|
|
|
|
|
|
#ifndef STATISTICS_H
|
|
|
|
#define STATISTICS_H
|
|
|
|
|
2018-06-03 22:15:19 +02:00
|
|
|
#include "core/units.h"
|
|
|
|
|
2019-03-09 18:21:46 -08:00
|
|
|
#define STATS_MAX_DEPTH 300 /* Max depth for stats bucket is 300m */
|
|
|
|
#define STATS_DEPTH_BUCKET 10 /* Size of buckets for depth range */
|
|
|
|
#define STATS_MAX_TEMP 40 /* Max temp for stats bucket is 40C */
|
|
|
|
#define STATS_TEMP_BUCKET 5 /* Size of buckets for temp range */
|
|
|
|
|
2020-10-25 14:10:52 +01:00
|
|
|
struct dive;
|
|
|
|
|
2014-02-27 20:09:57 -08:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-04-14 20:10:25 -07:00
|
|
|
int period;
|
|
|
|
duration_t total_time;
|
2016-11-10 10:15:11 +01:00
|
|
|
/* total time of dives with non-zero average depth */
|
|
|
|
duration_t total_average_depth_time;
|
2013-04-14 20:10:25 -07:00
|
|
|
/* avg_time is simply total_time / nr -- let's not keep this */
|
|
|
|
duration_t shortest_time;
|
|
|
|
duration_t longest_time;
|
|
|
|
depth_t max_depth;
|
|
|
|
depth_t min_depth;
|
|
|
|
depth_t avg_depth;
|
2018-12-16 20:52:34 +01:00
|
|
|
depth_t combined_max_depth;
|
2013-04-14 20:10:25 -07:00
|
|
|
volume_t max_sac;
|
|
|
|
volume_t min_sac;
|
|
|
|
volume_t avg_sac;
|
2018-02-18 21:55:57 +01:00
|
|
|
temperature_t max_temp;
|
|
|
|
temperature_t min_temp;
|
|
|
|
temperature_sum_t combined_temp;
|
2013-04-14 20:10:25 -07:00
|
|
|
unsigned int combined_count;
|
|
|
|
unsigned int selection_size;
|
2018-02-20 22:59:09 +01:00
|
|
|
duration_t total_sac_time;
|
2013-06-19 10:30:36 -07:00
|
|
|
bool is_year;
|
2013-11-24 03:09:34 +02:00
|
|
|
bool is_trip;
|
|
|
|
char *location;
|
2013-04-14 20:10:25 -07:00
|
|
|
} stats_t;
|
2018-10-06 10:58:12 +02:00
|
|
|
|
|
|
|
struct stats_summary {
|
|
|
|
stats_t *stats_yearly;
|
|
|
|
stats_t *stats_monthly;
|
|
|
|
stats_t *stats_by_trip;
|
|
|
|
stats_t *stats_by_type;
|
2019-03-09 18:21:46 -08:00
|
|
|
stats_t *stats_by_depth;
|
|
|
|
stats_t *stats_by_temp;
|
2018-10-06 10:58:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-04-14 20:10:25 -07:00
|
|
|
|
|
|
|
extern char *get_minutes(int seconds);
|
2018-10-06 10:58:12 +02:00
|
|
|
extern void init_stats_summary(struct stats_summary *stats);
|
|
|
|
extern void free_stats_summary(struct stats_summary *stats);
|
2018-10-06 16:50:46 +02:00
|
|
|
extern void calculate_stats_summary(struct stats_summary *stats, bool selected_only);
|
2018-10-06 16:30:57 +02:00
|
|
|
extern void calculate_stats_selected(stats_t *stats_selection);
|
2019-06-27 07:42:09 +02:00
|
|
|
extern volume_t *get_gas_used(struct dive *dive);
|
2018-10-06 16:30:57 +02:00
|
|
|
extern void selected_dives_gas_parts(volume_t *o2_tot, volume_t *he_tot);
|
2013-05-06 20:55:27 -07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-06 10:58:12 +02:00
|
|
|
/*
|
|
|
|
* For C++ code, provide a convenience version of stats_summary
|
|
|
|
* that initializes the structure on construction and frees
|
|
|
|
* resources when it goes out of scope. Apart from that, it
|
|
|
|
* can be used as a stats_summary replacement.
|
|
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
|
|
struct stats_summary_auto_free : public stats_summary {
|
|
|
|
stats_summary_auto_free();
|
|
|
|
~stats_summary_auto_free();
|
|
|
|
};
|
|
|
|
inline stats_summary_auto_free::stats_summary_auto_free()
|
|
|
|
{
|
|
|
|
init_stats_summary(this);
|
|
|
|
}
|
|
|
|
inline stats_summary_auto_free::~stats_summary_auto_free()
|
|
|
|
{
|
|
|
|
free_stats_summary(this);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // STATISTICS_H
|