Contents of /trunk/src/gconf.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 214 - (hide annotations)
Thu Nov 26 10:05:23 2009 UTC (14 years, 5 months ago) by harbaum
File MIME type: text/plain
File size: 16159 byte(s)
Unified coo tool
1 harbaum 1 /*
2     * Copyright (C) 2008 Till Harbaum <till@harbaum.org>.
3     *
4     * This file is part of GPXView.
5     *
6     * GPXView is free software: you can redistribute it and/or modify
7     * it under the terms of the GNU General Public License as published by
8     * the Free Software Foundation, either version 3 of the License, or
9     * (at your option) any later version.
10     *
11     * GPXView is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with GPXView. If not, see <http://www.gnu.org/licenses/>.
18     */
19    
20     #include <stddef.h>
21     #include <stdlib.h>
22     #include <ctype.h>
23 harbaum 34 #include <math.h> // for isnan
24 harbaum 1 #include "gpxview.h"
25    
26     #define GCONF_PATH "/apps/gpxview/"
27     #define GCONF_KEY_GPX GCONF_PATH "gpx%d"
28     #define GCONF_KEY_CNT GCONF_PATH "entries"
29    
30     #define GCONF_KEY_LOC_NAME GCONF_PATH "location%d/name"
31     #define GCONF_KEY_LOC_LAT GCONF_PATH "location%d/latitude"
32     #define GCONF_KEY_LOC_LON GCONF_PATH "location%d/longitude"
33     #define GCONF_KEY_LOC_CNT GCONF_PATH "location_entries"
34    
35     #define GCONF_KEY_CLOSED GCONF_PATH "closed/%s"
36    
37     #include <string.h>
38    
39     enum {
40     STORE_STRING, STORE_FLOAT, STORE_INT, STORE_BOOL,
41     };
42    
43     typedef struct {
44     char *key;
45     int type;
46     int offset;
47     } store_t;
48    
49     #define OFFSET(a) offsetof(appdata_t, a)
50    
51     static store_t store[] = {
52     { "image_path", STORE_STRING, OFFSET(image_path) },
53     { "path", STORE_STRING, OFFSET(path) },
54     { "geotext/text", STORE_STRING, OFFSET(geotext_text) },
55     { "geotext/shift", STORE_INT, OFFSET(geotext_shift) },
56     { "mmpoi_path", STORE_STRING, OFFSET(mmpoi_path) },
57     { "garmin_path", STORE_STRING, OFFSET(garmin_path) },
58     { "fnotes_path", STORE_STRING, OFFSET(fieldnotes_path) },
59     { "garmin_ign_found", STORE_BOOL, OFFSET(garmin_ign_found) },
60     { "active_location", STORE_INT, OFFSET(active_location) },
61     { "mmpoi_use_radius", STORE_BOOL, OFFSET(mmpoi_use_radius) },
62     { "mmpoi_radius", STORE_FLOAT, OFFSET(mmpoi_radius) },
63     { "mmpoi_ign_found", STORE_BOOL, OFFSET(mmpoi_dont_export_found) },
64     { "mmpoi_ign_disabl", STORE_BOOL, OFFSET(mmpoi_dont_export_disabled) },
65     { "use_gps", STORE_BOOL, OFFSET(use_gps) },
66     { "imperial", STORE_BOOL, OFFSET(imperial) },
67     { "compass_locked", STORE_BOOL, OFFSET(compass_locked) },
68     { "latitude", STORE_FLOAT, OFFSET(home.lat) },
69     { "longitude", STORE_FLOAT, OFFSET(home.lon) },
70     { "gps_lat", STORE_FLOAT, OFFSET(gps.lat) },
71     { "gps_lon", STORE_FLOAT, OFFSET(gps.lon) },
72     { "search_in", STORE_INT, OFFSET(search) },
73     { "search_days", STORE_INT, OFFSET(search_days) },
74     { "search_str", STORE_STRING, OFFSET(search_str) },
75     { "gpxlist_items", STORE_INT, OFFSET(gpxlist_items) },
76     { "cachelist_items", STORE_INT, OFFSET(cachelist_items) },
77     { "compass_damping", STORE_INT, OFFSET(compass_damping) },
78     { "cachelist_hide_found", STORE_BOOL, OFFSET(cachelist_hide_found) },
79 harbaum 129 { "cachelist_update", STORE_BOOL, OFFSET(cachelist_update) },
80 harbaum 167 { "disable_gcvote", STORE_BOOL, OFFSET(disable_gcvote) },
81 harbaum 204 { "username", STORE_STRING, OFFSET(username) },
82 harbaum 1 #ifdef USE_MAEMO
83     { "mmpoi_dontlaunch", STORE_BOOL, OFFSET(mmpoi_dontlaunch) },
84     { "cachelist_dss", STORE_BOOL, OFFSET(cachelist_disable_screensaver) },
85     { "goto_dss", STORE_BOOL, OFFSET(goto_disable_screensaver) },
86     #endif
87 harbaum 48 #ifdef ENABLE_OSM_GPS_MAP
88     { "map_lat", STORE_FLOAT, OFFSET(map.pos.lat) },
89     { "map_lon", STORE_FLOAT, OFFSET(map.pos.lon) },
90     { "map_zoom", STORE_INT, OFFSET(map.zoom) },
91 harbaum 89 { "map_source", STORE_INT, OFFSET(map.source) },
92 harbaum 48 #endif
93 harbaum 196
94 harbaum 197 { "geotoad/password", STORE_STRING, OFFSET(gt.password) },
95     { "geotoad/filename", STORE_STRING, OFFSET(gt.filename) },
96     { "geotoad/distance", STORE_FLOAT, OFFSET(gt.distance) },
97     { "geotoad/lat", STORE_FLOAT, OFFSET(gt.lat) },
98     { "geotoad/lon", STORE_FLOAT, OFFSET(gt.lon) },
99     { "geotoad/flags", STORE_INT, OFFSET(gt.flags) },
100 harbaum 196
101 harbaum 1 { NULL, -1, -1 }
102     };
103    
104     static char *get_basename(char *name) {
105     char *p = strrchr(name, '/');
106     if(!p) p = name;
107     else p = p+1;
108    
109     g_assert(*p);
110    
111     /* escape all non alnum characters */
112     p = g_strdup(p);
113     int i;
114     for(i=0;i<strlen(p);i++)
115     if(!isalnum(p[i]))
116     p[i] = '_';
117    
118     return p;
119     }
120    
121     void gconf_remove_closed_name(appdata_t *appdata, char *filename) {
122 harbaum 211 if(!filename || !strlen(filename)) return;
123    
124 harbaum 1 char *key = g_strdup_printf(GCONF_KEY_CLOSED, get_basename(filename));
125     gconf_client_unset(appdata->gconf_client, key, NULL);
126     g_free(key);
127     }
128    
129     void gconf_save_closed_name(appdata_t *appdata, char *filename, char *name) {
130 harbaum 211 if(!filename || !strlen(filename)) return;
131    
132 harbaum 1 char *key = g_strdup_printf(GCONF_KEY_CLOSED, get_basename(filename));
133     gconf_client_set_string(appdata->gconf_client, key, name, NULL);
134     g_free(key);
135     }
136    
137     char *gconf_restore_closed_name(appdata_t *appdata, char *filename) {
138 harbaum 211 if(!filename || !strlen(filename)) return NULL;
139    
140 harbaum 1 char *key = g_strdup_printf(GCONF_KEY_CLOSED, get_basename(filename));
141     char *ret = gconf_client_get_string(appdata->gconf_client, key, NULL);
142     g_free(key);
143     return ret;
144     }
145    
146     void gconf_save_state(appdata_t *appdata) {
147     int entries = 0;
148    
149 harbaum 158 /* free proxy settings */
150     if(appdata->proxy) {
151     proxy_t *proxy = appdata->proxy;
152    
153     if(proxy->authentication_password) g_free(proxy->authentication_password);
154     if(proxy->authentication_user) g_free(proxy->authentication_user);
155     if(proxy->host) g_free(proxy->host);
156     if(proxy->ignore_hosts) g_free(proxy->ignore_hosts);
157    
158     g_free(proxy);
159     appdata->proxy = NULL;
160     }
161    
162 harbaum 1 gpx_t *gpx = appdata->gpx;
163     while(gpx) {
164     char str[128];
165     snprintf(str, sizeof(str), GCONF_KEY_GPX, entries++);
166     gconf_client_set_string(appdata->gconf_client, str, gpx->filename, NULL);
167     gpx = gpx->next;
168     }
169    
170     gconf_client_set_int(appdata->gconf_client, GCONF_KEY_CNT, entries, NULL);
171    
172     /* -------------- save locations (excl. home location) --------------- */
173     entries = 0;
174     location_t *loc = appdata->location;
175     while(loc) {
176     char str[128];
177     snprintf(str, sizeof(str), GCONF_KEY_LOC_NAME, entries);
178     gconf_client_set_string(appdata->gconf_client, str, loc->name, NULL);
179     snprintf(str, sizeof(str), GCONF_KEY_LOC_LAT, entries);
180     gconf_client_set_float(appdata->gconf_client, str, loc->pos.lat, NULL);
181     snprintf(str, sizeof(str), GCONF_KEY_LOC_LON, entries);
182     gconf_client_set_float(appdata->gconf_client, str, loc->pos.lon, NULL);
183     entries++;
184     loc = loc->next;
185     }
186    
187     gconf_client_set_int(appdata->gconf_client, GCONF_KEY_LOC_CNT, entries, NULL);
188    
189     /* store everything listed in the store table */
190     store_t *st = store;
191     while(st->key) {
192     void **ptr = ((void*)appdata) + st->offset;
193 harbaum 34 char *key = g_strdup_printf(GCONF_PATH "%s", st->key);
194 harbaum 1
195     switch(st->type) {
196     case STORE_STRING:
197     if((char*)(*ptr)) {
198     gconf_client_set_string(appdata->gconf_client, key, (char*)(*ptr), NULL);
199     }
200 harbaum 196 g_free((char*)(*ptr));
201     *ptr = NULL;
202 harbaum 1 break;
203    
204     case STORE_BOOL:
205     gconf_client_set_bool(appdata->gconf_client, key, *((int*)ptr), NULL);
206     break;
207    
208     case STORE_INT:
209     gconf_client_set_int(appdata->gconf_client, key, *((int*)ptr), NULL);
210     break;
211    
212     case STORE_FLOAT:
213 harbaum 34 if(!isnan(*((float*)ptr)))
214     gconf_client_set_float(appdata->gconf_client, key, *((float*)ptr), NULL);
215 harbaum 1 break;
216    
217     default:
218     printf("Unsupported type %d\n", st->type);
219     break;
220     }
221    
222 harbaum 34 g_free(key);
223 harbaum 1 st++;
224     }
225     }
226    
227     void gconf_load_state(appdata_t *appdata) {
228     gpx_t **gpx = &appdata->gpx;
229    
230     while(*gpx) gpx = &((*gpx)->next);
231    
232     gpx_dialog_t *dialog = NULL;
233    
234 harbaum 34 /* default positions are invalid */
235     appdata->home.lat = appdata->home.lon = NAN;
236     appdata->gps.lat = appdata->gps.lon = NAN;
237    
238 harbaum 196 appdata->gt.lat = appdata->gt.lon = NAN;
239 harbaum 198 appdata->gt.distance = 1.0; // in km/mil
240 harbaum 196
241 harbaum 158 /* ------------- get proxy settings -------------------- */
242     if(gconf_client_get_bool(appdata->gconf_client,
243     PROXY_KEY "use_http_proxy", NULL)) {
244     proxy_t *proxy = appdata->proxy = g_new0(proxy_t, 1);
245    
246     /* get basic settings */
247     proxy->host = gconf_client_get_string(appdata->gconf_client,
248     PROXY_KEY "host", NULL);
249     proxy->port = gconf_client_get_int(appdata->gconf_client,
250     PROXY_KEY "port", NULL);
251     proxy->ignore_hosts =
252     gconf_client_get_string(appdata->gconf_client,
253     PROXY_KEY "ignore_hosts", NULL);
254    
255     /* check for authentication */
256     proxy->use_authentication =
257     gconf_client_get_bool(appdata->gconf_client,
258     PROXY_KEY "use_authentication", NULL);
259    
260     if(proxy->use_authentication) {
261     proxy->authentication_user =
262     gconf_client_get_string(appdata->gconf_client,
263     PROXY_KEY "authentication_user", NULL);
264     proxy->authentication_password =
265     gconf_client_get_string(appdata->gconf_client,
266     PROXY_KEY "authentication_password", NULL);
267     }
268     }
269    
270 harbaum 204 /* restore everything listed in the store table */
271     store_t *st = store;
272     while(st->key) {
273     void **ptr = ((void*)appdata) + st->offset;
274     char *key = g_strdup_printf(GCONF_PATH "%s", st->key);
275    
276     /* check if key is present */
277     GConfValue *value = gconf_client_get(appdata->gconf_client, key, NULL);
278     if(value) {
279     gconf_value_free(value);
280    
281     switch(st->type) {
282     case STORE_STRING: {
283     char **str = (char**)ptr;
284     *str = gconf_client_get_string(appdata->gconf_client, key, NULL);
285     } break;
286    
287     case STORE_BOOL:
288     *((int*)ptr) = gconf_client_get_bool(appdata->gconf_client, key, NULL);
289     break;
290    
291     case STORE_INT:
292     *((int*)ptr) = gconf_client_get_int(appdata->gconf_client, key, NULL);
293     break;
294    
295     case STORE_FLOAT:
296     *((float*)ptr) = gconf_client_get_float(appdata->gconf_client, key, NULL);
297     break;
298    
299     default:
300     printf("Unsupported type %d\n", st->type);
301     break;
302     }
303     }
304     g_free(key);
305     st++;
306     }
307    
308 harbaum 1 int i, entries = gconf_client_get_int(appdata->gconf_client,
309     GCONF_KEY_CNT, NULL);
310    
311     if(entries)
312     dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));
313    
314     for(i=0;i<entries;i++) {
315     char str[128];
316     snprintf(str, sizeof(str), GCONF_KEY_GPX, i);
317     char *fname = gconf_client_get_string(appdata->gconf_client, str, NULL);
318     if(fname) {
319     /* check if there's a valid name stored for this file. */
320     /* if yes it's a "closed" file */
321     char *name = gconf_restore_closed_name(appdata, fname);
322     if(name) {
323     *gpx = g_new0(gpx_t, 1);
324     (*gpx)->filename = fname;
325     (*gpx)->name = g_strdup(name);
326     (*gpx)->closed = TRUE;
327     } else {
328     if(g_file_test(fname, G_FILE_TEST_IS_DIR))
329 harbaum 204 *gpx = gpx_parse_dir(dialog, fname, appdata->username);
330 harbaum 1 else
331 harbaum 204 *gpx = gpx_parse(dialog, fname, appdata->username);
332 harbaum 1
333 harbaum 74 if(!*gpx) {
334     /* restoring the gpx file failed, mark it as unusable, but save */
335     /* its presence for later use */
336    
337 harbaum 113 /* create "closed" entry to remember this file for next */
338     /* load attempt */
339 harbaum 74 *gpx = g_new0(gpx_t, 1);
340     (*gpx)->filename = fname;
341 harbaum 113 char *p = fname;
342     if(strrchr(fname, '/'))
343     p = strrchr(fname, '/')+1;
344    
345     (*gpx)->name = g_strdup_printf(_("Failed to load: %s"), p);
346     (*gpx)->closed = TRUE;
347 harbaum 74 } else
348     free(fname);
349 harbaum 1 }
350 harbaum 103 gpx = &((*gpx)->next);
351 harbaum 1 }
352     }
353    
354     gpx_busy_dialog_destroy(dialog);
355    
356     /* ------------- load locations --------------------- */
357     entries = gconf_client_get_int(appdata->gconf_client,
358     GCONF_KEY_LOC_CNT, NULL);
359    
360     location_t **loc = &appdata->location;
361     for(i=0;i<entries;i++) {
362     *loc = g_new0(location_t, 1);
363     if(*loc) {
364     char str[128];
365     snprintf(str, sizeof(str), GCONF_KEY_LOC_NAME, i);
366     (*loc)->name = gconf_client_get_string(appdata->gconf_client, str, NULL);
367     snprintf(str, sizeof(str), GCONF_KEY_LOC_LAT, i);
368     (*loc)->pos.lat = gconf_client_get_float(appdata->gconf_client, str, NULL);
369     snprintf(str, sizeof(str), GCONF_KEY_LOC_LON, i);
370     (*loc)->pos.lon = gconf_client_get_float(appdata->gconf_client, str, NULL);
371    
372     loc = &((*loc)->next);
373     }
374     }
375    
376     /* ----- set all kinds of defaults ------- */
377    
378     if(!appdata->compass_damping) appdata->compass_damping = 1;
379    
380     if(!appdata->mmpoi_radius)
381     appdata->mmpoi_radius = 100.0; // 100 km
382    
383     if(!appdata->search)
384     appdata->search = SEARCH_NAME | SEARCH_ID;
385    
386     if(!appdata->image_path) {
387 harbaum 122 #ifdef USE_MAEMO
388     /* update cachelist by default */
389     appdata->cachelist_update = TRUE;
390     #endif
391 harbaum 1
392 harbaum 14 /* use gps by default */
393     appdata->use_gps = TRUE;
394    
395 harbaum 1 #ifndef USE_MAEMO
396     char *p = getenv("HOME");
397     if(p) {
398     /* build image path in home directory */
399     appdata->image_path =
400     malloc(strlen(p)+strlen(DEFAULT_IMAGE_PATH_HOME)+2);
401     strcpy(appdata->image_path, p);
402     if(appdata->image_path[strlen(appdata->image_path)-1] != '/')
403     strcat(appdata->image_path, "/");
404     strcat(appdata->image_path, DEFAULT_IMAGE_PATH_HOME);
405     } else
406     #endif
407     appdata->image_path = strdup(DEFAULT_IMAGE_PATH);
408    
409 harbaum 62 /* check if this path is actually accessible */
410     /* and change it to the current users home if not */
411     /* (this should only happen on scratchbox) */
412     if(!g_file_test(appdata->image_path, G_FILE_TEST_IS_DIR)) {
413     if(g_mkdir_with_parents(appdata->image_path, 0700) != 0) {
414     char *p = getenv("HOME");
415     if(!p) p = "/tmp/";
416    
417     appdata->image_path =
418     g_strdup_printf("%s%s%s", p,
419     (p[strlen(p)-1]!='/')?"/":"",
420     DEFAULT_IMAGE_PATH_HOME);
421     printf("using alt path %s\n", appdata->image_path);
422     }
423     }
424    
425 harbaum 1 } else {
426     /* some versions old versions messed up the path */
427     if(appdata->image_path[strlen(appdata->image_path)-1] != '/') {
428     printf("adjusting image path\n");
429     appdata->image_path = realloc(appdata->image_path,
430     strlen(appdata->image_path)+2);
431     strcat(appdata->image_path, "/");
432     }
433     }
434    
435     if(!appdata->mmpoi_path) {
436     char *p = getenv("HOME");
437     if(p) {
438     /* build mmpoi path in home directory */
439     appdata->mmpoi_path =
440     malloc(strlen(p)+strlen(DEFAULT_MMPOI_PATH)+2);
441     strcpy(appdata->mmpoi_path, p);
442     if(appdata->mmpoi_path[strlen(appdata->mmpoi_path)-1] != '/')
443     strcat(appdata->mmpoi_path, "/");
444     strcat(appdata->mmpoi_path, DEFAULT_MMPOI_PATH);
445     } else
446     appdata->mmpoi_path = strdup(DEFAULT_MMPOI_PATH);
447     }
448    
449     if(!appdata->fieldnotes_path) {
450     char *p = getenv("HOME");
451     if(p) {
452     /* build fieldnotes path in home directory */
453     appdata->fieldnotes_path =
454     malloc(strlen(p)+strlen(DEFAULT_FIELDNOTES_PATH)+2);
455     strcpy(appdata->fieldnotes_path, p);
456     if(appdata->fieldnotes_path[strlen(appdata->fieldnotes_path)-1] != '/')
457     strcat(appdata->fieldnotes_path, "/");
458     strcat(appdata->fieldnotes_path, DEFAULT_FIELDNOTES_PATH);
459     } else
460     appdata->fieldnotes_path = strdup(DEFAULT_FIELDNOTES_PATH);
461     }
462    
463     if(!appdata->garmin_path) {
464     char *p = getenv("HOME");
465     if(p) {
466     /* build image path in home directory */
467     appdata->garmin_path =
468     malloc(strlen(p)+strlen(DEFAULT_GARMIN_PATH)+2);
469     strcpy(appdata->garmin_path, p);
470     if(appdata->garmin_path[strlen(appdata->garmin_path)-1] != '/')
471     strcat(appdata->garmin_path, "/");
472     strcat(appdata->garmin_path, DEFAULT_GARMIN_PATH);
473     } else
474     appdata->garmin_path = strdup(DEFAULT_GARMIN_PATH);
475     }
476    
477     /* make sure image path actually exists */
478     checkdir(appdata->image_path);
479    
480     if(!appdata->gpxlist_items)
481     appdata->gpxlist_items = GPXLIST_ITEM_DEFAULT;
482    
483     if(!appdata->cachelist_items)
484     appdata->cachelist_items = CACHELIST_ITEM_DEFAULT;
485    
486 harbaum 13 /* if there are no entries in the main list, try to add the */
487     /* "welcome" one */
488     if(!appdata->gpx) {
489 harbaum 17 char *name = g_strdup(ICONPATH "welcome.gpx");
490 harbaum 13 dialog = gpx_busy_dialog_new(GTK_WIDGET(appdata->window));
491     printf("No GPX file loaded, trying to load demo\n");
492 harbaum 204 appdata->gpx = gpx_parse(dialog, name, appdata->username);
493 harbaum 13 gpx_busy_dialog_destroy(dialog);
494     g_free(name);
495     }
496 harbaum 1 }
497