]> git.tdb.fi Git - ext/subsurface.git/commitdiff
Merge branch 'open-files' of git://github.com/nathansamson/diveclog
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 5 Sep 2011 21:44:27 +0000 (14:44 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 5 Sep 2011 21:44:27 +0000 (14:44 -0700)
* 'open-files' of git://github.com/nathansamson/diveclog:
  Report errors when opening files
  Make it possible to load multiple files at once.
  Open File works. I refactored the code and introduced a new type. I never used it as a pointer (their was no real reason), but I'm not really satisfied.

1  2 
parse-xml.c

diff --combined parse-xml.c
index 8aaeedc9f72d9146b0939042969240c87b7741da,26e322f80827dbfdc08678593880ef4f3f46a6fb..90fdb1ad1ea751fe29cf0045e1acc8f4f4e41b7f
@@@ -91,16 -91,9 +91,16 @@@ static int alloc_samples
  static struct dive *dive;
  static struct sample *sample;
  static struct tm tm;
 -static int suunto, uemis;
  static int event_index, cylinder_index;
  
 +static enum import_source {
 +      UNKNOWN,
 +      LIBDIVECOMPUTER,
 +      SUUNTO,
 +      UEMIS,
 +      DIVINGLOG,
 +} import_source;
 +
  static time_t utc_mktime(struct tm *tm)
  {
        static const int mdays[] = {
@@@ -474,35 -467,6 +474,35 @@@ static int uemis_fill_sample(struct sam
                0;
  }
  
 +/*
 + * Divinglog is crazy. The temperatures are in celsius. EXCEPT
 + * for the sample temperatures, that are in Fahrenheit.
 + * WTF?
 + */
 +static void fahrenheit(char *buffer, void *_temperature)
 +{
 +      temperature_t *temperature = _temperature;
 +      union int_or_float val;
 +
 +      switch (integer_or_float(buffer, &val)) {
 +      case FLOAT:
 +              temperature->mkelvin = (val.fp + 459.67) * 5000/9;
 +              break;
 +      default:
 +              fprintf(stderr, "Crazy Diving Log temperature reading %s\n", buffer);
 +      }
 +      free(buffer);
 +}
 +
 +static int divinglog_fill_sample(struct sample *sample, const char *name, int len, char *buf)
 +{
 +      return  MATCH(".p.time", sampletime, &sample->time) ||
 +              MATCH(".p.depth", depth, &sample->depth) ||
 +              MATCH(".p.temp", fahrenheit, &sample->temperature) ||
 +              MATCH(".p.press1", pressure, &sample->cylinderpressure) ||
 +              0;
 +}
 +
  /* We're in samples - try to convert the random xml value to something useful */
  static void try_to_fill_sample(struct sample *sample, const char *name, char *buf)
  {
        if (MATCH(".sample.time", sampletime, &sample->time))
                return;
  
 -      if (uemis) {
 +      switch (import_source) {
 +      case UEMIS:
                if (uemis_fill_sample(sample, name, len, buf))
                        return;
 +              break;
 +
 +      case DIVINGLOG:
 +              if (divinglog_fill_sample(sample, name, len, buf))
 +                      return;
 +              break;
 +
 +      default:
 +              break;
        }
  
        nonmatch("sample", name, buf);
@@@ -560,44 -514,6 +560,44 @@@ static int suunto_dive_match(struct div
                0;
  }
  
 +static const char *country, *city;
 +
 +static void divinglog_place(char *place, void *_location)
 +{
 +      char **location = _location;
 +      char buffer[256], *p;
 +      int len;
 +
 +      len = snprintf(buffer, sizeof(buffer),
 +              "%s%s%s%s%s",
 +              place,
 +              city ? ", " : "",
 +              city ? city : "",
 +              country ? ", " : "",
 +              country ? country : "");
 +
 +      p = malloc(len+1);
 +      memcpy(p, buffer, len+1);
 +      *location = p;
 +
 +      city = NULL;
 +      country = NULL;
 +}
 +
 +static int divinglog_dive_match(struct dive *dive, const char *name, int len, char *buf)
 +{
 +      return  MATCH(".divedate", divedate, &dive->when) ||
 +              MATCH(".entrytime", divetime, &dive->when) ||
 +              MATCH(".depth", depth, &dive->maxdepth) ||
 +              MATCH(".tanksize", cylindersize, &dive->cylinder[0].type.size) ||
 +              MATCH(".tanktype", utf8_string, &dive->cylinder[0].type.description) ||
 +              MATCH(".comments", utf8_string, &dive->notes) ||
 +              MATCH(".country.name", utf8_string, &country) ||
 +              MATCH(".city.name", utf8_string, &city) ||
 +              MATCH(".place.name", divinglog_place, &dive->location) ||
 +              0;
 +}
 +
  static int buffer_value(char *buffer)
  {
        int val = atoi(buffer);
@@@ -771,27 -687,6 +771,27 @@@ static void try_to_fill_dive(struct div
        int len = strlen(name);
  
        start_match("dive", name, buf);
 +
 +      switch (import_source) {
 +      case SUUNTO:
 +              if (suunto_dive_match(dive, name, len, buf))
 +                      return;
 +              break;
 +
 +      case UEMIS:
 +              if (uemis_dive_match(dive, name, len, buf))
 +                      return;
 +              break;
 +
 +      case DIVINGLOG:
 +              if (divinglog_dive_match(dive, name, len, buf))
 +                      return;
 +              break;
 +
 +      default:
 +              break;
 +      }
 +
        if (MATCH(".date", divedate, &dive->when))
                return;
        if (MATCH(".time", divetime, &dive->when))
        if (MATCH(".he", gasmix, &dive->cylinder[cylinder_index].gasmix.he))
                return;
  
 -      /* Suunto XML files are some crazy sh*t. */
 -      if (suunto && suunto_dive_match(dive, name, len, buf))
 -              return;
 -
 -      if (uemis && uemis_dive_match(dive, name, len, buf))
 -              return;
 -
        nonmatch("dive", name, buf);
  }
  
@@@ -996,6 -898,27 +996,6 @@@ static void dive_end(void
        cylinder_index = 0;
  }
  
 -static void suunto_start(void)
 -{
 -      suunto++;
 -      units = SI_units;
 -}
 -
 -static void suunto_end(void)
 -{
 -      suunto--;
 -}
 -
 -static void uemis_start(void)
 -{
 -      uemis++;
 -      units = SI_units;
 -}
 -
 -static void uemis_end(void)
 -{
 -}
 -
  static void event_start(void)
  {
  }
@@@ -1140,33 -1063,6 +1140,33 @@@ static void visit(xmlNode *n
        traverse(n->children);
  }
  
 +static void suunto_importer(void)
 +{
 +      import_source = SUUNTO;
 +      units = SI_units;
 +}
 +
 +static void uemis_importer(void)
 +{
 +      import_source = UEMIS;
 +      units = SI_units;
 +}
 +
 +static void DivingLog_importer(void)
 +{
 +      import_source = DIVINGLOG;
 +
 +      /*
 +       * Diving Log units are really strange.
 +       *
 +       * Temperatures are in C, except in samples,
 +       * when they are in Fahrenheit. Depths are in
 +       * meters, but pressure is in PSI.
 +       */
 +      units = SI_units;
 +      units.pressure = PSI;
 +}
 +
  /*
   * I'm sure this could be done as some fancy DTD rules.
   * It's just not worth the headache.
@@@ -1176,20 -1072,14 +1176,20 @@@ static struct nesting 
        void (*start)(void), (*end)(void);
  } nesting[] = {
        { "dive", dive_start, dive_end },
 -      { "SUUNTO", suunto_start, suunto_end },
 +      { "Dive", dive_start, dive_end },
        { "sample", sample_start, sample_end },
        { "SAMPLE", sample_start, sample_end },
        { "reading", sample_start, sample_end },
        { "event", event_start, event_end },
        { "gasmix", cylinder_start, cylinder_end },
        { "cylinder", cylinder_start, cylinder_end },
 -      { "pre_dive", uemis_start, uemis_end },
 +      { "P", sample_start, sample_end },
 +
 +      /* Import type recognition */
 +      { "SUUNTO", suunto_importer },
 +      { "Divinglog", DivingLog_importer },
 +      { "pre_dive", uemis_importer },
 +
        { NULL, }
  };
  
@@@ -1225,16 -1115,24 +1225,23 @@@ static void reset_all(void
         * dive for that format.
         */
        units = SI_units;
 -      suunto = 0;
 -      uemis = 0;
 +      import_source = UNKNOWN;
  }
  
- void parse_xml_file(const char *filename)
+ void parse_xml_file(const char *filename, GError **error)
  {
        xmlDoc *doc;
  
        doc = xmlReadFile(filename, NULL, 0);
        if (!doc) {
                fprintf(stderr, "Failed to parse '%s'.\n", filename);
+               if (error != NULL)
+               {
+                       *error = g_error_new(g_quark_from_string("divelog"),
+                                            DIVE_ERROR_PARSE,
+                                            "Failed to parse '%s'",
+                                            filename);
+               }
                return;
        }