]> git.tdb.fi Git - ext/subsurface.git/blob - dive.c
Avoid using type 'gasmix_t': use 'struct gasmix' instead
[ext/subsurface.git] / dive.c
1 #include <string.h>
2 #include <stdio.h>
3
4 #include "dive.h"
5
6 /*
7  * So when we re-calculate maxdepth and meandepth, we will
8  * not override the old numbers if they are close to the
9  * new ones.
10  *
11  * Why? Because a dive computer may well actually track the
12  * max depth and mean depth at finer granularity than the
13  * samples it stores. So it's possible that the max and mean
14  * have been reported more correctly originally.
15  *
16  * Only if the values calculated from the samples are clearly
17  * different do we override the normal depth values.
18  *
19  * This considers 1m to be "clearly different". That's
20  * a totally random number.
21  */
22 static void update_depth(depth_t *depth, int new)
23 {
24         if (new) {
25                 int old = depth->mm;
26
27                 if (abs(old - new) > 1000)
28                         depth->mm = new;
29         }
30 }
31
32 static void update_duration(duration_t *duration, int new)
33 {
34         if (new)
35                 duration->seconds = new;
36 }
37
38 static void update_temperature(temperature_t *temperature, int new)
39 {
40         if (new) {
41                 int old = temperature->mkelvin;
42
43                 if (abs(old - new) > 1000)
44                         temperature->mkelvin = new;
45         }
46 }
47
48 static void fixup_pressure(struct dive *dive, struct sample *sample)
49 {
50         unsigned int pressure, index;
51         cylinder_t *cyl;
52
53         pressure = sample->cylinderpressure.mbar;
54         if (!pressure)
55                 return;
56         index = sample->cylinderindex;
57         if (index >= MAX_CYLINDERS)
58                 return;
59         cyl = dive->cylinder + index;
60         if (!cyl->start.mbar)
61                 cyl->start.mbar = pressure;
62         if (!cyl->end.mbar || pressure < cyl->end.mbar)
63                 cyl->end.mbar = pressure;
64 }
65
66 struct dive *fixup_dive(struct dive *dive)
67 {
68         int i;
69         double depthtime = 0;
70         int lasttime = 0;
71         int start = -1, end = -1;
72         int maxdepth = 0, mintemp = 0;
73         int lastdepth = 0;
74         int lasttemp = 0;
75         temperature_t *redundant_temp = NULL;
76
77         for (i = 0; i < dive->samples; i++) {
78                 struct sample *sample = dive->sample + i;
79                 int time = sample->time.seconds;
80                 int depth = sample->depth.mm;
81                 int temp = sample->temperature.mkelvin;
82
83                 if (lastdepth)
84                         end = time;
85
86                 if (depth) {
87                         if (start < 0)
88                                 start = lasttime;
89                         if (depth > maxdepth)
90                                 maxdepth = depth;
91                 }
92
93                 fixup_pressure(dive, sample);
94
95                 if (temp) {
96                         /*
97                          * If we have consecutive identical
98                          * temperature readings, throw away
99                          * the redundant ones. We care about
100                          * the "edges" only.
101                          */
102                         if (lasttemp == temp) {
103                                 if (redundant_temp)
104                                         redundant_temp->mkelvin = 0;
105                                 redundant_temp = &sample->temperature;
106                         } else {
107                                 redundant_temp = NULL;
108                                 lasttemp = temp;
109                         }
110
111                         if (!mintemp || temp < mintemp)
112                                 mintemp = temp;
113                 }
114                 depthtime += (time - lasttime) * (lastdepth + depth) / 2;
115                 lastdepth = depth;
116                 lasttime = time;
117         }
118         if (end < 0)
119                 return dive;
120
121         update_duration(&dive->duration, end - start);
122         if (start != end)
123                 depthtime /= (end - start);
124
125         update_depth(&dive->meandepth, depthtime);
126         update_temperature(&dive->watertemp, mintemp);
127         update_depth(&dive->maxdepth, maxdepth);
128
129         return dive;
130 }
131
132 /* Don't pick a zero for MERGE_MIN() */
133 #define MERGE_MAX(res, a, b, n) res->n = MAX(a->n, b->n)
134 #define MERGE_MIN(res, a, b, n) res->n = (a->n)?(b->n)?MIN(a->n, b->n):(a->n):(b->n)
135
136 static int alloc_samples;
137
138 static struct dive *add_sample(struct sample *sample, int time, struct dive *dive)
139 {
140         int nr = dive->samples;
141         struct sample *d;
142
143         if (nr >= alloc_samples) {
144                 alloc_samples = (alloc_samples + 64) * 3 / 2;
145                 dive = realloc(dive, dive_size(alloc_samples));
146                 if (!dive)
147                         return NULL;
148         }
149         dive->samples = nr+1;
150         d = dive->sample + nr;
151
152         *d = *sample;
153         d->time.seconds = time;
154         return dive;
155 }
156
157 /*
158  * Merge samples. Dive 'a' is "offset" seconds before Dive 'b'
159  */
160 static struct dive *merge_samples(struct dive *res, struct dive *a, struct dive *b, int offset)
161 {
162         int asamples = a->samples;
163         int bsamples = b->samples;
164         struct sample *as = a->sample;
165         struct sample *bs = b->sample;
166
167         for (;;) {
168                 int at, bt;
169                 struct sample sample;
170
171                 if (!res)
172                         return NULL;
173
174                 at = asamples ? as->time.seconds : -1;
175                 bt = bsamples ? bs->time.seconds + offset : -1;
176
177                 /* No samples? All done! */
178                 if (at < 0 && bt < 0)
179                         return fixup_dive(res);
180
181                 /* Only samples from a? */
182                 if (bt < 0) {
183 add_sample_a:
184                         res = add_sample(as, at, res);
185                         as++;
186                         asamples--;
187                         continue;
188                 }
189
190                 /* Only samples from b? */
191                 if (at < 0) {
192 add_sample_b:
193                         res = add_sample(bs, bt, res);
194                         bs++;
195                         bsamples--;
196                         continue;
197                 }
198
199                 if (at < bt)
200                         goto add_sample_a;
201                 if (at > bt)
202                         goto add_sample_b;
203
204                 /* same-time sample: add a merged sample. Take the non-zero ones */
205                 sample = *bs;
206                 if (as->depth.mm)
207                         sample.depth = as->depth;
208                 if (as->temperature.mkelvin)
209                         sample.temperature = as->temperature;
210                 if (as->cylinderpressure.mbar)
211                         sample.cylinderpressure = as->cylinderpressure;
212                 if (as->cylinderindex)
213                         sample.cylinderindex = as->cylinderindex;
214
215                 res = add_sample(&sample, at, res);
216
217                 as++;
218                 bs++;
219                 asamples--;
220                 bsamples--;
221         }
222 }
223
224 static char *merge_text(const char *a, const char *b)
225 {
226         char *res;
227
228         if (!a || !*a)
229                 return (char *)b;
230         if (!b || !*b)
231                 return (char *)a;
232         if (!strcmp(a,b))
233                 return (char *)a;
234         res = malloc(strlen(a) + strlen(b) + 9);
235         if (!res)
236                 return (char *)a;
237         sprintf(res, "(%s) or (%s)", a, b);
238         return res;
239 }
240
241 /* Pick whichever has any info (if either). Prefer 'a' */
242 static void merge_cylinder_type(cylinder_type_t *res, cylinder_type_t *a, cylinder_type_t *b)
243 {
244         if (a->size.mliter)
245                 b = a;
246         *res = *b;
247 }
248
249 static void merge_cylinder_mix(struct gasmix *res, struct gasmix *a, struct gasmix *b)
250 {
251         if (a->o2.permille)
252                 b = a;
253         *res = *b;
254 }
255
256 static void merge_cylinder_info(cylinder_t *res, cylinder_t *a, cylinder_t *b)
257 {
258         merge_cylinder_type(&res->type, &a->type, &b->type);
259         merge_cylinder_mix(&res->gasmix, &a->gasmix, &b->gasmix);
260         MERGE_MAX(res, a, b, start.mbar);
261         MERGE_MIN(res, a, b, end.mbar);
262 }
263
264 /*
265  * This could do a lot more merging. Right now it really only
266  * merges almost exact duplicates - something that happens easily
267  * with overlapping dive downloads.
268  */
269 struct dive *try_to_merge(struct dive *a, struct dive *b)
270 {
271         int i;
272         struct dive *res;
273
274         if (a->when != b->when)
275                 return NULL;
276
277         alloc_samples = 5;
278         res = malloc(dive_size(alloc_samples));
279         if (!res)
280                 return NULL;
281         memset(res, 0, dive_size(alloc_samples));
282
283         res->when = a->when;
284         res->location = merge_text(a->location, b->location);
285         res->notes = merge_text(a->notes, b->notes);
286         MERGE_MAX(res, a, b, maxdepth.mm);
287         res->meandepth.mm = 0;
288         MERGE_MAX(res, a, b, duration.seconds);
289         MERGE_MAX(res, a, b, surfacetime.seconds);
290         MERGE_MAX(res, a, b, airtemp.mkelvin);
291         MERGE_MIN(res, a, b, watertemp.mkelvin);
292         for (i = 0; i < MAX_CYLINDERS; i++)
293                 merge_cylinder_info(res->cylinder+i, a->cylinder + i, b->cylinder + i);
294
295         return merge_samples(res, a, b, 0);
296 }