From edc0c699437f426b8c2e83a282bea6c863accd50 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Wed, 1 May 2024 18:21:06 +0200 Subject: [PATCH] core: convert divecomputer.c to C++ Signed-off-by: Berthold Stoeger --- Subsurface-mobile.pro | 2 +- core/CMakeLists.txt | 2 +- core/{divecomputer.c => divecomputer.cpp} | 64 +++++++++++------------ 3 files changed, 34 insertions(+), 34 deletions(-) rename core/{divecomputer.c => divecomputer.cpp} (84%) diff --git a/Subsurface-mobile.pro b/Subsurface-mobile.pro index 5b29bd21f..f60b28f78 100644 --- a/Subsurface-mobile.pro +++ b/Subsurface-mobile.pro @@ -49,7 +49,7 @@ SOURCES += subsurface-mobile-main.cpp \ core/profile.cpp \ core/device.cpp \ core/dive.cpp \ - core/divecomputer.c \ + core/divecomputer.cpp \ core/divefilter.cpp \ core/event.c \ core/eventtype.cpp \ diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index bcfdfcb4c..9f653126c 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -61,7 +61,7 @@ set(SUBSURFACE_CORE_LIB_SRCS devicedetails.h dive.cpp dive.h - divecomputer.c + divecomputer.cpp divecomputer.h dive.h divefilter.cpp diff --git a/core/divecomputer.c b/core/divecomputer.cpp similarity index 84% rename from core/divecomputer.c rename to core/divecomputer.cpp index 4cac867ff..4577baf39 100644 --- a/core/divecomputer.c +++ b/core/divecomputer.cpp @@ -117,7 +117,7 @@ static void fill_samples_no_avg(struct sample *s, int max_d, int max_t, double s } } -void fake_dc(struct divecomputer *dc) +extern "C" void fake_dc(struct divecomputer *dc) { alloc_samples(dc, 6); struct sample *fake = dc->sample; @@ -154,7 +154,7 @@ void fake_dc(struct divecomputer *dc) if (avg_d == 0) { /* we try for a sane slope, but bow to the insanity of * the user supplied data */ - fill_samples_no_avg(fake, max_d, max_t, MAX(2.0 * max_d / max_t, (double)prefs.ascratelast6m)); + fill_samples_no_avg(fake, max_d, max_t, std::max(2.0 * max_d / max_t, (double)prefs.ascratelast6m)); if (fake[3].time.seconds == 0) { // just a 4 point profile dc->samples = 4; fake[3].time.seconds = max_t; @@ -199,7 +199,7 @@ void fake_dc(struct divecomputer *dc) * saving the dive mode for each event. When the events occur AFTER 'time' seconds, the last stored divemode * is returned. This function is self-tracking, relying on setting the event pointer 'evp' so that, in each iteration * that calls this function, the search does not have to begin at the first event of the dive */ -enum divemode_t get_current_divemode(const struct divecomputer *dc, int time, const struct event **evp, enum divemode_t *divemode) +extern "C" enum divemode_t get_current_divemode(const struct divecomputer *dc, int time, const struct event **evp, enum divemode_t *divemode) { const struct event *ev = *evp; if (dc) { @@ -221,12 +221,12 @@ enum divemode_t get_current_divemode(const struct divecomputer *dc, int time, co /* helper function to make it easier to work with our structures * we don't interpolate here, just use the value from the last sample up to that time */ -int get_depth_at_time(const struct divecomputer *dc, unsigned int time) +extern "C" int get_depth_at_time(const struct divecomputer *dc, unsigned int time) { int depth = 0; if (dc && dc->sample) for (int i = 0; i < dc->samples; i++) { - if (dc->sample[i].time.seconds > time) + if (dc->sample[i].time.seconds > (int)time) break; depth = dc->sample[i].depth.mm; } @@ -236,7 +236,7 @@ int get_depth_at_time(const struct divecomputer *dc, unsigned int time) /* The first divecomputer is embedded in the dive structure. Free its data but not * the structure itself. For all remainding dcs in the list, free data *and* structures. */ -void free_dive_dcs(struct divecomputer *dc) +extern "C" void free_dive_dcs(struct divecomputer *dc) { free_dc_contents(dc); STRUCTURED_LIST_FREE(struct divecomputer, dc->next, free_dc); @@ -244,17 +244,17 @@ void free_dive_dcs(struct divecomputer *dc) /* make room for num samples; if not enough space is available, the sample * array is reallocated and the existing samples are copied. */ -void alloc_samples(struct divecomputer *dc, int num) +extern "C" void alloc_samples(struct divecomputer *dc, int num) { if (num > dc->alloc_samples) { dc->alloc_samples = (num * 3) / 2 + 10; - dc->sample = realloc(dc->sample, dc->alloc_samples * sizeof(struct sample)); + dc->sample = (struct sample *)realloc(dc->sample, dc->alloc_samples * sizeof(struct sample)); if (!dc->sample) dc->samples = dc->alloc_samples = 0; } } -void free_samples(struct divecomputer *dc) +extern "C" void free_samples(struct divecomputer *dc) { if (dc) { free(dc->sample); @@ -264,7 +264,7 @@ void free_samples(struct divecomputer *dc) } } -struct sample *prepare_sample(struct divecomputer *dc) +extern "C" struct sample *prepare_sample(struct divecomputer *dc) { if (dc) { int nr = dc->samples; @@ -291,12 +291,12 @@ struct sample *prepare_sample(struct divecomputer *dc) } -void finish_sample(struct divecomputer *dc) +extern "C" void finish_sample(struct divecomputer *dc) { dc->samples++; } -struct sample *add_sample(const struct sample *sample, int time, struct divecomputer *dc) +extern "C" struct sample *add_sample(const struct sample *sample, int time, struct divecomputer *dc) { struct sample *p = prepare_sample(dc); @@ -314,7 +314,7 @@ struct sample *add_sample(const struct sample *sample, int time, struct divecomp * * This ignores any surface time in the middle of the dive. */ -void fixup_dc_duration(struct divecomputer *dc) +extern "C" void fixup_dc_duration(struct divecomputer *dc) { int duration, i; int lasttime, lastdepth, depthtime; @@ -347,7 +347,7 @@ void fixup_dc_duration(struct divecomputer *dc) * What do the dive computers say the water temperature is? * (not in the samples, but as dc property for dcs that support that) */ -unsigned int dc_watertemp(const struct divecomputer *dc) +extern "C" unsigned int dc_watertemp(const struct divecomputer *dc) { int sum = 0, nr = 0; @@ -365,7 +365,7 @@ unsigned int dc_watertemp(const struct divecomputer *dc) /* * What do the dive computers say the air temperature is? */ -unsigned int dc_airtemp(const struct divecomputer *dc) +extern "C" unsigned int dc_airtemp(const struct divecomputer *dc) { int sum = 0, nr = 0; @@ -381,7 +381,7 @@ unsigned int dc_airtemp(const struct divecomputer *dc) } /* copies all events in this dive computer */ -void copy_events(const struct divecomputer *s, struct divecomputer *d) +extern "C" void copy_events(const struct divecomputer *s, struct divecomputer *d) { const struct event *ev; struct event **pev; @@ -398,7 +398,7 @@ void copy_events(const struct divecomputer *s, struct divecomputer *d) *pev = NULL; } -void copy_samples(const struct divecomputer *s, struct divecomputer *d) +extern "C" void copy_samples(const struct divecomputer *s, struct divecomputer *d) { /* instead of carefully copying them one by one and calling add_sample * over and over again, let's just copy the whole blob */ @@ -415,12 +415,12 @@ void copy_samples(const struct divecomputer *s, struct divecomputer *d) if(!nr) return; - d->sample = malloc(nr * sizeof(struct sample)); + d->sample = (struct sample *)malloc(nr * sizeof(struct sample)); if (d->sample) memcpy(d->sample, s->sample, nr * sizeof(struct sample)); } -void add_event_to_dc(struct divecomputer *dc, struct event *ev) +extern "C" void add_event_to_dc(struct divecomputer *dc, struct event *ev) { struct event **p; @@ -433,7 +433,7 @@ void add_event_to_dc(struct divecomputer *dc, struct event *ev) *p = ev; } -struct event *add_event(struct divecomputer *dc, unsigned int time, int type, int flags, int value, const char *name) +extern "C" struct event *add_event(struct divecomputer *dc, unsigned int time, int type, int flags, int value, const char *name) { struct event *ev = create_event(time, type, flags, value, name); @@ -446,7 +446,7 @@ struct event *add_event(struct divecomputer *dc, unsigned int time, int type, in } /* Substitutes an event in a divecomputer for another. No reordering is performed! */ -void swap_event(struct divecomputer *dc, struct event *from, struct event *to) +extern "C" void swap_event(struct divecomputer *dc, struct event *from, struct event *to) { for (struct event **ep = &dc->events; *ep; ep = &(*ep)->next) { if (*ep == from) { @@ -459,7 +459,7 @@ void swap_event(struct divecomputer *dc, struct event *from, struct event *to) } /* Remove given event from dive computer. Does *not* free the event. */ -void remove_event_from_dc(struct divecomputer *dc, struct event *event) +extern "C" void remove_event_from_dc(struct divecomputer *dc, struct event *event) { for (struct event **ep = &dc->events; *ep; ep = &(*ep)->next) { if (*ep == event) { @@ -470,7 +470,7 @@ void remove_event_from_dc(struct divecomputer *dc, struct event *event) } } -void add_extra_data(struct divecomputer *dc, const char *key, const char *value) +extern "C" void add_extra_data(struct divecomputer *dc, const char *key, const char *value) { struct extra_data **ed = &dc->extra_data; @@ -484,7 +484,7 @@ void add_extra_data(struct divecomputer *dc, const char *key, const char *value) while (*ed) ed = &(*ed)->next; - *ed = malloc(sizeof(struct extra_data)); + *ed = (struct extra_data *)malloc(sizeof(struct extra_data)); if (*ed) { (*ed)->key = strdup(key); (*ed)->value = strdup(value); @@ -498,7 +498,7 @@ void add_extra_data(struct divecomputer *dc, const char *key, const char *value) * positive for "same dive" and negative for "definitely * not the same dive" */ -int match_one_dc(const struct divecomputer *a, const struct divecomputer *b) +extern "C" int match_one_dc(const struct divecomputer *a, const struct divecomputer *b) { /* Not same model? Don't know if matching.. */ if (!a->model || !b->model) @@ -527,7 +527,7 @@ static void free_extra_data(struct extra_data *ed) free((void *)ed->value); } -void free_dc_contents(struct divecomputer *dc) +extern "C" void free_dc_contents(struct divecomputer *dc) { free(dc->sample); free((void *)dc->model); @@ -537,7 +537,7 @@ void free_dc_contents(struct divecomputer *dc) STRUCTURED_LIST_FREE(struct extra_data, dc->extra_data, free_extra_data); } -void free_dc(struct divecomputer *dc) +extern "C" void free_dc(struct divecomputer *dc) { free_dc_contents(dc); free(dc); @@ -545,12 +545,12 @@ void free_dc(struct divecomputer *dc) static const char *planner_dc_name = "planned dive"; -bool is_dc_planner(const struct divecomputer *dc) +extern "C" bool is_dc_planner(const struct divecomputer *dc) { - return dc && same_string(dc->model, planner_dc_name); + return same_string(dc->model, planner_dc_name); } -void make_planner_dc(struct divecomputer *dc) +extern "C" void make_planner_dc(struct divecomputer *dc) { free((void *)dc->model); dc->model = strdup(planner_dc_name); @@ -558,12 +558,12 @@ void make_planner_dc(struct divecomputer *dc) const char *manual_dc_name = "manually added dive"; -bool is_dc_manually_added_dive(const struct divecomputer *dc) +extern "C" bool is_dc_manually_added_dive(const struct divecomputer *dc) { return dc && same_string(dc->model, manual_dc_name); } -void make_manually_added_dive_dc(struct divecomputer *dc) +extern "C" void make_manually_added_dive_dc(struct divecomputer *dc) { free((void *)dc->model); dc->model = strdup(manual_dc_name);