]> git.street.me.uk Git - andy/viking.git/blame - src/file.c
Prevent requests for downloading tiles at Zoom Level 19 and above for most map types
[andy/viking.git] / src / file.c
CommitLineData
50a14534
EB
1/*
2 * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3 *
4 * Copyright (C) 2003-2005, Evan Battaglia <gtoevan@gmx.net>
29f1598c 5 * Copyright (C) 2012, Guilhem Bonnefille <guilhem.bonnefille@gmail.com>
50a14534
EB
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
eb93fa95
GB
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
50a14534
EB
26#include "viking.h"
27
bf35388d 28#include "gpx.h"
ba9d0a00 29#include "babel.h"
bf35388d 30
50a14534
EB
31#include <string.h>
32#include <stdlib.h>
8c060406 33#include <stdio.h>
45acf79e
MA
34#ifdef HAVE_UNISTD_H
35#include <unistd.h>
36#endif
d5728c65
GB
37#include <glib.h>
38#include <glib/gstdio.h>
fd98b156 39#include <glib/gi18n.h>
50a14534
EB
40
41#define TEST_BOOLEAN(str) (! ((str)[0] == '\0' || (str)[0] == '0' || (str)[0] == 'n' || (str)[0] == 'N' || (str)[0] == 'f' || (str)[0] == 'F') )
42#define VIK_MAGIC "#VIK"
bf35388d 43#define GPX_MAGIC "<?xm"
50a14534
EB
44#define VIK_MAGIC_LEN 4
45
46#ifdef WINDOWS
47#define FILE_SEP '\\'
48#else
49#define FILE_SEP '/'
50#endif
51
e087b0d9
RN
52#define VIKING_FILE_VERSION 1
53
50a14534
EB
54typedef struct _Stack Stack;
55
56struct _Stack {
57 Stack *under;
58 gpointer *data;
59};
60
61static void pop(Stack **stack) {
62 Stack *tmp = (*stack)->under;
63 g_free ( *stack );
64 *stack = tmp;
65}
66
67static void push(Stack **stack)
68{
69 Stack *tmp = g_malloc ( sizeof ( Stack ) );
70 tmp->under = *stack;
71 *stack = tmp;
72}
73
bf35388d 74static gboolean check_magic ( FILE *f, const gchar *magic_number )
50a14534
EB
75{
76 gchar magic[VIK_MAGIC_LEN];
77 gboolean rv = FALSE;
78 gint8 i;
79 if ( fread(magic, 1, sizeof(magic), f) == sizeof(magic) &&
bf35388d 80 strncmp(magic, magic_number, sizeof(magic)) == 0 )
50a14534
EB
81 rv = TRUE;
82 for ( i = sizeof(magic)-1; i >= 0; i-- ) /* the ol' pushback */
83 ungetc(magic[i],f);
84 return rv;
85}
86
87
88static gboolean str_starts_with ( const gchar *haystack, const gchar *needle, guint16 len_needle, gboolean must_be_longer )
89{
90 if ( strlen(haystack) > len_needle - (!must_be_longer) && strncasecmp ( haystack, needle, len_needle ) == 0 )
91 return TRUE;
92 return FALSE;
93}
94
b5926b35 95void file_write_layer_param ( FILE *f, const gchar *name, VikLayerParamType type, VikLayerParamData data ) {
ad0a8c2d
EB
96 /* string lists are handled differently. We get a GList (that shouldn't
97 * be freed) back for get_param and if it is null we shouldn't write
98 * anything at all (otherwise we'd read in a list with an empty string,
17a1f8f9 99 * not an empty string list.
ad0a8c2d 100 */
17a1f8f9 101 if ( type == VIK_LAYER_PARAM_STRING_LIST ) {
ad0a8c2d
EB
102 if ( data.sl ) {
103 GList *iter = (GList *)data.sl;
104 while ( iter ) {
17a1f8f9 105 fprintf ( f, "%s=", name );
ad0a8c2d
EB
106 fprintf ( f, "%s\n", (gchar *)(iter->data) );
107 iter = iter->next;
108 }
109 }
110 } else {
17a1f8f9
EB
111 fprintf ( f, "%s=", name );
112 switch ( type )
ad0a8c2d
EB
113 {
114 case VIK_LAYER_PARAM_DOUBLE: {
115 // char buf[15]; /* locale independent */
116 // fprintf ( f, "%s\n", (char *) g_dtostr (data.d, buf, sizeof (buf)) ); break;
117 fprintf ( f, "%f\n", data.d );
118 break;
119 }
120 case VIK_LAYER_PARAM_UINT: fprintf ( f, "%d\n", data.u ); break;
121 case VIK_LAYER_PARAM_INT: fprintf ( f, "%d\n", data.i ); break;
122 case VIK_LAYER_PARAM_BOOLEAN: fprintf ( f, "%c\n", data.b ? 't' : 'f' ); break;
123 case VIK_LAYER_PARAM_STRING: fprintf ( f, "%s\n", data.s ); break;
124 case VIK_LAYER_PARAM_COLOR: fprintf ( f, "#%.2x%.2x%.2x\n", (int)(data.c.red/256),(int)(data.c.green/256),(int)(data.c.blue/256)); break;
b5926b35 125 default: break;
ad0a8c2d 126 }
50a14534 127 }
17a1f8f9
EB
128}
129
130static void write_layer_params_and_data ( VikLayer *l, FILE *f )
131{
132 VikLayerParam *params = vik_layer_get_interface(l->type)->params;
133 VikLayerFuncGetParam get_param = vik_layer_get_interface(l->type)->get_param;
134
135 fprintf ( f, "name=%s\n", l->name ? l->name : "" );
136 if ( !l->visible )
137 fprintf ( f, "visible=f\n" );
138
139 if ( params && get_param )
140 {
141 VikLayerParamData data;
142 guint16 i, params_count = vik_layer_get_interface(l->type)->params_count;
143 for ( i = 0; i < params_count; i++ )
144 {
158b3642 145 data = get_param(l, i, TRUE);
17a1f8f9 146 file_write_layer_param(f, params[i].name, params[i].type, data);
50a14534
EB
147 }
148 }
149 if ( vik_layer_get_interface(l->type)->write_file_data )
150 {
151 fprintf ( f, "\n\n~LayerData\n" );
152 vik_layer_get_interface(l->type)->write_file_data ( l, f );
153 fprintf ( f, "~EndLayerData\n" );
154 }
155 /* foreach param:
156 write param, and get_value, etc.
157 then run layer data, and that's it.
158 */
159}
160
161static void file_write ( VikAggregateLayer *top, FILE *f, gpointer vp )
162{
163 Stack *stack = NULL;
164 VikLayer *current_layer;
165 struct LatLon ll;
c5f9245d 166 VikViewportDrawMode mode;
4d872dde 167 gchar *modestring = NULL;
50a14534
EB
168
169 push(&stack);
170 stack->data = (gpointer) vik_aggregate_layer_get_children(VIK_AGGREGATE_LAYER(top));
171 stack->under = NULL;
172
173 /* crazhy CRAZHY */
174 vik_coord_to_latlon ( vik_viewport_get_center ( VIK_VIEWPORT(vp) ), &ll );
175
c5f9245d
GB
176 mode = vik_viewport_get_drawmode ( VIK_VIEWPORT(vp) );
177 switch ( mode ) {
50a14534
EB
178 case VIK_VIEWPORT_DRAWMODE_UTM: modestring = "utm"; break;
179 case VIK_VIEWPORT_DRAWMODE_EXPEDIA: modestring = "expedia"; break;
c5f9245d 180 case VIK_VIEWPORT_DRAWMODE_MERCATOR: modestring = "mercator"; break;
d587678a 181 case VIK_VIEWPORT_DRAWMODE_LATLON: modestring = "latlon"; break;
c5f9245d
GB
182 default:
183 g_critical("Houston, we've had a problem. mode=%d", mode);
50a14534
EB
184 }
185
e087b0d9
RN
186 fprintf ( f, "#VIKING GPS Data file " VIKING_URL "\n" );
187 fprintf ( f, "FILE_VERSION=%d\n", VIKING_FILE_VERSION );
188 fprintf ( f, "\nxmpp=%f\nympp=%f\nlat=%f\nlon=%f\nmode=%s\ncolor=%s\nhighlightcolor=%s\ndrawscale=%s\ndrawcentermark=%s\ndrawhighlight=%s\n",
50a14534 189 vik_viewport_get_xmpp ( VIK_VIEWPORT(vp) ), vik_viewport_get_ympp ( VIK_VIEWPORT(vp) ), ll.lat, ll.lon,
35c7c0ba 190 modestring, vik_viewport_get_background_color(VIK_VIEWPORT(vp)),
480fb7e1 191 vik_viewport_get_highlight_color(VIK_VIEWPORT(vp)),
c933487f 192 vik_viewport_get_draw_scale(VIK_VIEWPORT(vp)) ? "t" : "f",
2afcef36
RN
193 vik_viewport_get_draw_centermark(VIK_VIEWPORT(vp)) ? "t" : "f",
194 vik_viewport_get_draw_highlight(VIK_VIEWPORT(vp)) ? "t" : "f" );
50a14534
EB
195
196 if ( ! VIK_LAYER(top)->visible )
197 fprintf ( f, "visible=f\n" );
198
199 while (stack && stack->data)
200 {
201 current_layer = VIK_LAYER(((GList *)stack->data)->data);
db386630 202 fprintf ( f, "\n~Layer %s\n", vik_layer_get_interface(current_layer->type)->fixed_layer_name );
50a14534
EB
203 write_layer_params_and_data ( current_layer, f );
204 if ( current_layer->type == VIK_LAYER_AGGREGATE && !vik_aggregate_layer_is_empty(VIK_AGGREGATE_LAYER(current_layer)) )
205 {
206 push(&stack);
207 stack->data = (gpointer) vik_aggregate_layer_get_children(VIK_AGGREGATE_LAYER(current_layer));
208 }
f253a6a6 209 else if ( current_layer->type == VIK_LAYER_GPS && !vik_gps_layer_is_empty(VIK_GPS_LAYER(current_layer)) )
7886de28
QT
210 {
211 push(&stack);
212 stack->data = (gpointer) vik_gps_layer_get_children(VIK_GPS_LAYER(current_layer));
213 }
50a14534
EB
214 else
215 {
216 stack->data = (gpointer) ((GList *)stack->data)->next;
217 fprintf ( f, "~EndLayer\n\n" );
218 while ( stack && (!stack->data) )
219 {
220 pop(&stack);
221 if ( stack )
222 {
223 stack->data = (gpointer) ((GList *)stack->data)->next;
224 fprintf ( f, "~EndLayer\n\n" );
225 }
226 }
227 }
228 }
229/*
230 get vikaggregatelayer's children (?)
231 foreach write ALL params,
232 then layer data (IF function exists)
233 then endlayer
234
235 impl:
236 stack of layers (LIST) we are working on
237 when layer->next == NULL ...
238 we move on.
239*/
240}
241
ad0a8c2d
EB
242static void string_list_delete ( gpointer key, gpointer l, gpointer user_data )
243{
28c82d8b
EB
244 /* 20071021 bugfix */
245 GList *iter = (GList *) l;
ad0a8c2d
EB
246 while ( iter ) {
247 g_free ( iter->data );
248 iter = iter->next;
249 }
28c82d8b 250 g_list_free ( (GList *) l );
ad0a8c2d
EB
251}
252
253static void string_list_set_param (gint i, GList *list, gpointer *layer_and_vp)
254{
255 VikLayerParamData x;
256 x.sl = list;
158b3642 257 vik_layer_set_param ( VIK_LAYER(layer_and_vp[0]), i, x, layer_and_vp[1], TRUE );
ad0a8c2d
EB
258}
259
327a2533
RN
260/**
261 * Read in a Viking file and return how successful the parsing was
262 * ATM this will always work, in that even if there are parsing problems
263 * then there will be no new values to override the defaults
264 *
265 * TODO flow up line number(s) / error messages of problems encountered...
266 *
267 */
268static gboolean file_read ( VikAggregateLayer *top, FILE *f, VikViewport *vp )
50a14534
EB
269{
270 Stack *stack;
271 struct LatLon ll = { 0.0, 0.0 };
272 gchar buffer[4096];
273 gchar *line;
274 guint16 len;
275 long line_num = 0;
276
37518034
QT
277 VikLayerParam *params = NULL; /* for current layer, so we don't have to keep on looking up interface */
278 guint8 params_count = 0;
50a14534 279
ad0a8c2d
EB
280 GHashTable *string_lists = g_hash_table_new(g_direct_hash,g_direct_equal);
281
327a2533
RN
282 gboolean successful_read = TRUE;
283
50a14534
EB
284 push(&stack);
285 stack->under = NULL;
286 stack->data = (gpointer) top;
287
288 while ( fgets ( buffer, 4096, f ) )
289 {
290 line_num++;
291
292 line = buffer;
293 while ( *line == ' ' || *line =='\t' )
294 line++;
295
296 if ( line[0] == '#' )
297 continue;
298
299
300 len = strlen(line);
301 if ( len > 0 && line[len-1] == '\n' )
302 line[--len] = '\0';
303 if ( len > 0 && line[len-1] == '\r' )
304 line[--len] = '\0';
305
306 if ( len == 0 )
307 continue;
308
309
310 if ( line[0] == '~' )
311 {
312 line++; len--;
313 if ( *line == '\0' )
314 continue;
315 else if ( str_starts_with ( line, "Layer ", 6, TRUE ) )
316 {
f253a6a6
QT
317 int parent_type = VIK_LAYER(stack->data)->type;
318 if ( ( ! stack->data ) || ((parent_type != VIK_LAYER_AGGREGATE) && (parent_type != VIK_LAYER_GPS)) )
50a14534 319 {
327a2533 320 successful_read = FALSE;
f253a6a6 321 g_warning ( "Line %ld: Layer command inside non-Aggregate Layer (type %d)", line_num, parent_type );
50a14534
EB
322 push(&stack); /* inside INVALID layer */
323 stack->data = NULL;
324 continue;
325 }
326 else
327 {
44b84795 328 VikLayerTypeEnum type = vik_layer_type_from_string ( line+6 );
50a14534 329 push(&stack);
b5926b35 330 if ( type == VIK_LAYER_NUM_TYPES )
50a14534 331 {
327a2533 332 successful_read = FALSE;
4258f4e2 333 g_warning ( "Line %ld: Unknown type %s", line_num, line+6 );
50a14534
EB
334 stack->data = NULL;
335 }
f253a6a6
QT
336 else if (parent_type == VIK_LAYER_GPS)
337 {
338 stack->data = (gpointer) vik_gps_layer_get_a_child(VIK_GPS_LAYER(stack->under->data));
339 params = vik_layer_get_interface(type)->params;
340 params_count = vik_layer_get_interface(type)->params_count;
341 }
50a14534
EB
342 else
343 {
344 stack->data = (gpointer) vik_layer_create ( type, vp, NULL, FALSE );
345 params = vik_layer_get_interface(type)->params;
346 params_count = vik_layer_get_interface(type)->params_count;
347 }
348 }
349 }
350 else if ( str_starts_with ( line, "EndLayer", 8, FALSE ) )
351 {
327a2533
RN
352 if ( stack->under == NULL ) {
353 successful_read = FALSE;
50a14534 354 g_warning ( "Line %ld: Mismatched ~EndLayer command", line_num );
327a2533 355 }
50a14534
EB
356 else
357 {
ad0a8c2d
EB
358 /* add any string lists we've accumulated */
359 gpointer layer_and_vp[2];
360 layer_and_vp[0] = stack->data;
361 layer_and_vp[1] = vp;
362 g_hash_table_foreach ( string_lists, (GHFunc) string_list_set_param, layer_and_vp );
363 g_hash_table_remove_all ( string_lists );
364
50a14534
EB
365 if ( stack->data && stack->under->data )
366 {
f253a6a6
QT
367 if (VIK_LAYER(stack->under->data)->type == VIK_LAYER_AGGREGATE) {
368 vik_aggregate_layer_add_layer ( VIK_AGGREGATE_LAYER(stack->under->data), VIK_LAYER(stack->data) );
dcb51e52 369 vik_layer_post_read ( VIK_LAYER(stack->data), vp, TRUE );
f253a6a6
QT
370 }
371 else if (VIK_LAYER(stack->under->data)->type == VIK_LAYER_GPS) {
372 /* TODO: anything else needs to be done here ? */
373 }
327a2533
RN
374 else {
375 successful_read = FALSE;
f253a6a6 376 g_warning ( "Line %ld: EndLayer command inside non-Aggregate Layer (type %d)", line_num, VIK_LAYER(stack->data)->type );
327a2533 377 }
50a14534
EB
378 }
379 pop(&stack);
380 }
381 }
382 else if ( str_starts_with ( line, "LayerData", 9, FALSE ) )
383 {
384 if ( stack->data && vik_layer_get_interface(VIK_LAYER(stack->data)->type)->read_file_data )
119ada4c 385 {
50a14534 386 /* must read until hits ~EndLayerData */
119ada4c
RN
387 if ( ! vik_layer_get_interface(VIK_LAYER(stack->data)->type)->read_file_data ( VIK_LAYER(stack->data), f ) )
388 successful_read = FALSE;
389 }
50a14534
EB
390 else
391 { /* simply skip layer data over */
392 while ( fgets ( buffer, 4096, f ) )
393 {
394 line_num++;
395
396 line = buffer;
397
398 len = strlen(line);
399 if ( len > 0 && line[len-1] == '\n' )
400 line[--len] = '\0';
401 if ( len > 0 && line[len-1] == '\r' )
402 line[--len] = '\0';
403 if ( strcasecmp ( line, "~EndLayerData" ) == 0 )
404 break;
405 }
406 continue;
407 }
408 }
409 else
410 {
327a2533 411 successful_read = FALSE;
50a14534
EB
412 g_warning ( "Line %ld: Unknown tilde command", line_num );
413 }
414 }
415 else
416 {
417 gint32 eq_pos = -1;
418 guint16 i;
419 if ( ! stack->data )
420 continue;
421
422 for ( i = 0; i < len; i++ )
423 if ( line[i] == '=' )
424 eq_pos = i;
425
e087b0d9
RN
426 if ( stack->under == NULL && eq_pos == 12 && strncasecmp ( line, "FILE_VERSION", eq_pos ) == 0) {
427 gint version = strtol(line+13, NULL, 10);
428 g_debug ( "%s: reading file version %d", __FUNCTION__, version );
429 if ( version > VIKING_FILE_VERSION )
430 successful_read = FALSE;
431 // However we'll still carry and attempt to read whatever we can
432 }
433 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "xmpp", eq_pos ) == 0) /* "hard coded" params: global & for all layer-types */
50a14534
EB
434 vik_viewport_set_xmpp ( VIK_VIEWPORT(vp), strtod ( line+5, NULL ) );
435 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "ympp", eq_pos ) == 0)
436 vik_viewport_set_ympp ( VIK_VIEWPORT(vp), strtod ( line+5, NULL ) );
437 else if ( stack->under == NULL && eq_pos == 3 && strncasecmp ( line, "lat", eq_pos ) == 0 )
438 ll.lat = strtod ( line+4, NULL );
439 else if ( stack->under == NULL && eq_pos == 3 && strncasecmp ( line, "lon", eq_pos ) == 0 )
440 ll.lon = strtod ( line+4, NULL );
441 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "mode", eq_pos ) == 0 && strcasecmp ( line+5, "utm" ) == 0)
442 vik_viewport_set_drawmode ( VIK_VIEWPORT(vp), VIK_VIEWPORT_DRAWMODE_UTM);
443 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "mode", eq_pos ) == 0 && strcasecmp ( line+5, "expedia" ) == 0)
444 vik_viewport_set_drawmode ( VIK_VIEWPORT(vp), VIK_VIEWPORT_DRAWMODE_EXPEDIA );
445 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "mode", eq_pos ) == 0 && strcasecmp ( line+5, "google" ) == 0)
fd98b156 446 {
327a2533 447 successful_read = FALSE;
fd98b156
GB
448 g_warning ( _("Draw mode '%s' no more supported"), "google" );
449 }
50a14534 450 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "mode", eq_pos ) == 0 && strcasecmp ( line+5, "kh" ) == 0)
fd98b156 451 {
327a2533 452 successful_read = FALSE;
fd98b156
GB
453 g_warning ( _("Draw mode '%s' no more supported"), "kh" );
454 }
50a14534
EB
455 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "mode", eq_pos ) == 0 && strcasecmp ( line+5, "mercator" ) == 0)
456 vik_viewport_set_drawmode ( VIK_VIEWPORT(vp), VIK_VIEWPORT_DRAWMODE_MERCATOR );
d587678a
GB
457 else if ( stack->under == NULL && eq_pos == 4 && strncasecmp ( line, "mode", eq_pos ) == 0 && strcasecmp ( line+5, "latlon" ) == 0)
458 vik_viewport_set_drawmode ( VIK_VIEWPORT(vp), VIK_VIEWPORT_DRAWMODE_LATLON );
50a14534
EB
459 else if ( stack->under == NULL && eq_pos == 5 && strncasecmp ( line, "color", eq_pos ) == 0 )
460 vik_viewport_set_background_color ( VIK_VIEWPORT(vp), line+6 );
480fb7e1
RN
461 else if ( stack->under == NULL && eq_pos == 14 && strncasecmp ( line, "highlightcolor", eq_pos ) == 0 )
462 vik_viewport_set_highlight_color ( VIK_VIEWPORT(vp), line+15 );
35c7c0ba
EB
463 else if ( stack->under == NULL && eq_pos == 9 && strncasecmp ( line, "drawscale", eq_pos ) == 0 )
464 vik_viewport_set_draw_scale ( VIK_VIEWPORT(vp), TEST_BOOLEAN(line+10) );
de66b263 465 else if ( stack->under == NULL && eq_pos == 14 && strncasecmp ( line, "drawcentermark", eq_pos ) == 0 )
1657065a 466 vik_viewport_set_draw_centermark ( VIK_VIEWPORT(vp), TEST_BOOLEAN(line+15) );
2afcef36
RN
467 else if ( stack->under == NULL && eq_pos == 13 && strncasecmp ( line, "drawhighlight", eq_pos ) == 0 )
468 vik_viewport_set_draw_highlight ( VIK_VIEWPORT(vp), TEST_BOOLEAN(line+14) );
50a14534
EB
469 else if ( stack->under && eq_pos == 4 && strncasecmp ( line, "name", eq_pos ) == 0 )
470 vik_layer_rename ( VIK_LAYER(stack->data), line+5 );
471 else if ( eq_pos == 7 && strncasecmp ( line, "visible", eq_pos ) == 0 )
472 VIK_LAYER(stack->data)->visible = TEST_BOOLEAN(line+8);
473 else if ( eq_pos != -1 && stack->under )
474 {
475 gboolean found_match = FALSE;
ad0a8c2d 476
50a14534
EB
477 /* go thru layer params. if len == eq_pos && starts_with jazz, set it. */
478 /* also got to check for name and visible. */
479
480 if ( ! params )
481 {
327a2533 482 successful_read = FALSE;
50a14534
EB
483 g_warning ( "Line %ld: No options for this kind of layer", line_num );
484 continue;
485 }
486
487 for ( i = 0; i < params_count; i++ )
488 if ( strlen(params[i].name) == eq_pos && strncasecmp ( line, params[i].name, eq_pos ) == 0 )
489 {
490 VikLayerParamData x;
491 line += eq_pos+1;
ad0a8c2d 492 if ( params[i].type == VIK_LAYER_PARAM_STRING_LIST ) {
dc2c040e
RN
493 GList *l = g_list_append ( g_hash_table_lookup ( string_lists, GINT_TO_POINTER ((gint) i) ),
494 g_strdup(line) );
495 g_hash_table_replace ( string_lists, GINT_TO_POINTER ((gint)i), l );
ad0a8c2d
EB
496 /* add the value to a list, possibly making a new list.
497 * this will be passed to the layer when we read an ~EndLayer */
498 } else {
499 switch ( params[i].type )
500 {
501 case VIK_LAYER_PARAM_DOUBLE: x.d = strtod(line, NULL); break;
502 case VIK_LAYER_PARAM_UINT: x.u = strtoul(line, NULL, 10); break;
503 case VIK_LAYER_PARAM_INT: x.i = strtol(line, NULL, 10); break;
504 case VIK_LAYER_PARAM_BOOLEAN: x.b = TEST_BOOLEAN(line); break;
505 case VIK_LAYER_PARAM_COLOR: memset(&(x.c), 0, sizeof(x.c)); /* default: black */
50a14534 506 gdk_color_parse ( line, &(x.c) ); break;
ad0a8c2d
EB
507 /* STRING or STRING_LIST -- if STRING_LIST, just set param to add a STRING */
508 default: x.s = line;
509 }
158b3642 510 vik_layer_set_param ( VIK_LAYER(stack->data), i, x, vp, TRUE );
50a14534 511 }
50a14534
EB
512 found_match = TRUE;
513 break;
514 }
327a2533
RN
515 if ( ! found_match ) {
516 // ATM don't flow up this issue because at least one internal parameter has changed from version 1.3
517 // and don't what to worry users about raising such issues
518 // TODO Maybe hold old values here - compare the line value against them and if a match
519 // generate a different style of message in the GUI...
520 // successful_read = FALSE;
ea3933fc 521 g_warning ( "Line %ld: Unknown parameter. Line:\n%s", line_num, line );
327a2533 522 }
50a14534 523 }
327a2533
RN
524 else {
525 successful_read = FALSE;
50a14534 526 g_warning ( "Line %ld: Invalid parameter or parameter outside of layer.", line_num );
327a2533 527 }
50a14534
EB
528 }
529/* could be:
530[Layer Type=Bla]
531[EndLayer]
532[LayerData]
533name=this
534#comment
535*/
536 }
537
538 while ( stack )
539 {
540 if ( stack->under && stack->under->data && stack->data )
541 {
542 vik_aggregate_layer_add_layer ( VIK_AGGREGATE_LAYER(stack->under->data), VIK_LAYER(stack->data) );
dcb51e52 543 vik_layer_post_read ( VIK_LAYER(stack->data), vp, TRUE );
50a14534
EB
544 }
545 pop(&stack);
546 }
547
548 if ( ll.lat != 0.0 || ll.lon != 0.0 )
549 vik_viewport_set_center_latlon ( VIK_VIEWPORT(vp), &ll );
550
551 if ( ( ! VIK_LAYER(top)->visible ) && VIK_LAYER(top)->realized )
552 vik_treeview_item_set_visible ( VIK_LAYER(top)->vt, &(VIK_LAYER(top)->iter), FALSE );
ad0a8c2d
EB
553
554 /* delete anything we've forgotten about -- should only happen when file ends before an EndLayer */
555 g_hash_table_foreach ( string_lists, string_list_delete, NULL );
556 g_hash_table_destroy ( string_lists );
327a2533
RN
557
558 return successful_read;
50a14534
EB
559}
560
561/*
562read thru file
563if "[Layer Type="
564 push(&stack)
565 new default layer of type (str_to_type) (check interface->name)
566if "[EndLayer]"
567 VikLayer *vl = stack->data;
568 pop(&stack);
569 vik_aggregate_layer_add_layer(stack->data, vl);
570if "[LayerData]"
571 vik_layer_data ( VIK_LAYER_DATA(stack->data), f, vp );
572
573*/
574
575/* ---------------------------------------------------- */
576
577static FILE *xfopen ( const char *fn, const char *mode )
578{
579 if ( strcmp(fn,"-") == 0 )
580 return stdin;
581 else
8c060406 582 return g_fopen(fn, "r");
50a14534
EB
583}
584
585static void xfclose ( FILE *f )
586{
8c060406 587 if ( f != stdin && f != stdout ) {
50a14534 588 fclose ( f );
8c060406
MA
589 f = NULL;
590 }
50a14534
EB
591}
592
ba9d0a00
RN
593/*
594 * Function to determine if a filename is a 'viking' type file
595 */
596gboolean check_file_magic_vik ( const gchar *filename )
597{
a3180051 598 gboolean result = FALSE;
ba9d0a00 599 FILE *ff = xfopen ( filename, "r" );
a3180051
RN
600 if ( ff ) {
601 result = check_magic ( ff, VIK_MAGIC );
602 xfclose ( ff );
603 }
ba9d0a00
RN
604 return result;
605}
606
607VikLoadType_t a_file_load ( VikAggregateLayer *top, VikViewport *vp, const gchar *filename_or_uri )
50a14534 608{
0a514451
RN
609 g_return_val_if_fail ( vp != NULL, LOAD_TYPE_READ_FAILURE );
610
11f427b8 611 char *filename = (char *)filename_or_uri;
db32b809
MR
612 if (strncmp(filename, "file://", 7) == 0)
613 filename = filename + 7;
614
50a14534
EB
615 FILE *f = xfopen ( filename, "r" );
616
50a14534 617 if ( ! f )
ba9d0a00 618 return LOAD_TYPE_READ_FAILURE;
50a14534 619
327a2533 620 VikLoadType_t load_answer = LOAD_TYPE_OTHER_SUCCESS;
0a514451
RN
621
622 // Attempt loading the primary file type first - our internal .vik file:
623 if ( check_magic ( f, VIK_MAGIC ) )
50a14534 624 {
327a2533
RN
625 if ( file_read ( top, f, vp ) )
626 load_answer = LOAD_TYPE_VIK_SUCCESS;
627 else
628 load_answer = LOAD_TYPE_VIK_FAILURE_NON_FATAL;
50a14534
EB
629 }
630 else
631 {
0a514451
RN
632 // For all other file types which consist of tracks, routes and/or waypoints,
633 // must be loaded into a new TrackWaypoint layer (hence it be created)
634 gboolean success = TRUE; // Detect load failures - mainly to remove the layer created as it's not required
635
50a14534 636 VikLayer *vtl = vik_layer_create ( VIK_LAYER_TRW, vp, NULL, FALSE );
bf35388d 637
ba9d0a00
RN
638 // In fact both kml & gpx files start the same as they are in xml
639 if ( check_file_ext ( filename, ".kml" ) && check_magic ( f, GPX_MAGIC ) ) {
640 // Implicit Conversion
ed691ed1 641 if ( ! ( success = a_babel_convert_from ( VIK_TRW_LAYER(vtl), "-i kml", filename, NULL, NULL, NULL ) ) ) {
0a514451 642 load_answer = LOAD_TYPE_GPSBABEL_FAILURE;
ba9d0a00
RN
643 }
644 }
0a514451
RN
645 // NB use a extension check first, as a GPX file header may have a Byte Order Mark (BOM) in it
646 // - which currently confuses our check_magic function
647 else if ( check_file_ext ( filename, ".gpx" ) || check_magic ( f, GPX_MAGIC ) ) {
648 if ( ! ( success = a_gpx_read_file ( VIK_TRW_LAYER(vtl), f ) ) ) {
649 load_answer = LOAD_TYPE_GPX_FAILURE;
54b84792 650 }
ba9d0a00 651 }
0a514451
RN
652 else {
653 // Try final supported file type
654 if ( ! ( success = a_gpspoint_read_file ( VIK_TRW_LAYER(vtl), f ) ) ) {
655 // Failure here means we don't know how to handle the file
656 load_answer = LOAD_TYPE_UNSUPPORTED_FAILURE;
657 }
658 }
50a14534 659
0a514451 660 // Clean up when we can't handle the file
cb5ec7a8
RN
661 if ( ! success ) {
662 // free up layer
663 g_object_unref ( vtl );
cb5ec7a8 664 }
0a514451
RN
665 else {
666 // Complete the setup from the successful load
667 vik_layer_rename ( vtl, a_file_basename ( filename ) );
668 vik_layer_post_read ( vtl, vp, TRUE );
669 vik_aggregate_layer_add_layer ( top, vtl );
670 vik_trw_layer_auto_set_view ( VIK_TRW_LAYER(vtl), vp );
671 }
50a14534 672 }
0a514451
RN
673 xfclose(f);
674 return load_answer;
50a14534
EB
675}
676
677gboolean a_file_save ( VikAggregateLayer *top, gpointer vp, const gchar *filename )
678{
bf1c0ae3
SM
679 FILE *f;
680
681 if (strncmp(filename, "file://", 7) == 0)
682 filename = filename + 7;
683
684 f = g_fopen(filename, "w");
50a14534
EB
685
686 if ( ! f )
687 return FALSE;
688
689 file_write ( top, f, vp );
690
691 fclose(f);
8c060406 692 f = NULL;
50a14534
EB
693
694 return TRUE;
695}
696
697
698const gchar *a_file_basename ( const gchar *filename )
699{
700 const gchar *t = filename + strlen(filename) - 1;
701 while ( --t > filename )
702 if ( *(t-1) == FILE_SEP )
703 break;
704 if ( t >= filename )
705 return t;
706 return filename;
707}
708
b0252b2e
T
709/* example:
710 gboolean is_gpx = check_file_ext ( "a/b/c.gpx", ".gpx" );
711*/
712gboolean check_file_ext ( const gchar *filename, const gchar *fileext )
713{
0a514451
RN
714 g_return_val_if_fail ( filename != NULL, FALSE );
715 g_return_val_if_fail ( fileext && fileext[0]=='.', FALSE );
b0252b2e 716 const gchar *basename = a_file_basename(filename);
b0252b2e
T
717 if (!basename)
718 return FALSE;
719
720 const char * dot = strrchr(basename, '.');
721 if (dot && !strcmp(dot, fileext))
722 return TRUE;
723
724 return FALSE;
725}
726
208d2084
RN
727/**
728 * a_file_export:
729 * @vtl: The TrackWaypoint to export data from
730 * @filename: The name of the file to be written
731 * @file_type: Choose one of the supported file types for the export
732 * @trk: If specified then only export this track rather than the whole layer
733 * @write_hidden: Whether to write invisible items
734 *
735 * A general export command to convert from Viking TRW layer data to an external supported format.
736 * The write_hidden option is provided mainly to be able to transfer selected items when uploading to a GPS
737 */
738gboolean a_file_export ( VikTrwLayer *vtl, const gchar *filename, VikFileType_t file_type, VikTrack *trk, gboolean write_hidden )
50a14534 739{
0d2b891f 740 GpxWritingOptions options = { FALSE, FALSE, write_hidden, FALSE };
8c060406 741 FILE *f = g_fopen ( filename, "w" );
50a14534
EB
742 if ( f )
743 {
ce4bd1cf 744 if ( trk ) {
f7f8a0a6
GB
745 switch ( file_type ) {
746 case FILE_TYPE_GPX:
0d2b891f
RN
747 // trk defined so can set the option
748 options.is_route = trk->is_route;
208d2084 749 a_gpx_write_track_file ( trk, f, &options );
f7f8a0a6
GB
750 break;
751 default:
752 g_critical("Houston, we've had a problem. file_type=%d", file_type);
753 }
754 } else {
755 switch ( file_type ) {
756 case FILE_TYPE_GPSMAPPER:
757 a_gpsmapper_write_file ( vtl, f );
758 break;
759 case FILE_TYPE_GPX:
208d2084 760 a_gpx_write_file ( vtl, f, &options );
f7f8a0a6
GB
761 break;
762 case FILE_TYPE_GPSPOINT:
763 a_gpspoint_write_file ( vtl, f );
764 break;
ba9d0a00
RN
765 case FILE_TYPE_KML:
766 fclose ( f );
767 f = NULL;
60dbd0ad
RN
768 switch ( a_vik_get_kml_export_units () ) {
769 case VIK_KML_EXPORT_UNITS_STATUTE:
6f94db6d 770 return a_babel_convert_to ( vtl, NULL, "-o kml", filename, NULL, NULL );
60dbd0ad
RN
771 break;
772 case VIK_KML_EXPORT_UNITS_NAUTICAL:
6f94db6d 773 return a_babel_convert_to ( vtl, NULL, "-o kml,units=n", filename, NULL, NULL );
60dbd0ad
RN
774 break;
775 default:
776 // VIK_KML_EXPORT_UNITS_METRIC:
6f94db6d 777 return a_babel_convert_to ( vtl, NULL, "-o kml,units=m", filename, NULL, NULL );
60dbd0ad
RN
778 break;
779 }
780 break;
f7f8a0a6
GB
781 default:
782 g_critical("Houston, we've had a problem. file_type=%d", file_type);
783 }
7f6757c4 784 }
50a14534 785 fclose ( f );
8c060406 786 f = NULL;
50a14534
EB
787 return TRUE;
788 }
789 return FALSE;
790}
80d0ff2b 791