Core: dynamically allocate gases array

When calculating per-cylinder mean depths, bitfields were used to
keep track of "used" and "known" cylinders. Even though no sane
person will use more than 32 cylinders, turn this into dynamically
allocated arrays of bool for consistency with the rest of the code.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-07-15 21:34:39 +02:00 committed by Dirk Hohndel
parent 4e86d99714
commit 371a5fd66b

View file

@ -704,54 +704,71 @@ void fixup_dc_duration(struct divecomputer *dc)
/* Which cylinders had gas used? */ /* Which cylinders had gas used? */
#define SOME_GAS 5000 #define SOME_GAS 5000
static unsigned int get_cylinder_used(const struct dive *dive) static bool cylinder_used(const cylinder_t *cyl)
{ {
int i; int start_mbar, end_mbar;
unsigned int mask = 0;
for (i = 0; i < MAX_CYLINDERS; i++) { if (cylinder_nodata(cyl))
const cylinder_t *cyl = dive->cylinder + i; return false;
int start_mbar, end_mbar; start_mbar = cyl->start.mbar ?: cyl->sample_start.mbar;
end_mbar = cyl->end.mbar ?: cyl->sample_end.mbar;
if (cylinder_nodata(cyl)) // More than 5 bar used? This matches statistics.c
continue; // heuristics
start_mbar = cyl->start.mbar ?: cyl->sample_start.mbar; return start_mbar > end_mbar + SOME_GAS;
end_mbar = cyl->end.mbar ?: cyl->sample_end.mbar;
// More than 5 bar used? This matches statistics.c
// heuristics
if (start_mbar > end_mbar + SOME_GAS)
mask |= 1 << i;
}
return mask;
} }
/* Which cylinders do we know usage about? */ /* Get list of used cylinders. Returns the number of used cylinders. */
static unsigned int get_cylinder_known(const struct dive *dive, const struct divecomputer *dc) static int get_cylinder_used(const struct dive *dive, bool used[])
{ {
unsigned int mask = 0; int i, num = 0;
for (i = 0; i < MAX_CYLINDERS; i++) {
used[i] = cylinder_used(dive->cylinder + i);
if (used[i])
num++;
}
return num;
}
/* Are there any used cylinders which we do not know usage about? */
static bool has_unknown_used_cylinders(const struct dive *dive, const struct divecomputer *dc,
const bool used_cylinders[], int num)
{
int idx;
const struct event *ev; const struct event *ev;
bool *used_and_unknown = malloc(MAX_CYLINDERS * sizeof(bool));
memcpy(used_and_unknown, used_cylinders, MAX_CYLINDERS * sizeof(bool));
/* We know about using the O2 cylinder in a CCR dive */ /* We know about using the O2 cylinder in a CCR dive */
if (dc->divemode == CCR) { if (dc->divemode == CCR) {
int o2_cyl = get_cylinder_idx_by_use(dive, OXYGEN); int o2_cyl = get_cylinder_idx_by_use(dive, OXYGEN);
if (o2_cyl >= 0) if (o2_cyl >= 0 && used_and_unknown[o2_cyl]) {
mask |= 1 << o2_cyl; used_and_unknown[o2_cyl] = false;
num--;
}
} }
/* We know about the explicit first cylinder (or first) */ /* We know about the explicit first cylinder (or first) */
mask |= 1 << explicit_first_cylinder(dive, dc); idx = explicit_first_cylinder(dive, dc);
if (used_and_unknown[idx]) {
used_and_unknown[idx] = false;
num--;
}
/* And we have possible switches to other gases */ /* And we have possible switches to other gases */
ev = get_next_event(dc->events, "gaschange"); ev = get_next_event(dc->events, "gaschange");
while (ev) { while (ev && num > 0) {
int i = get_cylinder_index(dive, ev); idx = get_cylinder_index(dive, ev);
if (i >= 0) if (idx >= 0 && used_and_unknown[idx]) {
mask |= 1 << i; used_and_unknown[idx] = false;
num--;
}
ev = get_next_event(ev->next, "gaschange"); ev = get_next_event(ev->next, "gaschange");
} }
return mask; free(used_and_unknown);
return num > 0;
} }
void per_cylinder_mean_depth(const struct dive *dive, struct divecomputer *dc, int *mean, int *duration) void per_cylinder_mean_depth(const struct dive *dive, struct divecomputer *dc, int *mean, int *duration)
@ -761,7 +778,8 @@ void per_cylinder_mean_depth(const struct dive *dive, struct divecomputer *dc, i
uint32_t lasttime = 0; uint32_t lasttime = 0;
int lastdepth = 0; int lastdepth = 0;
int idx = 0; int idx = 0;
unsigned int used_mask, known_mask; bool *used_cylinders;
int num_used_cylinders;
for (i = 0; i < MAX_CYLINDERS; i++) for (i = 0; i < MAX_CYLINDERS; i++)
mean[i] = duration[i] = 0; mean[i] = duration[i] = 0;
@ -773,33 +791,34 @@ void per_cylinder_mean_depth(const struct dive *dive, struct divecomputer *dc, i
* if we don't actually know about the usage of all the * if we don't actually know about the usage of all the
* used cylinders. * used cylinders.
*/ */
used_mask = get_cylinder_used(dive); used_cylinders = malloc(MAX_CYLINDERS * sizeof(bool));
known_mask = get_cylinder_known(dive, dc); num_used_cylinders = get_cylinder_used(dive, used_cylinders);
if (used_mask & ~known_mask) { if (has_unknown_used_cylinders(dive, dc, used_cylinders, num_used_cylinders)) {
/* /*
* If we had more than one used cylinder, but * If we had more than one used cylinder, but
* do not know usage of them, we simply cannot * do not know usage of them, we simply cannot
* account mean depth to them. * account mean depth to them.
*
* The "x & (x-1)" test shows if it's not a pure
* power of two.
*/ */
if (used_mask & (used_mask-1)) if (num_used_cylinders > 1) {
free(used_cylinders);
return; return;
}
/* /*
* For a single cylinder, use the overall mean * For a single cylinder, use the overall mean
* and duration * and duration
*/ */
for (i = 0; i < MAX_CYLINDERS; i++) { for (i = 0; i < MAX_CYLINDERS; i++) {
if (used_mask & (1 << i)) { if (used_cylinders[i]) {
mean[i] = dc->meandepth.mm; mean[i] = dc->meandepth.mm;
duration[i] = dc->duration.seconds; duration[i] = dc->duration.seconds;
} }
} }
free(used_cylinders);
return; return;
} }
free(used_cylinders);
if (!dc->samples) if (!dc->samples)
fake_dc(dc); fake_dc(dc);
const struct event *ev = get_next_event(dc->events, "gaschange"); const struct event *ev = get_next_event(dc->events, "gaschange");