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