rewritten exif pane to support arbitrary number of entries
[geeqie.git] / src / rcfile.c
1 /*
2  * Geeqie
3  * (C) 2006 John Ellis
4  * Copyright (C) 2008 - 2009 The Geeqie Team
5  *
6  * Author: John Ellis
7  *
8  * This software is released under the GNU General Public License (GNU GPL).
9  * Please read the included file COPYING for more information.
10  * This software comes with no warranty of any kind, use at your own risk!
11  */
12
13 #include <glib/gstdio.h>
14 #include <errno.h>
15
16 #include "main.h"
17 #include "rcfile.h"
18
19 #include "bar.h"
20 #include "bar_comment.h"
21 #include "bar_exif.h"
22 #include "bar_histogram.h"
23 #include "bar_keywords.h"
24 #include "bar_sort.h"
25 #include "editors.h"
26 #include "filefilter.h"
27 #include "misc.h"
28 #include "pixbuf-renderer.h"
29 #include "secure_save.h"
30 #include "slideshow.h"
31 #include "ui_fileops.h"
32 #include "layout.h"
33 #include "layout_util.h"
34 #include "bar.h"
35
36
37 /*
38  *-----------------------------------------------------------------------------
39  * line write/parse routines (public)
40  *-----------------------------------------------------------------------------
41  */
42
43 void write_indent(GString *str, gint indent)
44 {
45         g_string_append_printf(str, "%*s", indent * 4, "");
46 }
47
48 void write_char_option(GString *str, gint indent, const gchar *label, const gchar *text)
49 {
50         /* this is needed for overlay string, because g_markup_escape_text does not handle \n and such, 
51            ideas for improvement are welcome
52         */
53         static const unsigned char no_quote_utf[] = {
54                 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b,
55                 0x8c, 0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
56                 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0xa0, 0xa1, 0xa2, 0xa3,
57                 0xa4, 0xa5, 0xa6, 0xa7, 0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xaf,
58                 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8, 0xb9, 0xba, 0xbb,
59                 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
60                 0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1, 0xd2, 0xd3,
61                 0xd4, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xdd, 0xde, 0xdf,
62                 0xe0, 0xe1, 0xe2, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,
63                 0xec, 0xed, 0xee, 0xef, 0xf0, 0xf1, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0xf7,
64                 0xf8, 0xf9, 0xfa, 0xfb, 0xfc, 0xfd, 0xfe, 0xff,
65                 '"',  0 /* '"' is handled in g_markup_escape_text */
66         };
67
68         gchar *escval1 = g_strescape(text ? text : "", (gchar *) no_quote_utf); 
69         gchar *escval2 = g_markup_escape_text(escval1, -1);
70         write_indent(str, indent);
71         g_string_append_printf(str, "%s = \"%s\"\n", label, escval2);
72         g_free(escval2);
73         g_free(escval1);
74 }
75
76 gboolean read_char_option(const gchar *option, const gchar *label, const gchar *value, gchar **text)
77 {
78         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
79         if (!text) return FALSE;
80
81         g_free(*text);
82         *text = g_strcompress(value);
83         return TRUE;
84 }
85
86 /* Since gdk_color_to_string() is only available since gtk 2.12
87  * here is an equivalent stub function. */
88 static gchar *color_to_string(GdkColor *color)
89 {
90         return g_strdup_printf("#%04X%04X%04X", color->red, color->green, color->blue);
91 }
92
93 void write_color_option(GString *str, gint indent, gchar *label, GdkColor *color)
94 {
95         if (color)
96                 {
97                 gchar *colorstring = color_to_string(color);
98
99                 write_char_option(str, indent, label, colorstring);
100                 g_free(colorstring);
101                 }
102         else
103                 write_char_option(str, indent, label, "");
104 }
105
106 gboolean read_color_option(const gchar *option, const gchar *label, const gchar *value, GdkColor *color)
107 {
108         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
109         if (!color) return FALSE;
110
111         if (!*value) return FALSE;
112         gdk_color_parse(value, color);
113         return TRUE;
114 }
115
116 void write_int_option(GString *str, gint indent, const gchar *label, gint n)
117 {
118         write_indent(str, indent);
119         g_string_append_printf(str, "%s = \"%d\"\n", label, n);
120 }
121
122 gboolean read_int_option(const gchar *option, const gchar *label, const gchar *value, gint *n)
123 {
124         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
125         if (!n) return FALSE;
126
127         if (g_ascii_isdigit(value[0]) || (value[0] == '-' && g_ascii_isdigit(value[1])))
128                 {
129                 *n = strtol(value, NULL, 10);
130                 }
131         else
132                 {
133                 if (g_ascii_strcasecmp(value, "true") == 0)
134                         *n = 1;
135                 else
136                         *n = 0;
137                 }
138
139         return TRUE;
140 }
141
142 void write_uint_option(GString *str, gint indent, const gchar *label, guint n)
143 {
144         write_indent(str, indent);
145         g_string_append_printf(str, "%s = \"%u\"\n", label, n);
146 }
147
148 gboolean read_uint_option(const gchar *option, const gchar *label, const gchar *value, guint *n)
149 {
150         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
151         if (!n) return FALSE;
152
153         if (g_ascii_isdigit(value[0]))
154                 {
155                 *n = strtoul(value, NULL, 10);
156                 }
157         else
158                 {
159                 if (g_ascii_strcasecmp(value, "true") == 0)
160                         *n = 1;
161                 else
162                         *n = 0;
163                 }
164         
165         return TRUE;
166 }
167
168 gboolean read_uint_option_clamp(const gchar *option, const gchar *label, const gchar *value, guint *n, guint min, guint max)
169 {
170         gboolean ret;
171
172         ret = read_uint_option(option, label, value, n);
173         if (ret) *n = CLAMP(*n, min, max);
174
175         return ret;
176 }
177
178
179 gboolean read_int_option_clamp(const gchar *option, const gchar *label, const gchar *value, gint *n, gint min, gint max)
180 {
181         gboolean ret;
182
183         ret = read_int_option(option, label, value, n);
184         if (ret) *n = CLAMP(*n, min, max);
185
186         return ret;
187 }
188
189 void write_int_unit_option(GString *str, gint indent, gchar *label, gint n, gint subunits)
190 {
191         gint l, r;
192
193         if (subunits > 0)
194                 {
195                 l = n / subunits;
196                 r = n % subunits;
197                 }
198         else
199                 {
200                 l = n;
201                 r = 0;
202                 }
203
204         write_indent(str, indent);
205         g_string_append_printf(str, "%s = \"%d.%d\"\n", label, l, r);
206 }
207
208 gboolean read_int_unit_option(const gchar *option, const gchar *label, const gchar *value, gint *n, gint subunits)
209 {
210         gint l, r;
211         gchar *ptr, *buf;
212
213         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
214         if (!n) return FALSE;
215
216         buf = g_strdup(value);
217         ptr = buf;
218         while (*ptr != '\0' && *ptr != '.') ptr++;
219         if (*ptr == '.')
220                 {
221                 *ptr = '\0';
222                 l = strtol(value, NULL, 10);
223                 *ptr = '.';
224                 ptr++;
225                 r = strtol(ptr, NULL, 10);
226                 }
227         else
228                 {
229                 l = strtol(value, NULL, 10);
230                 r = 0;
231                 }
232
233         *n = l * subunits + r;
234         g_free(buf);
235         
236         return TRUE;
237 }
238
239 void write_bool_option(GString *str, gint indent, gchar *label, gint n)
240 {
241         write_indent(str, indent);
242         g_string_append_printf(str, "%s = \"%s\"\n", label, n ? "true" : "false");
243 }
244
245 gboolean read_bool_option(const gchar *option, const gchar *label, const gchar *value, gint *n)
246 {
247         if (g_ascii_strcasecmp(option, label) != 0) return FALSE;
248         if (!n) return FALSE;
249
250         if (g_ascii_strcasecmp(value, "true") == 0 || atoi(value) != 0)
251                 *n = TRUE;
252         else
253                 *n = FALSE;
254
255         return TRUE;
256 }
257
258 /*
259  *-----------------------------------------------------------------------------
260  * write fuctions for elements (private)
261  *-----------------------------------------------------------------------------
262  */
263
264 static void write_global_attributes(GString *outstr, gint indent)
265 {
266 //      WRITE_SUBTITLE("General Options");
267
268         WRITE_BOOL(*options, show_icon_names);
269         WRITE_BOOL(*options, show_copy_path);
270         WRITE_SEPARATOR();
271
272         WRITE_BOOL(*options, tree_descend_subdirs);
273         WRITE_BOOL(*options, lazy_image_sync);
274         WRITE_BOOL(*options, update_on_time_change);
275         WRITE_SEPARATOR();
276
277         WRITE_BOOL(*options, progressive_key_scrolling);
278
279         WRITE_UINT(*options, duplicates_similarity_threshold);
280         WRITE_SEPARATOR();
281
282         WRITE_BOOL(*options, mousewheel_scrolls);
283         WRITE_INT(*options, open_recent_list_maxsize);
284         WRITE_INT(*options, dnd_icon_size);
285         WRITE_BOOL(*options, place_dialogs_under_mouse);
286
287
288 //      WRITE_SUBTITLE("Startup Options");
289
290         WRITE_BOOL(*options, startup.restore_path);
291         WRITE_BOOL(*options, startup.use_last_path);
292         WRITE_CHAR(*options, startup.path);
293
294
295 //      WRITE_SUBTITLE("File operations Options");
296
297         WRITE_BOOL(*options, file_ops.enable_in_place_rename);
298         WRITE_BOOL(*options, file_ops.confirm_delete);
299         WRITE_BOOL(*options, file_ops.enable_delete_key);
300         WRITE_BOOL(*options, file_ops.safe_delete_enable);
301         WRITE_CHAR(*options, file_ops.safe_delete_path);
302         WRITE_INT(*options, file_ops.safe_delete_folder_maxsize);
303
304
305
306
307 //      WRITE_SUBTITLE("Properties dialog Options");
308         WRITE_CHAR(*options, properties.tabs_order);
309
310 //      WRITE_SUBTITLE("Image Options");
311
312         WRITE_UINT(*options, image.zoom_mode);
313
314 //      g_string_append_printf(outstr, "# image.zoom_mode possible values are:\n"
315 //                          "#   original\n"
316 //                          "#   fit\n"
317 //                          "#   dont_change\n");
318 //      g_string_append_printf(outstr, "image.zoom_mode: ");
319 //      switch (options->image.zoom_mode)
320 //      {
321 //      case ZOOM_RESET_ORIGINAL: g_string_append_printf(outstr, "original\n"); break;
322 //      case ZOOM_RESET_FIT_WINDOW: g_string_append_printf(outstr, "fit\n"); break;
323 //      case ZOOM_RESET_NONE: g_string_append_printf(outstr, "dont_change\n"); break;
324 //      }
325         WRITE_SEPARATOR();
326         WRITE_BOOL(*options, image.zoom_2pass);
327         WRITE_BOOL(*options, image.zoom_to_fit_allow_expand);
328         WRITE_UINT(*options, image.zoom_quality);
329         WRITE_INT(*options, image.zoom_increment);
330         WRITE_BOOL(*options, image.fit_window_to_image);
331         WRITE_BOOL(*options, image.limit_window_size);
332         WRITE_INT(*options, image.max_window_size);
333         WRITE_BOOL(*options, image.limit_autofit_size);
334         WRITE_INT(*options, image.max_autofit_size);
335         WRITE_UINT(*options, image.scroll_reset_method);
336         WRITE_INT(*options, image.tile_cache_max);
337         WRITE_INT(*options, image.image_cache_max);
338         WRITE_UINT(*options, image.dither_quality);
339         WRITE_BOOL(*options, image.enable_read_ahead);
340         WRITE_BOOL(*options, image.exif_rotate_enable);
341         WRITE_BOOL(*options, image.use_custom_border_color);
342         WRITE_COLOR(*options, image.border_color);
343         WRITE_INT(*options, image.read_buffer_size);
344         WRITE_INT(*options, image.idle_read_loop_count);
345
346 //      WRITE_SUBTITLE("Thumbnails Options");
347
348         WRITE_INT(*options, thumbnails.max_width);
349         WRITE_INT(*options, thumbnails.max_height);
350         WRITE_BOOL(*options, thumbnails.enable_caching);
351         WRITE_BOOL(*options, thumbnails.cache_into_dirs);
352         WRITE_BOOL(*options, thumbnails.fast);
353         WRITE_BOOL(*options, thumbnails.use_xvpics);
354         WRITE_BOOL(*options, thumbnails.spec_standard);
355         WRITE_UINT(*options, thumbnails.quality);
356         WRITE_BOOL(*options, thumbnails.use_exif);
357
358
359 //      WRITE_SUBTITLE("File sorting Options");
360
361         WRITE_INT(*options, file_sort.method);
362         WRITE_BOOL(*options, file_sort.ascending);
363         WRITE_BOOL(*options, file_sort.case_sensitive);
364
365
366 //      WRITE_SUBTITLE("Fullscreen Options");
367
368         WRITE_INT(*options, fullscreen.screen);
369         WRITE_BOOL(*options, fullscreen.clean_flip);
370         WRITE_BOOL(*options, fullscreen.disable_saver);
371         WRITE_BOOL(*options, fullscreen.above);
372
373         WRITE_SEPARATOR();
374
375 //      WRITE_SUBTITLE("Image Overlay Options");
376         WRITE_CHAR(*options, image_overlay.template_string);
377
378 //      g_string_append_printf(outstr, "# these are relative positions:\n");
379 //      g_string_append_printf(outstr, "# x >= 0: |x| pixels from left border\n");
380 //      g_string_append_printf(outstr, "# x < 0 : |x| pixels from right border\n");
381 //      g_string_append_printf(outstr, "# y >= 0: |y| pixels from top border\n");
382 //      g_string_append_printf(outstr, "# y < 0 : |y| pixels from bottom border\n");
383         WRITE_INT(*options, image_overlay.x);
384         WRITE_INT(*options, image_overlay.y);
385
386
387 //      WRITE_SUBTITLE("Slideshow Options");
388
389         WRITE_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION);
390         WRITE_BOOL(*options, slideshow.random);
391         WRITE_BOOL(*options, slideshow.repeat);
392
393
394 //      WRITE_SUBTITLE("Collection Options");
395
396         WRITE_BOOL(*options, collections.rectangular_selection);
397
398
399 //      WRITE_SUBTITLE("Filtering Options");
400
401         WRITE_BOOL(*options, file_filter.show_hidden_files);
402         WRITE_BOOL(*options, file_filter.show_dot_directory);
403         WRITE_BOOL(*options, file_filter.disable);
404         WRITE_SEPARATOR();
405
406
407 //      WRITE_SUBTITLE("Sidecars Options");
408
409         WRITE_CHAR(*options, sidecar.ext);
410
411
412
413 //      WRITE_SUBTITLE("Shell command");
414         WRITE_CHAR(*options, shell.path);
415         WRITE_CHAR(*options, shell.options);
416
417
418 //      WRITE_SUBTITLE("Helpers");
419 //      g_string_append_printf(outstr, "# Html browser\n");
420 //      g_string_append_printf(outstr, "# command_name is: the binary's name to look for in the path\n");
421 //      g_string_append_printf(outstr, "# If command_name is empty, the program will try various common html browsers\n");
422 //      g_string_append_printf(outstr, "# command_line is:\n");
423 //      g_string_append_printf(outstr, "# \"\" (empty string)  = execute binary with html file path as command line\n");
424 //      g_string_append_printf(outstr, "# \"string\"           = execute string and use results for command line\n");
425 //      g_string_append_printf(outstr, "# \"!string\"          = use text following ! as command line, replacing optional %%s with html file path\n");
426         WRITE_CHAR(*options, helpers.html_browser.command_name);
427         WRITE_CHAR(*options, helpers.html_browser.command_line);
428
429 /* FIXME:
430         WRITE_SUBTITLE("Exif Options");
431         g_string_append_printf(outstr, "# Display: 0: never\n"
432                             "#          1: if set\n"
433                             "#          2: always\n\n");
434         for (i = 0; ExifUIList[i].key; i++)
435                 {
436                 g_string_append_printf(outstr, "exif.display.");
437                 write_int_option(outstr, 2, (gchar *)ExifUIList[i].key, ExifUIList[i].current);
438                 }
439 */
440
441 //      WRITE_SUBTITLE("Metadata Options");
442         WRITE_BOOL(*options, metadata.enable_metadata_dirs);
443         WRITE_BOOL(*options, metadata.save_in_image_file); 
444         WRITE_BOOL(*options, metadata.save_legacy_IPTC);
445         WRITE_BOOL(*options, metadata.warn_on_write_problems);
446         WRITE_BOOL(*options, metadata.save_legacy_format);
447         WRITE_BOOL(*options, metadata.sync_grouped_files);
448         WRITE_BOOL(*options, metadata.confirm_write);
449         WRITE_INT(*options, metadata.confirm_timeout);
450         WRITE_BOOL(*options, metadata.confirm_after_timeout);
451         WRITE_BOOL(*options, metadata.confirm_on_image_change);
452         WRITE_BOOL(*options, metadata.confirm_on_dir_change);
453
454 }
455
456 static void write_color_profile(GString *outstr, gint indent)
457 {
458         gint i;
459 #ifndef HAVE_LCMS
460         g_string_append_printf(outstr, "<!-- NOTICE: %s was not built with support for color profiles,\n"
461                             "         color profile options will have no effect.\n-->\n", GQ_APPNAME);
462 #endif
463
464         WRITE_STRING("<color_profiles\n");
465         indent++;
466         WRITE_INT(options->color_profile, screen_type);
467         WRITE_CHAR(options->color_profile, screen_file);
468         WRITE_BOOL(options->color_profile, enabled);
469         WRITE_BOOL(options->color_profile, use_image);
470         WRITE_INT(options->color_profile, input_type);
471         indent--;
472         WRITE_STRING(">\n");
473
474         indent++;
475         for (i = 0; i < COLOR_PROFILE_INPUTS; i++)
476                 {
477                 WRITE_STRING("<profile\n");
478                 indent++;
479                 write_char_option(outstr, indent, "input_file", options->color_profile.input_file[i]);
480                 write_char_option(outstr, indent, "input_name", options->color_profile.input_name[i]);
481                 indent--;
482                 WRITE_STRING("/>\n");
483                 }
484         indent--;
485         WRITE_STRING("</color_profiles>\n");
486 }
487
488
489 /*
490  *-----------------------------------------------------------------------------
491  * save configuration (public)
492  *-----------------------------------------------------------------------------
493  */
494
495 gboolean save_options_to(const gchar *utf8_path, ConfOptions *options)
496 {
497         SecureSaveInfo *ssi;
498         gchar *rc_pathl;
499         GString *outstr;
500         gint indent = 0;
501         GList *work;
502         
503         rc_pathl = path_from_utf8(utf8_path);
504         ssi = secure_open(rc_pathl);
505         g_free(rc_pathl);
506         if (!ssi)
507                 {
508                 log_printf(_("error saving config file: %s\n"), utf8_path);
509                 return FALSE;
510                 }
511
512         outstr = g_string_new("");
513         g_string_append_printf(outstr, "<!--\n");
514         g_string_append_printf(outstr, "######################################################################\n");
515         g_string_append_printf(outstr, "# %30s config file      version %-10s #\n", GQ_APPNAME, VERSION);
516         g_string_append_printf(outstr, "######################################################################\n");
517         WRITE_SEPARATOR();
518
519         WRITE_STRING("# Note: This file is autogenerated. Options can be changed here,\n");
520         WRITE_STRING("#       but user comments and formatting will be lost.\n");
521         WRITE_SEPARATOR();
522         WRITE_STRING("-->\n");
523         WRITE_SEPARATOR();
524         WRITE_STRING("<global\n");
525         write_global_attributes(outstr, indent + 1);
526         WRITE_STRING(">\n");
527
528         indent++;
529
530         write_color_profile(outstr, indent);
531
532         WRITE_SEPARATOR();
533         filter_write_list(outstr, indent);
534
535         WRITE_SEPARATOR();
536         WRITE_SUBTITLE("Layout Options - defaults");
537         WRITE_STRING("<layout\n");
538         layout_write_attributes(&options->layout, outstr, indent + 1);
539         WRITE_STRING("/>\n");
540
541         indent--;
542         WRITE_STRING("</global>\n");
543
544         WRITE_SEPARATOR();
545         WRITE_SUBTITLE("Layout Options");
546
547         work = layout_window_list;
548         while (work)
549                 {
550                 LayoutWindow *lw = work->data;
551                 layout_write_config(lw, outstr, indent);
552                 work = work->next;
553
554                 }
555
556
557
558         secure_fputs(ssi, outstr->str);
559         g_string_free(outstr, TRUE);
560
561         if (secure_close(ssi))
562                 {
563                 log_printf(_("error saving config file: %s\nerror: %s\n"), utf8_path,
564                            secsave_strerror(secsave_errno));
565                 return FALSE;
566                 }
567
568         return TRUE;
569 }
570
571 /*
572  *-----------------------------------------------------------------------------
573  * loading attributes for elements (private)
574  *-----------------------------------------------------------------------------
575  */
576
577
578 static gboolean load_global_params(const gchar **attribute_names, const gchar **attribute_values)
579 {
580         while (*attribute_names)
581                 {
582                 const gchar *option = *attribute_names++;
583                 const gchar *value = *attribute_values++;
584
585
586                 /* general options */
587                 if (READ_BOOL(*options, show_icon_names)) continue;
588                 if (READ_BOOL(*options, show_copy_path)) continue;
589
590                 if (READ_BOOL(*options, tree_descend_subdirs)) continue;
591                 if (READ_BOOL(*options, lazy_image_sync)) continue;
592                 if (READ_BOOL(*options, update_on_time_change)) continue;
593
594                 if (READ_UINT_CLAMP(*options, duplicates_similarity_threshold, 0, 100)) continue;
595
596                 if (READ_BOOL(*options, progressive_key_scrolling)) continue;
597
598                 if (READ_BOOL(*options, mousewheel_scrolls)) continue;
599
600                 if (READ_INT(*options, open_recent_list_maxsize)) continue;
601                 if (READ_INT(*options, dnd_icon_size)) continue;
602                 if (READ_BOOL(*options, place_dialogs_under_mouse)) continue;
603
604                 /* startup options */
605                 
606                 if (READ_BOOL(*options, startup.restore_path)) continue;
607
608                 if (READ_BOOL(*options, startup.use_last_path)) continue;
609
610                 if (READ_CHAR(*options, startup.path)) continue;
611         
612
613                 /* properties dialog options */
614                 if (READ_CHAR(*options, properties.tabs_order)) continue;
615
616                 /* image options */
617                 if (READ_UINT_CLAMP(*options, image.zoom_mode, 0, ZOOM_RESET_NONE)) continue;
618                 if (READ_BOOL(*options, image.zoom_2pass)) continue;
619                 if (READ_BOOL(*options, image.zoom_to_fit_allow_expand)) continue;
620                 if (READ_BOOL(*options, image.fit_window_to_image)) continue;
621                 if (READ_BOOL(*options, image.limit_window_size)) continue;
622                 if (READ_INT(*options, image.max_window_size)) continue;
623                 if (READ_BOOL(*options, image.limit_autofit_size)) continue;
624                 if (READ_INT(*options, image.max_autofit_size)) continue;
625                 if (READ_UINT_CLAMP(*options, image.scroll_reset_method, 0, PR_SCROLL_RESET_COUNT - 1)) continue;
626                 if (READ_INT(*options, image.tile_cache_max)) continue;
627                 if (READ_INT(*options, image.image_cache_max)) continue;
628                 if (READ_UINT_CLAMP(*options, image.zoom_quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue;
629                 if (READ_UINT_CLAMP(*options, image.dither_quality, GDK_RGB_DITHER_NONE, GDK_RGB_DITHER_MAX)) continue;
630                 if (READ_INT(*options, image.zoom_increment)) continue;
631                 if (READ_BOOL(*options, image.enable_read_ahead)) continue;
632                 if (READ_BOOL(*options, image.exif_rotate_enable)) continue;
633                 if (READ_BOOL(*options, image.use_custom_border_color)) continue;
634                 if (READ_COLOR(*options, image.border_color)) continue;
635                 if (READ_INT_CLAMP(*options, image.read_buffer_size, IMAGE_LOADER_READ_BUFFER_SIZE_MIN, IMAGE_LOADER_READ_BUFFER_SIZE_MAX)) continue;
636                 if (READ_INT_CLAMP(*options, image.idle_read_loop_count, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MIN, IMAGE_LOADER_IDLE_READ_LOOP_COUNT_MAX)) continue;
637
638
639                 /* thumbnails options */
640                 if (READ_INT_CLAMP(*options, thumbnails.max_width, 16, 512)) continue;
641                 if (READ_INT_CLAMP(*options, thumbnails.max_height, 16, 512)) continue;
642
643                 if (READ_BOOL(*options, thumbnails.enable_caching)) continue;
644                 if (READ_BOOL(*options, thumbnails.cache_into_dirs)) continue;
645                 if (READ_BOOL(*options, thumbnails.fast)) continue;
646                 if (READ_BOOL(*options, thumbnails.use_xvpics)) continue;
647                 if (READ_BOOL(*options, thumbnails.spec_standard)) continue;
648                 if (READ_UINT_CLAMP(*options, thumbnails.quality, GDK_INTERP_NEAREST, GDK_INTERP_HYPER)) continue;
649                 if (READ_BOOL(*options, thumbnails.use_exif)) continue;
650
651                 /* file sorting options */
652                 if (READ_UINT(*options, file_sort.method)) continue;
653                 if (READ_BOOL(*options, file_sort.ascending)) continue;
654                 if (READ_BOOL(*options, file_sort.case_sensitive)) continue;
655
656                 /* file operations *options */
657                 if (READ_BOOL(*options, file_ops.enable_in_place_rename)) continue;
658                 if (READ_BOOL(*options, file_ops.confirm_delete)) continue;
659                 if (READ_BOOL(*options, file_ops.enable_delete_key)) continue;
660                 if (READ_BOOL(*options, file_ops.safe_delete_enable)) continue;
661                 if (READ_CHAR(*options, file_ops.safe_delete_path)) continue;
662                 if (READ_INT(*options, file_ops.safe_delete_folder_maxsize)) continue;
663
664                 /* fullscreen options */
665                 if (READ_INT(*options, fullscreen.screen)) continue;
666                 if (READ_BOOL(*options, fullscreen.clean_flip)) continue;
667                 if (READ_BOOL(*options, fullscreen.disable_saver)) continue;
668                 if (READ_BOOL(*options, fullscreen.above)) continue;
669
670                 /* image overlay */
671                 if (READ_CHAR(*options, image_overlay.template_string)) continue;
672                 if (READ_INT(*options, image_overlay.x)) continue;
673                 if (READ_INT(*options, image_overlay.y)) continue;
674
675
676                 /* slideshow options */
677                 if (READ_INT_UNIT(*options, slideshow.delay, SLIDESHOW_SUBSECOND_PRECISION)) continue;
678                 if (READ_BOOL(*options, slideshow.random)) continue;
679                 if (READ_BOOL(*options, slideshow.repeat)) continue;
680
681                 /* collection options */
682
683                 if (READ_BOOL(*options, collections.rectangular_selection)) continue;
684
685                 /* filtering options */
686
687                 if (READ_BOOL(*options, file_filter.show_hidden_files)) continue;
688                 if (READ_BOOL(*options, file_filter.show_dot_directory)) continue;
689                 if (READ_BOOL(*options, file_filter.disable)) continue;
690                 if (READ_CHAR(*options, sidecar.ext)) continue;
691
692                 /* Color Profiles */
693
694                 /* Shell command */
695                 if (READ_CHAR(*options, shell.path)) continue;
696                 if (READ_CHAR(*options, shell.options)) continue;
697
698                 /* Helpers */
699                 if (READ_CHAR(*options, helpers.html_browser.command_name)) continue;
700                 if (READ_CHAR(*options, helpers.html_browser.command_line)) continue;
701                 /* Exif */
702 /*
703                 if (0 == g_ascii_strncasecmp(option, "exif.display.", 13))
704                         {
705                         for (i = 0; ExifUIList[i].key; i++)
706                                 if (0 == g_ascii_strcasecmp(option + 13, ExifUIList[i].key))
707                                         ExifUIList[i].current = strtol(value, NULL, 10);
708                         continue;
709                         }
710 */
711                 /* metadata */          
712                 if (READ_BOOL(*options, metadata.enable_metadata_dirs)) continue;
713                 if (READ_BOOL(*options, metadata.save_in_image_file)) continue;
714                 if (READ_BOOL(*options, metadata.save_legacy_IPTC)) continue;
715                 if (READ_BOOL(*options, metadata.warn_on_write_problems)) continue;
716                 if (READ_BOOL(*options, metadata.save_legacy_format)) continue;
717                 if (READ_BOOL(*options, metadata.sync_grouped_files)) continue;
718                 if (READ_BOOL(*options, metadata.confirm_write)) continue;
719                 if (READ_BOOL(*options, metadata.confirm_after_timeout)) continue;
720                 if (READ_INT(*options, metadata.confirm_timeout)) continue;
721                 if (READ_BOOL(*options, metadata.confirm_on_image_change)) continue;
722                 if (READ_BOOL(*options, metadata.confirm_on_dir_change)) continue;
723
724                 DEBUG_1("unknown attribute %s = %s", option, value);
725                 }
726
727         return TRUE;
728 }
729
730 static void options_load_color_profiles(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
731 {
732         while (*attribute_names)
733                 {
734                 const gchar *option = *attribute_names++;
735                 const gchar *value = *attribute_values++;
736
737
738                 if (READ_BOOL(options->color_profile, enabled)) continue;
739                 if (READ_BOOL(options->color_profile, use_image)) continue;
740                 if (READ_INT(options->color_profile, input_type)) continue;
741                 if (READ_INT(options->color_profile, screen_type)) continue;
742                 if (READ_CHAR(options->color_profile, screen_file)) continue;
743
744                 DEBUG_1("unknown attribute %s = %s", option, value);
745                 }
746
747 }
748
749 static void options_load_profile(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
750 {
751         gint i = GPOINTER_TO_INT(data);
752         if (i < 0 || i >= COLOR_PROFILE_INPUTS) return;
753         while (*attribute_names)
754                 {
755                 const gchar *option = *attribute_names++;
756                 const gchar *value = *attribute_values++;
757
758                 if (READ_CHAR_FULL("input_file", options->color_profile.input_file[i])) continue;
759                 if (READ_CHAR_FULL("input_name", options->color_profile.input_name[i])) continue;
760                 
761
762                 DEBUG_1("unknown attribute %s = %s", option, value);
763                 }
764         i++;
765         options_parse_func_set_data(parser_data, GINT_TO_POINTER(i));
766
767 }
768
769
770
771 /*
772  *-----------------------------------------------------------------------------
773  * xml file structure (private)
774  *-----------------------------------------------------------------------------
775  */
776 struct _GQParserData
777 {
778         GList *parse_func_stack;
779         gboolean startup; /* reading config for the first time - add commandline and call init_after_global_options() */
780         gboolean global_found;
781 };
782
783
784 void options_parse_leaf(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
785 {
786         DEBUG_1("unexpected: %s", element_name);
787         options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
788 }
789
790 static void options_parse_color_profiles(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
791 {
792         if (g_ascii_strcasecmp(element_name, "profile") == 0)
793                 {
794                 options_load_profile(parser_data, context, element_name, attribute_names, attribute_values, data, error);
795                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
796                 }
797         else
798                 {
799                 DEBUG_1("unexpected profile: %s", element_name);
800                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
801                 }
802 }
803
804 static void options_parse_filter(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
805 {
806         if (g_ascii_strcasecmp(element_name, "file_type") == 0)
807                 {
808                 filter_load_file_type(attribute_names, attribute_values);
809                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
810                 }
811         else
812                 {
813                 DEBUG_1("unexpected filter: %s", element_name);
814                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
815                 }
816 }
817
818 static void options_parse_filter_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error)
819 {
820         if (!parser_data->startup) filter_rebuild(); 
821         /* else this is called in init_after_global_options */
822 }
823
824 static void options_parse_global(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
825 {
826         if (g_ascii_strcasecmp(element_name, "color_profiles") == 0)
827                 {
828                 options_load_color_profiles(parser_data, context, element_name, attribute_names, attribute_values, data, error);
829                 options_parse_func_push(parser_data, options_parse_color_profiles, NULL, GINT_TO_POINTER(0));
830                 }
831         else if (g_ascii_strcasecmp(element_name, "filter") == 0)
832                 {
833                 options_parse_func_push(parser_data, options_parse_filter, options_parse_filter_end, NULL);
834                 }
835         else if (g_ascii_strcasecmp(element_name, "layout") == 0)
836                 {
837                 layout_load_attributes(&options->layout, attribute_names, attribute_values);
838                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
839                 }
840         else
841                 {
842                 DEBUG_1("unexpected global: %s", element_name);
843                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
844                 }
845 }
846
847 static void options_parse_pane_exif(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
848 {
849         GtkWidget *pane = data;
850         if (g_ascii_strcasecmp(element_name, "entry") == 0)
851                 {
852                 bar_pane_exif_entry_add_from_config(pane, attribute_names, attribute_values);
853                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
854                 }
855         else
856                 {
857                 DEBUG_1("unexpected in <pane_exif>: <%s>", element_name);
858                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
859                 }
860 }
861
862 static void options_parse_bar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
863 {
864         GtkWidget *bar = data;
865         if (g_ascii_strcasecmp(element_name, "pane_comment") == 0)
866                 {
867                 GtkWidget *pane = bar_pane_comment_new_from_config(attribute_names, attribute_values);
868                 bar_add(bar, pane);
869                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
870                 }
871         else if (g_ascii_strcasecmp(element_name, "pane_exif") == 0)
872                 {
873                 GtkWidget *pane = bar_pane_exif_new_from_config(attribute_names, attribute_values);
874                 bar_add(bar, pane);
875                 options_parse_func_push(parser_data, options_parse_pane_exif, NULL, pane);
876                 }
877         else if (g_ascii_strcasecmp(element_name, "pane_histogram") == 0)
878                 {
879                 GtkWidget *pane = bar_pane_histogram_new_from_config(attribute_names, attribute_values);
880                 bar_add(bar, pane);
881                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
882                 }
883         else if (g_ascii_strcasecmp(element_name, "pane_keywords") == 0)
884                 {
885                 GtkWidget *pane = bar_pane_keywords_new_from_config(attribute_names, attribute_values);
886                 bar_add(bar, pane);
887                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
888                 }
889         else
890                 {
891                 DEBUG_1("unexpected in <bar>: <%s>", element_name);
892                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
893                 }
894 }
895
896 static void options_parse_toolbar(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
897 {
898         LayoutWindow *lw = data;
899         if (g_ascii_strcasecmp(element_name, "toolitem") == 0)
900                 {
901                 layout_toolbar_add_from_config(lw, attribute_names, attribute_values);
902                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
903                 }
904         else
905                 {
906                 DEBUG_1("unexpected in <toolbar>: <%s>", element_name);
907                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
908                 }
909 }
910
911 static void options_parse_layout(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
912 {
913         LayoutWindow *lw = data;
914         if (g_ascii_strcasecmp(element_name, "bar") == 0)
915                 {
916                 GtkWidget *bar = bar_new_from_config(lw->utility_box, attribute_names, attribute_values);
917                 layout_bar_set(lw, bar);
918                 options_parse_func_push(parser_data, options_parse_bar, NULL, lw->bar);
919                 }
920         else if (g_ascii_strcasecmp(element_name, "bar_sort") == 0)
921                 {
922                 GtkWidget *bar = bar_sort_new_from_config(lw, attribute_names, attribute_values);
923                 layout_bar_sort_set(lw, bar);
924                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
925                 }
926         else if (g_ascii_strcasecmp(element_name, "toolbar") == 0)
927                 {
928                 layout_toolbar_clear(lw);
929                 options_parse_func_push(parser_data, options_parse_toolbar, NULL, lw);
930                 }
931         else
932                 {
933                 DEBUG_1("unexpected in <layout>: <%s>", element_name);
934                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
935                 }
936 }
937
938 static void options_parse_layout_end(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, gpointer data, GError **error)
939 {
940         LayoutWindow *lw = data;
941         layout_util_sync(lw);
942 }
943
944 static void options_parse_toplevel(GQParserData *parser_data, GMarkupParseContext *context, const gchar *element_name, const gchar **attribute_names, const gchar **attribute_values, gpointer data, GError **error)
945 {
946         if (g_ascii_strcasecmp(element_name, "global") == 0)
947                 {
948                 load_global_params(attribute_names, attribute_values);
949                 options_parse_func_push(parser_data, options_parse_global, NULL, NULL);
950                 return;
951                 }
952         
953         if (parser_data->startup && !parser_data->global_found)
954                 {
955                 DEBUG_1(" global end");
956                 parser_data->global_found = TRUE;
957                 init_after_global_options();
958                 }
959         
960         if (g_ascii_strcasecmp(element_name, "layout") == 0)
961                 {
962                 LayoutWindow *lw;
963                 lw = layout_new_from_config(attribute_names, attribute_values, parser_data->startup);
964                 options_parse_func_push(parser_data, options_parse_layout, options_parse_layout_end, lw);
965                 }
966         else
967                 {
968                 DEBUG_1("unexpected in <toplevel>: <%s>", element_name);
969                 options_parse_func_push(parser_data, options_parse_leaf, NULL, NULL);
970                 }
971 }
972
973
974
975
976
977 /*
978  *-----------------------------------------------------------------------------
979  * parser
980  *-----------------------------------------------------------------------------
981  */
982
983
984 struct _GQParserFuncData
985 {
986         GQParserStartFunc start_func;
987         GQParserEndFunc end_func;
988 //      GQParserTextFunc text_func;
989         gpointer data;
990 };
991
992 void options_parse_func_push(GQParserData *parser_data, GQParserStartFunc start_func, GQParserEndFunc end_func, gpointer data)
993 {
994         GQParserFuncData *func_data = g_new0(GQParserFuncData, 1);
995         func_data->start_func = start_func;
996         func_data->end_func = end_func;
997         func_data->data = data;
998         
999         parser_data->parse_func_stack = g_list_prepend(parser_data->parse_func_stack, func_data);
1000 }
1001
1002 void options_parse_func_pop(GQParserData *parser_data)
1003 {
1004         g_free(parser_data->parse_func_stack->data);
1005         parser_data->parse_func_stack = g_list_delete_link(parser_data->parse_func_stack, parser_data->parse_func_stack);
1006 }
1007
1008 void options_parse_func_set_data(GQParserData *parser_data, gpointer data)
1009 {
1010         GQParserFuncData *func = parser_data->parse_func_stack->data;
1011         func->data = data;
1012 }
1013
1014
1015 static void start_element(GMarkupParseContext *context,
1016                           const gchar *element_name,
1017                           const gchar **attribute_names,
1018                           const gchar **attribute_values,
1019                           gpointer user_data,
1020                           GError **error) 
1021 {
1022         GQParserData *parser_data = user_data;
1023         GQParserFuncData *func = parser_data->parse_func_stack->data; 
1024         DEBUG_1("start %s", element_name);
1025         
1026         if (func->start_func)
1027                 func->start_func(parser_data, context, element_name, attribute_names, attribute_values, func->data, error);
1028 }
1029
1030 static void end_element(GMarkupParseContext *context,
1031                           const gchar *element_name,
1032                           gpointer user_data,
1033                           GError **error) 
1034 {
1035         GQParserData *parser_data = user_data;
1036         GQParserFuncData *func = parser_data->parse_func_stack->data; 
1037         DEBUG_1("end %s", element_name);
1038
1039         if (func->end_func)
1040                 func->end_func(parser_data, context, element_name, func->data, error);
1041
1042         options_parse_func_pop(parser_data);
1043 }
1044
1045 static GMarkupParser parser = {
1046         start_element,
1047         end_element,
1048         NULL,
1049         NULL,
1050         NULL
1051 };
1052
1053 /*
1054  *-----------------------------------------------------------------------------
1055  * load configuration (public)
1056  *-----------------------------------------------------------------------------
1057  */
1058
1059 gboolean load_options_from(const gchar *utf8_path, ConfOptions *options, gboolean startup)
1060 {
1061         gsize size;
1062         gchar *buf;
1063         GMarkupParseContext *context;
1064         gboolean ret = TRUE;
1065         GQParserData *parser_data;
1066
1067         if (g_file_get_contents(utf8_path, &buf, &size, NULL) == FALSE) 
1068                 {
1069                 return FALSE;
1070                 }
1071         
1072         parser_data = g_new0(GQParserData, 1);
1073         
1074         parser_data->startup = startup;
1075         options_parse_func_push(parser_data, options_parse_toplevel, NULL, NULL);
1076         
1077         context = g_markup_parse_context_new(&parser, 0, parser_data, NULL);
1078
1079         if (g_markup_parse_context_parse(context, buf, size, NULL) == FALSE)
1080                 {
1081                 ret = FALSE;
1082                 DEBUG_1("Parse failed");
1083                 }
1084                 
1085         g_free(parser_data);
1086
1087         g_free(buf);
1088         g_markup_parse_context_free(context);
1089         return ret;
1090 }
1091         
1092
1093
1094 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */