]> git.tdb.fi Git - ext/subsurface.git/blob - parse-xml.c
Make a guess at the cylinder description from the size and pressure
[ext/subsurface.git] / parse-xml.c
1 #include <stdio.h>
2 #include <ctype.h>
3 #include <string.h>
4 #include <stdlib.h>
5 #include <errno.h>
6 #include <time.h>
7 #include <libxml/parser.h>
8 #include <libxml/tree.h>
9
10 #include "dive.h"
11
12 int verbose;
13
14 struct dive_table dive_table;
15
16 /*
17  * Add a dive into the dive_table array
18  */
19 static void record_dive(struct dive *dive)
20 {
21         int nr = dive_table.nr, allocated = dive_table.allocated;
22         struct dive **dives = dive_table.dives;
23
24         if (nr >= allocated) {
25                 allocated = (nr + 32) * 3 / 2;
26                 dives = realloc(dives, allocated * sizeof(struct dive *));
27                 if (!dives)
28                         exit(1);
29                 dive_table.dives = dives;
30                 dive_table.allocated = allocated;
31         }
32         dives[nr] = fixup_dive(dive);
33         dive_table.nr = nr+1;
34 }
35
36 static void start_match(const char *type, const char *name, char *buffer)
37 {
38         if (verbose > 2)
39                 printf("Matching %s '%s' (%s)\n",
40                         type, name, buffer);
41 }
42
43 static void nonmatch(const char *type, const char *name, char *buffer)
44 {
45         if (verbose > 1)
46                 printf("Unable to match %s '%s' (%s)\n",
47                         type, name, buffer);
48         free(buffer);
49 }
50
51 typedef void (*matchfn_t)(char *buffer, void *);
52
53 static int match(const char *pattern, int plen,
54                  const char *name, int nlen,
55                  matchfn_t fn, char *buf, void *data)
56 {
57         if (plen > nlen)
58                 return 0;
59         if (memcmp(pattern, name + nlen - plen, plen))
60                 return 0;
61         fn(buf, data);
62         return 1;
63 }
64
65 /*
66  * We keep our internal data in well-specified units, but
67  * the input may come in some random format. This keeps track
68  * of the incoming units.
69  */
70 static struct units {
71         enum { METERS, FEET } length;
72         enum { LITER, CUFT } volume;
73         enum { BAR, PSI } pressure;
74         enum { CELSIUS, FAHRENHEIT } temperature;
75         enum { KG, LBS } weight;
76 } units;
77
78 /* We're going to default to SI units for input */
79 static const struct units SI_units = {
80         .length = METERS,
81         .volume = LITER,
82         .pressure = BAR,
83         .temperature = CELSIUS,
84         .weight = KG
85 };
86
87 /*
88  * Dive info as it is being built up..
89  */
90 static int alloc_samples;
91 static struct dive *dive;
92 static struct sample *sample;
93 static struct tm tm;
94 static int suunto, uemis;
95 static int event_index, cylinder_index;
96
97 static time_t utc_mktime(struct tm *tm)
98 {
99         static const int mdays[] = {
100             0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
101         };
102         int year = tm->tm_year;
103         int month = tm->tm_mon;
104         int day = tm->tm_mday;
105
106         /* First normalize relative to 1900 */
107         if (year < 70)
108                 year += 100;
109         else if (year > 1900)
110                 year -= 1900;
111
112         /* Normalized to Jan 1, 1970: unix time */
113         year -= 70;
114
115         if (year < 0 || year > 129) /* algo only works for 1970-2099 */
116                 return -1;
117         if (month < 0 || month > 11) /* array bounds */
118                 return -1;
119         if (month < 2 || (year + 2) % 4)
120                 day--;
121         if (tm->tm_hour < 0 || tm->tm_min < 0 || tm->tm_sec < 0)
122                 return -1;
123         return (year * 365 + (year + 1) / 4 + mdays[month] + day) * 24*60*60UL +
124                 tm->tm_hour * 60*60 + tm->tm_min * 60 + tm->tm_sec;
125 }
126
127 static void divedate(char *buffer, void *_when)
128 {
129         int d,m,y;
130         time_t *when = _when;
131         int success = 0;
132
133         success = tm.tm_sec | tm.tm_min | tm.tm_hour;
134         if (sscanf(buffer, "%d.%d.%d", &d, &m, &y) == 3) {
135                 tm.tm_year = y;
136                 tm.tm_mon = m-1;
137                 tm.tm_mday = d;
138         } else if (sscanf(buffer, "%d-%d-%d", &y, &m, &d) == 3) {
139                 tm.tm_year = y;
140                 tm.tm_mon = m-1;
141                 tm.tm_mday = d;
142         } else {
143                 fprintf(stderr, "Unable to parse date '%s'\n", buffer);
144                 success = 0;
145         }
146
147         if (success)
148                 *when = utc_mktime(&tm);
149
150         free(buffer);
151 }
152
153 static void divetime(char *buffer, void *_when)
154 {
155         int h,m,s = 0;
156         time_t *when = _when;
157
158         if (sscanf(buffer, "%d:%d:%d", &h, &m, &s) >= 2) {
159                 tm.tm_hour = h;
160                 tm.tm_min = m;
161                 tm.tm_sec = s;
162                 if (tm.tm_year)
163                         *when = utc_mktime(&tm);
164         }
165         free(buffer);
166 }
167
168 /* Libdivecomputer: "2011-03-20 10:22:38" */
169 static void divedatetime(char *buffer, void *_when)
170 {
171         int y,m,d;
172         int hr,min,sec;
173         time_t *when = _when;
174
175         if (sscanf(buffer, "%d-%d-%d %d:%d:%d",
176                 &y, &m, &d, &hr, &min, &sec) == 6) {
177                 tm.tm_year = y;
178                 tm.tm_mon = m-1;
179                 tm.tm_mday = d;
180                 tm.tm_hour = hr;
181                 tm.tm_min = min;
182                 tm.tm_sec = sec;
183                 *when = utc_mktime(&tm);
184         }
185         free(buffer);
186 }
187
188 union int_or_float {
189         double fp;
190 };
191
192 enum number_type {
193         NEITHER,
194         FLOAT
195 };
196
197 static enum number_type integer_or_float(char *buffer, union int_or_float *res)
198 {
199         char *end;
200         long val;
201         double fp;
202
203         /* Integer or floating point? */
204         val = strtol(buffer, &end, 10);
205         if (val < 0 || end == buffer)
206                 return NEITHER;
207
208         /* Looks like it might be floating point? */
209         if (*end == '.') {
210                 errno = 0;
211                 fp = strtod(buffer, &end);
212                 if (!errno) {
213                         res->fp = fp;
214                         return FLOAT;
215                 }
216         }
217
218         res->fp = val;
219         return FLOAT;
220 }
221
222 static void pressure(char *buffer, void *_press)
223 {
224         double mbar;
225         pressure_t *pressure = _press;
226         union int_or_float val;
227
228         switch (integer_or_float(buffer, &val)) {
229         case FLOAT:
230                 /* Just ignore zero values */
231                 if (!val.fp)
232                         break;
233                 switch (units.pressure) {
234                 case BAR:
235                         /* Assume mbar, but if it's really small, it's bar */
236                         mbar = val.fp;
237                         if (mbar < 5000)
238                                 mbar = mbar * 1000;
239                         break;
240                 case PSI:
241                         mbar = val.fp * 68.95;
242                         break;
243                 }
244                 if (mbar > 5 && mbar < 500000) {
245                         pressure->mbar = mbar + 0.5;
246                         break;
247                 }
248         /* fallthrough */
249         default:
250                 printf("Strange pressure reading %s\n", buffer);
251         }
252         free(buffer);
253 }
254
255 static void depth(char *buffer, void *_depth)
256 {
257         depth_t *depth = _depth;
258         union int_or_float val;
259
260         switch (integer_or_float(buffer, &val)) {
261         case FLOAT:
262                 switch (units.length) {
263                 case METERS:
264                         depth->mm = val.fp * 1000 + 0.5;
265                         break;
266                 case FEET:
267                         depth->mm = val.fp * 304.8 + 0.5;
268                         break;
269                 }
270                 break;
271         default:
272                 printf("Strange depth reading %s\n", buffer);
273         }
274         free(buffer);
275 }
276
277 static void temperature(char *buffer, void *_temperature)
278 {
279         temperature_t *temperature = _temperature;
280         union int_or_float val;
281
282         switch (integer_or_float(buffer, &val)) {
283         case FLOAT:
284                 /* Ignore zero. It means "none" */
285                 if (!val.fp)
286                         break;
287                 /* Celsius */
288                 switch (units.temperature) {
289                 case CELSIUS:
290                         temperature->mkelvin = (val.fp + 273.15) * 1000 + 0.5;
291                         break;
292                 case FAHRENHEIT:
293                         temperature->mkelvin = (val.fp + 459.67) * 5000/9;
294                         break;
295                 }
296                 break;
297         default:
298                 printf("Strange temperature reading %s\n", buffer);
299         }
300         free(buffer);
301 }
302
303 static void sampletime(char *buffer, void *_time)
304 {
305         int i;
306         int min, sec;
307         duration_t *time = _time;
308
309         i = sscanf(buffer, "%d:%d", &min, &sec);
310         switch (i) {
311         case 1:
312                 sec = min;
313                 min = 0;
314         /* fallthrough */
315         case 2:
316                 time->seconds = sec + min*60;
317                 break;
318         default:
319                 printf("Strange sample time reading %s\n", buffer);
320         }
321         free(buffer);
322 }
323
324 static void duration(char *buffer, void *_time)
325 {
326         sampletime(buffer, _time);
327 }
328
329 static void percent(char *buffer, void *_fraction)
330 {
331         fraction_t *fraction = _fraction;
332         union int_or_float val;
333
334         switch (integer_or_float(buffer, &val)) {
335         case FLOAT:
336                 if (val.fp <= 100.0)
337                         fraction->permille = val.fp * 10 + 0.5;
338                 break;
339
340         default:
341                 printf("Strange percentage reading %s\n", buffer);
342                 break;
343         }
344         free(buffer);
345 }
346
347 static void gasmix(char *buffer, void *_fraction)
348 {
349         /* libdivecomputer does negative percentages. */
350         if (*buffer == '-')
351                 return;
352         if (cylinder_index < MAX_CYLINDERS)
353                 percent(buffer, _fraction);
354 }
355
356 static void gasmix_nitrogen(char *buffer, void *_gasmix)
357 {
358         /* Ignore n2 percentages. There's no value in them. */
359 }
360
361 static void cylindersize(char *buffer, void *_volume)
362 {
363         volume_t *volume = _volume;
364         union int_or_float val;
365
366         switch (integer_or_float(buffer, &val)) {
367         case FLOAT:
368                 volume->mliter = val.fp * 1000 + 0.5;
369                 break;
370
371         default:
372                 printf("Strange volume reading %s\n", buffer);
373                 break;
374         }
375         free(buffer);
376 }
377
378 static void utf8_string(char *buffer, void *_res)
379 {
380         *(char **)_res = buffer;
381 }
382
383 /*
384  * Uemis water_pressure. In centibar. And when converting to
385  * depth, I'm just going to always use saltwater, because I
386  * think "true depth" is just stupid. From a diving standpoint,
387  * "true depth" is pretty much completely pointless, unless
388  * you're doing some kind of underwater surveying work.
389  *
390  * So I give water depths in "pressure depth", always assuming
391  * salt water. So one atmosphere per 10m.
392  */
393 static void water_pressure(char *buffer, void *_depth)
394 {
395         depth_t *depth = _depth;
396         union int_or_float val;
397         double atm, cm;
398
399         switch (integer_or_float(buffer, &val)) {
400         case FLOAT:
401                 if (!val.fp)
402                         break;
403                 /* cbar to atm */
404                 atm = (val.fp / 100) / 1.01325;
405                 /*
406                  * atm to cm. Why not mm? The precision just isn't
407                  * there.
408                  */
409                 cm = 100 * (atm - 1) + 0.5;
410                 if (cm > 0) {
411                         depth->mm = 10 * (long)cm;
412                         break;
413                 }
414         default:
415                 fprintf(stderr, "Strange water pressure '%s'\n", buffer);
416         }
417         free(buffer);
418 }
419
420 #define MATCH(pattern, fn, dest) \
421         match(pattern, strlen(pattern), name, len, fn, buf, dest)
422
423 static void get_index(char *buffer, void *_i)
424 {
425         int *i = _i;
426         *i = atoi(buffer);
427         free(buffer);
428 }
429
430 static void centibar(char *buffer, void *_pressure)
431 {
432         pressure_t *pressure = _pressure;
433         union int_or_float val;
434
435         switch (integer_or_float(buffer, &val)) {
436         case FLOAT:
437                 pressure->mbar = val.fp * 10 + 0.5;
438                 break;
439         default:
440                 fprintf(stderr, "Strange centibar pressure '%s'\n", buffer);
441         }
442         free(buffer);
443 }
444
445 static void decicelsius(char *buffer, void *_temp)
446 {
447         temperature_t *temp = _temp;
448         union int_or_float val;
449
450         switch (integer_or_float(buffer, &val)) {
451         case FLOAT:
452                 temp->mkelvin = (val.fp/10 + 273.15) * 1000 + 0.5;
453                 break;
454         default:
455                 fprintf(stderr, "Strange julian date: %s", buffer);
456         }
457         free(buffer);
458 }
459
460 static int uemis_fill_sample(struct sample *sample, const char *name, int len, char *buf)
461 {
462         return  MATCH(".reading.dive_time", sampletime, &sample->time) ||
463                 MATCH(".reading.water_pressure", water_pressure, &sample->depth) ||
464                 MATCH(".reading.active_tank", get_index, &sample->cylinderindex) ||
465                 MATCH(".reading.tank_pressure", centibar, &sample->cylinderpressure) ||
466                 MATCH(".reading.dive_temperature", decicelsius, &sample->temperature) ||
467                 0;
468 }
469
470 /* We're in samples - try to convert the random xml value to something useful */
471 static void try_to_fill_sample(struct sample *sample, const char *name, char *buf)
472 {
473         int len = strlen(name);
474
475         start_match("sample", name, buf);
476         if (MATCH(".sample.pressure", pressure, &sample->cylinderpressure))
477                 return;
478         if (MATCH(".sample.cylpress", pressure, &sample->cylinderpressure))
479                 return;
480         if (MATCH(".sample.depth", depth, &sample->depth))
481                 return;
482         if (MATCH(".sample.temp", temperature, &sample->temperature))
483                 return;
484         if (MATCH(".sample.temperature", temperature, &sample->temperature))
485                 return;
486         if (MATCH(".sample.sampletime", sampletime, &sample->time))
487                 return;
488         if (MATCH(".sample.time", sampletime, &sample->time))
489                 return;
490
491         if (uemis) {
492                 if (uemis_fill_sample(sample, name, len, buf))
493                         return;
494         }
495
496         nonmatch("sample", name, buf);
497 }
498
499 /*
500  * Crazy suunto xml. Look at how those o2/he things match up.
501  */
502 static int suunto_dive_match(struct dive *dive, const char *name, int len, char *buf)
503 {
504         return  MATCH(".o2pct", percent, &dive->cylinder[0].gasmix.o2) ||
505                 MATCH(".hepct_0", percent, &dive->cylinder[0].gasmix.he) ||
506                 MATCH(".o2pct_2", percent, &dive->cylinder[1].gasmix.o2) ||
507                 MATCH(".hepct_1", percent, &dive->cylinder[1].gasmix.he) ||
508                 MATCH(".o2pct_3", percent, &dive->cylinder[2].gasmix.o2) ||
509                 MATCH(".hepct_2", percent, &dive->cylinder[2].gasmix.he) ||
510                 MATCH(".o2pct_4", percent, &dive->cylinder[3].gasmix.o2) ||
511                 MATCH(".hepct_3", percent, &dive->cylinder[3].gasmix.he) ||
512                 MATCH(".cylindersize", cylindersize, &dive->cylinder[0].type.size) ||
513                 MATCH(".cylinderworkpressure", pressure, &dive->cylinder[0].type.workingpressure) ||
514                 0;
515 }
516
517 static int buffer_value(char *buffer)
518 {
519         int val = atoi(buffer);
520         free(buffer);
521         return val;
522 }
523
524 static void uemis_length_unit(char *buffer, void *_unused)
525 {
526         units.length = buffer_value(buffer) ? FEET : METERS;
527 }
528
529 static void uemis_volume_unit(char *buffer, void *_unused)
530 {
531         units.volume = buffer_value(buffer) ? CUFT : LITER;
532 }
533
534 static void uemis_pressure_unit(char *buffer, void *_unused)
535 {
536 #if 0
537         units.pressure = buffer_value(buffer) ? PSI : BAR;
538 #endif
539 }
540
541 static void uemis_temperature_unit(char *buffer, void *_unused)
542 {
543         units.temperature = buffer_value(buffer) ? FAHRENHEIT : CELSIUS;
544 }
545
546 static void uemis_weight_unit(char *buffer, void *_unused)
547 {
548         units.weight = buffer_value(buffer) ? LBS : KG;
549 }
550
551 static void uemis_time_unit(char *buffer, void *_unused)
552 {
553 }
554
555 static void uemis_date_unit(char *buffer, void *_unused)
556 {
557 }
558
559 /* Modified julian day, yay! */
560 static void uemis_date_time(char *buffer, void *_when)
561 {
562         time_t *when = _when;
563         union int_or_float val;
564
565         switch (integer_or_float(buffer, &val)) {
566         case FLOAT:
567                 *when = (val.fp - 40587.5) * 86400;
568                 break;
569         default:
570                 fprintf(stderr, "Strange julian date: %s", buffer);
571         }
572         free(buffer);
573 }
574
575 /*
576  * Uemis doesn't know time zones. You need to do them as
577  * minutes, not hours.
578  *
579  * But that's ok, we don't track timezones yet either. We
580  * just turn everything into "localtime expressed as UTC".
581  */
582 static void uemis_time_zone(char *buffer, void *_when)
583 {
584         time_t *when = _when;
585         signed char tz = atoi(buffer);
586
587         *when += tz * 3600;
588 }
589
590 static int uemis_dive_match(struct dive *dive, const char *name, int len, char *buf)
591 {
592         return  MATCH(".units.length", uemis_length_unit, &units) ||
593                 MATCH(".units.volume", uemis_volume_unit, &units) ||
594                 MATCH(".units.pressure", uemis_pressure_unit, &units) ||
595                 MATCH(".units.temperature", uemis_temperature_unit, &units) ||
596                 MATCH(".units.weight", uemis_weight_unit, &units) ||
597                 MATCH(".units.time", uemis_time_unit, &units) ||
598                 MATCH(".units.date", uemis_date_unit, &units) ||
599                 MATCH(".date_time", uemis_date_time, &dive->when) ||
600                 MATCH(".time_zone", uemis_time_zone, &dive->when) ||
601                 MATCH(".ambient.temperature", decicelsius, &dive->airtemp) ||
602                 0;
603 }
604
605 /* We're in the top-level dive xml. Try to convert whatever value to a dive value */
606 static void try_to_fill_dive(struct dive *dive, const char *name, char *buf)
607 {
608         int len = strlen(name);
609
610         start_match("dive", name, buf);
611         if (MATCH(".date", divedate, &dive->when))
612                 return;
613         if (MATCH(".time", divetime, &dive->when))
614                 return;
615         if (MATCH(".datetime", divedatetime, &dive->when))
616                 return;
617         if (MATCH(".maxdepth", depth, &dive->maxdepth))
618                 return;
619         if (MATCH(".meandepth", depth, &dive->meandepth))
620                 return;
621         if (MATCH(".duration", duration, &dive->duration))
622                 return;
623         if (MATCH(".divetime", duration, &dive->duration))
624                 return;
625         if (MATCH(".divetimesec", duration, &dive->duration))
626                 return;
627         if (MATCH(".surfacetime", duration, &dive->surfacetime))
628                 return;
629         if (MATCH(".airtemp", temperature, &dive->airtemp))
630                 return;
631         if (MATCH(".watertemp", temperature, &dive->watertemp))
632                 return;
633         if (MATCH(".cylinderstartpressure", pressure, &dive->beginning_pressure))
634                 return;
635         if (MATCH(".cylinderendpressure", pressure, &dive->end_pressure))
636                 return;
637         if (MATCH(".location", utf8_string, &dive->location))
638                 return;
639         if (MATCH(".notes", utf8_string, &dive->notes))
640                 return;
641
642         if (MATCH(".cylinder.size", cylindersize, &dive->cylinder[cylinder_index].type.size))
643                 return;
644         if (MATCH(".cylinder.workpressure", pressure, &dive->cylinder[cylinder_index].type.workingpressure))
645                 return;
646
647         if (MATCH(".o2", gasmix, &dive->cylinder[cylinder_index].gasmix.o2))
648                 return;
649         if (MATCH(".n2", gasmix_nitrogen, &dive->cylinder[cylinder_index].gasmix))
650                 return;
651         if (MATCH(".he", gasmix, &dive->cylinder[cylinder_index].gasmix.he))
652                 return;
653
654         /* Suunto XML files are some crazy sh*t. */
655         if (suunto && suunto_dive_match(dive, name, len, buf))
656                 return;
657
658         if (uemis && uemis_dive_match(dive, name, len, buf))
659                 return;
660
661         nonmatch("dive", name, buf);
662 }
663
664 /*
665  * File boundaries are dive boundaries. But sometimes there are
666  * multiple dives per file, so there can be other events too that
667  * trigger a "new dive" marker and you may get some nesting due
668  * to that. Just ignore nesting levels.
669  */
670 static void dive_start(void)
671 {
672         unsigned int size;
673
674         if (dive)
675                 return;
676
677         alloc_samples = 5;
678         size = dive_size(alloc_samples);
679         dive = malloc(size);
680         if (!dive)
681                 exit(1);
682         memset(dive, 0, size);
683         memset(&tm, 0, sizeof(tm));
684 }
685
686 static void sanitize_gasmix(gasmix_t *mix)
687 {
688         unsigned int o2, he;
689
690         o2 = mix->o2.permille;
691         he = mix->he.permille;
692
693         /* Regular air: leave empty */
694         if (!he) {
695                 if (!o2)
696                         return;
697                 /* 20.9% or 21% O2 is just air */
698                 if (o2 >= 209 && o2 <= 210) {
699                         mix->o2.permille = 0;
700                         return;
701                 }
702         }
703
704         /* Sane mix? */
705         if (o2 <= 1000 && he <= 1000 && o2+he <= 1000)
706                 return;
707         fprintf(stderr, "Odd gasmix: %d O2 %d He\n", o2, he);
708         memset(mix, 0, sizeof(*mix));
709 }
710
711 /*
712  * See if the size/workingpressure looks like some standard cylinder
713  * size, eg "AL80".
714  */
715 static void match_standard_cylinder(cylinder_type_t *type)
716 {
717         int psi, cuft, len;
718         const char *fmt;
719         char buffer[20], *p;
720
721         /* Do we already have a cylinder description? */
722         if (type->description)
723                 return;
724
725         cuft = type->size.mliter / 1000;
726         psi = type->workingpressure.mbar / 68.95;
727
728         switch (psi) {
729         case 2300 ... 2500:     /* 2400 psi: LP tank */
730                 fmt = "LP%d";
731                 break;
732         case 2600 ... 2700:     /* 2640 psi: LP+10% */
733                 fmt = "LP%d+";
734                 break;
735         case 2900 ... 3100:     /* 3000 psi: ALx tank */
736                 fmt = "AL%d";
737                 break;
738         case 3400 ... 3500:     /* 3442 psi: HP tank */
739                 fmt = "HP%d";
740                 break;
741         case 3700 ... 3850:     /* HP+10% */
742                 fmt = "HP%d+";
743                 break;
744         default:
745                 return;
746         }
747         len = snprintf(buffer, sizeof(buffer), fmt, cuft);
748         p = malloc(len+1);
749         if (!p)
750                 return;
751         memcpy(p, buffer, len+1);
752         type->description = p;
753 }
754
755
756 /*
757  * There are two ways to give cylinder size information:
758  *  - total amount of gas in cuft (depends on working pressure and physical size)
759  *  - physical size
760  *
761  * where "physical size" is the one that actually matters and is sane.
762  *
763  * We internally use physical size only. But we save the workingpressure
764  * so that we can do the conversion if required.
765  */
766 static void sanitize_cylinder_type(cylinder_type_t *type)
767 {
768         double volume_of_air, atm, volume;
769
770         /* If we have no working pressure, it had *better* be just a physical size! */
771         if (!type->workingpressure.mbar)
772                 return;
773
774         /* No size either? Nothing to go on */
775         if (!type->size.mliter)
776                 return;
777
778         /* Ok, we have both size and pressure: try to match a description */
779         match_standard_cylinder(type);
780
781         /* .. and let's assume that the 'size' was cu ft of air */
782         volume_of_air = type->size.mliter * 28.317;     /* milli-cu ft to milliliter */
783         atm = type->workingpressure.mbar / 1013.25;     /* working pressure in atm */
784         volume = volume_of_air / atm;                   /* milliliters at 1 atm: "true size" */
785         type->size.mliter = volume + 0.5;
786 }
787
788 static void sanitize_cylinder_info(struct dive *dive)
789 {
790         int i;
791
792         for (i = 0; i < MAX_CYLINDERS; i++) {
793                 sanitize_gasmix(&dive->cylinder[i].gasmix);
794                 sanitize_cylinder_type(&dive->cylinder[i].type);
795         }
796 }
797
798 static void dive_end(void)
799 {
800         if (!dive)
801                 return;
802         sanitize_cylinder_info(dive);
803         record_dive(dive);
804         dive = NULL;
805         cylinder_index = 0;
806 }
807
808 static void suunto_start(void)
809 {
810         suunto++;
811         units = SI_units;
812 }
813
814 static void suunto_end(void)
815 {
816         suunto--;
817 }
818
819 static void uemis_start(void)
820 {
821         uemis++;
822         units = SI_units;
823 }
824
825 static void uemis_end(void)
826 {
827 }
828
829 static void event_start(void)
830 {
831 }
832
833 static void event_end(void)
834 {
835         event_index++;
836 }
837
838 static void cylinder_start(void)
839 {
840 }
841
842 static void cylinder_end(void)
843 {
844         cylinder_index++;
845 }
846
847 static void sample_start(void)
848 {
849         int nr;
850
851         if (!dive)
852                 return;
853         nr = dive->samples;
854         if (nr >= alloc_samples) {
855                 unsigned int size;
856
857                 alloc_samples = (alloc_samples * 3)/2 + 10;
858                 size = dive_size(alloc_samples);
859                 dive = realloc(dive, size);
860                 if (!dive)
861                         return;
862         }
863         sample = dive->sample + nr;
864         memset(sample, 0, sizeof(*sample));
865         event_index = 0;
866 }
867
868 static void sample_end(void)
869 {
870         if (!dive)
871                 return;
872
873         sample = NULL;
874         dive->samples++;
875 }
876
877 static void entry(const char *name, int size, const char *raw)
878 {
879         char *buf = malloc(size+1);
880
881         if (!buf)
882                 return;
883         memcpy(buf, raw, size);
884         buf[size] = 0;
885         if (sample) {
886                 try_to_fill_sample(sample, name, buf);
887                 return;
888         }
889         if (dive) {
890                 try_to_fill_dive(dive, name, buf);
891                 return;
892         }
893 }
894
895 static const char *nodename(xmlNode *node, char *buf, int len)
896 {
897         if (!node || !node->name)
898                 return "root";
899
900         buf += len;
901         *--buf = 0;
902         len--;
903
904         for(;;) {
905                 const char *name = node->name;
906                 int i = strlen(name);
907                 while (--i >= 0) {
908                         unsigned char c = name[i];
909                         *--buf = tolower(c);
910                         if (!--len)
911                                 return buf;
912                 }
913                 node = node->parent;
914                 if (!node || !node->name)
915                         return buf;
916                 *--buf = '.';
917                 if (!--len)
918                         return buf;
919         }
920 }
921
922 #define MAXNAME 64
923
924 static void visit_one_node(xmlNode *node)
925 {
926         int len;
927         const unsigned char *content;
928         char buffer[MAXNAME];
929         const char *name;
930
931         content = node->content;
932         if (!content)
933                 return;
934
935         /* Trim whitespace at beginning */
936         while (isspace(*content))
937                 content++;
938
939         /* Trim whitespace at end */
940         len = strlen(content);
941         while (len && isspace(content[len-1]))
942                 len--;
943
944         if (!len)
945                 return;
946
947         /* Don't print out the node name if it is "text" */
948         if (!strcmp(node->name, "text"))
949                 node = node->parent;
950
951         name = nodename(node, buffer, sizeof(buffer));
952
953         entry(name, len, content);
954 }
955
956 static void traverse(xmlNode *root);
957
958 static void traverse_properties(xmlNode *node)
959 {
960         xmlAttr *p;
961
962         for (p = node->properties; p; p = p->next)
963                 traverse(p->children);
964 }
965
966 static void visit(xmlNode *n)
967 {
968         visit_one_node(n);
969         traverse_properties(n);
970         traverse(n->children);
971 }
972
973 /*
974  * I'm sure this could be done as some fancy DTD rules.
975  * It's just not worth the headache.
976  */
977 static struct nesting {
978         const char *name;
979         void (*start)(void), (*end)(void);
980 } nesting[] = {
981         { "dive", dive_start, dive_end },
982         { "SUUNTO", suunto_start, suunto_end },
983         { "sample", sample_start, sample_end },
984         { "SAMPLE", sample_start, sample_end },
985         { "reading", sample_start, sample_end },
986         { "event", event_start, event_end },
987         { "gasmix", cylinder_start, cylinder_end },
988         { "cylinder", cylinder_start, cylinder_end },
989         { "pre_dive", uemis_start, uemis_end },
990         { NULL, }
991 };
992
993 static void traverse(xmlNode *root)
994 {
995         xmlNode *n;
996
997         for (n = root; n; n = n->next) {
998                 struct nesting *rule = nesting;
999
1000                 do {
1001                         if (!strcmp(rule->name, n->name))
1002                                 break;
1003                         rule++;
1004                 } while (rule->name);
1005
1006                 if (rule->start)
1007                         rule->start();
1008                 visit(n);
1009                 if (rule->end)
1010                         rule->end();
1011         }
1012 }
1013
1014 /* Per-file reset */
1015 static void reset_all(void)
1016 {
1017         /*
1018          * We reset the units for each file. You'd think it was
1019          * a per-dive property, but I'm not going to trust people
1020          * to do per-dive setup. If the xml does have per-dive
1021          * data within one file, we might have to reset it per
1022          * dive for that format.
1023          */
1024         units = SI_units;
1025         suunto = 0;
1026         uemis = 0;
1027 }
1028
1029 void parse_xml_file(const char *filename)
1030 {
1031         xmlDoc *doc;
1032
1033         doc = xmlReadFile(filename, NULL, 0);
1034         if (!doc) {
1035                 fprintf(stderr, "Failed to parse '%s'.\n", filename);
1036                 return;
1037         }
1038
1039         reset_all();
1040         dive_start();
1041         traverse(xmlDocGetRootElement(doc));
1042         dive_end();
1043         xmlFreeDoc(doc);
1044         xmlCleanupParser();
1045 }
1046
1047 void parse_xml_init(void)
1048 {
1049         LIBXML_TEST_VERSION
1050 }