]> git.tdb.fi Git - ext/subsurface.git/blob - dive.c
Add completions to the dive location, buddy and divemaster entries
[ext/subsurface.git] / dive.c
1 /* dive.c */
2 /* maintains the internal dive list structure */
3 #include <string.h>
4 #include <stdio.h>
5
6 #include "dive.h"
7
8 void add_event(struct dive *dive, int time, int type, int flags, int value, const char *name)
9 {
10         struct event *ev, **p;
11         unsigned int size, len = strlen(name);
12
13         size = sizeof(*ev) + len + 1;
14         ev = malloc(size);
15         if (!ev)
16                 return;
17         memset(ev, 0, size);
18         memcpy(ev->name, name, len);
19         ev->time.seconds = time;
20         ev->type = type;
21         ev->flags = flags;
22         ev->value = value;
23         ev->next = NULL;
24
25         p = &dive->events;
26         while (*p)
27                 p = &(*p)->next;
28         *p = ev;
29 }
30
31 double get_depth_units(unsigned int mm, int *frac, const char **units)
32 {
33         int decimals;
34         double d;
35         const char *unit;
36
37         switch (output_units.length) {
38         case METERS:
39                 d = mm / 1000.0;
40                 unit = "m";
41                 decimals = d < 20;
42                 break;
43         case FEET:
44                 d = mm_to_feet(mm);
45                 unit = "ft";
46                 decimals = 0;
47                 break;
48         }
49         if (frac)
50                 *frac = decimals;
51         if (units)
52                 *units = unit;
53         return d;
54 }
55
56 struct dive *alloc_dive(void)
57 {
58         const int initial_samples = 5;
59         unsigned int size;
60         struct dive *dive;
61
62         size = dive_size(initial_samples);
63         dive = malloc(size);
64         if (!dive)
65                 exit(1);
66         memset(dive, 0, size);
67         dive->alloc_samples = initial_samples;
68         return dive;
69 }
70
71 struct sample *prepare_sample(struct dive **divep)
72 {
73         struct dive *dive = *divep;
74         if (dive) {
75                 int nr = dive->samples;
76                 int alloc_samples = dive->alloc_samples;
77                 struct sample *sample;
78                 if (nr >= alloc_samples) {
79                         unsigned int size;
80
81                         alloc_samples = (alloc_samples * 3)/2 + 10;
82                         size = dive_size(alloc_samples);
83                         dive = realloc(dive, size);
84                         if (!dive)
85                                 return NULL;
86                         dive->alloc_samples = alloc_samples;
87                         *divep = dive;
88                 }
89                 sample = dive->sample + nr;
90                 memset(sample, 0, sizeof(*sample));
91                 return sample;
92         }
93         return NULL;
94 }
95
96 void finish_sample(struct dive *dive, struct sample *sample)
97 {
98         dive->samples++;
99 }
100
101 /*
102  * So when we re-calculate maxdepth and meandepth, we will
103  * not override the old numbers if they are close to the
104  * new ones.
105  *
106  * Why? Because a dive computer may well actually track the
107  * max depth and mean depth at finer granularity than the
108  * samples it stores. So it's possible that the max and mean
109  * have been reported more correctly originally.
110  *
111  * Only if the values calculated from the samples are clearly
112  * different do we override the normal depth values.
113  *
114  * This considers 1m to be "clearly different". That's
115  * a totally random number.
116  */
117 static void update_depth(depth_t *depth, int new)
118 {
119         if (new) {
120                 int old = depth->mm;
121
122                 if (abs(old - new) > 1000)
123                         depth->mm = new;
124         }
125 }
126
127 static void update_duration(duration_t *duration, int new)
128 {
129         if (new)
130                 duration->seconds = new;
131 }
132
133 static void update_temperature(temperature_t *temperature, int new)
134 {
135         if (new) {
136                 int old = temperature->mkelvin;
137
138                 if (abs(old - new) > 1000)
139                         temperature->mkelvin = new;
140         }
141 }
142
143 /*
144  * If you have more than 32 cylinders, you'd better have a 64-bit build.
145  * And if you have more than 64 cylinders, you need to use another tool,
146  * or fix this up to do something odd.
147  */
148 static unsigned long fixup_pressure(struct dive *dive, struct sample *sample, unsigned long flags)
149 {
150         unsigned long mask;
151         unsigned int pressure, index;
152         cylinder_t *cyl;
153
154         pressure = sample->cylinderpressure.mbar;
155         if (!pressure)
156                 return flags;
157         index = sample->cylinderindex;
158         if (index >= MAX_CYLINDERS)
159                 return flags;
160         cyl = dive->cylinder + index;
161         if (!cyl->start.mbar)
162                 cyl->start.mbar = pressure;
163         /*
164          * If we already have an end pressure, without
165          * ever having seen a sample for this cylinder,
166          * that means that somebody set the end pressure
167          * by hand
168          */
169         mask = 1ul << index;
170         if (cyl->end.mbar) {
171                 if (!(flags & mask))
172                         return flags;
173         }
174         flags |= mask;
175
176         /* we need to handle the user entering beginning and end tank pressures
177          * - maybe even IF we have samples. But for now if we have air pressure
178          * data in the samples, we use that instead of the minimum
179          * if (!cyl->end.mbar || pressure < cyl->end.mbar)
180          */
181         cyl->end.mbar = pressure;
182         return flags;
183 }
184
185 struct dive *fixup_dive(struct dive *dive)
186 {
187         int i;
188         double depthtime = 0;
189         int lasttime = 0;
190         int start = -1, end = -1;
191         int maxdepth = 0, mintemp = 0;
192         int lastdepth = 0;
193         int lasttemp = 0;
194         unsigned long flags = 0;
195
196         for (i = 0; i < dive->samples; i++) {
197                 struct sample *sample = dive->sample + i;
198                 int time = sample->time.seconds;
199                 int depth = sample->depth.mm;
200                 int temp = sample->temperature.mkelvin;
201
202                 if (lastdepth)
203                         end = time;
204
205                 if (depth) {
206                         if (start < 0)
207                                 start = lasttime;
208                         if (depth > maxdepth)
209                                 maxdepth = depth;
210                 }
211
212                 flags = fixup_pressure(dive, sample, flags);
213
214                 if (temp) {
215                         /*
216                          * If we have consecutive identical
217                          * temperature readings, throw away
218                          * the redundant ones.
219                          */
220                         if (lasttemp == temp)
221                                 sample->temperature.mkelvin = 0;
222                         else
223                                 lasttemp = temp;
224
225                         if (!mintemp || temp < mintemp)
226                                 mintemp = temp;
227                 }
228                 depthtime += (time - lasttime) * (lastdepth + depth) / 2;
229                 lastdepth = depth;
230                 lasttime = time;
231         }
232         if (end < 0)
233                 return dive;
234
235         update_duration(&dive->duration, end - start);
236         if (start != end)
237                 depthtime /= (end - start);
238
239         update_depth(&dive->meandepth, depthtime);
240         update_temperature(&dive->watertemp, mintemp);
241         update_depth(&dive->maxdepth, maxdepth);
242
243         add_people(dive->buddy);
244         add_people(dive->divemaster);
245         add_location(dive->location);
246         for (i = 0; i < MAX_CYLINDERS; i++) {
247                 cylinder_type_t *type = &dive->cylinder[i].type;
248                 add_cylinder_description(type);
249         }
250
251         return dive;
252 }
253
254 /* Don't pick a zero for MERGE_MIN() */
255 #define MERGE_MAX(res, a, b, n) res->n = MAX(a->n, b->n)
256 #define MERGE_MIN(res, a, b, n) res->n = (a->n)?(b->n)?MIN(a->n, b->n):(a->n):(b->n)
257 #define MERGE_TXT(res, a, b, n) res->n = merge_text(a->n, b->n)
258 #define MERGE_NONZERO(res, a, b, n) res->n = a->n ? a->n : b->n
259
260 static struct dive *add_sample(struct sample *sample, int time, struct dive *dive)
261 {
262         struct sample *p = prepare_sample(&dive);
263
264         if (!p)
265                 return NULL;
266         *p = *sample;
267         p->time.seconds = time;
268         finish_sample(dive, p);
269         return dive;
270 }
271
272 /*
273  * Merge samples. Dive 'a' is "offset" seconds before Dive 'b'
274  */
275 static struct dive *merge_samples(struct dive *res, struct dive *a, struct dive *b, int offset)
276 {
277         int asamples = a->samples;
278         int bsamples = b->samples;
279         struct sample *as = a->sample;
280         struct sample *bs = b->sample;
281
282         for (;;) {
283                 int at, bt;
284                 struct sample sample;
285
286                 if (!res)
287                         return NULL;
288
289                 at = asamples ? as->time.seconds : -1;
290                 bt = bsamples ? bs->time.seconds + offset : -1;
291
292                 /* No samples? All done! */
293                 if (at < 0 && bt < 0)
294                         return fixup_dive(res);
295
296                 /* Only samples from a? */
297                 if (bt < 0) {
298 add_sample_a:
299                         res = add_sample(as, at, res);
300                         as++;
301                         asamples--;
302                         continue;
303                 }
304
305                 /* Only samples from b? */
306                 if (at < 0) {
307 add_sample_b:
308                         res = add_sample(bs, bt, res);
309                         bs++;
310                         bsamples--;
311                         continue;
312                 }
313
314                 if (at < bt)
315                         goto add_sample_a;
316                 if (at > bt)
317                         goto add_sample_b;
318
319                 /* same-time sample: add a merged sample. Take the non-zero ones */
320                 sample = *bs;
321                 if (as->depth.mm)
322                         sample.depth = as->depth;
323                 if (as->temperature.mkelvin)
324                         sample.temperature = as->temperature;
325                 if (as->cylinderpressure.mbar)
326                         sample.cylinderpressure = as->cylinderpressure;
327                 if (as->cylinderindex)
328                         sample.cylinderindex = as->cylinderindex;
329
330                 res = add_sample(&sample, at, res);
331
332                 as++;
333                 bs++;
334                 asamples--;
335                 bsamples--;
336         }
337 }
338
339 static char *merge_text(const char *a, const char *b)
340 {
341         char *res;
342
343         if (!a || !*a)
344                 return (char *)b;
345         if (!b || !*b)
346                 return (char *)a;
347         if (!strcmp(a,b))
348                 return (char *)a;
349         res = malloc(strlen(a) + strlen(b) + 9);
350         if (!res)
351                 return (char *)a;
352         sprintf(res, "(%s) or (%s)", a, b);
353         return res;
354 }
355
356 #define SORT(a,b,field) \
357         if (a->field != b->field) return a->field < b->field ? -1 : 1
358
359 static int sort_event(struct event *a, struct event *b)
360 {
361         SORT(a,b,time.seconds);
362         SORT(a,b,type);
363         SORT(a,b,flags);
364         SORT(a,b,value);
365         return strcmp(a->name, b->name);
366 }
367
368 static void merge_events(struct dive *res, struct dive *src1, struct dive *src2, int offset)
369 {
370         struct event *a, *b;
371         struct event **p = &res->events;
372
373         a = src1->events;
374         b = src2->events;
375         while (b) {
376                 b->time.seconds += offset;
377                 b = b->next;
378         }
379         b = src2->events;
380
381         while (a || b) {
382                 int s;
383                 if (!b) {
384                         *p = a;
385                         break;
386                 }
387                 if (!a) {
388                         *p = b;
389                         break;
390                 }
391                 s = sort_event(a, b);
392                 /* Pick b */
393                 if (s > 0) {
394                         *p = b;
395                         p = &b->next;
396                         b = b->next;
397                         continue;
398                 }
399                 /* Pick 'a' or neither */
400                 if (s < 0) {
401                         *p = a;
402                         p = &a->next;
403                 }
404                 a = a->next;
405                 continue;
406         }
407 }
408
409 /* Pick whichever has any info (if either). Prefer 'a' */
410 static void merge_cylinder_type(cylinder_type_t *res, cylinder_type_t *a, cylinder_type_t *b)
411 {
412         if (a->size.mliter)
413                 b = a;
414         *res = *b;
415 }
416
417 static void merge_cylinder_mix(struct gasmix *res, struct gasmix *a, struct gasmix *b)
418 {
419         if (a->o2.permille)
420                 b = a;
421         *res = *b;
422 }
423
424 static void merge_cylinder_info(cylinder_t *res, cylinder_t *a, cylinder_t *b)
425 {
426         merge_cylinder_type(&res->type, &a->type, &b->type);
427         merge_cylinder_mix(&res->gasmix, &a->gasmix, &b->gasmix);
428         MERGE_MAX(res, a, b, start.mbar);
429         MERGE_MIN(res, a, b, end.mbar);
430 }
431
432 /*
433  * This could do a lot more merging. Right now it really only
434  * merges almost exact duplicates - something that happens easily
435  * with overlapping dive downloads.
436  */
437 struct dive *try_to_merge(struct dive *a, struct dive *b)
438 {
439         int i;
440         struct dive *res;
441
442         if ((a->when >= b->when + 60) || (a->when <= b->when - 60))
443                 return NULL;
444
445         res = alloc_dive();
446
447         res->when = a->when;
448         MERGE_NONZERO(res, a, b, latitude);
449         MERGE_NONZERO(res, a, b, longitude);
450         MERGE_TXT(res, a, b, location);
451         MERGE_TXT(res, a, b, notes);
452         MERGE_TXT(res, a, b, buddy);
453         MERGE_TXT(res, a, b, divemaster);
454         MERGE_MAX(res, a, b, number);
455         MERGE_MAX(res, a, b, maxdepth.mm);
456         res->meandepth.mm = 0;
457         MERGE_MAX(res, a, b, duration.seconds);
458         MERGE_MAX(res, a, b, surfacetime.seconds);
459         MERGE_MAX(res, a, b, airtemp.mkelvin);
460         MERGE_MIN(res, a, b, watertemp.mkelvin);
461         for (i = 0; i < MAX_CYLINDERS; i++)
462                 merge_cylinder_info(res->cylinder+i, a->cylinder + i, b->cylinder + i);
463         merge_events(res, a, b, 0);
464         return merge_samples(res, a, b, 0);
465 }