From dd81e7621979eb3a2c1db1f63fe1453053786084 Mon Sep 17 00:00:00 2001 From: Guilhem Bonnefille Date: Mon, 21 Apr 2008 21:04:03 +0000 Subject: [PATCH] Read/Write ISO date in GLib's way Fix #1915121 --- ChangeLog | 1 + src/gpx.c | 31 +++++++++++++++++-------------- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3208ed8d..4d09e93a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ 2008-04-21: Guilhem Bonnefille : * Bug #1915121: add an utility to reproduce (test/gpx2gpx) + * Fix #1915121: use GLib functions to handle ISO8601 dates 2008-04-16: Tim Scofield : diff --git a/src/gpx.c b/src/gpx.c index 66fa231b..16ac2147 100644 --- a/src/gpx.c +++ b/src/gpx.c @@ -33,8 +33,6 @@ #include #include -#define GPX_TIME_FORMAT "%Y-%m-%dT%H:%M:%SZ" - typedef enum { tt_unknown = 0, @@ -249,7 +247,8 @@ static void gpx_start(VikTrwLayer *vtl, const char *el, const char **attr) static void gpx_end(VikTrwLayer *vtl, const char *el) { - static struct tm tm; + static GTimeVal tp_time; + g_string_truncate ( xpath, xpath->len - strlen(el) - 1 ); switch ( current_tag ) { @@ -322,9 +321,8 @@ static void gpx_end(VikTrwLayer *vtl, const char *el) break; case tt_trk_trkseg_trkpt_time: - - if ( strptime(c_cdata->str, GPX_TIME_FORMAT, &tm) != c_cdata->str ) { /* it read at least one char */ - c_tp->timestamp = mktime(&tm); + if ( g_time_val_from_iso8601(c_cdata->str, &tp_time) ) { + c_tp->timestamp = tp_time.tv_sec; c_tp->has_timestamp = TRUE; } g_string_erase ( c_cdata, 0, -1 ); @@ -640,7 +638,7 @@ static void gpx_write_trackpoint ( VikTrackpoint *tp, GpxWritingContext *context FILE *f = context->file; static struct LatLon ll; gchar *s_lat,*s_lon, *s_alt; - static gchar time_buf[30]; + gchar *time_iso8601; vik_coord_to_latlon ( &(tp->coord), &ll ); if ( tp->newsegment ) @@ -665,19 +663,24 @@ static void gpx_write_trackpoint ( VikTrackpoint *tp, GpxWritingContext *context fprintf ( f, " %s\n", s_alt ); g_free ( s_alt ); s_alt = NULL; - time_buf[0] = '\0'; + time_iso8601 = NULL; if ( tp->has_timestamp ) { - time_buf [ strftime ( time_buf, sizeof(time_buf)-1, GPX_TIME_FORMAT, localtime(&(tp->timestamp)) ) ] = '\0'; + GTimeVal timestamp; + timestamp.tv_sec = tp->timestamp; + + time_iso8601 = g_time_val_to_iso8601 ( ×tamp ); } else if ( context->options != NULL && context->options->force_time ) { - time_t rawtime; - time ( &rawtime ); + GTimeVal current; + g_get_current_time ( ¤t ); - time_buf [strftime ( time_buf, sizeof(time_buf)-1, GPX_TIME_FORMAT, localtime(&rawtime)) ] ='\0'; + time_iso8601 = g_time_val_to_iso8601 ( ¤t ); } - if ( time_buf[0] != '\0' ) - fprintf ( f, " \n", time_buf ); + if ( time_iso8601 != NULL ) + fprintf ( f, " \n", time_iso8601 ); + g_free(time_iso8601); + time_iso8601 = NULL; if (tp->extended && (tp->fix_mode >= VIK_GPS_MODE_2D)) { if (!isnan(tp->course)) { -- 2.39.5