2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2015 Hiroyuki Yamamoto and the Claws Mail team
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "claws-features.h"
28 #include <glib/gi18n.h>
38 #include "prefs_gtk.h"
39 #include "prefs_common.h"
44 #include "file-utils.h"
46 #define CL(x) (((gulong) (x) >> (gulong) 8) & 0xFFUL)
47 #define RGB_FROM_GDK_COLOR(c) \
48 ((CL(c.red) << (gulong) 16) | \
49 (CL(c.green) << (gulong) 8) | \
52 /* Kept for backwards compatibility */
53 #define INTCOLOR_TO_GDKRGBA(intcolor, rgba) \
54 rgba.red = (gdouble)(((intcolor >> 16UL) & 0xFFUL) << 8UL) / 65535; \
55 rgba.green = (gdouble)(((intcolor >> 8UL) & 0xFFUL) << 8UL) / 65535; \
56 rgba.blue = (gdouble)(((intcolor ) & 0xFFUL) << 8UL) / 65535; \
65 static GHashTable
*whole_cache
= NULL
;
67 static gboolean
prefs_read_config_from_cache(PrefParam
*param
, const gchar
*label
,
70 static void prefs_config_parse_one_line(PrefParam
*param
,
73 void prefs_read_config(PrefParam
*param
, const gchar
*label
,
74 const gchar
*rcfile
, const gchar
*encoding
)
77 gchar buf
[PREFSBUFSIZE
];
80 cm_return_if_fail(param
!= NULL
);
81 cm_return_if_fail(label
!= NULL
);
82 cm_return_if_fail(rcfile
!= NULL
);
85 g_warning("encoding is ignored");
87 debug_print("Reading configuration...\n");
89 prefs_set_default(param
);
91 if (whole_cache
!= NULL
) {
92 if (prefs_read_config_from_cache(param
, label
, rcfile
) == TRUE
)
96 if ((fp
= claws_fopen(rcfile
, "rb")) == NULL
) {
97 if (ENOENT
!= errno
) FILE_OP_ERROR(rcfile
, "claws_fopen");
101 block_label
= g_strdup_printf("[%s]", label
);
103 /* search aiming block */
104 while (claws_fgets(buf
, sizeof(buf
), fp
) != NULL
) {
110 conv_str
= conv_codeset_strdup
111 (buf
, encoding
, CS_INTERNAL
);
113 conv_str
= g_strdup(buf
);
115 (conv_str
, block_label
, strlen(block_label
));
118 val
= strncmp(buf
, block_label
, strlen(block_label
));
120 debug_print("Found %s\n", block_label
);
126 while (claws_fgets(buf
, sizeof(buf
), fp
) != NULL
) {
128 /* reached next block */
129 if (buf
[0] == '[') break;
130 if (buf
[0] == '#') continue;
135 conv_str
= conv_codeset_strdup
136 (buf
, encoding
, CS_INTERNAL
);
138 conv_str
= g_strdup(buf
);
139 prefs_config_parse_one_line(param
, conv_str
);
142 prefs_config_parse_one_line(param
, buf
);
145 debug_print("Finished reading configuration.\n");
149 static void prefs_config_parse_one_line(PrefParam
*param
, const gchar
*buf
)
156 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
157 name_len
= strlen(param
[i
].name
);
158 if (g_ascii_strncasecmp(buf
, param
[i
].name
, name_len
))
160 if (buf
[name_len
] != '=')
162 value
= buf
+ name_len
+ 1;
163 /* debug_print("%s = %s\n", param[i].name, value); */
165 switch (param
[i
].type
) {
172 if (g_utf8_validate(value
, -1, NULL
))
173 tmp
= g_strdup(value
);
175 tmp
= conv_codeset_strdup(value
,
176 conv_get_locale_charset_str_no_utf8(),
183 g_warning("failed to convert character set");
184 tmp
= g_strdup(value
);
186 g_free(*((gchar
**)param
[i
].data
));
187 *((gchar
**)param
[i
].data
) = tmp
;
191 *((gint
*)param
[i
].data
) =
195 *((gboolean
*)param
[i
].data
) =
196 (*value
== '0' || *value
== '\0')
200 *((DummyEnum
*)param
[i
].data
) =
201 (DummyEnum
)atoi(value
);
204 *((gushort
*)param
[i
].data
) =
205 (gushort
)atoi(value
);
208 if (!gdk_rgba_parse(&color
, value
)) {
209 /* be compatible and accept ints */
210 INTCOLOR_TO_GDKRGBA(strtoul(value
, 0, 10), color
);
212 *((GdkRGBA
*)param
[i
].data
) = color
;
223 g_warning("failed to write configuration to file"); \
224 if (orig_fp) claws_fclose(orig_fp); \
225 prefs_file_close_revert(pfile); \
227 g_free(block_label); \
231 void prefs_write_config(PrefParam *param, const gchar *label,
237 gchar buf
[PREFSBUFSIZE
];
238 gchar
*block_label
= NULL
;
239 gboolean block_matched
= FALSE
;
241 cm_return_if_fail(param
!= NULL
);
242 cm_return_if_fail(label
!= NULL
);
243 cm_return_if_fail(rcfile
!= NULL
);
245 rcpath
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, rcfile
, NULL
);
246 if ((orig_fp
= claws_fopen(rcpath
, "rb")) == NULL
) {
247 if (ENOENT
!= errno
) FILE_OP_ERROR(rcpath
, "claws_fopen");
250 if ((pfile
= prefs_write_open(rcpath
)) == NULL
) {
251 g_warning("failed to write configuration to file");
252 if (orig_fp
) claws_fclose(orig_fp
);
257 block_label
= g_strdup_printf("[%s]", label
);
259 /* search aiming block */
261 while (claws_fgets(buf
, sizeof(buf
), orig_fp
) != NULL
) {
264 val
= strncmp(buf
, block_label
, strlen(block_label
));
266 debug_print("Found %s\n", block_label
);
267 block_matched
= TRUE
;
270 TRY(claws_fputs(buf
, pfile
->fp
) != EOF
);
274 TRY(fprintf(pfile
->fp
, "%s\n", block_label
) > 0);
276 /* write all param data to file */
277 TRY(prefs_write_param(param
, pfile
->fp
) == 0);
280 gboolean in_dup_block
= FALSE
;
281 while (claws_fgets(buf
, sizeof(buf
), orig_fp
) != NULL
) {
284 TRY(claws_fputc('\n', pfile
->fp
) != EOF
&&
285 claws_fputs(buf
, pfile
->fp
) != EOF
);
289 while (claws_fgets(buf
, sizeof(buf
), orig_fp
) != NULL
) {
291 if (!strncmp(buf
, block_label
,
292 strlen(block_label
)))
295 in_dup_block
= FALSE
;
298 TRY(claws_fputs(buf
, pfile
->fp
) != EOF
);
305 if (orig_fp
) claws_fclose(orig_fp
);
306 if (prefs_file_close(pfile
) < 0)
307 g_warning("failed to write configuration to file");
310 debug_print("Configuration is saved.\n");
313 gint
prefs_write_param(PrefParam
*param
, FILE *fp
)
316 gchar buf
[PREFSBUFSIZE
] = "";
319 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
320 switch (param
[i
].type
) {
325 if (*((gchar
**)param
[i
].data
)) {
326 if (g_utf8_validate(*((gchar
**)param
[i
].data
), -1, NULL
))
327 tmp
= g_strdup(*((gchar
**)param
[i
].data
));
329 tmp
= conv_codeset_strdup(*((gchar
**)param
[i
].data
),
330 conv_get_locale_charset_str_no_utf8(),
333 tmp
= g_strdup(*((gchar
**)param
[i
].data
));
337 g_snprintf(buf
, sizeof(buf
), "%s=%s\n", param
[i
].name
,
344 buf
[0] = '\0'; /* Passwords are written to password store. */
347 g_snprintf(buf
, sizeof(buf
), "%s=%d\n", param
[i
].name
,
348 *((gint
*)param
[i
].data
));
351 g_snprintf(buf
, sizeof(buf
), "%s=%d\n", param
[i
].name
,
352 *((gboolean
*)param
[i
].data
));
355 g_snprintf(buf
, sizeof(buf
), "%s=%d\n", param
[i
].name
,
356 *((DummyEnum
*)param
[i
].data
));
359 g_snprintf(buf
, sizeof(buf
), "%s=%d\n", param
[i
].name
,
360 *((gushort
*)param
[i
].data
));
363 tmp
= gtkut_gdk_rgba_to_string((GdkRGBA
*)param
[i
].data
);
364 g_snprintf(buf
, sizeof buf
, "%s=%s\n", param
[i
].name
, tmp
);
368 /* unrecognized, fail */
369 debug_print("Unrecognized parameter type\n");
373 if (buf
[0] != '\0') {
374 if (claws_fputs(buf
, fp
) == EOF
) {
375 perror("claws_fputs");
384 void prefs_set_default(PrefParam
*param
)
389 cm_return_if_fail(param
!= NULL
);
391 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
392 if (!param
[i
].data
) continue;
394 switch (param
[i
].type
) {
396 g_free(*((gchar
**)param
[i
].data
));
397 if (param
[i
].defval
!= NULL
) {
398 if (!strncasecmp(param
[i
].defval
, "ENV_", 4)) {
402 envstr
= g_getenv(param
[i
].defval
+ 4);
403 tmp
= envstr
&& *envstr
?
404 conv_codeset_strdup(envstr
,
405 conv_get_locale_charset_str(),
409 g_warning("failed to convert character set");
410 tmp
= g_strdup(envstr
);
412 *((gchar
**)param
[i
].data
) = tmp
;
413 } else if (param
[i
].defval
[0] == '~')
414 *((gchar
**)param
[i
].data
) =
415 g_strconcat(get_home_dir(),
419 *((gchar
**)param
[i
].data
) =
420 g_strdup(param
[i
].defval
);
422 *((gchar
**)param
[i
].data
) = NULL
;
425 g_free(*((gchar
**)param
[i
].data
));
426 if (param
[i
].defval
!= NULL
) {
427 if (param
[i
].defval
[0] != '\0')
428 *((gchar
**)param
[i
].data
) =
429 g_strdup(param
[i
].defval
);
431 *((gchar
**)param
[i
].data
) = NULL
;
433 *((gchar
**)param
[i
].data
) = NULL
;
436 if (param
[i
].defval
!= NULL
)
437 *((gint
*)param
[i
].data
) =
438 (gint
)atoi(param
[i
].defval
);
439 else if (!strcmp(param
[i
].name
, "config_version"))
440 *((gint
*)param
[i
].data
) = CLAWS_CONFIG_VERSION
;
442 *((gint
*)param
[i
].data
) = 0;
445 if (param
[i
].defval
!= NULL
) {
446 if (!g_ascii_strcasecmp(param
[i
].defval
, "TRUE"))
447 *((gboolean
*)param
[i
].data
) = TRUE
;
449 *((gboolean
*)param
[i
].data
) = atoi(param
[i
].defval
) ? TRUE
: FALSE
;
451 *((gboolean
*)param
[i
].data
) = FALSE
;
454 if (param
[i
].defval
!= NULL
)
455 *((DummyEnum
*)param
[i
].data
) =
456 (DummyEnum
)atoi(param
[i
].defval
);
458 *((DummyEnum
*)param
[i
].data
) = 0;
461 if (param
[i
].defval
!= NULL
)
462 *((gushort
*)param
[i
].data
) = (gushort
)atoi(param
[i
].defval
);
464 *((gushort
*)param
[i
].data
) = 0;
467 if (param
[i
].defval
!= NULL
&& gdk_rgba_parse(&color
, param
[i
].defval
)) {
469 *((GdkRGBA
*)param
[i
].data
) = color
;
470 } else if (param
[i
].defval
) {
471 /* be compatible and accept ints */
472 INTCOLOR_TO_GDKRGBA(strtoul(param
[i
].defval
, 0, 10), color
);
473 *((GdkRGBA
*)param
[i
].data
) = color
;
475 /* set to black as fallback */
476 color
.red
= color
.green
= color
.blue
= 0;
478 *((GdkRGBA
*)param
[i
].data
) = color
;
487 void prefs_free(PrefParam
*param
)
491 cm_return_if_fail(param
!= NULL
);
493 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
494 if (!param
[i
].data
) continue;
496 switch (param
[i
].type
) {
499 g_free(*((gchar
**)param
[i
].data
));
507 void prefs_button_toggled(GtkToggleButton
*toggle_btn
, GtkWidget
*widget
)
511 is_active
= gtk_toggle_button_get_active(toggle_btn
);
512 gtk_widget_set_sensitive(widget
, is_active
);
515 void prefs_button_toggled_reverse(GtkToggleButton
*toggle_btn
, GtkWidget
*widget
)
519 is_active
= gtk_toggle_button_get_active(toggle_btn
);
520 gtk_widget_set_sensitive(widget
, !is_active
);
523 void prefs_set_dialog(PrefParam
*param
)
527 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
528 if (param
[i
].widget_set_func
)
529 param
[i
].widget_set_func(¶m
[i
]);
533 void prefs_set_data_from_dialog(PrefParam
*param
)
537 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
538 if (param
[i
].data_set_func
)
539 param
[i
].data_set_func(¶m
[i
]);
543 void prefs_set_dialog_to_default(PrefParam
*param
)
547 gchar
*str_data
= NULL
;
553 for (i
= 0; param
[i
].name
!= NULL
; i
++) {
554 if (!param
[i
].widget_set_func
) continue;
558 switch (tmpparam
.type
) {
560 if (tmpparam
.defval
) {
561 if (!g_ascii_strncasecmp(tmpparam
.defval
, "ENV_", 4)) {
562 str_data
= g_strdup(g_getenv(param
[i
].defval
+ 4));
563 tmpparam
.data
= &str_data
;
565 } else if (tmpparam
.defval
[0] == '~') {
567 g_strconcat(get_home_dir(),
570 tmpparam
.data
= &str_data
;
574 tmpparam
.data
= &tmpparam
.defval
;
577 tmpparam
.data
= &tmpparam
.defval
;
581 int_data
= atoi(tmpparam
.defval
);
584 tmpparam
.data
= &int_data
;
588 ushort_data
= atoi(tmpparam
.defval
);
591 tmpparam
.data
= &ushort_data
;
594 if (tmpparam
.defval
) {
595 if (!g_ascii_strcasecmp(tmpparam
.defval
, "TRUE"))
598 bool_data
= atoi(tmpparam
.defval
)
602 tmpparam
.data
= &bool_data
;
606 enum_data
= (DummyEnum
)atoi(tmpparam
.defval
);
609 tmpparam
.data
= &enum_data
;
615 tmpparam
.widget_set_func(&tmpparam
);
621 void prefs_set_data_from_entry(PrefParam
*pparam
)
624 const gchar
*entry_str
;
626 cm_return_if_fail(*pparam
->widget
!= NULL
);
628 entry_str
= gtk_entry_get_text(GTK_ENTRY(*pparam
->widget
));
630 switch (pparam
->type
) {
632 str
= (gchar
**)pparam
->data
;
634 *str
= entry_str
[0] ? g_strdup(entry_str
) : NULL
;
637 *((gushort
*)pparam
->data
) = atoi(entry_str
);
640 *((gint
*)pparam
->data
) = atoi(entry_str
);
643 g_warning("invalid PrefType for GtkEntry widget: %d",
648 void prefs_set_escaped_data_from_entry(PrefParam
*pparam
)
652 cm_return_if_fail(*pparam
->widget
!= NULL
);
654 switch (pparam
->type
) {
656 str
= (gchar
**)pparam
->data
;
658 *str
= pref_get_pref_from_entry(GTK_ENTRY(*pparam
->widget
));
661 g_warning("invalid escaped PrefType for GtkEntry widget: %d",
666 void prefs_set_entry(PrefParam
*pparam
)
669 cm_return_if_fail(*pparam
->widget
!= NULL
);
671 switch (pparam
->type
) {
673 str
= (gchar
**)pparam
->data
;
674 gtk_entry_set_text(GTK_ENTRY(*pparam
->widget
),
678 gtk_entry_set_text(GTK_ENTRY(*pparam
->widget
),
679 itos(*((gint
*)pparam
->data
)));
682 gtk_entry_set_text(GTK_ENTRY(*pparam
->widget
),
683 itos(*((gushort
*)pparam
->data
)));
686 g_warning("invalid PrefType for GtkEntry widget: %d",
691 void prefs_set_entry_from_escaped(PrefParam
*pparam
)
695 cm_return_if_fail(*pparam
->widget
!= NULL
);
697 switch (pparam
->type
) {
699 str
= (gchar
**)pparam
->data
;
700 pref_set_entry_from_pref(GTK_ENTRY(*pparam
->widget
),
704 g_warning("invalid escaped PrefType for GtkEntry widget: %d",
709 void prefs_set_data_from_text(PrefParam
*pparam
)
712 gchar
*text
= NULL
, *tp
= NULL
;
715 cm_return_if_fail(*pparam
->widget
!= NULL
);
717 switch (pparam
->type
) {
719 str
= (gchar
**)pparam
->data
;
721 if (GTK_IS_EDITABLE(*pparam
->widget
)) { /* need? */
722 tp
= text
= gtk_editable_get_chars
723 (GTK_EDITABLE(*pparam
->widget
), 0, -1);
724 } else if (GTK_IS_TEXT_VIEW(*pparam
->widget
)) {
725 GtkTextView
*textview
= GTK_TEXT_VIEW(*pparam
->widget
);
726 GtkTextBuffer
*buffer
= gtk_text_view_get_buffer(textview
);
727 GtkTextIter start
, end
;
728 gtk_text_buffer_get_start_iter(buffer
, &start
);
729 gtk_text_buffer_get_iter_at_offset(buffer
, &end
, -1);
730 tp
= text
= gtk_text_buffer_get_text(buffer
, &start
, &end
, FALSE
);
733 cm_return_if_fail (tp
&& text
);
735 if (text
[0] == '\0') {
741 Xalloca(tmpp
= tmp
, strlen(text
) * 2 + 1,
742 { *str
= NULL
; break; });
752 *str
= g_strdup(tmp
);
756 g_warning("invalid PrefType for GtkText widget: %d",
761 void prefs_set_escaped_data_from_text(PrefParam
*pparam
)
765 cm_return_if_fail(*pparam
->widget
!= NULL
);
767 switch (pparam
->type
) {
769 str
= (gchar
**)pparam
->data
;
771 *str
= pref_get_pref_from_textview(GTK_TEXT_VIEW(*pparam
->widget
));
774 g_warning("invalid escaped PrefType for GtkText widget: %d",
779 void prefs_set_text(PrefParam
*pparam
)
781 gchar
*buf
, *sp
, *bufp
;
784 GtkTextBuffer
*buffer
;
787 cm_return_if_fail(*pparam
->widget
!= NULL
);
789 switch (pparam
->type
) {
791 str
= (gchar
**)pparam
->data
;
793 bufp
= buf
= alloca(strlen(*str
) + 1);
798 if (*sp
== '\\' && *(sp
+ 1) == 'n') {
809 text
= GTK_TEXT_VIEW(*pparam
->widget
);
810 buffer
= gtk_text_view_get_buffer(text
);
811 gtk_text_buffer_set_text(buffer
, "", -1);
812 gtk_text_buffer_get_start_iter(buffer
, &iter
);
813 gtk_text_buffer_insert(buffer
, &iter
, buf
, -1);
816 g_warning("invalid PrefType for GtkTextView widget: %d",
821 void prefs_set_text_from_escaped(PrefParam
*pparam
)
825 cm_return_if_fail(*pparam
->widget
!= NULL
);
827 switch (pparam
->type
) {
829 str
= (gchar
**)pparam
->data
;
830 pref_set_textview_from_pref(GTK_TEXT_VIEW(*pparam
->widget
),
834 g_warning("invalid escaped PrefType for GtkTextView widget: %d",
839 void prefs_set_data_from_toggle(PrefParam
*pparam
)
841 cm_return_if_fail(pparam
->type
== P_BOOL
);
842 cm_return_if_fail(*pparam
->widget
!= NULL
);
844 *((gboolean
*)pparam
->data
) =
845 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(*pparam
->widget
));
848 void prefs_set_toggle(PrefParam
*pparam
)
850 cm_return_if_fail(pparam
->type
== P_BOOL
);
851 cm_return_if_fail(*pparam
->widget
!= NULL
);
853 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(*pparam
->widget
),
854 *((gboolean
*)pparam
->data
));
857 void prefs_set_data_from_spinbtn(PrefParam
*pparam
)
859 cm_return_if_fail(*pparam
->widget
!= NULL
);
861 switch (pparam
->type
) {
863 *((gint
*)pparam
->data
) =
864 gtk_spin_button_get_value_as_int
865 (GTK_SPIN_BUTTON(*pparam
->widget
));
868 *((gushort
*)pparam
->data
) =
869 (gushort
)gtk_spin_button_get_value_as_int
870 (GTK_SPIN_BUTTON(*pparam
->widget
));
873 g_warning("invalid PrefType for GtkSpinButton widget: %d",
878 void prefs_set_spinbtn(PrefParam
*pparam
)
880 cm_return_if_fail(*pparam
->widget
!= NULL
);
882 switch (pparam
->type
) {
884 gtk_spin_button_set_value(GTK_SPIN_BUTTON(*pparam
->widget
),
885 (gfloat
)*((gint
*)pparam
->data
));
888 gtk_spin_button_set_value(GTK_SPIN_BUTTON(*pparam
->widget
),
889 (gfloat
)*((gushort
*)pparam
->data
));
892 g_warning("invalid PrefType for GtkSpinButton widget: %d",
897 static GSList
*prefs_pages
= NULL
;
899 static void prefs_gtk_window_closed_cb(PrefsWindow
*prefswindow
)
901 if (prefswindow
== NULL
)
904 if (prefswindow
->dialog_response
> PREFSWINDOW_RESPONSE_CANCEL
)
905 prefs_common_write_config();
908 void prefs_gtk_open(void)
910 prefswindow_open(_("Preferences"), prefs_pages
, NULL
,
911 &prefs_common
.prefswin_width
, &prefs_common
.prefswin_height
,
912 NULL
, prefs_gtk_window_closed_cb
, prefs_gtk_window_closed_cb
);
915 void prefs_gtk_register_page(PrefsPage
*page
)
917 prefs_pages
= g_slist_append(prefs_pages
, page
);
920 void prefs_gtk_unregister_page(PrefsPage
*page
)
922 prefs_pages
= g_slist_remove(prefs_pages
, page
);
925 static void prefs_destroy_whole_cache(gpointer to_free
)
927 GHashTable
*table
= (GHashTable
*)to_free
;
928 g_hash_table_destroy(table
);
931 static void prefs_destroy_file_cache(gpointer to_free
)
933 GHashTable
*table
= (GHashTable
*)to_free
;
934 g_hash_table_destroy(table
);
937 static int prefs_cache_sections(GHashTable
*file_cache
, const gchar
*rcfile
)
940 gchar buf
[PREFSBUFSIZE
];
941 GHashTable
*section_cache
= NULL
;
944 fp
= claws_fopen(rcfile
, "rb");
946 debug_print("cache: %s: %s\n", rcfile
?rcfile
:"(null)", g_strerror(errno
));
950 while (claws_fgets(buf
, sizeof(buf
), fp
) != NULL
) {
955 continue; /* comment */
956 if (buf
[0] == '[') { /* new section */
957 gchar
*blockname
= g_strdup(buf
+1);
959 if (strrchr(blockname
, ']'))
960 *strrchr(blockname
, ']') = '\0';
962 if ((section_cache
= g_hash_table_lookup(file_cache
, blockname
)) == NULL
) {
963 debug_print("new section '%s'\n", blockname
);
964 section_cache
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
966 g_hash_table_insert(file_cache
,
967 blockname
, section_cache
);
969 debug_print("section '%s' already done\n", blockname
);
971 section_cache
= NULL
;
975 if (!section_cache
) {
976 debug_print("skipping stuff %s with no section\n", buf
);
981 if (!strchr(buf
, '=')) {
982 /* plugins do differently */
985 pref
= g_strdup(buf
);
987 //debug_print("new pref '%s'\n", pref);
988 g_hash_table_insert(section_cache
, pref
, GINT_TO_POINTER(1));
996 static int prefs_cache(const gchar
*rcfile
)
998 GHashTable
*file_cache
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
999 g_free
, prefs_destroy_file_cache
);
1001 debug_print("new file '%s'\n", rcfile
?rcfile
:"(null)");
1002 g_hash_table_insert(whole_cache
, g_strdup(rcfile
), file_cache
);
1004 return prefs_cache_sections(file_cache
, rcfile
);
1007 void prefs_prepare_cache(void)
1009 gchar
*clawsrc
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, COMMON_RC
, NULL
);
1010 gchar
*folderitemrc
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, FOLDERITEM_RC
, NULL
);
1011 gchar
*accountrc
= g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S
, ACCOUNT_RC
, NULL
);
1013 if (whole_cache
== NULL
) {
1014 whole_cache
= g_hash_table_new_full(g_str_hash
, g_str_equal
,
1015 g_free
, prefs_destroy_whole_cache
);
1017 debug_print("already cached\n");
1019 g_free(folderitemrc
);
1023 if (prefs_cache(clawsrc
) < 0 ||
1024 prefs_cache(folderitemrc
) < 0 ||
1025 prefs_cache(accountrc
) < 0)
1026 prefs_destroy_cache();
1029 g_free(folderitemrc
);
1033 void prefs_destroy_cache(void)
1036 debug_print("no cache\n");
1039 debug_print("destroying cache\n");
1040 g_hash_table_destroy(whole_cache
);
1045 static void prefs_parse_cache(gpointer key
, gpointer value
, gpointer user_data
)
1047 gchar
*pref
= (gchar
*)key
;
1049 PrefParam
*param
= (PrefParam
*)user_data
;
1051 prefs_config_parse_one_line(param
, pref
);
1054 static gboolean
prefs_read_config_from_cache(PrefParam
*param
, const gchar
*label
,
1055 const gchar
*rcfile
)
1057 GHashTable
*sections_table
= NULL
;
1058 GHashTable
*values_table
= NULL
;
1059 sections_table
= g_hash_table_lookup(whole_cache
, rcfile
);
1061 if (sections_table
== NULL
) {
1062 g_warning("can't find %s in the whole cache", rcfile
?rcfile
:"(null)");
1065 values_table
= g_hash_table_lookup(sections_table
, label
);
1067 if (values_table
== NULL
) {
1068 debug_print("no '%s' section in '%s' cache\n", label
?label
:"(null)", rcfile
?rcfile
:"(null)");
1071 g_hash_table_foreach(values_table
, prefs_parse_cache
, param
);