2017-04-27 18:18:03 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-04-15 03:10:25 +00:00
|
|
|
/*
|
|
|
|
* statistics.h
|
|
|
|
*
|
|
|
|
* core logic functions called from statistics UI
|
|
|
|
* common types and variables
|
|
|
|
*/
|
2013-05-07 03:55:27 +00:00
|
|
|
|
|
|
|
#ifndef STATISTICS_H
|
|
|
|
#define STATISTICS_H
|
|
|
|
|
2018-06-03 20:15:19 +00:00
|
|
|
#include "core/units.h"
|
|
|
|
#include "core/dive.h" // For MAX_CYLINDERS
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2013-04-15 03:10:25 +00:00
|
|
|
int period;
|
|
|
|
duration_t total_time;
|
2016-11-10 09:15:11 +00:00
|
|
|
/* total time of dives with non-zero average depth */
|
|
|
|
duration_t total_average_depth_time;
|
2013-04-15 03:10:25 +00: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 19:52:34 +00:00
|
|
|
depth_t combined_max_depth;
|
2013-04-15 03:10:25 +00:00
|
|
|
volume_t max_sac;
|
|
|
|
volume_t min_sac;
|
|
|
|
volume_t avg_sac;
|
2018-02-18 20:55:57 +00:00
|
|
|
temperature_t max_temp;
|
|
|
|
temperature_t min_temp;
|
|
|
|
temperature_sum_t combined_temp;
|
2013-04-15 03:10:25 +00:00
|
|
|
unsigned int combined_count;
|
|
|
|
unsigned int selection_size;
|
2018-02-20 21:59:09 +00:00
|
|
|
duration_t total_sac_time;
|
2013-06-19 17:30:36 +00:00
|
|
|
bool is_year;
|
2013-11-24 01:09:34 +00:00
|
|
|
bool is_trip;
|
|
|
|
char *location;
|
2013-04-15 03:10:25 +00:00
|
|
|
} stats_t;
|
2018-10-06 08:58:12 +00:00
|
|
|
|
|
|
|
struct stats_summary {
|
|
|
|
stats_t *stats_yearly;
|
|
|
|
stats_t *stats_monthly;
|
|
|
|
stats_t *stats_by_trip;
|
|
|
|
stats_t *stats_by_type;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-04-15 03:10:25 +00:00
|
|
|
|
|
|
|
extern char *get_minutes(int seconds);
|
2018-10-06 08:58:12 +00:00
|
|
|
extern void init_stats_summary(struct stats_summary *stats);
|
|
|
|
extern void free_stats_summary(struct stats_summary *stats);
|
2018-10-06 14:50:46 +00:00
|
|
|
extern void calculate_stats_summary(struct stats_summary *stats, bool selected_only);
|
2018-10-06 14:30:57 +00:00
|
|
|
extern void calculate_stats_selected(stats_t *stats_selection);
|
2013-11-19 23:29:32 +00:00
|
|
|
extern void get_gas_used(struct dive *dive, volume_t gases[MAX_CYLINDERS]);
|
2018-10-06 14:30:57 +00:00
|
|
|
extern void selected_dives_gas_parts(volume_t *o2_tot, volume_t *he_tot);
|
2013-05-07 03:55:27 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-10-06 08:58:12 +00: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 18:14:46 +00:00
|
|
|
#endif // STATISTICS_H
|