2011-08-31 01:23:59 +00:00
|
|
|
#ifndef DIVE_H
|
|
|
|
#define DIVE_H
|
|
|
|
|
2011-09-03 20:19:26 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2011-08-31 01:23:59 +00:00
|
|
|
/*
|
|
|
|
* Some silly typedefs to make our units very explicit.
|
|
|
|
*
|
|
|
|
* Also, the units are chosen so that values can be expressible as
|
|
|
|
* integers, so that we never have FP rounding issues. And they
|
|
|
|
* are small enough that converting to/from imperial units doesn't
|
|
|
|
* really matter.
|
|
|
|
*
|
|
|
|
* We also strive to make '0' a meaningless number saying "not
|
|
|
|
* initialized", since many values are things that may not have
|
2011-09-04 03:31:18 +00:00
|
|
|
* been reported (eg cylinder pressure or temperature from dive
|
2011-08-31 01:23:59 +00:00
|
|
|
* computers that don't support them). But sometimes -1 is an even
|
|
|
|
* more explicit way of saying "not there".
|
|
|
|
*
|
|
|
|
* Thus "millibar" for pressure, for example, or "millikelvin" for
|
|
|
|
* temperatures. Doing temperatures in celsius or fahrenheit would
|
|
|
|
* make for loss of precision when converting from one to the other,
|
|
|
|
* and using millikelvin is SI-like but also means that a temperature
|
2011-09-04 03:31:18 +00:00
|
|
|
* of '0' is clearly just a missing temperature or cylinder pressure.
|
2011-08-31 01:23:59 +00:00
|
|
|
*
|
|
|
|
* Also strive to use units that can not possibly be mistaken for a
|
|
|
|
* valid value in a "normal" system without conversion. If the max
|
|
|
|
* depth of a dive is '20000', you probably didn't convert from mm on
|
|
|
|
* output, or if the max depth gets reported as "0.2ft" it was either
|
|
|
|
* a really boring dive, or there was some missing input conversion,
|
|
|
|
* and a 60-ft dive got recorded as 60mm.
|
|
|
|
*
|
|
|
|
* Doing these as "structs containing value" means that we always
|
|
|
|
* have to explicitly write out those units in order to get at the
|
|
|
|
* actual value. So there is hopefully little fear of using a value
|
|
|
|
* in millikelvin as Fahrenheit by mistake.
|
|
|
|
*
|
|
|
|
* We don't actually use these all yet, so maybe they'll change, but
|
|
|
|
* I made a number of types as guidelines.
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
int seconds;
|
|
|
|
} duration_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int mm;
|
|
|
|
} depth_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int mbar;
|
|
|
|
} pressure_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int mkelvin;
|
|
|
|
} temperature_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int mliter;
|
|
|
|
} volume_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int permille;
|
|
|
|
} fraction_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int grams;
|
|
|
|
} weight_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
fraction_t o2;
|
Start parsing gas mixes
The suunto xml is just completely crazy. What's the helium percentage
companion to "o2pct"? Would it be "hepct"? No. It's "hepct_0".
Ok, so they didn't number the first o2pct, which could be seen as sane:
that's the only mix value that should always exist. And they clearly
started their indexing with 0. So with multiple mixes, you'd then
expect "o2pct_1" and "hepct_1", right?
Wrong! Because XML people are crazy, the second O2 mix percentage is
obviously "o2pct_2". So the O2 percentages are one-based, with an
implicit one. But the He percentages are zero-based with an explicit
zero. So the second mix is "o2pct_2" and "hepct_1".
I'd like to ask what drugs Suunto people are on, but hey, it's a Finnish
company. No need to ask. Vodka explains everything. LOTS AND LOTS OF
VODKA.
In comparison, the libdivecomputer output is nice and sane, and uses a
'gasmix' node. Of course, now we have so many different XML nesting
nodes to check that I just made it an array of different noces. That
also allows me to mark the suunto case, so that we only do the "check
for crazy alcoholic xml entries" when it's a suunto file.
The "type of file" thing is probably a good idea for deciding on default
units too. Some day.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-09-01 20:32:52 +00:00
|
|
|
fraction_t he;
|
2011-08-31 01:23:59 +00:00
|
|
|
} gasmix_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
volume_t size;
|
2011-09-04 03:31:18 +00:00
|
|
|
pressure_t workingpressure;
|
2011-09-04 18:32:30 +00:00
|
|
|
const char *description; /* "LP85", "AL72", "AL80", "HP100+" or whatever */
|
2011-09-04 03:31:18 +00:00
|
|
|
} cylinder_type_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
cylinder_type_t type;
|
|
|
|
gasmix_t gasmix;
|
|
|
|
} cylinder_t;
|
2011-08-31 01:23:59 +00:00
|
|
|
|
|
|
|
static inline int to_feet(depth_t depth)
|
|
|
|
{
|
|
|
|
return depth.mm * 0.00328084 + 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int to_C(temperature_t temp)
|
|
|
|
{
|
|
|
|
if (!temp.mkelvin)
|
|
|
|
return 0;
|
|
|
|
return (temp.mkelvin - 273150) / 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int to_PSI(pressure_t pressure)
|
|
|
|
{
|
|
|
|
return pressure.mbar * 0.0145037738 + 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct sample {
|
|
|
|
duration_t time;
|
|
|
|
depth_t depth;
|
|
|
|
temperature_t temperature;
|
2011-09-04 03:31:18 +00:00
|
|
|
pressure_t cylinderpressure;
|
|
|
|
int cylinderindex;
|
2011-08-31 01:23:59 +00:00
|
|
|
};
|
|
|
|
|
2011-09-04 21:29:57 +00:00
|
|
|
#define MAX_CYLINDERS (8)
|
Start parsing gas mixes
The suunto xml is just completely crazy. What's the helium percentage
companion to "o2pct"? Would it be "hepct"? No. It's "hepct_0".
Ok, so they didn't number the first o2pct, which could be seen as sane:
that's the only mix value that should always exist. And they clearly
started their indexing with 0. So with multiple mixes, you'd then
expect "o2pct_1" and "hepct_1", right?
Wrong! Because XML people are crazy, the second O2 mix percentage is
obviously "o2pct_2". So the O2 percentages are one-based, with an
implicit one. But the He percentages are zero-based with an explicit
zero. So the second mix is "o2pct_2" and "hepct_1".
I'd like to ask what drugs Suunto people are on, but hey, it's a Finnish
company. No need to ask. Vodka explains everything. LOTS AND LOTS OF
VODKA.
In comparison, the libdivecomputer output is nice and sane, and uses a
'gasmix' node. Of course, now we have so many different XML nesting
nodes to check that I just made it an array of different noces. That
also allows me to mark the suunto case, so that we only do the "check
for crazy alcoholic xml entries" when it's a suunto file.
The "type of file" thing is probably a good idea for deciding on default
units too. Some day.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-09-01 20:32:52 +00:00
|
|
|
|
2011-08-31 01:23:59 +00:00
|
|
|
struct dive {
|
|
|
|
time_t when;
|
2011-09-02 02:56:04 +00:00
|
|
|
char *location;
|
|
|
|
char *notes;
|
2011-08-31 01:23:59 +00:00
|
|
|
depth_t maxdepth, meandepth;
|
|
|
|
duration_t duration, surfacetime;
|
|
|
|
depth_t visibility;
|
|
|
|
temperature_t airtemp, watertemp;
|
|
|
|
pressure_t beginning_pressure, end_pressure;
|
2011-09-04 03:31:18 +00:00
|
|
|
cylinder_t cylinder[MAX_CYLINDERS];
|
2011-08-31 01:23:59 +00:00
|
|
|
int samples;
|
|
|
|
struct sample sample[];
|
|
|
|
};
|
|
|
|
|
2011-08-31 01:40:25 +00:00
|
|
|
extern int verbose;
|
|
|
|
|
|
|
|
struct dive_table {
|
|
|
|
int nr, allocated;
|
|
|
|
struct dive **dives;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct dive_table dive_table;
|
|
|
|
|
2011-08-31 23:33:20 +00:00
|
|
|
static inline struct dive *get_dive(unsigned int nr)
|
|
|
|
{
|
|
|
|
if (nr >= dive_table.nr)
|
|
|
|
return NULL;
|
|
|
|
return dive_table.dives[nr];
|
|
|
|
}
|
|
|
|
|
2011-08-31 17:20:46 +00:00
|
|
|
extern void parse_xml_init(void);
|
|
|
|
extern void parse_xml_file(const char *filename);
|
2011-08-31 01:40:25 +00:00
|
|
|
|
2011-09-02 02:56:04 +00:00
|
|
|
extern void flush_dive_info_changes(void);
|
|
|
|
extern void save_dives(const char *filename);
|
2011-09-01 23:27:52 +00:00
|
|
|
|
2011-09-02 23:40:28 +00:00
|
|
|
static inline unsigned int dive_size(int samples)
|
|
|
|
{
|
|
|
|
return sizeof(struct dive) + samples*sizeof(struct sample);
|
|
|
|
}
|
|
|
|
|
2011-09-03 20:19:26 +00:00
|
|
|
extern struct dive *fixup_dive(struct dive *dive);
|
|
|
|
extern struct dive *try_to_merge(struct dive *a, struct dive *b);
|
|
|
|
|
2011-08-31 01:23:59 +00:00
|
|
|
#endif /* DIVE_H */
|