The maximum depth value is stored in the dive header. There is no need to parse the profile data to obtain it. This also avoids returning a zero depth when the profile data is no longer available. A few other fields (e.g. average depth, atmospheric pressure and temperature) are also present in the dive header.
363 lines
9.2 KiB
C
363 lines
9.2 KiB
C
/*
|
|
* libdivecomputer
|
|
*
|
|
* Copyright (C) 2018 Jef Driesen
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
* MA 02110-1301 USA
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "cressi_goa.h"
|
|
#include "context-private.h"
|
|
#include "parser-private.h"
|
|
#include "array.h"
|
|
|
|
#define ISINSTANCE(parser) dc_device_isinstance((parser), &cressi_goa_parser_vtable)
|
|
|
|
#define SZ_HEADER 23
|
|
|
|
#define DEPTH 0
|
|
#define DEPTH2 1
|
|
#define TIME 2
|
|
#define TEMPERATURE 3
|
|
|
|
#define SCUBA 0
|
|
#define NITROX 1
|
|
#define FREEDIVE 2
|
|
#define GAUGE 3
|
|
|
|
#define NGASMIXES 2
|
|
|
|
#define UNDEFINED 0xFFFFFFFF
|
|
|
|
typedef struct cressi_goa_parser_t cressi_goa_parser_t;
|
|
|
|
struct cressi_goa_parser_t {
|
|
dc_parser_t base;
|
|
unsigned int model;
|
|
};
|
|
|
|
typedef struct cressi_goa_layout_t {
|
|
unsigned int headersize;
|
|
unsigned int datetime;
|
|
unsigned int divetime;
|
|
unsigned int gasmix;
|
|
unsigned int atmospheric;
|
|
unsigned int maxdepth;
|
|
unsigned int avgdepth;
|
|
unsigned int temperature;
|
|
} cressi_goa_layout_t;
|
|
|
|
static dc_status_t cressi_goa_parser_set_data (dc_parser_t *abstract, const unsigned char *data, unsigned int size);
|
|
static dc_status_t cressi_goa_parser_get_datetime (dc_parser_t *abstract, dc_datetime_t *datetime);
|
|
static dc_status_t cressi_goa_parser_get_field (dc_parser_t *abstract, dc_field_type_t type, unsigned int flags, void *value);
|
|
static dc_status_t cressi_goa_parser_samples_foreach (dc_parser_t *abstract, dc_sample_callback_t callback, void *userdata);
|
|
|
|
static const dc_parser_vtable_t cressi_goa_parser_vtable = {
|
|
sizeof(cressi_goa_parser_t),
|
|
DC_FAMILY_CRESSI_GOA,
|
|
cressi_goa_parser_set_data, /* set_data */
|
|
NULL, /* set_clock */
|
|
NULL, /* set_atmospheric */
|
|
NULL, /* set_density */
|
|
cressi_goa_parser_get_datetime, /* datetime */
|
|
cressi_goa_parser_get_field, /* fields */
|
|
cressi_goa_parser_samples_foreach, /* samples_foreach */
|
|
NULL /* destroy */
|
|
};
|
|
|
|
static const cressi_goa_layout_t layouts[] = {
|
|
/* SCUBA */
|
|
{
|
|
0x61, /* headersize */
|
|
0x11, /* datetime */
|
|
0x19, /* divetime */
|
|
0x1F, /* gasmix */
|
|
0x23, /* atmospheric */
|
|
0x4E, /* maxdepth */
|
|
0x50, /* avgdepth */
|
|
0x52, /* temperature */
|
|
},
|
|
/* NITROX */
|
|
{
|
|
0x61, /* headersize */
|
|
0x11, /* datetime */
|
|
0x19, /* divetime */
|
|
0x1F, /* gasmix */
|
|
0x23, /* atmospheric */
|
|
0x4E, /* maxdepth */
|
|
0x50, /* avgdepth */
|
|
0x52, /* temperature */
|
|
},
|
|
/* FREEDIVE */
|
|
{
|
|
0x2B, /* headersize */
|
|
0x11, /* datetime */
|
|
0x19, /* divetime */
|
|
UNDEFINED, /* gasmix */
|
|
UNDEFINED, /* atmospheric */
|
|
0x1C, /* maxdepth */
|
|
UNDEFINED, /* avgdepth */
|
|
0x1E, /* temperature */
|
|
},
|
|
/* GAUGE */
|
|
{
|
|
0x2D, /* headersize */
|
|
0x11, /* datetime */
|
|
0x19, /* divetime */
|
|
UNDEFINED, /* gasmix */
|
|
0x1B, /* atmospheric */
|
|
0x1D, /* maxdepth */
|
|
0x1F, /* avgdepth */
|
|
0x21, /* temperature */
|
|
},
|
|
};
|
|
|
|
dc_status_t
|
|
cressi_goa_parser_create (dc_parser_t **out, dc_context_t *context, unsigned int model)
|
|
{
|
|
cressi_goa_parser_t *parser = NULL;
|
|
|
|
if (out == NULL)
|
|
return DC_STATUS_INVALIDARGS;
|
|
|
|
// Allocate memory.
|
|
parser = (cressi_goa_parser_t *) dc_parser_allocate (context, &cressi_goa_parser_vtable);
|
|
if (parser == NULL) {
|
|
ERROR (context, "Failed to allocate memory.");
|
|
return DC_STATUS_NOMEMORY;
|
|
}
|
|
|
|
parser->model = model;
|
|
|
|
*out = (dc_parser_t*) parser;
|
|
|
|
return DC_STATUS_SUCCESS;
|
|
}
|
|
|
|
static dc_status_t
|
|
cressi_goa_parser_set_data (dc_parser_t *abstract, const unsigned char *data, unsigned int size)
|
|
{
|
|
return DC_STATUS_SUCCESS;
|
|
}
|
|
|
|
static dc_status_t
|
|
cressi_goa_parser_get_datetime (dc_parser_t *abstract, dc_datetime_t *datetime)
|
|
{
|
|
const unsigned char *data = abstract->data;
|
|
unsigned int size = abstract->size;
|
|
|
|
if (size < SZ_HEADER)
|
|
return DC_STATUS_DATAFORMAT;
|
|
|
|
unsigned int divemode = data[2];
|
|
if (divemode >= C_ARRAY_SIZE(layouts)) {
|
|
return DC_STATUS_DATAFORMAT;
|
|
}
|
|
|
|
const cressi_goa_layout_t *layout = &layouts[divemode];
|
|
|
|
if (size < layout->headersize)
|
|
return DC_STATUS_DATAFORMAT;
|
|
|
|
const unsigned char *p = abstract->data + layout->datetime;
|
|
|
|
if (datetime) {
|
|
datetime->year = array_uint16_le(p);
|
|
datetime->month = p[2];
|
|
datetime->day = p[3];
|
|
datetime->hour = p[4];
|
|
datetime->minute = p[5];
|
|
datetime->second = 0;
|
|
datetime->timezone = DC_TIMEZONE_NONE;
|
|
}
|
|
|
|
return DC_STATUS_SUCCESS;
|
|
}
|
|
|
|
static dc_status_t
|
|
cressi_goa_parser_get_field (dc_parser_t *abstract, dc_field_type_t type, unsigned int flags, void *value)
|
|
{
|
|
const unsigned char *data = abstract->data;
|
|
unsigned int size = abstract->size;
|
|
|
|
if (size < SZ_HEADER)
|
|
return DC_STATUS_DATAFORMAT;
|
|
|
|
unsigned int divemode = data[2];
|
|
if (divemode >= C_ARRAY_SIZE(layouts)) {
|
|
return DC_STATUS_DATAFORMAT;
|
|
}
|
|
|
|
const cressi_goa_layout_t *layout = &layouts[divemode];
|
|
|
|
if (size < layout->headersize)
|
|
return DC_STATUS_DATAFORMAT;
|
|
|
|
unsigned int ngasmixes = 0;
|
|
if (layout->gasmix != UNDEFINED) {
|
|
for (unsigned int i = 0; i < NGASMIXES; ++i) {
|
|
if (data[layout->gasmix + 2 * i + 1] == 0)
|
|
break;
|
|
ngasmixes++;
|
|
}
|
|
}
|
|
|
|
dc_gasmix_t *gasmix = (dc_gasmix_t *) value;
|
|
|
|
if (value) {
|
|
switch (type) {
|
|
case DC_FIELD_DIVETIME:
|
|
if (layout->divetime == UNDEFINED)
|
|
return DC_STATUS_UNSUPPORTED;
|
|
*((unsigned int *) value) = array_uint16_le (data + layout->divetime);
|
|
break;
|
|
case DC_FIELD_MAXDEPTH:
|
|
if (layout->maxdepth == UNDEFINED)
|
|
return DC_STATUS_UNSUPPORTED;
|
|
*((double *) value) = array_uint16_le (data + layout->maxdepth) / 10.0;
|
|
break;
|
|
case DC_FIELD_AVGDEPTH:
|
|
if (layout->avgdepth == UNDEFINED)
|
|
return DC_STATUS_UNSUPPORTED;
|
|
*((double *) value) = array_uint16_le (data + layout->avgdepth) / 10.0;
|
|
break;
|
|
case DC_FIELD_TEMPERATURE_MINIMUM:
|
|
if (layout->temperature == UNDEFINED)
|
|
return DC_STATUS_UNSUPPORTED;
|
|
*((double *) value) = array_uint16_le (data + layout->temperature) / 10.0;
|
|
break;
|
|
case DC_FIELD_ATMOSPHERIC:
|
|
if (layout->atmospheric == UNDEFINED)
|
|
return DC_STATUS_UNSUPPORTED;
|
|
*((double *) value) = array_uint16_le (data + layout->atmospheric) / 1000.0;
|
|
break;
|
|
case DC_FIELD_GASMIX_COUNT:
|
|
*((unsigned int *) value) = ngasmixes;
|
|
break;
|
|
case DC_FIELD_GASMIX:
|
|
gasmix->helium = 0.0;
|
|
gasmix->oxygen = data[layout->gasmix + 2 * flags + 1] / 100.0;
|
|
gasmix->nitrogen = 1.0 - gasmix->oxygen - gasmix->helium;
|
|
break;
|
|
case DC_FIELD_DIVEMODE:
|
|
switch (divemode) {
|
|
case SCUBA:
|
|
case NITROX:
|
|
*((dc_divemode_t *) value) = DC_DIVEMODE_OC;
|
|
break;
|
|
case GAUGE:
|
|
*((dc_divemode_t *) value) = DC_DIVEMODE_GAUGE;
|
|
break;
|
|
case FREEDIVE:
|
|
*((dc_divemode_t *) value) = DC_DIVEMODE_FREEDIVE;
|
|
break;
|
|
default:
|
|
return DC_STATUS_DATAFORMAT;
|
|
}
|
|
break;
|
|
default:
|
|
return DC_STATUS_UNSUPPORTED;
|
|
}
|
|
}
|
|
|
|
return DC_STATUS_SUCCESS;
|
|
}
|
|
|
|
static dc_status_t
|
|
cressi_goa_parser_samples_foreach (dc_parser_t *abstract, dc_sample_callback_t callback, void *userdata)
|
|
{
|
|
const unsigned char *data = abstract->data;
|
|
unsigned int size = abstract->size;
|
|
|
|
if (size < SZ_HEADER)
|
|
return DC_STATUS_DATAFORMAT;
|
|
|
|
unsigned int divemode = data[2];
|
|
if (divemode >= C_ARRAY_SIZE(layouts)) {
|
|
return DC_STATUS_DATAFORMAT;
|
|
}
|
|
|
|
const cressi_goa_layout_t *layout = &layouts[divemode];
|
|
|
|
if (size < layout->headersize)
|
|
return DC_STATUS_DATAFORMAT;
|
|
|
|
unsigned int interval = divemode == FREEDIVE ? 2 : 5;
|
|
|
|
unsigned int time = 0;
|
|
unsigned int depth = 0;
|
|
unsigned int gasmix = 0, gasmix_previous = 0xFFFFFFFF;
|
|
unsigned int temperature = 0;
|
|
unsigned int have_temperature = 0;
|
|
unsigned int complete = 0;
|
|
|
|
unsigned int offset = layout->headersize;
|
|
while (offset + 2 <= size) {
|
|
dc_sample_value_t sample = {0};
|
|
|
|
// Get the sample type and value.
|
|
unsigned int raw = array_uint16_le (data + offset);
|
|
unsigned int type = (raw & 0x0003);
|
|
unsigned int value = (raw & 0xFFFC) >> 2;
|
|
|
|
if (type == DEPTH || type == DEPTH2) {
|
|
depth = (value & 0x07FF);
|
|
gasmix = (value & 0x0800) >> 11;
|
|
time += interval;
|
|
complete = 1;
|
|
} else if (type == TEMPERATURE) {
|
|
temperature = value;
|
|
have_temperature = 1;
|
|
} else if (type == TIME) {
|
|
time += value;
|
|
}
|
|
|
|
if (complete) {
|
|
// Time (seconds).
|
|
sample.time = time;
|
|
if (callback) callback (DC_SAMPLE_TIME, sample, userdata);
|
|
|
|
// Temperature (1/10 °C).
|
|
if (have_temperature) {
|
|
sample.temperature = temperature / 10.0;
|
|
if (callback) callback (DC_SAMPLE_TEMPERATURE, sample, userdata);
|
|
have_temperature = 0;
|
|
}
|
|
|
|
// Depth (1/10 m).
|
|
sample.depth = depth / 10.0;
|
|
if (callback) callback (DC_SAMPLE_DEPTH, sample, userdata);
|
|
|
|
// Gas change
|
|
if (divemode == SCUBA || divemode == NITROX) {
|
|
if (gasmix != gasmix_previous) {
|
|
sample.gasmix = gasmix;
|
|
if (callback) callback (DC_SAMPLE_GASMIX, sample, userdata);
|
|
gasmix_previous = gasmix;
|
|
}
|
|
}
|
|
|
|
complete = 0;
|
|
}
|
|
|
|
offset += 2;
|
|
}
|
|
|
|
return DC_STATUS_SUCCESS;
|
|
}
|