]> git.tdb.fi Git - ext/subsurface.git/blob - parse-xml.c
Don't guess input cylinder size as cubic feet
[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 struct units input_units;
67
68 /*
69  * We're going to default to SI units for input. Yes,
70  * technically the SI unit for pressure is Pascal, but
71  * we default to bar (10^5 pascal), which people
72  * actually use. Similarly, C instead of Kelvin.
73  */
74 const struct units SI_units = {
75         .length = METERS,
76         .volume = LITER,
77         .pressure = BAR,
78         .temperature = CELSIUS,
79         .weight = KG
80 };
81
82 const struct units IMPERIAL_units = {
83         .length = FEET,
84         .volume = CUFT,
85         .pressure = PSI,
86         .temperature = FAHRENHEIT,
87         .weight = LBS
88 };
89
90 /*
91  * Dive info as it is being built up..
92  */
93 static int alloc_samples;
94 static struct dive *dive;
95 static struct sample *sample;
96 static struct tm tm;
97 static int event_index, cylinder_index;
98
99 static enum import_source {
100         UNKNOWN,
101         LIBDIVECOMPUTER,
102         SUUNTO,
103         UEMIS,
104         DIVINGLOG,
105         UDDF,
106 } import_source;
107
108 static time_t utc_mktime(struct tm *tm)
109 {
110         static const int mdays[] = {
111             0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
112         };
113         int year = tm->tm_year;
114         int month = tm->tm_mon;
115         int day = tm->tm_mday;
116
117         /* First normalize relative to 1900 */
118         if (year < 70)
119                 year += 100;
120         else if (year > 1900)
121                 year -= 1900;
122
123         /* Normalized to Jan 1, 1970: unix time */
124         year -= 70;
125
126         if (year < 0 || year > 129) /* algo only works for 1970-2099 */
127                 return -1;
128         if (month < 0 || month > 11) /* array bounds */
129                 return -1;
130         if (month < 2 || (year + 2) % 4)
131                 day--;
132         if (tm->tm_hour < 0 || tm->tm_min < 0 || tm->tm_sec < 0)
133                 return -1;
134         return (year * 365 + (year + 1) / 4 + mdays[month] + day) * 24*60*60UL +
135                 tm->tm_hour * 60*60 + tm->tm_min * 60 + tm->tm_sec;
136 }
137
138 static void divedate(char *buffer, void *_when)
139 {
140         int d,m,y;
141         time_t *when = _when;
142         int success = 0;
143
144         success = tm.tm_sec | tm.tm_min | tm.tm_hour;
145         if (sscanf(buffer, "%d.%d.%d", &d, &m, &y) == 3) {
146                 tm.tm_year = y;
147                 tm.tm_mon = m-1;
148                 tm.tm_mday = d;
149         } else if (sscanf(buffer, "%d-%d-%d", &y, &m, &d) == 3) {
150                 tm.tm_year = y;
151                 tm.tm_mon = m-1;
152                 tm.tm_mday = d;
153         } else {
154                 fprintf(stderr, "Unable to parse date '%s'\n", buffer);
155                 success = 0;
156         }
157
158         if (success)
159                 *when = utc_mktime(&tm);
160
161         free(buffer);
162 }
163
164 static void divetime(char *buffer, void *_when)
165 {
166         int h,m,s = 0;
167         time_t *when = _when;
168
169         if (sscanf(buffer, "%d:%d:%d", &h, &m, &s) >= 2) {
170                 tm.tm_hour = h;
171                 tm.tm_min = m;
172                 tm.tm_sec = s;
173                 if (tm.tm_year)
174                         *when = utc_mktime(&tm);
175         }
176         free(buffer);
177 }
178
179 /* Libdivecomputer: "2011-03-20 10:22:38" */
180 static void divedatetime(char *buffer, void *_when)
181 {
182         int y,m,d;
183         int hr,min,sec;
184         time_t *when = _when;
185
186         if (sscanf(buffer, "%d-%d-%d %d:%d:%d",
187                 &y, &m, &d, &hr, &min, &sec) == 6) {
188                 tm.tm_year = y;
189                 tm.tm_mon = m-1;
190                 tm.tm_mday = d;
191                 tm.tm_hour = hr;
192                 tm.tm_min = min;
193                 tm.tm_sec = sec;
194                 *when = utc_mktime(&tm);
195         }
196         free(buffer);
197 }
198
199 union int_or_float {
200         double fp;
201 };
202
203 enum number_type {
204         NEITHER,
205         FLOAT
206 };
207
208 static enum number_type integer_or_float(char *buffer, union int_or_float *res)
209 {
210         char *end;
211         long val;
212         double fp;
213
214         /* Integer or floating point? */
215         val = strtol(buffer, &end, 10);
216         if (val < 0 || end == buffer)
217                 return NEITHER;
218
219         /* Looks like it might be floating point? */
220         if (*end == '.') {
221                 errno = 0;
222                 fp = strtod(buffer, &end);
223                 if (!errno) {
224                         res->fp = fp;
225                         return FLOAT;
226                 }
227         }
228
229         res->fp = val;
230         return FLOAT;
231 }
232
233 static void pressure(char *buffer, void *_press)
234 {
235         double mbar;
236         pressure_t *pressure = _press;
237         union int_or_float val;
238
239         switch (integer_or_float(buffer, &val)) {
240         case FLOAT:
241                 /* Just ignore zero values */
242                 if (!val.fp)
243                         break;
244                 switch (input_units.pressure) {
245                 case PASCAL:
246                         mbar = val.fp / 100;
247                         break;
248                 case BAR:
249                         /* Assume mbar, but if it's really small, it's bar */
250                         mbar = val.fp;
251                         if (mbar < 5000)
252                                 mbar = mbar * 1000;
253                         break;
254                 case PSI:
255                         mbar = val.fp * 68.95;
256                         break;
257                 }
258                 if (mbar > 5 && mbar < 500000) {
259                         pressure->mbar = mbar + 0.5;
260                         break;
261                 }
262         /* fallthrough */
263         default:
264                 printf("Strange pressure reading %s\n", buffer);
265         }
266         free(buffer);
267 }
268
269 static void depth(char *buffer, void *_depth)
270 {
271         depth_t *depth = _depth;
272         union int_or_float val;
273
274         switch (integer_or_float(buffer, &val)) {
275         case FLOAT:
276                 switch (input_units.length) {
277                 case METERS:
278                         depth->mm = val.fp * 1000 + 0.5;
279                         break;
280                 case FEET:
281                         depth->mm = val.fp * 304.8 + 0.5;
282                         break;
283                 }
284                 break;
285         default:
286                 printf("Strange depth reading %s\n", buffer);
287         }
288         free(buffer);
289 }
290
291 static void temperature(char *buffer, void *_temperature)
292 {
293         temperature_t *temperature = _temperature;
294         union int_or_float val;
295
296         switch (integer_or_float(buffer, &val)) {
297         case FLOAT:
298                 /* Ignore zero. It means "none" */
299                 if (!val.fp)
300                         break;
301                 /* Celsius */
302                 switch (input_units.temperature) {
303                 case KELVIN:
304                         temperature->mkelvin = val.fp * 1000;
305                         break;
306                 case CELSIUS:
307                         temperature->mkelvin = (val.fp + 273.15) * 1000 + 0.5;
308                         break;
309                 case FAHRENHEIT:
310                         temperature->mkelvin = (val.fp + 459.67) * 5000/9;
311                         break;
312                 }
313                 break;
314         default:
315                 printf("Strange temperature reading %s\n", buffer);
316         }
317         free(buffer);
318 }
319
320 static void sampletime(char *buffer, void *_time)
321 {
322         int i;
323         int min, sec;
324         duration_t *time = _time;
325
326         i = sscanf(buffer, "%d:%d", &min, &sec);
327         switch (i) {
328         case 1:
329                 sec = min;
330                 min = 0;
331         /* fallthrough */
332         case 2:
333                 time->seconds = sec + min*60;
334                 break;
335         default:
336                 printf("Strange sample time reading %s\n", buffer);
337         }
338         free(buffer);
339 }
340
341 static void duration(char *buffer, void *_time)
342 {
343         sampletime(buffer, _time);
344 }
345
346 static void percent(char *buffer, void *_fraction)
347 {
348         fraction_t *fraction = _fraction;
349         union int_or_float val;
350
351         switch (integer_or_float(buffer, &val)) {
352         case FLOAT:
353                 if (val.fp <= 100.0)
354                         fraction->permille = val.fp * 10 + 0.5;
355                 break;
356
357         default:
358                 printf("Strange percentage reading %s\n", buffer);
359                 break;
360         }
361         free(buffer);
362 }
363
364 static void gasmix(char *buffer, void *_fraction)
365 {
366         /* libdivecomputer does negative percentages. */
367         if (*buffer == '-')
368                 return;
369         if (cylinder_index < MAX_CYLINDERS)
370                 percent(buffer, _fraction);
371 }
372
373 static void gasmix_nitrogen(char *buffer, void *_gasmix)
374 {
375         /* Ignore n2 percentages. There's no value in them. */
376 }
377
378 static void cylindersize(char *buffer, void *_volume)
379 {
380         volume_t *volume = _volume;
381         union int_or_float val;
382
383         switch (integer_or_float(buffer, &val)) {
384         case FLOAT:
385                 volume->mliter = val.fp * 1000 + 0.5;
386                 break;
387
388         default:
389                 printf("Strange volume reading %s\n", buffer);
390                 break;
391         }
392         free(buffer);
393 }
394
395 static void utf8_string(char *buffer, void *_res)
396 {
397         *(char **)_res = buffer;
398 }
399
400 /*
401  * Uemis water_pressure. In centibar. And when converting to
402  * depth, I'm just going to always use saltwater, because I
403  * think "true depth" is just stupid. From a diving standpoint,
404  * "true depth" is pretty much completely pointless, unless
405  * you're doing some kind of underwater surveying work.
406  *
407  * So I give water depths in "pressure depth", always assuming
408  * salt water. So one atmosphere per 10m.
409  */
410 static void water_pressure(char *buffer, void *_depth)
411 {
412         depth_t *depth = _depth;
413         union int_or_float val;
414         double atm, cm;
415
416         switch (integer_or_float(buffer, &val)) {
417         case FLOAT:
418                 if (!val.fp)
419                         break;
420                 /* cbar to atm */
421                 atm = (val.fp / 100) / 1.01325;
422                 /*
423                  * atm to cm. Why not mm? The precision just isn't
424                  * there.
425                  */
426                 cm = 100 * (atm - 1) + 0.5;
427                 if (cm > 0) {
428                         depth->mm = 10 * (long)cm;
429                         break;
430                 }
431         default:
432                 fprintf(stderr, "Strange water pressure '%s'\n", buffer);
433         }
434         free(buffer);
435 }
436
437 #define MATCH(pattern, fn, dest) \
438         match(pattern, strlen(pattern), name, len, fn, buf, dest)
439
440 static void get_index(char *buffer, void *_i)
441 {
442         int *i = _i;
443         *i = atoi(buffer);
444         free(buffer);
445 }
446
447 static void centibar(char *buffer, void *_pressure)
448 {
449         pressure_t *pressure = _pressure;
450         union int_or_float val;
451
452         switch (integer_or_float(buffer, &val)) {
453         case FLOAT:
454                 pressure->mbar = val.fp * 10 + 0.5;
455                 break;
456         default:
457                 fprintf(stderr, "Strange centibar pressure '%s'\n", buffer);
458         }
459         free(buffer);
460 }
461
462 static void decicelsius(char *buffer, void *_temp)
463 {
464         temperature_t *temp = _temp;
465         union int_or_float val;
466
467         switch (integer_or_float(buffer, &val)) {
468         case FLOAT:
469                 temp->mkelvin = (val.fp/10 + 273.15) * 1000 + 0.5;
470                 break;
471         default:
472                 fprintf(stderr, "Strange julian date: %s", buffer);
473         }
474         free(buffer);
475 }
476
477 static int uemis_fill_sample(struct sample *sample, const char *name, int len, char *buf)
478 {
479         return  MATCH(".reading.dive_time", sampletime, &sample->time) ||
480                 MATCH(".reading.water_pressure", water_pressure, &sample->depth) ||
481                 MATCH(".reading.active_tank", get_index, &sample->cylinderindex) ||
482                 MATCH(".reading.tank_pressure", centibar, &sample->cylinderpressure) ||
483                 MATCH(".reading.dive_temperature", decicelsius, &sample->temperature) ||
484                 0;
485 }
486
487 /*
488  * Divinglog is crazy. The temperatures are in celsius. EXCEPT
489  * for the sample temperatures, that are in Fahrenheit.
490  * WTF?
491  */
492 static void fahrenheit(char *buffer, void *_temperature)
493 {
494         temperature_t *temperature = _temperature;
495         union int_or_float val;
496
497         switch (integer_or_float(buffer, &val)) {
498         case FLOAT:
499                 temperature->mkelvin = (val.fp + 459.67) * 5000/9;
500                 break;
501         default:
502                 fprintf(stderr, "Crazy Diving Log temperature reading %s\n", buffer);
503         }
504         free(buffer);
505 }
506
507 static int divinglog_fill_sample(struct sample *sample, const char *name, int len, char *buf)
508 {
509         return  MATCH(".p.time", sampletime, &sample->time) ||
510                 MATCH(".p.depth", depth, &sample->depth) ||
511                 MATCH(".p.temp", fahrenheit, &sample->temperature) ||
512                 MATCH(".p.press1", pressure, &sample->cylinderpressure) ||
513                 0;
514 }
515
516 static int uddf_fill_sample(struct sample *sample, const char *name, int len, char *buf)
517 {
518         return  MATCH(".divetime", sampletime, &sample->time) ||
519                 MATCH(".depth", depth, &sample->depth) ||
520                 MATCH(".temperature", temperature, &sample->temperature) ||
521                 0;
522 }
523
524 /* We're in samples - try to convert the random xml value to something useful */
525 static void try_to_fill_sample(struct sample *sample, const char *name, char *buf)
526 {
527         int len = strlen(name);
528
529         start_match("sample", name, buf);
530         if (MATCH(".sample.pressure", pressure, &sample->cylinderpressure))
531                 return;
532         if (MATCH(".sample.cylpress", pressure, &sample->cylinderpressure))
533                 return;
534         if (MATCH(".sample.depth", depth, &sample->depth))
535                 return;
536         if (MATCH(".sample.temp", temperature, &sample->temperature))
537                 return;
538         if (MATCH(".sample.temperature", temperature, &sample->temperature))
539                 return;
540         if (MATCH(".sample.sampletime", sampletime, &sample->time))
541                 return;
542         if (MATCH(".sample.time", sampletime, &sample->time))
543                 return;
544
545         switch (import_source) {
546         case UEMIS:
547                 if (uemis_fill_sample(sample, name, len, buf))
548                         return;
549                 break;
550
551         case DIVINGLOG:
552                 if (divinglog_fill_sample(sample, name, len, buf))
553                         return;
554                 break;
555
556         case UDDF:
557                 if (uddf_fill_sample(sample, name, len, buf))
558                         return;
559                 break;
560
561         default:
562                 break;
563         }
564
565         nonmatch("sample", name, buf);
566 }
567
568 /*
569  * Crazy suunto xml. Look at how those o2/he things match up.
570  */
571 static int suunto_dive_match(struct dive *dive, const char *name, int len, char *buf)
572 {
573         return  MATCH(".o2pct", percent, &dive->cylinder[0].gasmix.o2) ||
574                 MATCH(".hepct_0", percent, &dive->cylinder[0].gasmix.he) ||
575                 MATCH(".o2pct_2", percent, &dive->cylinder[1].gasmix.o2) ||
576                 MATCH(".hepct_1", percent, &dive->cylinder[1].gasmix.he) ||
577                 MATCH(".o2pct_3", percent, &dive->cylinder[2].gasmix.o2) ||
578                 MATCH(".hepct_2", percent, &dive->cylinder[2].gasmix.he) ||
579                 MATCH(".o2pct_4", percent, &dive->cylinder[3].gasmix.o2) ||
580                 MATCH(".hepct_3", percent, &dive->cylinder[3].gasmix.he) ||
581                 MATCH(".cylindersize", cylindersize, &dive->cylinder[0].type.size) ||
582                 MATCH(".cylinderworkpressure", pressure, &dive->cylinder[0].type.workingpressure) ||
583                 0;
584 }
585
586 static const char *country, *city;
587
588 static void divinglog_place(char *place, void *_location)
589 {
590         char **location = _location;
591         char buffer[256], *p;
592         int len;
593
594         len = snprintf(buffer, sizeof(buffer),
595                 "%s%s%s%s%s",
596                 place,
597                 city ? ", " : "",
598                 city ? city : "",
599                 country ? ", " : "",
600                 country ? country : "");
601
602         p = malloc(len+1);
603         memcpy(p, buffer, len+1);
604         *location = p;
605
606         city = NULL;
607         country = NULL;
608 }
609
610 static int divinglog_dive_match(struct dive *dive, const char *name, int len, char *buf)
611 {
612         return  MATCH(".divedate", divedate, &dive->when) ||
613                 MATCH(".entrytime", divetime, &dive->when) ||
614                 MATCH(".depth", depth, &dive->maxdepth) ||
615                 MATCH(".tanksize", cylindersize, &dive->cylinder[0].type.size) ||
616                 MATCH(".tanktype", utf8_string, &dive->cylinder[0].type.description) ||
617                 MATCH(".comments", utf8_string, &dive->notes) ||
618                 MATCH(".country.name", utf8_string, &country) ||
619                 MATCH(".city.name", utf8_string, &city) ||
620                 MATCH(".place.name", divinglog_place, &dive->location) ||
621                 0;
622 }
623
624 static int buffer_value(char *buffer)
625 {
626         int val = atoi(buffer);
627         free(buffer);
628         return val;
629 }
630
631 static void uemis_length_unit(char *buffer, void *_unused)
632 {
633         input_units.length = buffer_value(buffer) ? FEET : METERS;
634 }
635
636 static void uemis_volume_unit(char *buffer, void *_unused)
637 {
638         input_units.volume = buffer_value(buffer) ? CUFT : LITER;
639 }
640
641 static void uemis_pressure_unit(char *buffer, void *_unused)
642 {
643 #if 0
644         input_units.pressure = buffer_value(buffer) ? PSI : BAR;
645 #endif
646 }
647
648 static void uemis_temperature_unit(char *buffer, void *_unused)
649 {
650         input_units.temperature = buffer_value(buffer) ? FAHRENHEIT : CELSIUS;
651 }
652
653 static void uemis_weight_unit(char *buffer, void *_unused)
654 {
655         input_units.weight = buffer_value(buffer) ? LBS : KG;
656 }
657
658 static void uemis_time_unit(char *buffer, void *_unused)
659 {
660 }
661
662 static void uemis_date_unit(char *buffer, void *_unused)
663 {
664 }
665
666 /* Modified julian day, yay! */
667 static void uemis_date_time(char *buffer, void *_when)
668 {
669         time_t *when = _when;
670         union int_or_float val;
671
672         switch (integer_or_float(buffer, &val)) {
673         case FLOAT:
674                 *when = (val.fp - 40587) * 86400;
675                 break;
676         default:
677                 fprintf(stderr, "Strange julian date: %s", buffer);
678         }
679         free(buffer);
680 }
681
682 /*
683  * Uemis doesn't know time zones. You need to do them as
684  * minutes, not hours.
685  *
686  * But that's ok, we don't track timezones yet either. We
687  * just turn everything into "localtime expressed as UTC".
688  */
689 static void uemis_time_zone(char *buffer, void *_when)
690 {
691 #if 0 /* seems like this is only used to display it correctly
692        * the stored time appears to be UTC */
693
694         time_t *when = _when;
695         signed char tz = atoi(buffer);
696
697         *when += tz * 3600;
698 #endif
699 }
700
701 /* 0 - air ; 1 - nitrox1 ; 2 - nitrox2 ; 3 = nitrox3 */
702 static int uemis_gas_template;
703
704 /*
705  * Christ. Uemis tank data is a total mess.
706  *
707  * We're passed a "virtual cylinder" (0 - 6) for the different
708  * Uemis tank cases ("air", "nitrox_1", "nitrox_2.{bottom,deco}"
709  * and "nitrox_3.{bottom,deco,travel}". We need to turn that
710  * into the actual cylinder data depending on the gas template,
711  * and ignore the ones that are irrelevant for that template.
712  *
713  * So for "template 2" (nitrox_2), we ignore virtual tanks 0-1
714  * (which are "air" and "nitrox_1" respectively), and tanks 4-6
715  * (which are the three "nitrox_3" tanks), and we turn virtual
716  * tanks 2/3 into actual tanks 0/1.
717  *
718  * Confused yet?
719  */
720 static int uemis_cylinder_index(void *_cylinder)
721 {
722         cylinder_t *cylinder = _cylinder;
723         unsigned int index = cylinder - dive->cylinder;
724
725         if (index > 6) {
726                 fprintf(stderr, "Uemis cylinder pointer calculations broken\n");
727                 return -1;
728         }
729         switch(uemis_gas_template) {
730         case 1: /* Dive uses tank 1 */
731                 index -= 1;
732         /* Fallthrough */
733         case 0: /* Dive uses tank 0 */
734                 if (index)
735                         index = -1;
736                 break;
737         case 2: /* Dive uses tanks 2-3 */
738                 index -= 2;
739                 if (index > 1)
740                         index = -1;
741                 break;
742         case 3: /* Dive uses tanks 4-6 */
743                 index -= 4;
744                 if (index > 2)
745                         index = -1;
746                 break;
747         }
748         return index;
749 }
750
751 static void uemis_cylindersize(char *buffer, void *_cylinder)
752 {
753         int index = uemis_cylinder_index(_cylinder);
754         if (index >= 0)
755                 cylindersize(buffer, &dive->cylinder[index].type.size);
756 }
757
758 static void uemis_percent(char *buffer, void *_cylinder)
759 {
760         int index = uemis_cylinder_index(_cylinder);
761         if (index >= 0)
762                 percent(buffer, &dive->cylinder[index].gasmix.o2);
763 }
764
765 static int uemis_dive_match(struct dive *dive, const char *name, int len, char *buf)
766 {
767         return  MATCH(".units.length", uemis_length_unit, &input_units) ||
768                 MATCH(".units.volume", uemis_volume_unit, &input_units) ||
769                 MATCH(".units.pressure", uemis_pressure_unit, &input_units) ||
770                 MATCH(".units.temperature", uemis_temperature_unit, &input_units) ||
771                 MATCH(".units.weight", uemis_weight_unit, &input_units) ||
772                 MATCH(".units.time", uemis_time_unit, &input_units) ||
773                 MATCH(".units.date", uemis_date_unit, &input_units) ||
774                 MATCH(".date_time", uemis_date_time, &dive->when) ||
775                 MATCH(".time_zone", uemis_time_zone, &dive->when) ||
776                 MATCH(".ambient.temperature", decicelsius, &dive->airtemp) ||
777                 MATCH(".gas.template", get_index, &uemis_gas_template) ||
778                 MATCH(".air.bottom_tank.size", uemis_cylindersize, dive->cylinder + 0) ||
779                 MATCH(".air.bottom_tank.oxygen", uemis_percent, dive->cylinder + 0) ||
780                 MATCH(".nitrox_1.bottom_tank.size", uemis_cylindersize, dive->cylinder + 1) ||
781                 MATCH(".nitrox_1.bottom_tank.oxygen", uemis_percent, dive->cylinder + 1) ||
782                 MATCH(".nitrox_2.bottom_tank.size", uemis_cylindersize, dive->cylinder + 2) ||
783                 MATCH(".nitrox_2.bottom_tank.oxygen", uemis_percent, dive->cylinder + 2) ||
784                 MATCH(".nitrox_2.deco_tank.size", uemis_cylindersize, dive->cylinder + 3) ||
785                 MATCH(".nitrox_2.deco_tank.oxygen", uemis_percent, dive->cylinder + 3) ||
786                 MATCH(".nitrox_3.bottom_tank.size", uemis_cylindersize, dive->cylinder + 4) ||
787                 MATCH(".nitrox_3.bottom_tank.oxygen", uemis_percent, dive->cylinder + 4) ||
788                 MATCH(".nitrox_3.deco_tank.size", uemis_cylindersize, dive->cylinder + 5) ||
789                 MATCH(".nitrox_3.deco_tank.oxygen", uemis_percent, dive->cylinder + 5) ||
790                 MATCH(".nitrox_3.travel_tank.size", uemis_cylindersize, dive->cylinder + 6) ||
791                 MATCH(".nitrox_3.travel_tank.oxygen", uemis_percent, dive->cylinder + 6) ||
792                 0;
793 }
794
795 /*
796  * Uddf specifies ISO 8601 time format.
797  *
798  * There are many variations on that. This handles the useful cases.
799  */
800 static void uddf_datetime(char *buffer, void *_when)
801 {
802         char c;
803         int y,m,d,hh,mm,ss;
804         time_t *when = _when;
805         struct tm tm = { 0 };
806         int i;
807
808         i = sscanf(buffer, "%d-%d-%d%c%d:%d:%d", &y, &m, &d, &c, &hh, &mm, &ss);
809         if (i == 7)
810                 goto success;
811         ss = 0;
812         if (i == 6)
813                 goto success;
814
815         i = sscanf(buffer, "%04d%02d%02d%c%02d%02d%02d", &y, &m, &d, &c, &hh, &mm, &ss);
816         if (i == 7)
817                 goto success;
818         ss = 0;
819         if (i == 6)
820                 goto success;
821 bad_date:
822         printf("Bad date time %s\n", buffer);
823         free(buffer);
824         return;
825
826 success:
827         if (c != 'T' && c != ' ')
828                 goto bad_date;
829         tm.tm_year = y;
830         tm.tm_mon = m - 1;
831         tm.tm_mday = d;
832         tm.tm_hour = hh;
833         tm.tm_min = mm;
834         tm.tm_sec = ss;
835         *when = utc_mktime(&tm);
836         free(buffer);
837 }
838
839 static int uddf_dive_match(struct dive *dive, const char *name, int len, char *buf)
840 {
841         return  MATCH(".datetime", uddf_datetime, &dive->when) ||
842                 MATCH(".diveduration", duration, &dive->duration) ||
843                 MATCH(".greatestdepth", depth, &dive->maxdepth) ||
844                 0;
845 }
846
847 /* We're in the top-level dive xml. Try to convert whatever value to a dive value */
848 static void try_to_fill_dive(struct dive *dive, const char *name, char *buf)
849 {
850         int len = strlen(name);
851
852         start_match("dive", name, buf);
853
854         switch (import_source) {
855         case SUUNTO:
856                 if (suunto_dive_match(dive, name, len, buf))
857                         return;
858                 break;
859
860         case UEMIS:
861                 if (uemis_dive_match(dive, name, len, buf))
862                         return;
863                 break;
864
865         case DIVINGLOG:
866                 if (divinglog_dive_match(dive, name, len, buf))
867                         return;
868                 break;
869
870         case UDDF:
871                 if (uddf_dive_match(dive, name, len, buf))
872                         return;
873                 break;
874
875         default:
876                 break;
877         }
878
879         if (MATCH(".date", divedate, &dive->when))
880                 return;
881         if (MATCH(".time", divetime, &dive->when))
882                 return;
883         if (MATCH(".datetime", divedatetime, &dive->when))
884                 return;
885         if (MATCH(".maxdepth", depth, &dive->maxdepth))
886                 return;
887         if (MATCH(".meandepth", depth, &dive->meandepth))
888                 return;
889         if (MATCH(".depth.max", depth, &dive->maxdepth))
890                 return;
891         if (MATCH(".depth.mean", depth, &dive->meandepth))
892                 return;
893         if (MATCH(".duration", duration, &dive->duration))
894                 return;
895         if (MATCH(".divetime", duration, &dive->duration))
896                 return;
897         if (MATCH(".divetimesec", duration, &dive->duration))
898                 return;
899         if (MATCH(".surfacetime", duration, &dive->surfacetime))
900                 return;
901         if (MATCH(".airtemp", temperature, &dive->airtemp))
902                 return;
903         if (MATCH(".watertemp", temperature, &dive->watertemp))
904                 return;
905         if (MATCH(".temperature.air", temperature, &dive->airtemp))
906                 return;
907         if (MATCH(".temperature.water", temperature, &dive->watertemp))
908                 return;
909         if (MATCH(".cylinderstartpressure", pressure, &dive->cylinder[0].start))
910                 return;
911         if (MATCH(".cylinderendpressure", pressure, &dive->cylinder[0].end))
912                 return;
913         if (MATCH(".location", utf8_string, &dive->location))
914                 return;
915         if (MATCH(".notes", utf8_string, &dive->notes))
916                 return;
917
918         if (MATCH(".cylinder.size", cylindersize, &dive->cylinder[cylinder_index].type.size))
919                 return;
920         if (MATCH(".cylinder.workpressure", pressure, &dive->cylinder[cylinder_index].type.workingpressure))
921                 return;
922         if (MATCH(".cylinder.description", utf8_string, &dive->cylinder[cylinder_index].type.description))
923                 return;
924         if (MATCH(".cylinder.start", pressure, &dive->cylinder[cylinder_index].start))
925                 return;
926         if (MATCH(".cylinder.end", pressure, &dive->cylinder[cylinder_index].end))
927                 return;
928
929         if (MATCH(".o2", gasmix, &dive->cylinder[cylinder_index].gasmix.o2))
930                 return;
931         if (MATCH(".n2", gasmix_nitrogen, &dive->cylinder[cylinder_index].gasmix))
932                 return;
933         if (MATCH(".he", gasmix, &dive->cylinder[cylinder_index].gasmix.he))
934                 return;
935
936         nonmatch("dive", name, buf);
937 }
938
939 /*
940  * File boundaries are dive boundaries. But sometimes there are
941  * multiple dives per file, so there can be other events too that
942  * trigger a "new dive" marker and you may get some nesting due
943  * to that. Just ignore nesting levels.
944  */
945 static void dive_start(void)
946 {
947         unsigned int size;
948
949         if (dive)
950                 return;
951
952         alloc_samples = 5;
953         size = dive_size(alloc_samples);
954         dive = malloc(size);
955         if (!dive)
956                 exit(1);
957         memset(dive, 0, size);
958         memset(&tm, 0, sizeof(tm));
959 }
960
961 static void sanitize_gasmix(gasmix_t *mix)
962 {
963         unsigned int o2, he;
964
965         o2 = mix->o2.permille;
966         he = mix->he.permille;
967
968         /* Regular air: leave empty */
969         if (!he) {
970                 if (!o2)
971                         return;
972                 /* 20.9% or 21% O2 is just air */
973                 if (o2 >= 209 && o2 <= 210) {
974                         mix->o2.permille = 0;
975                         return;
976                 }
977         }
978
979         /* Sane mix? */
980         if (o2 <= 1000 && he <= 1000 && o2+he <= 1000)
981                 return;
982         fprintf(stderr, "Odd gasmix: %d O2 %d He\n", o2, he);
983         memset(mix, 0, sizeof(*mix));
984 }
985
986 /*
987  * See if the size/workingpressure looks like some standard cylinder
988  * size, eg "AL80".
989  */
990 static void match_standard_cylinder(cylinder_type_t *type)
991 {
992         int psi, cuft, len;
993         const char *fmt;
994         char buffer[20], *p;
995
996         /* Do we already have a cylinder description? */
997         if (type->description)
998                 return;
999
1000         cuft = type->size.mliter / 1000;
1001         psi = type->workingpressure.mbar / 68.95;
1002
1003         switch (psi) {
1004         case 2300 ... 2500:     /* 2400 psi: LP tank */
1005                 fmt = "LP%d";
1006                 break;
1007         case 2600 ... 2700:     /* 2640 psi: LP+10% */
1008                 fmt = "LP%d+";
1009                 break;
1010         case 2900 ... 3100:     /* 3000 psi: ALx tank */
1011                 fmt = "AL%d";
1012                 break;
1013         case 3400 ... 3500:     /* 3442 psi: HP tank */
1014                 fmt = "HP%d";
1015                 break;
1016         case 3700 ... 3850:     /* HP+10% */
1017                 fmt = "HP%d+";
1018                 break;
1019         default:
1020                 return;
1021         }
1022         len = snprintf(buffer, sizeof(buffer), fmt, cuft);
1023         p = malloc(len+1);
1024         if (!p)
1025                 return;
1026         memcpy(p, buffer, len+1);
1027         type->description = p;
1028 }
1029
1030
1031 /*
1032  * There are two ways to give cylinder size information:
1033  *  - total amount of gas in cuft (depends on working pressure and physical size)
1034  *  - physical size
1035  *
1036  * where "physical size" is the one that actually matters and is sane.
1037  *
1038  * We internally use physical size only. But we save the workingpressure
1039  * so that we can do the conversion if required.
1040  */
1041 static void sanitize_cylinder_type(cylinder_type_t *type)
1042 {
1043         double volume_of_air, atm, volume;
1044
1045         /* If we have no working pressure, it had *better* be just a physical size! */
1046         if (!type->workingpressure.mbar)
1047                 return;
1048
1049         /* No size either? Nothing to go on */
1050         if (!type->size.mliter)
1051                 return;
1052
1053         /* Ok, we have both size and pressure: try to match a description */
1054         match_standard_cylinder(type);
1055
1056         if (input_units.volume == CUFT || import_source == SUUNTO) {
1057                 volume_of_air = type->size.mliter * 28.317;     /* milli-cu ft to milliliter */
1058                 atm = type->workingpressure.mbar / 1013.25;     /* working pressure in atm */
1059                 volume = volume_of_air / atm;                   /* milliliters at 1 atm: "true size" */
1060                 type->size.mliter = volume + 0.5;
1061         }
1062 }
1063
1064 static void sanitize_cylinder_info(struct dive *dive)
1065 {
1066         int i;
1067
1068         for (i = 0; i < MAX_CYLINDERS; i++) {
1069                 sanitize_gasmix(&dive->cylinder[i].gasmix);
1070                 sanitize_cylinder_type(&dive->cylinder[i].type);
1071         }
1072 }
1073
1074 static void dive_end(void)
1075 {
1076         if (!dive)
1077                 return;
1078         sanitize_cylinder_info(dive);
1079         record_dive(dive);
1080         dive = NULL;
1081         cylinder_index = 0;
1082 }
1083
1084 static void event_start(void)
1085 {
1086 }
1087
1088 static void event_end(void)
1089 {
1090         event_index++;
1091 }
1092
1093 static void cylinder_start(void)
1094 {
1095 }
1096
1097 static void cylinder_end(void)
1098 {
1099         cylinder_index++;
1100 }
1101
1102 static void sample_start(void)
1103 {
1104         int nr;
1105
1106         if (!dive)
1107                 return;
1108         nr = dive->samples;
1109         if (nr >= alloc_samples) {
1110                 unsigned int size;
1111
1112                 alloc_samples = (alloc_samples * 3)/2 + 10;
1113                 size = dive_size(alloc_samples);
1114                 dive = realloc(dive, size);
1115                 if (!dive)
1116                         return;
1117         }
1118         sample = dive->sample + nr;
1119         memset(sample, 0, sizeof(*sample));
1120         event_index = 0;
1121 }
1122
1123 static void sample_end(void)
1124 {
1125         if (!dive)
1126                 return;
1127
1128         sample = NULL;
1129         dive->samples++;
1130 }
1131
1132 static void entry(const char *name, int size, const char *raw)
1133 {
1134         char *buf = malloc(size+1);
1135
1136         if (!buf)
1137                 return;
1138         memcpy(buf, raw, size);
1139         buf[size] = 0;
1140         if (sample) {
1141                 try_to_fill_sample(sample, name, buf);
1142                 return;
1143         }
1144         if (dive) {
1145                 try_to_fill_dive(dive, name, buf);
1146                 return;
1147         }
1148 }
1149
1150 static const char *nodename(xmlNode *node, char *buf, int len)
1151 {
1152         if (!node || !node->name)
1153                 return "root";
1154
1155         buf += len;
1156         *--buf = 0;
1157         len--;
1158
1159         for(;;) {
1160                 const char *name = node->name;
1161                 int i = strlen(name);
1162                 while (--i >= 0) {
1163                         unsigned char c = name[i];
1164                         *--buf = tolower(c);
1165                         if (!--len)
1166                                 return buf;
1167                 }
1168                 node = node->parent;
1169                 if (!node || !node->name)
1170                         return buf;
1171                 *--buf = '.';
1172                 if (!--len)
1173                         return buf;
1174         }
1175 }
1176
1177 #define MAXNAME 64
1178
1179 static void visit_one_node(xmlNode *node)
1180 {
1181         int len;
1182         const unsigned char *content;
1183         char buffer[MAXNAME];
1184         const char *name;
1185
1186         content = node->content;
1187         if (!content)
1188                 return;
1189
1190         /* Trim whitespace at beginning */
1191         while (isspace(*content))
1192                 content++;
1193
1194         /* Trim whitespace at end */
1195         len = strlen(content);
1196         while (len && isspace(content[len-1]))
1197                 len--;
1198
1199         if (!len)
1200                 return;
1201
1202         /* Don't print out the node name if it is "text" */
1203         if (!strcmp(node->name, "text"))
1204                 node = node->parent;
1205
1206         name = nodename(node, buffer, sizeof(buffer));
1207
1208         entry(name, len, content);
1209 }
1210
1211 static void traverse(xmlNode *root);
1212
1213 static void traverse_properties(xmlNode *node)
1214 {
1215         xmlAttr *p;
1216
1217         for (p = node->properties; p; p = p->next)
1218                 traverse(p->children);
1219 }
1220
1221 static void visit(xmlNode *n)
1222 {
1223         visit_one_node(n);
1224         traverse_properties(n);
1225         traverse(n->children);
1226 }
1227
1228 static void suunto_importer(void)
1229 {
1230         import_source = SUUNTO;
1231         input_units = SI_units;
1232 }
1233
1234 static void uemis_importer(void)
1235 {
1236         import_source = UEMIS;
1237         input_units = SI_units;
1238 }
1239
1240 static void DivingLog_importer(void)
1241 {
1242         import_source = DIVINGLOG;
1243
1244         /*
1245          * Diving Log units are really strange.
1246          *
1247          * Temperatures are in C, except in samples,
1248          * when they are in Fahrenheit. Depths are in
1249          * meters, but pressure is in PSI.
1250          */
1251         input_units = SI_units;
1252         input_units.pressure = PSI;
1253 }
1254
1255 static void uddf_importer(void)
1256 {
1257         import_source = UDDF;
1258         input_units = SI_units;
1259         input_units.pressure = PASCAL;
1260         input_units.temperature = KELVIN;
1261 }
1262
1263 /*
1264  * I'm sure this could be done as some fancy DTD rules.
1265  * It's just not worth the headache.
1266  */
1267 static struct nesting {
1268         const char *name;
1269         void (*start)(void), (*end)(void);
1270 } nesting[] = {
1271         { "dive", dive_start, dive_end },
1272         { "Dive", dive_start, dive_end },
1273         { "sample", sample_start, sample_end },
1274         { "waypoint", sample_start, sample_end },
1275         { "SAMPLE", sample_start, sample_end },
1276         { "reading", sample_start, sample_end },
1277         { "event", event_start, event_end },
1278         { "gasmix", cylinder_start, cylinder_end },
1279         { "cylinder", cylinder_start, cylinder_end },
1280         { "P", sample_start, sample_end },
1281
1282         /* Import type recognition */
1283         { "SUUNTO", suunto_importer },
1284         { "Divinglog", DivingLog_importer },
1285         { "pre_dive", uemis_importer },
1286         { "uddf", uddf_importer },
1287
1288         { NULL, }
1289 };
1290
1291 static void traverse(xmlNode *root)
1292 {
1293         xmlNode *n;
1294
1295         for (n = root; n; n = n->next) {
1296                 struct nesting *rule = nesting;
1297
1298                 do {
1299                         if (!strcmp(rule->name, n->name))
1300                                 break;
1301                         rule++;
1302                 } while (rule->name);
1303
1304                 if (rule->start)
1305                         rule->start();
1306                 visit(n);
1307                 if (rule->end)
1308                         rule->end();
1309         }
1310 }
1311
1312 /* Per-file reset */
1313 static void reset_all(void)
1314 {
1315         /*
1316          * We reset the units for each file. You'd think it was
1317          * a per-dive property, but I'm not going to trust people
1318          * to do per-dive setup. If the xml does have per-dive
1319          * data within one file, we might have to reset it per
1320          * dive for that format.
1321          */
1322         input_units = SI_units;
1323         import_source = UNKNOWN;
1324 }
1325
1326 void parse_xml_file(const char *filename, GError **error)
1327 {
1328         xmlDoc *doc;
1329
1330         doc = xmlReadFile(filename, NULL, 0);
1331         if (!doc) {
1332                 fprintf(stderr, "Failed to parse '%s'.\n", filename);
1333                 if (error != NULL)
1334                 {
1335                         *error = g_error_new(g_quark_from_string("divelog"),
1336                                              DIVE_ERROR_PARSE,
1337                                              "Failed to parse '%s'",
1338                                              filename);
1339                 }
1340                 return;
1341         }
1342
1343         reset_all();
1344         dive_start();
1345         traverse(xmlDocGetRootElement(doc));
1346         dive_end();
1347         xmlFreeDoc(doc);
1348         xmlCleanupParser();
1349 }
1350
1351 void parse_xml_init(void)
1352 {
1353         LIBXML_TEST_VERSION
1354 }