]> git.street.me.uk Git - andy/viking.git/blob - src/gpspoint.c
XDG_CACHE_HOME compliant thumbnail usage
[andy/viking.git] / src / gpspoint.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
5  * Copyright (C) 2012-2013, Rob Norris <rw_norris@hotmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  */
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #ifdef HAVE_MATH_H
27 #include <math.h>
28 #endif
29
30 #include "viking.h"
31
32 #include <ctype.h>
33 #ifdef HAVE_STRING_H
34 #include <string.h>
35 #endif
36
37 #include <stdlib.h>
38 /* strtod */
39
40 typedef struct {
41   FILE *f;
42   gboolean is_route;
43 } TP_write_info_type;
44
45 static void a_gpspoint_write_track ( const gpointer id, const VikTrack *t, FILE *f );
46 static void a_gpspoint_write_trackpoint ( VikTrackpoint *tp, TP_write_info_type *write_info );
47 static void a_gpspoint_write_waypoint ( const gpointer id, const VikWaypoint *wp, FILE *f );
48
49 /* outline for file gpspoint.c
50
51 reading file:
52
53 take a line.
54 get first tag, if not type, skip it.
55 if type, record type.  if waypoint list, etc move on. if track, make a new track, make it current track, add it, etc.
56 if waypoint, read on and store to the waypoint.
57 if trackpoint, make trackpoint, store to current track (error / skip if none)
58
59 */
60
61 /* Thanks to etrex-cache's gpsbabel's gpspoint.c for starting me off! */
62 #define VIKING_LINE_SIZE 4096
63 static char line_buffer[VIKING_LINE_SIZE];
64
65 #define GPSPOINT_TYPE_NONE 0
66 #define GPSPOINT_TYPE_WAYPOINT 1
67 #define GPSPOINT_TYPE_TRACKPOINT 2
68 #define GPSPOINT_TYPE_ROUTEPOINT 3
69 #define GPSPOINT_TYPE_TRACK 4
70 #define GPSPOINT_TYPE_ROUTE 5
71
72 static VikTrack *current_track; /* pointer to pointer to first GList */
73
74 static gint line_type = GPSPOINT_TYPE_NONE;
75 static struct LatLon line_latlon;
76 static gchar *line_name;
77 static gchar *line_comment;
78 static gchar *line_description;
79 static gchar *line_source;
80 static gchar *line_xtype;
81 static gchar *line_color;
82 static gint line_name_label = 0;
83 static gint line_dist_label = 0;
84 static gchar *line_image;
85 static gchar *line_symbol;
86 static gboolean line_newsegment = FALSE;
87 static gboolean line_has_timestamp = FALSE;
88 static time_t line_timestamp = 0;
89 static gdouble line_altitude = VIK_DEFAULT_ALTITUDE;
90 static gboolean line_visible = TRUE;
91
92 static gboolean line_extended = FALSE;
93 static gdouble line_speed = NAN;
94 static gdouble line_course = NAN;
95 static gint line_sat = 0;
96 static gint line_fix = 0;
97 static gdouble line_hdop = VIK_DEFAULT_DOP;
98 static gdouble line_vdop = VIK_DEFAULT_DOP;
99 static gdouble line_pdop = VIK_DEFAULT_DOP;
100 /* other possible properties go here */
101
102
103 static void gpspoint_process_tag ( const gchar *tag, guint len );
104 static void gpspoint_process_key_and_value ( const gchar *key, guint key_len, const gchar *value, guint value_len );
105
106 static gchar *slashdup(const gchar *str)
107 {
108   size_t len = strlen(str);
109   size_t need_bs_count, i, j;
110   gchar *rv;
111   for ( i = 0, need_bs_count = 0; i < len; i++ )
112     if ( str[i] == '\\' || str[i] == '"' )
113       need_bs_count++;
114   rv = g_malloc ( (len+need_bs_count+1) * sizeof(gchar) );
115   for ( i = 0, j = 0; i < len; i++, j++ )
116   {
117     if ( str[i] == '\\' || str[i] == '"' )
118       rv[j++] = '\\';
119     rv[j] = str[i];
120     // Basic normalization of strings - replace Linefeed and Carriage returns as blanks.
121     //  although allowed in GPX Spec - Viking file format can't handle multi-line strings yet...
122     if ( str[i] == '\n' || str[i] == '\r' )
123       rv[j] = ' ';
124   }
125   rv[j] = '\0';
126   return rv;
127 }
128
129 static gchar *deslashndup ( const gchar *str, guint16 len )
130 {
131   guint16 i,j, bs_count, new_len;
132   gboolean backslash = FALSE;
133   gchar *rv;
134
135   if ( len < 1 )
136     return NULL;
137
138   for ( i = 0, bs_count = 0; i < len; i++ )
139    if ( str[i] == '\\' )
140    {
141      bs_count++;
142      i++;
143    }
144
145   if ( str[i-1] == '\\' && (len == 1 || str[i-2] != '\\') )
146     bs_count--;
147
148   new_len = len - bs_count;
149   rv = g_malloc ( (new_len+1) * sizeof(gchar) );
150   for ( i = 0, j = 0; i < len && j < new_len; i++ )
151     if ( str[i] == '\\' && !backslash )
152       backslash = TRUE;
153     else
154     {
155       rv[j++] = str[i];
156       backslash = FALSE;
157     }
158
159   rv[new_len] = '\0';
160   return rv;
161 }
162
163 /*
164  * Returns whether file read was a success
165  * No obvious way to test for a 'gpspoint' file,
166  *  thus set a flag if any actual tag found during processing of the file
167  */
168 gboolean a_gpspoint_read_file(VikTrwLayer *trw, FILE *f, const gchar *dirpath ) {
169   VikCoordMode coord_mode = vik_trw_layer_get_coord_mode ( trw );
170   gchar *tag_start, *tag_end;
171   g_assert ( f != NULL && trw != NULL );
172   line_type = 0;
173   line_timestamp = 0;
174   line_newsegment = FALSE;
175   line_image = NULL;
176   line_symbol = NULL;
177   current_track = NULL;
178   gboolean have_read_something = FALSE;
179
180   while (fgets(line_buffer, VIKING_LINE_SIZE, f))
181   {
182     gboolean inside_quote = 0;
183     gboolean backslash = 0;
184
185     line_buffer[strlen(line_buffer)-1] = '\0'; /* chop off newline */
186
187     /* for gpspoint files wrapped inside */
188     if ( strlen(line_buffer) >= 13 && strncmp ( line_buffer, "~EndLayerData", 13 ) == 0 ) {
189       // Even just a blank TRW is ok when in a .vik file
190       have_read_something = TRUE;
191       break;
192     }
193
194     /* each line: nullify stuff, make thing if nes, free name if ness */
195     tag_start = line_buffer;
196     for (;;)
197     {
198       /* my addition: find first non-whitespace character. if the null, skip line. */
199       while (*tag_start != '\0' && isspace(*tag_start))
200         tag_start++;
201       if (*tag_start == '\0')
202         break;
203
204       if (*tag_start == '#')
205         break;
206
207       tag_end = tag_start;
208         if (*tag_end == '"')
209           inside_quote = !inside_quote;
210       while (*tag_end != '\0' && (!isspace(*tag_end) || inside_quote)) {
211         tag_end++;
212         if (*tag_end == '\\' && !backslash)
213           backslash = TRUE;
214         else if (backslash)
215           backslash = FALSE;
216         else if (*tag_end == '"')
217           inside_quote = !inside_quote;
218       }
219
220       // Won't have super massively long strings, so potential truncation in cast is acceptable.
221       guint len = (guint)(tag_end - tag_start);
222       gpspoint_process_tag ( tag_start, len );
223
224       if (*tag_end == '\0' )
225         break;
226       else
227         tag_start = tag_end+1;
228     }
229     if (line_type == GPSPOINT_TYPE_WAYPOINT && line_name)
230     {
231       have_read_something = TRUE;
232       VikWaypoint *wp = vik_waypoint_new();
233       wp->visible = line_visible;
234       wp->altitude = line_altitude;
235       wp->has_timestamp = line_has_timestamp;
236       wp->timestamp = line_timestamp;
237
238       vik_coord_load_from_latlon ( &(wp->coord), coord_mode, &line_latlon );
239
240       vik_trw_layer_filein_add_waypoint ( trw, line_name, wp );
241       g_free ( line_name );
242       line_name = NULL;
243
244       if ( line_comment )
245         vik_waypoint_set_comment ( wp, line_comment );
246
247       if ( line_description )
248         vik_waypoint_set_description ( wp, line_description );
249
250       if ( line_source )
251         vik_waypoint_set_source ( wp, line_source );
252
253       if ( line_xtype )
254         vik_waypoint_set_type ( wp, line_xtype );
255
256       if ( line_image ) {
257         // Ensure the filename is absolute
258         if ( g_path_is_absolute ( line_image ) )
259           vik_waypoint_set_image ( wp, line_image );
260         else {
261           // Otherwise create the absolute filename from the directory of the .vik file & and the relative filename
262           gchar *full = g_strconcat(dirpath, G_DIR_SEPARATOR_S, line_image, NULL);
263           gchar *absolute = file_realpath_dup ( full ); // resolved into the canonical name
264           vik_waypoint_set_image ( wp, absolute );
265           g_free ( absolute );
266           g_free ( full );
267         }
268       }
269
270       if ( line_symbol )
271         vik_waypoint_set_symbol ( wp, line_symbol );
272     }
273     else if ((line_type == GPSPOINT_TYPE_TRACK || line_type == GPSPOINT_TYPE_ROUTE) && line_name)
274     {
275       have_read_something = TRUE;
276       VikTrack *pl = vik_track_new();
277       // NB don't set defaults here as all properties are stored in the GPS_POINT format
278       //vik_track_set_defaults ( pl );
279
280       /* Thanks to Peter Jones for this Fix */
281       if (!line_name) line_name = g_strdup("UNK");
282
283       pl->visible = line_visible;
284       pl->is_route = (line_type == GPSPOINT_TYPE_ROUTE);
285
286       if ( line_comment )
287         vik_track_set_comment ( pl, line_comment );
288
289       if ( line_description )
290         vik_track_set_description ( pl, line_description );
291
292       if ( line_source )
293         vik_track_set_source ( pl, line_source );
294
295       if ( line_xtype )
296         vik_track_set_type ( pl, line_xtype );
297
298       if ( line_color )
299       {
300         if ( gdk_color_parse ( line_color, &(pl->color) ) )
301         pl->has_color = TRUE;
302       }
303
304       pl->draw_name_mode = line_name_label;
305       pl->max_number_dist_labels = line_dist_label;
306
307       pl->trackpoints = NULL;
308       vik_trw_layer_filein_add_track ( trw, line_name, pl );
309       g_free ( line_name );
310       line_name = NULL;
311
312       current_track = pl;
313     }
314     else if ((line_type == GPSPOINT_TYPE_TRACKPOINT || line_type == GPSPOINT_TYPE_ROUTEPOINT) && current_track)
315     {
316       have_read_something = TRUE;
317       VikTrackpoint *tp = vik_trackpoint_new();
318       vik_coord_load_from_latlon ( &(tp->coord), coord_mode, &line_latlon );
319       tp->newsegment = line_newsegment;
320       tp->has_timestamp = line_has_timestamp;
321       tp->timestamp = line_timestamp;
322       tp->altitude = line_altitude;
323       vik_trackpoint_set_name ( tp, line_name );
324       if (line_extended) {
325         tp->speed = line_speed;
326         tp->course = line_course;
327         tp->nsats = line_sat;
328         tp->fix_mode = line_fix;
329         tp->hdop = line_hdop;
330         tp->vdop = line_vdop;
331         tp->pdop = line_pdop;
332       }
333       current_track->trackpoints = g_list_append ( current_track->trackpoints, tp );
334     }
335
336     if (line_name) 
337       g_free ( line_name );
338     line_name = NULL;
339     if (line_comment)
340       g_free ( line_comment );
341     if (line_description)
342       g_free ( line_description );
343     if (line_source)
344       g_free ( line_source );
345     if (line_xtype)
346       g_free ( line_xtype );
347     if (line_color)
348       g_free ( line_color );
349     if (line_image)
350       g_free ( line_image );
351     if (line_symbol)
352       g_free ( line_symbol );
353     line_comment = NULL;
354     line_description = NULL;
355     line_source = NULL;
356     line_xtype = NULL;
357     line_color = NULL;
358     line_image = NULL;
359     line_symbol = NULL;
360     line_type = GPSPOINT_TYPE_NONE;
361     line_newsegment = FALSE;
362     line_has_timestamp = FALSE;
363     line_timestamp = 0;
364     line_altitude = VIK_DEFAULT_ALTITUDE;
365     line_visible = TRUE;
366     line_symbol = NULL;
367
368     line_extended = FALSE;
369     line_speed = NAN;
370     line_course = NAN;
371     line_sat = 0;
372     line_fix = 0;
373     line_hdop = VIK_DEFAULT_DOP;
374     line_vdop = VIK_DEFAULT_DOP;
375     line_pdop = VIK_DEFAULT_DOP;
376     line_name_label = 0;
377     line_dist_label = 0;
378   }
379
380   return have_read_something;
381 }
382
383 /* Tag will be of a few defined forms:
384    ^[:alpha:]*=".*"$
385    ^[:alpha:]*=.*$
386
387    <invalid tag>
388
389 So we must determine end of tag name, start of value, end of value.
390 */
391 static void gpspoint_process_tag ( const gchar *tag, guint len )
392 {
393   const gchar *key_end, *value_start, *value_end;
394
395   /* Searching for key end */
396   key_end = tag;
397
398   while (++key_end - tag < len)
399     if (*key_end == '=')
400       break;
401
402   if (key_end - tag == len)
403     return; /* no good */
404
405   if (key_end - tag == len + 1)
406     value_start = value_end = 0; /* size = 0 */
407   else
408   {
409     value_start = key_end + 1; /* equal_sign plus one */
410
411     if (*value_start == '"')
412     {
413       value_start++;
414       if (*value_start == '"')
415         value_start = value_end = 0; /* size = 0 */
416       else
417       {
418         if (*(tag+len-1) == '"')
419           value_end = tag + len - 1;
420         else
421           return; /* bogus */
422       }
423     }
424     else
425       value_end = tag + len; /* value start really IS value start. */
426
427     // Detect broken lines which end without any text or the enclosing ". i.e. like: comment="
428     if ( (value_end - value_start) < 0 )
429       return;
430
431     gpspoint_process_key_and_value(tag, key_end - tag, value_start, value_end - value_start);
432   }
433 }
434
435 /*
436 value = NULL for none
437 */
438 static void gpspoint_process_key_and_value ( const gchar *key, guint key_len, const gchar *value, guint value_len )
439 {
440   if (key_len == 4 && strncasecmp( key, "type", key_len ) == 0 )
441   {
442     if (value == NULL)
443       line_type = GPSPOINT_TYPE_NONE;
444     else if (value_len == 5 && strncasecmp( value, "track", value_len ) == 0 )
445       line_type = GPSPOINT_TYPE_TRACK;
446     else if (value_len == 10 && strncasecmp( value, "trackpoint", value_len ) == 0 )
447       line_type = GPSPOINT_TYPE_TRACKPOINT;
448     else if (value_len == 8 && strncasecmp( value, "waypoint", value_len ) == 0 )
449       line_type = GPSPOINT_TYPE_WAYPOINT;
450     else if (value_len == 5 && strncasecmp( value, "route", value_len ) == 0 )
451       line_type = GPSPOINT_TYPE_ROUTE;
452     else if (value_len == 10 && strncasecmp( value, "routepoint", value_len ) == 0 )
453       line_type = GPSPOINT_TYPE_ROUTEPOINT;
454     else
455       /* all others are ignored */
456       line_type = GPSPOINT_TYPE_NONE;
457   }
458   else if (key_len == 4 && strncasecmp( key, "name", key_len ) == 0 && value != NULL)
459   {
460     if (line_name == NULL)
461     {
462       line_name = deslashndup ( value, value_len );
463     }
464   }
465   else if (key_len == 7 && strncasecmp( key, "comment", key_len ) == 0 && value != NULL)
466   {
467     if (line_comment == NULL)
468       line_comment = deslashndup ( value, value_len );
469   }
470   else if (key_len == 11 && strncasecmp( key, "description", key_len ) == 0 && value != NULL)
471   {
472     if (line_description == NULL)
473       line_description = deslashndup ( value, value_len );
474   }
475   else if (key_len == 6 && strncasecmp( key, "source", key_len ) == 0 && value != NULL)
476   {
477     if (line_source == NULL)
478       line_source = deslashndup ( value, value_len );
479   }
480   // NB using 'xtype' to differentiate from our own 'type' key
481   else if (key_len == 5 && strncasecmp( key, "xtype", key_len ) == 0 && value != NULL)
482   {
483     if (line_xtype == NULL)
484       line_xtype = deslashndup ( value, value_len );
485   }
486   else if (key_len == 5 && strncasecmp( key, "color", key_len ) == 0 && value != NULL)
487   {
488     if (line_color == NULL)
489       line_color = deslashndup ( value, value_len );
490   }
491   else if (key_len == 14 && strncasecmp( key, "draw_name_mode", key_len ) == 0 && value != NULL)
492   {
493     line_name_label = atoi(value);
494   }
495   else if (key_len == 18 && strncasecmp( key, "number_dist_labels", key_len ) == 0 && value != NULL)
496   {
497     line_dist_label = atoi(value);
498   }
499   else if (key_len == 5 && strncasecmp( key, "image", key_len ) == 0 && value != NULL)
500   {
501     if (line_image == NULL)
502       line_image = deslashndup ( value, value_len );
503   }
504   else if (key_len == 8 && strncasecmp( key, "latitude", key_len ) == 0 && value != NULL)
505   {
506     line_latlon.lat = g_ascii_strtod(value, NULL);
507   }
508   else if (key_len == 9 && strncasecmp( key, "longitude", key_len ) == 0 && value != NULL)
509   {
510     line_latlon.lon = g_ascii_strtod(value, NULL);
511   }
512   else if (key_len == 8 && strncasecmp( key, "altitude", key_len ) == 0 && value != NULL)
513   {
514     line_altitude = g_ascii_strtod(value, NULL);
515   }
516   else if (key_len == 7 && strncasecmp( key, "visible", key_len ) == 0 && value != NULL && value[0] != 'y' && value[0] != 'Y' && value[0] != 't' && value[0] != 'T')
517   {
518     line_visible = FALSE;
519   }
520   else if (key_len == 6 && strncasecmp( key, "symbol", key_len ) == 0 && value != NULL)
521   {
522     line_symbol = g_strndup ( value, value_len );
523   }
524   else if (key_len == 8 && strncasecmp( key, "unixtime", key_len ) == 0 && value != NULL)
525   {
526     line_timestamp = g_ascii_strtod(value, NULL);
527     if ( line_timestamp != 0x80000000 )
528       line_has_timestamp = TRUE;
529   }
530   else if (key_len == 10 && strncasecmp( key, "newsegment", key_len ) == 0 && value != NULL)
531   {
532     line_newsegment = TRUE;
533   }
534   else if (key_len == 8 && strncasecmp( key, "extended", key_len ) == 0 && value != NULL)
535   {
536     line_extended = TRUE;
537   }
538   else if (key_len == 5 && strncasecmp( key, "speed", key_len ) == 0 && value != NULL)
539   {
540     line_speed = g_ascii_strtod(value, NULL);
541   }
542   else if (key_len == 6 && strncasecmp( key, "course", key_len ) == 0 && value != NULL)
543   {
544     line_course = g_ascii_strtod(value, NULL);
545   }
546   else if (key_len == 3 && strncasecmp( key, "sat", key_len ) == 0 && value != NULL)
547   {
548     line_sat = atoi(value);
549   }
550   else if (key_len == 3 && strncasecmp( key, "fix", key_len ) == 0 && value != NULL)
551   {
552     line_fix = atoi(value);
553   }
554   else if (key_len == 4 && strncasecmp( key, "hdop", key_len ) == 0 && value != NULL)
555   {
556     line_hdop = g_ascii_strtod(value, NULL);
557   }
558   else if (key_len == 4 && strncasecmp( key, "vdop", key_len ) == 0 && value != NULL)
559   {
560     line_vdop = g_ascii_strtod(value, NULL);
561   }
562   else if (key_len == 4 && strncasecmp( key, "pdop", key_len ) == 0 && value != NULL)
563   {
564     line_pdop = g_ascii_strtod(value, NULL);
565   }
566 }
567
568 static void a_gpspoint_write_waypoint ( const gpointer id, const VikWaypoint *wp, FILE *f )
569 {
570   struct LatLon ll;
571   gchar s_lat[COORDS_STR_BUFFER_SIZE];
572   gchar s_lon[COORDS_STR_BUFFER_SIZE];
573   // Sanity clauses
574   if ( !wp )
575     return;
576   if ( !(wp->name) )
577     return;
578
579   vik_coord_to_latlon ( &(wp->coord), &ll );
580   a_coords_dtostr_buffer ( ll.lat, s_lat );
581   a_coords_dtostr_buffer ( ll.lon, s_lon );
582   gchar *tmp_name = slashdup(wp->name);
583   fprintf ( f, "type=\"waypoint\" latitude=\"%s\" longitude=\"%s\" name=\"%s\"", s_lat, s_lon, tmp_name );
584   g_free ( tmp_name );
585
586   if ( wp->altitude != VIK_DEFAULT_ALTITUDE ) {
587     gchar s_alt[COORDS_STR_BUFFER_SIZE];
588     a_coords_dtostr_buffer ( wp->altitude, s_alt );
589     fprintf ( f, " altitude=\"%s\"", s_alt );
590   }
591   if ( wp->has_timestamp )
592     fprintf ( f, " unixtime=\"%ld\"", wp->timestamp );
593   if ( wp->comment )
594   {
595     gchar *tmp_comment = slashdup(wp->comment);
596     fprintf ( f, " comment=\"%s\"", tmp_comment );
597     g_free ( tmp_comment );
598   }
599   if ( wp->description )
600   {
601     gchar *tmp_description = slashdup(wp->description);
602     fprintf ( f, " description=\"%s\"", tmp_description );
603     g_free ( tmp_description );
604   }
605   if ( wp->source )
606   {
607     gchar *tmp_source = slashdup(wp->source);
608     fprintf ( f, " source=\"%s\"", tmp_source );
609     g_free ( tmp_source );
610   }
611   if ( wp->type )
612   {
613     gchar *tmp_type = slashdup(wp->type);
614     fprintf ( f, " xtype=\"%s\"", tmp_type );
615     g_free ( tmp_type );
616   }
617   if ( wp->image )
618   {
619     gchar *tmp_image = NULL;
620     gchar *cwd = NULL;
621     if ( a_vik_get_file_ref_format() == VIK_FILE_REF_FORMAT_RELATIVE ) {
622       cwd = g_get_current_dir();
623       if ( cwd )
624         tmp_image = g_strdup ( file_GetRelativeFilename ( cwd, wp->image ) );
625     }
626
627     // if cwd not available - use image filename as is
628     // this should be an absolute path as set in thumbnails
629     if ( !cwd )
630       tmp_image = slashdup(wp->image);
631
632     if ( tmp_image )
633       fprintf ( f, " image=\"%s\"", tmp_image );
634
635     g_free ( cwd );
636     g_free ( tmp_image );
637   }
638   if ( wp->symbol )
639   {
640     // Due to changes in garminsymbols - the symbol name is now in Title Case
641     // However to keep newly generated .vik files better compatible with older Viking versions
642     //   The symbol names will always be lowercase
643     gchar *tmp_symbol = g_utf8_strdown(wp->symbol, -1);
644     fprintf ( f, " symbol=\"%s\"", tmp_symbol );
645     g_free ( tmp_symbol );
646   }
647   if ( ! wp->visible )
648     fprintf ( f, " visible=\"n\"" );
649   fprintf ( f, "\n" );
650 }
651
652 static void a_gpspoint_write_trackpoint ( VikTrackpoint *tp, TP_write_info_type *write_info )
653 {
654   struct LatLon ll;
655   gchar s_lat[COORDS_STR_BUFFER_SIZE];
656   gchar s_lon[COORDS_STR_BUFFER_SIZE];
657   gchar s_alt[COORDS_STR_BUFFER_SIZE];
658   vik_coord_to_latlon ( &(tp->coord), &ll );
659
660   FILE *f = write_info->f;
661
662   a_coords_dtostr_buffer ( ll.lat, s_lat );
663   a_coords_dtostr_buffer ( ll.lon, s_lon );
664   fprintf ( f, "type=\"%spoint\" latitude=\"%s\" longitude=\"%s\"", write_info->is_route ? "route" : "track", s_lat, s_lon );
665
666   if ( tp->name ) {
667     gchar *name = slashdup(tp->name);
668     fprintf ( f, " name=\"%s\"", name );
669     g_free(name);
670   }
671
672   if ( tp->altitude != VIK_DEFAULT_ALTITUDE ) {
673     a_coords_dtostr_buffer ( tp->altitude, s_alt );
674     fprintf ( f, " altitude=\"%s\"", s_alt );
675   }
676   if ( tp->has_timestamp )
677     fprintf ( f, " unixtime=\"%ld\"", tp->timestamp );
678   if ( tp->newsegment )
679     fprintf ( f, " newsegment=\"yes\"" );
680
681   if (!isnan(tp->speed) || !isnan(tp->course) || tp->nsats > 0) {
682     fprintf ( f, " extended=\"yes\"" );
683     if (!isnan(tp->speed)) {
684       gchar s_speed[COORDS_STR_BUFFER_SIZE];
685       a_coords_dtostr_buffer ( tp->speed, s_speed );
686       fprintf ( f, " speed=\"%s\"", s_speed );
687     }
688     if (!isnan(tp->course)) {
689       gchar s_course[COORDS_STR_BUFFER_SIZE];
690       a_coords_dtostr_buffer ( tp->course, s_course );
691       fprintf ( f, " course=\"%s\"", s_course );
692     }
693     if (tp->nsats > 0)
694       fprintf ( f, " sat=\"%d\"", tp->nsats );
695     if (tp->fix_mode > 0)
696       fprintf ( f, " fix=\"%d\"", tp->fix_mode );
697
698     if ( tp->hdop != VIK_DEFAULT_DOP ) {
699       gchar ss[COORDS_STR_BUFFER_SIZE];
700       a_coords_dtostr_buffer ( tp->hdop, ss );
701       fprintf ( f, " hdop=\"%s\"", ss );
702     }
703     if ( tp->vdop != VIK_DEFAULT_DOP ) {
704       gchar ss[COORDS_STR_BUFFER_SIZE];
705       a_coords_dtostr_buffer ( tp->vdop, ss );
706       fprintf ( f, " vdop=\"%s\"", ss );
707     }
708     if ( tp->pdop != VIK_DEFAULT_DOP ) {
709       gchar ss[COORDS_STR_BUFFER_SIZE];
710       a_coords_dtostr_buffer ( tp->pdop, ss );
711       fprintf ( f, " pdop=\"%s\"", ss );
712     }
713   }
714   fprintf ( f, "\n" );
715 }
716
717
718 static void a_gpspoint_write_track ( const gpointer id, const VikTrack *trk, FILE *f )
719 {
720   // Sanity clauses
721   if ( !trk )
722     return;
723   if ( !(trk->name) )
724     return;
725
726   gchar *tmp_name = slashdup(trk->name);
727   fprintf ( f, "type=\"%s\" name=\"%s\"", trk->is_route ? "route" : "track", tmp_name );
728   g_free ( tmp_name );
729
730   if ( trk->comment ) {
731     gchar *tmp = slashdup(trk->comment);
732     fprintf ( f, " comment=\"%s\"", tmp );
733     g_free ( tmp );
734   }
735
736   if ( trk->description ) {
737     gchar *tmp = slashdup(trk->description);
738     fprintf ( f, " description=\"%s\"", tmp );
739     g_free ( tmp );
740   }
741
742   if ( trk->source ) {
743     gchar *tmp = slashdup(trk->source);
744     fprintf ( f, " source=\"%s\"", tmp );
745     g_free ( tmp );
746   }
747
748   if ( trk->type ) {
749     gchar *tmp = slashdup(trk->type);
750     fprintf ( f, " xtype=\"%s\"", tmp );
751     g_free ( tmp );
752   }
753
754   if ( trk->has_color ) {
755     fprintf ( f, " color=#%.2x%.2x%.2x", (int)(trk->color.red/256),(int)(trk->color.green/256),(int)(trk->color.blue/256));
756   }
757
758   if ( trk->draw_name_mode > 0 )
759     fprintf ( f, " draw_name_mode=\"%d\"", trk->draw_name_mode );
760
761   if ( trk->max_number_dist_labels > 0 )
762     fprintf ( f, " number_dist_labels=\"%d\"", trk->max_number_dist_labels );
763
764   if ( ! trk->visible ) {
765     fprintf ( f, " visible=\"n\"" );
766   }
767   fprintf ( f, "\n" );
768
769   TP_write_info_type tp_write_info = { f, trk->is_route };
770   g_list_foreach ( trk->trackpoints, (GFunc) a_gpspoint_write_trackpoint, &tp_write_info );
771   fprintf ( f, "type=\"%send\"\n", trk->is_route ? "route" : "track" );
772 }
773
774 void a_gpspoint_write_file ( VikTrwLayer *trw, FILE *f )
775 {
776   GHashTable *tracks = vik_trw_layer_get_tracks ( trw );
777   GHashTable *routes = vik_trw_layer_get_routes ( trw );
778   GHashTable *waypoints = vik_trw_layer_get_waypoints ( trw );
779
780   fprintf ( f, "type=\"waypointlist\"\n" );
781   g_hash_table_foreach ( waypoints, (GHFunc) a_gpspoint_write_waypoint, f );
782   fprintf ( f, "type=\"waypointlistend\"\n" );
783   g_hash_table_foreach ( tracks, (GHFunc) a_gpspoint_write_track, f );
784   g_hash_table_foreach ( routes, (GHFunc) a_gpspoint_write_track, f );
785 }