]> git.tdb.fi Git - ext/subsurface.git/blob - parse-xml.c
Save and restore a "dive number"
[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(".id", get_index, &dive->nr) ||
613                 MATCH(".divedate", divedate, &dive->when) ||
614                 MATCH(".entrytime", divetime, &dive->when) ||
615                 MATCH(".depth", depth, &dive->maxdepth) ||
616                 MATCH(".tanksize", cylindersize, &dive->cylinder[0].type.size) ||
617                 MATCH(".tanktype", utf8_string, &dive->cylinder[0].type.description) ||
618                 MATCH(".comments", utf8_string, &dive->notes) ||
619                 MATCH(".country.name", utf8_string, &country) ||
620                 MATCH(".city.name", utf8_string, &city) ||
621                 MATCH(".place.name", divinglog_place, &dive->location) ||
622                 0;
623 }
624
625 static int buffer_value(char *buffer)
626 {
627         int val = atoi(buffer);
628         free(buffer);
629         return val;
630 }
631
632 static void uemis_length_unit(char *buffer, void *_unused)
633 {
634         input_units.length = buffer_value(buffer) ? FEET : METERS;
635 }
636
637 static void uemis_volume_unit(char *buffer, void *_unused)
638 {
639         input_units.volume = buffer_value(buffer) ? CUFT : LITER;
640 }
641
642 static void uemis_pressure_unit(char *buffer, void *_unused)
643 {
644 #if 0
645         input_units.pressure = buffer_value(buffer) ? PSI : BAR;
646 #endif
647 }
648
649 static void uemis_temperature_unit(char *buffer, void *_unused)
650 {
651         input_units.temperature = buffer_value(buffer) ? FAHRENHEIT : CELSIUS;
652 }
653
654 static void uemis_weight_unit(char *buffer, void *_unused)
655 {
656         input_units.weight = buffer_value(buffer) ? LBS : KG;
657 }
658
659 static void uemis_time_unit(char *buffer, void *_unused)
660 {
661 }
662
663 static void uemis_date_unit(char *buffer, void *_unused)
664 {
665 }
666
667 /* Modified julian day, yay! */
668 static void uemis_date_time(char *buffer, void *_when)
669 {
670         time_t *when = _when;
671         union int_or_float val;
672
673         switch (integer_or_float(buffer, &val)) {
674         case FLOAT:
675                 *when = (val.fp - 40587) * 86400;
676                 break;
677         default:
678                 fprintf(stderr, "Strange julian date: %s", buffer);
679         }
680         free(buffer);
681 }
682
683 /*
684  * Uemis doesn't know time zones. You need to do them as
685  * minutes, not hours.
686  *
687  * But that's ok, we don't track timezones yet either. We
688  * just turn everything into "localtime expressed as UTC".
689  */
690 static void uemis_time_zone(char *buffer, void *_when)
691 {
692 #if 0 /* seems like this is only used to display it correctly
693        * the stored time appears to be UTC */
694
695         time_t *when = _when;
696         signed char tz = atoi(buffer);
697
698         *when += tz * 3600;
699 #endif
700 }
701
702 /* 0 - air ; 1 - nitrox1 ; 2 - nitrox2 ; 3 = nitrox3 */
703 static int uemis_gas_template;
704
705 /*
706  * Christ. Uemis tank data is a total mess.
707  *
708  * We're passed a "virtual cylinder" (0 - 6) for the different
709  * Uemis tank cases ("air", "nitrox_1", "nitrox_2.{bottom,deco}"
710  * and "nitrox_3.{bottom,deco,travel}". We need to turn that
711  * into the actual cylinder data depending on the gas template,
712  * and ignore the ones that are irrelevant for that template.
713  *
714  * So for "template 2" (nitrox_2), we ignore virtual tanks 0-1
715  * (which are "air" and "nitrox_1" respectively), and tanks 4-6
716  * (which are the three "nitrox_3" tanks), and we turn virtual
717  * tanks 2/3 into actual tanks 0/1.
718  *
719  * Confused yet?
720  */
721 static int uemis_cylinder_index(void *_cylinder)
722 {
723         cylinder_t *cylinder = _cylinder;
724         unsigned int index = cylinder - dive->cylinder;
725
726         if (index > 6) {
727                 fprintf(stderr, "Uemis cylinder pointer calculations broken\n");
728                 return -1;
729         }
730         switch(uemis_gas_template) {
731         case 1: /* Dive uses tank 1 */
732                 index -= 1;
733         /* Fallthrough */
734         case 0: /* Dive uses tank 0 */
735                 if (index)
736                         index = -1;
737                 break;
738         case 2: /* Dive uses tanks 2-3 */
739                 index -= 2;
740                 if (index > 1)
741                         index = -1;
742                 break;
743         case 3: /* Dive uses tanks 4-6 */
744                 index -= 4;
745                 if (index > 2)
746                         index = -1;
747                 break;
748         }
749         return index;
750 }
751
752 static void uemis_cylindersize(char *buffer, void *_cylinder)
753 {
754         int index = uemis_cylinder_index(_cylinder);
755         if (index >= 0)
756                 cylindersize(buffer, &dive->cylinder[index].type.size);
757 }
758
759 static void uemis_percent(char *buffer, void *_cylinder)
760 {
761         int index = uemis_cylinder_index(_cylinder);
762         if (index >= 0)
763                 percent(buffer, &dive->cylinder[index].gasmix.o2);
764 }
765
766 static int uemis_dive_match(struct dive *dive, const char *name, int len, char *buf)
767 {
768         return  MATCH(".units.length", uemis_length_unit, &input_units) ||
769                 MATCH(".units.volume", uemis_volume_unit, &input_units) ||
770                 MATCH(".units.pressure", uemis_pressure_unit, &input_units) ||
771                 MATCH(".units.temperature", uemis_temperature_unit, &input_units) ||
772                 MATCH(".units.weight", uemis_weight_unit, &input_units) ||
773                 MATCH(".units.time", uemis_time_unit, &input_units) ||
774                 MATCH(".units.date", uemis_date_unit, &input_units) ||
775                 MATCH(".date_time", uemis_date_time, &dive->when) ||
776                 MATCH(".time_zone", uemis_time_zone, &dive->when) ||
777                 MATCH(".ambient.temperature", decicelsius, &dive->airtemp) ||
778                 MATCH(".gas.template", get_index, &uemis_gas_template) ||
779                 MATCH(".air.bottom_tank.size", uemis_cylindersize, dive->cylinder + 0) ||
780                 MATCH(".air.bottom_tank.oxygen", uemis_percent, dive->cylinder + 0) ||
781                 MATCH(".nitrox_1.bottom_tank.size", uemis_cylindersize, dive->cylinder + 1) ||
782                 MATCH(".nitrox_1.bottom_tank.oxygen", uemis_percent, dive->cylinder + 1) ||
783                 MATCH(".nitrox_2.bottom_tank.size", uemis_cylindersize, dive->cylinder + 2) ||
784                 MATCH(".nitrox_2.bottom_tank.oxygen", uemis_percent, dive->cylinder + 2) ||
785                 MATCH(".nitrox_2.deco_tank.size", uemis_cylindersize, dive->cylinder + 3) ||
786                 MATCH(".nitrox_2.deco_tank.oxygen", uemis_percent, dive->cylinder + 3) ||
787                 MATCH(".nitrox_3.bottom_tank.size", uemis_cylindersize, dive->cylinder + 4) ||
788                 MATCH(".nitrox_3.bottom_tank.oxygen", uemis_percent, dive->cylinder + 4) ||
789                 MATCH(".nitrox_3.deco_tank.size", uemis_cylindersize, dive->cylinder + 5) ||
790                 MATCH(".nitrox_3.deco_tank.oxygen", uemis_percent, dive->cylinder + 5) ||
791                 MATCH(".nitrox_3.travel_tank.size", uemis_cylindersize, dive->cylinder + 6) ||
792                 MATCH(".nitrox_3.travel_tank.oxygen", uemis_percent, dive->cylinder + 6) ||
793                 0;
794 }
795
796 /*
797  * Uddf specifies ISO 8601 time format.
798  *
799  * There are many variations on that. This handles the useful cases.
800  */
801 static void uddf_datetime(char *buffer, void *_when)
802 {
803         char c;
804         int y,m,d,hh,mm,ss;
805         time_t *when = _when;
806         struct tm tm = { 0 };
807         int i;
808
809         i = sscanf(buffer, "%d-%d-%d%c%d:%d:%d", &y, &m, &d, &c, &hh, &mm, &ss);
810         if (i == 7)
811                 goto success;
812         ss = 0;
813         if (i == 6)
814                 goto success;
815
816         i = sscanf(buffer, "%04d%02d%02d%c%02d%02d%02d", &y, &m, &d, &c, &hh, &mm, &ss);
817         if (i == 7)
818                 goto success;
819         ss = 0;
820         if (i == 6)
821                 goto success;
822 bad_date:
823         printf("Bad date time %s\n", buffer);
824         free(buffer);
825         return;
826
827 success:
828         if (c != 'T' && c != ' ')
829                 goto bad_date;
830         tm.tm_year = y;
831         tm.tm_mon = m - 1;
832         tm.tm_mday = d;
833         tm.tm_hour = hh;
834         tm.tm_min = mm;
835         tm.tm_sec = ss;
836         *when = utc_mktime(&tm);
837         free(buffer);
838 }
839
840 static int uddf_dive_match(struct dive *dive, const char *name, int len, char *buf)
841 {
842         return  MATCH(".datetime", uddf_datetime, &dive->when) ||
843                 MATCH(".diveduration", duration, &dive->duration) ||
844                 MATCH(".greatestdepth", depth, &dive->maxdepth) ||
845                 0;
846 }
847
848 /* We're in the top-level dive xml. Try to convert whatever value to a dive value */
849 static void try_to_fill_dive(struct dive *dive, const char *name, char *buf)
850 {
851         int len = strlen(name);
852
853         start_match("dive", name, buf);
854
855         switch (import_source) {
856         case SUUNTO:
857                 if (suunto_dive_match(dive, name, len, buf))
858                         return;
859                 break;
860
861         case UEMIS:
862                 if (uemis_dive_match(dive, name, len, buf))
863                         return;
864                 break;
865
866         case DIVINGLOG:
867                 if (divinglog_dive_match(dive, name, len, buf))
868                         return;
869                 break;
870
871         case UDDF:
872                 if (uddf_dive_match(dive, name, len, buf))
873                         return;
874                 break;
875
876         default:
877                 break;
878         }
879
880         if (MATCH(".nr", get_index, &dive->nr))
881                 return;
882         if (MATCH(".date", divedate, &dive->when))
883                 return;
884         if (MATCH(".time", divetime, &dive->when))
885                 return;
886         if (MATCH(".datetime", divedatetime, &dive->when))
887                 return;
888         if (MATCH(".maxdepth", depth, &dive->maxdepth))
889                 return;
890         if (MATCH(".meandepth", depth, &dive->meandepth))
891                 return;
892         if (MATCH(".depth.max", depth, &dive->maxdepth))
893                 return;
894         if (MATCH(".depth.mean", depth, &dive->meandepth))
895                 return;
896         if (MATCH(".duration", duration, &dive->duration))
897                 return;
898         if (MATCH(".divetime", duration, &dive->duration))
899                 return;
900         if (MATCH(".divetimesec", duration, &dive->duration))
901                 return;
902         if (MATCH(".surfacetime", duration, &dive->surfacetime))
903                 return;
904         if (MATCH(".airtemp", temperature, &dive->airtemp))
905                 return;
906         if (MATCH(".watertemp", temperature, &dive->watertemp))
907                 return;
908         if (MATCH(".temperature.air", temperature, &dive->airtemp))
909                 return;
910         if (MATCH(".temperature.water", temperature, &dive->watertemp))
911                 return;
912         if (MATCH(".cylinderstartpressure", pressure, &dive->cylinder[0].start))
913                 return;
914         if (MATCH(".cylinderendpressure", pressure, &dive->cylinder[0].end))
915                 return;
916         if (MATCH(".location", utf8_string, &dive->location))
917                 return;
918         if (MATCH(".notes", utf8_string, &dive->notes))
919                 return;
920
921         if (MATCH(".cylinder.size", cylindersize, &dive->cylinder[cylinder_index].type.size))
922                 return;
923         if (MATCH(".cylinder.workpressure", pressure, &dive->cylinder[cylinder_index].type.workingpressure))
924                 return;
925         if (MATCH(".cylinder.description", utf8_string, &dive->cylinder[cylinder_index].type.description))
926                 return;
927         if (MATCH(".cylinder.start", pressure, &dive->cylinder[cylinder_index].start))
928                 return;
929         if (MATCH(".cylinder.end", pressure, &dive->cylinder[cylinder_index].end))
930                 return;
931
932         if (MATCH(".o2", gasmix, &dive->cylinder[cylinder_index].gasmix.o2))
933                 return;
934         if (MATCH(".n2", gasmix_nitrogen, &dive->cylinder[cylinder_index].gasmix))
935                 return;
936         if (MATCH(".he", gasmix, &dive->cylinder[cylinder_index].gasmix.he))
937                 return;
938
939         nonmatch("dive", name, buf);
940 }
941
942 /*
943  * File boundaries are dive boundaries. But sometimes there are
944  * multiple dives per file, so there can be other events too that
945  * trigger a "new dive" marker and you may get some nesting due
946  * to that. Just ignore nesting levels.
947  */
948 static void dive_start(void)
949 {
950         unsigned int size;
951
952         if (dive)
953                 return;
954
955         alloc_samples = 5;
956         size = dive_size(alloc_samples);
957         dive = malloc(size);
958         if (!dive)
959                 exit(1);
960         memset(dive, 0, size);
961         memset(&tm, 0, sizeof(tm));
962 }
963
964 static void sanitize_gasmix(gasmix_t *mix)
965 {
966         unsigned int o2, he;
967
968         o2 = mix->o2.permille;
969         he = mix->he.permille;
970
971         /* Regular air: leave empty */
972         if (!he) {
973                 if (!o2)
974                         return;
975                 /* 20.9% or 21% O2 is just air */
976                 if (o2 >= 209 && o2 <= 210) {
977                         mix->o2.permille = 0;
978                         return;
979                 }
980         }
981
982         /* Sane mix? */
983         if (o2 <= 1000 && he <= 1000 && o2+he <= 1000)
984                 return;
985         fprintf(stderr, "Odd gasmix: %d O2 %d He\n", o2, he);
986         memset(mix, 0, sizeof(*mix));
987 }
988
989 /*
990  * See if the size/workingpressure looks like some standard cylinder
991  * size, eg "AL80".
992  */
993 static void match_standard_cylinder(cylinder_type_t *type)
994 {
995         int psi, cuft, len;
996         const char *fmt;
997         char buffer[20], *p;
998
999         /* Do we already have a cylinder description? */
1000         if (type->description)
1001                 return;
1002
1003         cuft = type->size.mliter / 1000;
1004         psi = type->workingpressure.mbar / 68.95;
1005
1006         switch (psi) {
1007         case 2300 ... 2500:     /* 2400 psi: LP tank */
1008                 fmt = "LP%d";
1009                 break;
1010         case 2600 ... 2700:     /* 2640 psi: LP+10% */
1011                 fmt = "LP%d+";
1012                 break;
1013         case 2900 ... 3100:     /* 3000 psi: ALx tank */
1014                 fmt = "AL%d";
1015                 break;
1016         case 3400 ... 3500:     /* 3442 psi: HP tank */
1017                 fmt = "HP%d";
1018                 break;
1019         case 3700 ... 3850:     /* HP+10% */
1020                 fmt = "HP%d+";
1021                 break;
1022         default:
1023                 return;
1024         }
1025         len = snprintf(buffer, sizeof(buffer), fmt, cuft);
1026         p = malloc(len+1);
1027         if (!p)
1028                 return;
1029         memcpy(p, buffer, len+1);
1030         type->description = p;
1031 }
1032
1033
1034 /*
1035  * There are two ways to give cylinder size information:
1036  *  - total amount of gas in cuft (depends on working pressure and physical size)
1037  *  - physical size
1038  *
1039  * where "physical size" is the one that actually matters and is sane.
1040  *
1041  * We internally use physical size only. But we save the workingpressure
1042  * so that we can do the conversion if required.
1043  */
1044 static void sanitize_cylinder_type(cylinder_type_t *type)
1045 {
1046         double volume_of_air, atm, volume;
1047
1048         /* If we have no working pressure, it had *better* be just a physical size! */
1049         if (!type->workingpressure.mbar)
1050                 return;
1051
1052         /* No size either? Nothing to go on */
1053         if (!type->size.mliter)
1054                 return;
1055
1056         /* Ok, we have both size and pressure: try to match a description */
1057         match_standard_cylinder(type);
1058
1059         if (input_units.volume == CUFT || import_source == SUUNTO) {
1060                 volume_of_air = type->size.mliter * 28.317;     /* milli-cu ft to milliliter */
1061                 atm = type->workingpressure.mbar / 1013.25;     /* working pressure in atm */
1062                 volume = volume_of_air / atm;                   /* milliliters at 1 atm: "true size" */
1063                 type->size.mliter = volume + 0.5;
1064         }
1065 }
1066
1067 static void sanitize_cylinder_info(struct dive *dive)
1068 {
1069         int i;
1070
1071         for (i = 0; i < MAX_CYLINDERS; i++) {
1072                 sanitize_gasmix(&dive->cylinder[i].gasmix);
1073                 sanitize_cylinder_type(&dive->cylinder[i].type);
1074         }
1075 }
1076
1077 static void dive_end(void)
1078 {
1079         if (!dive)
1080                 return;
1081         sanitize_cylinder_info(dive);
1082         record_dive(dive);
1083         dive = NULL;
1084         cylinder_index = 0;
1085 }
1086
1087 static void event_start(void)
1088 {
1089 }
1090
1091 static void event_end(void)
1092 {
1093         event_index++;
1094 }
1095
1096 static void cylinder_start(void)
1097 {
1098 }
1099
1100 static void cylinder_end(void)
1101 {
1102         cylinder_index++;
1103 }
1104
1105 static void sample_start(void)
1106 {
1107         int nr;
1108
1109         if (!dive)
1110                 return;
1111         nr = dive->samples;
1112         if (nr >= alloc_samples) {
1113                 unsigned int size;
1114
1115                 alloc_samples = (alloc_samples * 3)/2 + 10;
1116                 size = dive_size(alloc_samples);
1117                 dive = realloc(dive, size);
1118                 if (!dive)
1119                         return;
1120         }
1121         sample = dive->sample + nr;
1122         memset(sample, 0, sizeof(*sample));
1123         event_index = 0;
1124 }
1125
1126 static void sample_end(void)
1127 {
1128         if (!dive)
1129                 return;
1130
1131         sample = NULL;
1132         dive->samples++;
1133 }
1134
1135 static void entry(const char *name, int size, const char *raw)
1136 {
1137         char *buf = malloc(size+1);
1138
1139         if (!buf)
1140                 return;
1141         memcpy(buf, raw, size);
1142         buf[size] = 0;
1143         if (sample) {
1144                 try_to_fill_sample(sample, name, buf);
1145                 return;
1146         }
1147         if (dive) {
1148                 try_to_fill_dive(dive, name, buf);
1149                 return;
1150         }
1151 }
1152
1153 static const char *nodename(xmlNode *node, char *buf, int len)
1154 {
1155         if (!node || !node->name)
1156                 return "root";
1157
1158         buf += len;
1159         *--buf = 0;
1160         len--;
1161
1162         for(;;) {
1163                 const char *name = node->name;
1164                 int i = strlen(name);
1165                 while (--i >= 0) {
1166                         unsigned char c = name[i];
1167                         *--buf = tolower(c);
1168                         if (!--len)
1169                                 return buf;
1170                 }
1171                 node = node->parent;
1172                 if (!node || !node->name)
1173                         return buf;
1174                 *--buf = '.';
1175                 if (!--len)
1176                         return buf;
1177         }
1178 }
1179
1180 #define MAXNAME 64
1181
1182 static void visit_one_node(xmlNode *node)
1183 {
1184         int len;
1185         const unsigned char *content;
1186         char buffer[MAXNAME];
1187         const char *name;
1188
1189         content = node->content;
1190         if (!content)
1191                 return;
1192
1193         /* Trim whitespace at beginning */
1194         while (isspace(*content))
1195                 content++;
1196
1197         /* Trim whitespace at end */
1198         len = strlen(content);
1199         while (len && isspace(content[len-1]))
1200                 len--;
1201
1202         if (!len)
1203                 return;
1204
1205         /* Don't print out the node name if it is "text" */
1206         if (!strcmp(node->name, "text"))
1207                 node = node->parent;
1208
1209         name = nodename(node, buffer, sizeof(buffer));
1210
1211         entry(name, len, content);
1212 }
1213
1214 static void traverse(xmlNode *root);
1215
1216 static void traverse_properties(xmlNode *node)
1217 {
1218         xmlAttr *p;
1219
1220         for (p = node->properties; p; p = p->next)
1221                 traverse(p->children);
1222 }
1223
1224 static void visit(xmlNode *n)
1225 {
1226         visit_one_node(n);
1227         traverse_properties(n);
1228         traverse(n->children);
1229 }
1230
1231 static void suunto_importer(void)
1232 {
1233         import_source = SUUNTO;
1234         input_units = SI_units;
1235 }
1236
1237 static void uemis_importer(void)
1238 {
1239         import_source = UEMIS;
1240         input_units = SI_units;
1241 }
1242
1243 static void DivingLog_importer(void)
1244 {
1245         import_source = DIVINGLOG;
1246
1247         /*
1248          * Diving Log units are really strange.
1249          *
1250          * Temperatures are in C, except in samples,
1251          * when they are in Fahrenheit. Depths are in
1252          * meters, but pressure is in PSI.
1253          */
1254         input_units = SI_units;
1255         input_units.pressure = PSI;
1256 }
1257
1258 static void uddf_importer(void)
1259 {
1260         import_source = UDDF;
1261         input_units = SI_units;
1262         input_units.pressure = PASCAL;
1263         input_units.temperature = KELVIN;
1264 }
1265
1266 /*
1267  * I'm sure this could be done as some fancy DTD rules.
1268  * It's just not worth the headache.
1269  */
1270 static struct nesting {
1271         const char *name;
1272         void (*start)(void), (*end)(void);
1273 } nesting[] = {
1274         { "dive", dive_start, dive_end },
1275         { "Dive", dive_start, dive_end },
1276         { "sample", sample_start, sample_end },
1277         { "waypoint", sample_start, sample_end },
1278         { "SAMPLE", sample_start, sample_end },
1279         { "reading", sample_start, sample_end },
1280         { "event", event_start, event_end },
1281         { "gasmix", cylinder_start, cylinder_end },
1282         { "cylinder", cylinder_start, cylinder_end },
1283         { "P", sample_start, sample_end },
1284
1285         /* Import type recognition */
1286         { "SUUNTO", suunto_importer },
1287         { "Divinglog", DivingLog_importer },
1288         { "pre_dive", uemis_importer },
1289         { "uddf", uddf_importer },
1290
1291         { NULL, }
1292 };
1293
1294 static void traverse(xmlNode *root)
1295 {
1296         xmlNode *n;
1297
1298         for (n = root; n; n = n->next) {
1299                 struct nesting *rule = nesting;
1300
1301                 do {
1302                         if (!strcmp(rule->name, n->name))
1303                                 break;
1304                         rule++;
1305                 } while (rule->name);
1306
1307                 if (rule->start)
1308                         rule->start();
1309                 visit(n);
1310                 if (rule->end)
1311                         rule->end();
1312         }
1313 }
1314
1315 /* Per-file reset */
1316 static void reset_all(void)
1317 {
1318         /*
1319          * We reset the units for each file. You'd think it was
1320          * a per-dive property, but I'm not going to trust people
1321          * to do per-dive setup. If the xml does have per-dive
1322          * data within one file, we might have to reset it per
1323          * dive for that format.
1324          */
1325         input_units = SI_units;
1326         import_source = UNKNOWN;
1327 }
1328
1329 void parse_xml_file(const char *filename, GError **error)
1330 {
1331         xmlDoc *doc;
1332
1333         doc = xmlReadFile(filename, NULL, 0);
1334         if (!doc) {
1335                 fprintf(stderr, "Failed to parse '%s'.\n", filename);
1336                 if (error != NULL)
1337                 {
1338                         *error = g_error_new(g_quark_from_string("divelog"),
1339                                              DIVE_ERROR_PARSE,
1340                                              "Failed to parse '%s'",
1341                                              filename);
1342                 }
1343                 return;
1344         }
1345
1346         reset_all();
1347         dive_start();
1348         traverse(xmlDocGetRootElement(doc));
1349         dive_end();
1350         xmlFreeDoc(doc);
1351         xmlCleanupParser();
1352 }
1353
1354 void parse_xml_init(void)
1355 {
1356         LIBXML_TEST_VERSION
1357 }