]> git.street.me.uk Git - andy/viking.git/blob - src/preferences.c
Fix internal tile locking
[andy/viking.git] / src / preferences.c
1 #include <gtk/gtk.h>
2 #include <glib/gi18n.h>
3 #include <string.h>
4 #include <stdlib.h>
5 #include <stdio.h>
6 #include <glib/gstdio.h>
7 #include "preferences.h"
8 #include "file.h"
9
10 // TODO: register_group
11 // TODO: STRING_LIST
12 // TODO: share code in file reading
13 // TODO: remove hackaround in show_window
14 // TODO: move typeddata to uibuilder, make it more used & general, it's a "prettier" solution methinks
15 // maybe this wasn't such a good idea...
16
17 #define VIKING_PREFS_FILE "viking.prefs"
18
19 #define TEST_BOOLEAN(str) (! ((str)[0] == '\0' || (str)[0] == '0' || (str)[0] == 'n' || (str)[0] == 'N' || (str)[0] == 'f' || (str)[0] == 'F') )
20
21 static GPtrArray *params;
22 static GHashTable *values;
23 gboolean loaded;
24
25 /************ groups *********/
26
27 static GPtrArray *groups_names;
28 static GHashTable *groups_keys_to_indices; // contains gint, NULL (0) is not found, instead 1 is used for 0, 2 for 1, etc.
29
30 static void preferences_groups_init()
31 {
32   groups_names = g_ptr_array_new();
33   groups_keys_to_indices = g_hash_table_new_full ( g_str_hash, g_str_equal, g_free, NULL );
34 }
35
36 static void preferences_groups_uninit()
37 {
38   g_ptr_array_free ( groups_names, TRUE );
39   g_hash_table_destroy ( groups_keys_to_indices );
40 }
41
42 void a_preferences_register_group ( const gchar *key, const gchar *name )
43 {
44   if ( g_hash_table_lookup ( groups_keys_to_indices, key ) )
45     g_error("Duplicate preferences group keys");
46   else {
47     g_ptr_array_add ( groups_names, g_strdup(name) );
48     g_hash_table_insert ( groups_keys_to_indices, g_strdup(key), GINT_TO_POINTER ( (gint) groups_names->len ) ); /* index + 1 */
49   }
50 }
51
52 /* returns -1 if not found. */
53 static gint16 preferences_groups_key_to_index( const gchar *key )
54 {
55   gint index = GPOINTER_TO_INT ( g_hash_table_lookup ( groups_keys_to_indices, key ) );
56   if ( ! index )
57     return VIK_LAYER_GROUP_NONE; /* which should be -1 anyway */
58   return (gint16) (index - 1);
59 }
60
61 /*****************************/
62
63 /************/
64
65 typedef struct {
66   VikLayerParamData data;
67   guint8 type;
68   gpointer freeme; // because data.s is const and the compiler complains
69 } VikLayerTypedParamData;
70
71 void layer_typed_param_data_free(gpointer p)
72 {
73   VikLayerTypedParamData *val = (VikLayerTypedParamData *)p;
74   switch ( val->type ) {
75     case VIK_LAYER_PARAM_STRING:
76       if ( val->freeme )
77         g_free ( val->freeme );
78       break;
79     /* TODO: APPLICABLE TO US? NOTE: string layer works auniquely: data.sl should NOT be free'd when
80      * the internals call get_param -- i.e. it should be managed w/in the layer.
81      * The value passed by the internals into set_param should also be managed
82      * by the layer -- i.e. free'd by the layer.
83      */
84     case VIK_LAYER_PARAM_STRING_LIST:
85       g_error ( "Param strings not implemented in preferences"); //fake it
86       break;
87   }
88   g_free ( val );
89 }
90
91 VikLayerTypedParamData *layer_typed_param_data_copy_from_data(guint8 type, VikLayerParamData val) {
92   VikLayerTypedParamData *newval = g_new(VikLayerTypedParamData,1);
93   newval->data = val;
94   newval->type = type;
95   switch ( newval->type ) {
96     case VIK_LAYER_PARAM_STRING: {
97       gchar *s = g_strdup(newval->data.s);
98       newval->data.s = s;
99       newval->freeme = s;
100       break;
101     }
102     /* TODO: APPLICABLE TO US? NOTE: string layer works auniquely: data.sl should NOT be free'd when
103      * the internals call get_param -- i.e. it should be managed w/in the layer.
104      * The value passed by the internals into set_param should also be managed
105      * by the layer -- i.e. free'd by the layer.
106      */
107     case VIK_LAYER_PARAM_STRING_LIST:
108       g_error ( "Param strings not implemented in preferences"); //fake it
109       break;
110   }
111   return newval;
112 }
113
114 /* TODO: share this code with file.c */
115 VikLayerTypedParamData *layer_data_typed_param_copy_from_string ( guint8 type, const gchar *str )
116 {
117   g_assert ( type != VIK_LAYER_PARAM_STRING_LIST );
118   VikLayerTypedParamData *rv = g_new(VikLayerTypedParamData,1);
119   rv->type = type;
120   switch ( type )
121   {
122     case VIK_LAYER_PARAM_DOUBLE: rv->data.d = strtod(str, NULL); break;
123     case VIK_LAYER_PARAM_UINT: rv->data.u = strtoul(str, NULL, 10); break;
124     case VIK_LAYER_PARAM_INT: rv->data.i = strtol(str, NULL, 10); break;
125     case VIK_LAYER_PARAM_BOOLEAN: rv->data.b = TEST_BOOLEAN(str); break;
126     case VIK_LAYER_PARAM_COLOR: memset(&(rv->data.c), 0, sizeof(rv->data.c)); /* default: black */
127       gdk_color_parse ( str, &(rv->data.c) ); break;
128     /* STRING or STRING_LIST -- if STRING_LIST, just set param to add a STRING */
129     default: {
130       gchar *s = g_strdup(str);
131       rv->data.s = s;
132       rv->freeme = s;
133     }
134   }
135   return rv;
136 }
137
138 /************/
139
140 /* MAKES A COPY OF THE KEY!!! */
141 static gboolean preferences_load_parse_param(gchar *buf, gchar **key, gchar **val )
142 {
143   gchar *eq_pos;
144   gint len;
145
146   // comments, special characters in viking file format
147   if ( buf == NULL || buf[0] == '\0' || buf[0] == '~' || buf[0] == '=' || buf[0] == '#' )
148     return FALSE;
149   eq_pos = strchr ( buf, '=' );
150   if ( ! eq_pos )
151     return FALSE;
152   *key = g_strndup ( buf, eq_pos - buf );
153   *val = eq_pos + 1;
154   len = strlen(*val);
155   if ( len > 0 )
156     if ( (*val)[len - 1] == '\n' )
157       (*val) [ len - 1 ] = '\0'; /* cut off newline */
158   return TRUE;
159 }
160
161 static gboolean preferences_load_from_file()
162 {
163   gchar *fn = g_build_filename(a_get_viking_dir(), VIKING_PREFS_FILE, NULL);
164   FILE *f = g_fopen(fn, "r");
165   g_free ( fn );
166
167   if ( f ) {
168     gchar buf[4096];
169     gchar *key, *val;
170     VikLayerTypedParamData *oldval, *newval;
171     while ( ! feof (f) ) {
172       fgets(buf,sizeof(buf),f);
173       if ( preferences_load_parse_param(buf, &key, &val ) ) {
174         // if it's not in there, ignore it
175         oldval = g_hash_table_lookup ( values, key );
176         if ( ! oldval ) {
177           g_free(key);
178           continue;
179         }
180
181         // otherwise change it (you know the type!)
182         // if it's a string list do some funky stuff ... yuck... not yet.
183         if ( oldval->type == VIK_LAYER_PARAM_STRING_LIST )
184           g_error ( "Param strings not implemented in preferences"); // fake it
185
186         newval = layer_data_typed_param_copy_from_string ( oldval->type, val );
187         g_hash_table_insert ( values, key, newval );
188
189         g_free(key);
190
191         // change value
192       }
193     }
194     fclose(f);
195     f = NULL;
196     return TRUE;
197   }
198   return FALSE;
199 }
200
201 static void preferences_run_setparam ( gpointer notused, guint16 i, VikLayerParamData data, VikLayerParam *params )
202 {
203   if ( params[i].type == VIK_LAYER_PARAM_STRING_LIST )
204     g_error ( "Param strings not implemented in preferences"); //fake it
205   g_hash_table_insert ( values, (gchar *)(params[i].name), layer_typed_param_data_copy_from_data(params[i].type, data) );
206 }
207
208 /* Allow preferences to be manipulated externally */
209 void a_preferences_run_setparam ( VikLayerParamData data, VikLayerParam *params )
210 {
211   preferences_run_setparam (NULL, 0, data, params);
212 }
213
214 static VikLayerParamData preferences_run_getparam ( gpointer notused, guint16 i )
215 {
216   VikLayerTypedParamData *val = (VikLayerTypedParamData *) g_hash_table_lookup ( values, ((VikLayerParam *)g_ptr_array_index(params,i))->name );
217   g_assert ( val != NULL );
218   if ( val->type == VIK_LAYER_PARAM_STRING_LIST )
219     g_error ( "Param strings not implemented in preferences"); //fake it
220   return val->data;
221 }
222
223 /* TRUE on success */
224 gboolean a_preferences_save_to_file()
225 {
226   gchar *fn = g_build_filename(a_get_viking_dir(), VIKING_PREFS_FILE, NULL);
227
228   // TODO: error checking
229   FILE *f = g_fopen(fn, "w");
230   /* Since preferences files saves OSM login credentials,
231    * it'll be better to store it in secret.
232    */
233   g_chmod(fn, 0600);
234   g_free ( fn );
235
236   if ( f ) {
237     VikLayerParam *param;
238     VikLayerTypedParamData *val;
239     int i;
240     for ( i = 0; i < params->len; i++ ) {
241       param = (VikLayerParam *) g_ptr_array_index(params,i);
242       val = (VikLayerTypedParamData *) g_hash_table_lookup ( values, param->name );
243       g_assert ( val != NULL );
244       file_write_layer_param ( f, param->name, val->type, val->data );
245     }
246     fclose(f);
247     f = NULL;
248     return TRUE;
249   }
250
251   return FALSE;
252 }
253
254
255 void a_preferences_show_window(GtkWindow *parent) {
256     //VikLayerParamData *a_uibuilder_run_dialog ( GtkWindow *parent, VikLayerParam \*params, // guint16 params_count, gchar **groups, guint8 groups_count, // VikLayerParamData *params_defaults )
257     // TODO: THIS IS A MAJOR HACKAROUND, but ok when we have only a couple preferences.
258     gint params_count = params->len;
259     VikLayerParam *contiguous_params = g_new(VikLayerParam,params_count);
260     int i;
261     for ( i = 0; i < params->len; i++ ) {
262       contiguous_params[i] = *((VikLayerParam*)(g_ptr_array_index(params,i)));
263     }
264     loaded = TRUE;
265     preferences_load_from_file();
266     if ( a_uibuilder_properties_factory ( _("Preferences"), parent, contiguous_params, params_count,
267                                 (gchar **) groups_names->pdata, groups_names->len, // groups, groups_count, // groups? what groups?!
268                                 (gboolean (*) (gpointer,guint16,VikLayerParamData,gpointer)) preferences_run_setparam,
269                                 NULL /* not used */, contiguous_params,
270                                 preferences_run_getparam, NULL /* not used */ ) ) {
271       a_preferences_save_to_file();
272     }
273     g_free ( contiguous_params );
274 }
275
276 void a_preferences_register(VikLayerParam *pref, VikLayerParamData defaultval, const gchar *group_key )
277 {
278   /* copy value */
279   VikLayerParam *newpref = g_new(VikLayerParam,1);
280   *newpref = *pref;
281   VikLayerTypedParamData *newval = layer_typed_param_data_copy_from_data(pref->type, defaultval);
282   if ( group_key )
283     newpref->group = preferences_groups_key_to_index ( group_key );
284
285   g_ptr_array_add ( params, newpref );
286   g_hash_table_insert ( values, (gchar *)pref->name, newval );
287 }
288
289 void a_preferences_init()
290 {
291   preferences_groups_init();
292
293   /* not copied */
294   params = g_ptr_array_new ();
295
296   /* key not copied (same ptr as in pref), actual param data yes */
297   values = g_hash_table_new_full ( g_str_hash, g_str_equal, NULL, layer_typed_param_data_free);
298
299   loaded = FALSE;
300 }
301
302 void a_preferences_uninit()
303 {
304   preferences_groups_uninit();
305
306   g_ptr_array_free ( params, TRUE );
307   g_hash_table_destroy ( values );
308 }
309
310
311
312 VikLayerParamData *a_preferences_get(const gchar *key)
313 {
314   if ( ! loaded ) {
315     /* since we can't load the file in a_preferences_init (no params registered yet),
316      * do it once before we get the first key. */
317     preferences_load_from_file();
318     loaded = TRUE;
319   }
320   return g_hash_table_lookup ( values, key );
321 }