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