Revert part of 3.14.1-128-g498b61c, fixing Coverity CID #1398594.
[claws.git] / src / prefs_gtk.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2015 Hiroyuki Yamamoto and the Claws Mail team
4  *
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.
9  *
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.
14  *
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/>.
17  *
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #include "claws-features.h"
23 #endif
24
25 #define _GNU_SOURCE
26 #include <stdio.h>
27
28 #include <glib.h>
29 #include <glib/gi18n.h>
30 #include <gtk/gtk.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <unistd.h>
34 #include <errno.h>
35
36 #include "defs.h"
37 #include "main.h"
38 #include "prefs.h"
39 #include "prefs_gtk.h"
40 #include "prefs_common.h"
41 #include "utils.h"
42 #include "gtkutils.h"
43 #include "password.h"
44 #include "codeconv.h"
45
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) | \
50          (CL(c.blue)))
51
52 #ifdef HAVE_FGETS_UNLOCKED
53 #define SC_FGETS fgets_unlocked
54 #else
55 #define SC_FGETS fgets
56 #endif
57
58 typedef enum
59 {
60         DUMMY_PARAM
61 } DummyEnum;
62
63 static GHashTable *whole_cache = NULL;
64
65 static gboolean prefs_read_config_from_cache(PrefParam *param, const gchar *label,
66                                const gchar *rcfile);
67
68 static void prefs_config_parse_one_line(PrefParam       *param,
69                                          const gchar    *buf);
70
71 void prefs_read_config(PrefParam *param, const gchar *label,
72                        const gchar *rcfile, const gchar *encoding)
73 {
74         FILE *fp;
75         gchar buf[PREFSBUFSIZE];
76         gchar *block_label;
77
78         cm_return_if_fail(param != NULL);
79         cm_return_if_fail(label != NULL);
80         cm_return_if_fail(rcfile != NULL);
81
82         if (encoding != NULL)
83                 g_warning("Encoding is ignored");
84
85         debug_print("Reading configuration...\n");
86
87         prefs_set_default(param);
88
89         if (whole_cache != NULL) {
90                 if (prefs_read_config_from_cache(param, label, rcfile) == TRUE)
91                         return;
92         }
93
94         if ((fp = g_fopen(rcfile, "rb")) == NULL) {
95                 if (ENOENT != errno) FILE_OP_ERROR(rcfile, "fopen");
96                 return;
97         }
98
99         block_label = g_strdup_printf("[%s]", label);
100
101 #ifdef HAVE_FGETS_UNLOCKED
102         flockfile(fp);
103 #endif
104
105         /* search aiming block */
106         while (SC_FGETS(buf, sizeof(buf), fp) != NULL) {
107                 gint val;
108
109                 if (encoding) {
110                         gchar *conv_str;
111
112                         conv_str = conv_codeset_strdup
113                                 (buf, encoding, CS_INTERNAL);
114                         if (!conv_str)
115                                 conv_str = g_strdup(buf);
116                         val = strncmp
117                                 (conv_str, block_label, strlen(block_label));
118                         g_free(conv_str);
119                 } else
120                         val = strncmp(buf, block_label, strlen(block_label));
121                 if (val == 0) {
122                         debug_print("Found %s\n", block_label);
123                         break;
124                 }
125         }
126         g_free(block_label);
127
128         while (SC_FGETS(buf, sizeof(buf), fp) != NULL) {
129                 strretchomp(buf);
130                 /* reached next block */
131                 if (buf[0] == '[') break;
132                 if (buf[0] == '#') continue;
133
134                 if (encoding) {
135                         gchar *conv_str;
136
137                         conv_str = conv_codeset_strdup
138                                 (buf, encoding, CS_INTERNAL);
139                         if (!conv_str)
140                                 conv_str = g_strdup(buf);
141                         prefs_config_parse_one_line(param, conv_str);
142                         g_free(conv_str);
143                 } else
144                         prefs_config_parse_one_line(param, buf);
145         }
146
147         debug_print("Finished reading configuration.\n");
148 #ifdef HAVE_FGETS_UNLOCKED
149         funlockfile(fp);
150 #endif
151         fclose(fp);
152 }
153
154 static void prefs_config_parse_one_line(PrefParam *param, const gchar *buf)
155 {
156         gint i;
157         gint name_len;
158         const gchar *value;
159         GdkColor color;
160
161         for (i = 0; param[i].name != NULL; i++) {
162                 name_len = strlen(param[i].name);
163                 if (g_ascii_strncasecmp(buf, param[i].name, name_len))
164                         continue;
165                 if (buf[name_len] != '=')
166                         continue;
167                 value = buf + name_len + 1;
168                 /* debug_print("%s = %s\n", param[i].name, value); */
169
170                 switch (param[i].type) {
171                 case P_STRING:
172                 case P_PASSWORD:
173                 {
174                         gchar *tmp = NULL;
175
176                         if (*value) {
177                                 if (g_utf8_validate(value, -1, NULL))
178                                         tmp = g_strdup(value);
179                                 else {
180                                         tmp = conv_codeset_strdup(value,
181                                                     conv_get_locale_charset_str_no_utf8(),
182                                                     CS_INTERNAL);
183                                 }
184                         } else {
185                                 tmp = g_strdup("");
186                         }
187                         if (!tmp) {
188                                 g_warning("Failed to convert character set.");
189                                 tmp = g_strdup(value);
190                         }
191                         g_free(*((gchar **)param[i].data));
192                         *((gchar **)param[i].data) = tmp;
193                         break;
194                 }
195                 case P_INT:
196                         *((gint *)param[i].data) =
197                                 (gint)atoi(value);
198                         break;
199                 case P_BOOL:
200                         *((gboolean *)param[i].data) =
201                                 (*value == '0' || *value == '\0')
202                                         ? FALSE : TRUE;
203                         break;
204                 case P_ENUM:
205                         *((DummyEnum *)param[i].data) =
206                                 (DummyEnum)atoi(value);
207                         break;
208                 case P_USHORT:
209                         *((gushort *)param[i].data) =
210                                 (gushort)atoi(value);
211                         break;
212                 case P_COLOR:
213                         if (gdk_color_parse(value, &color)) {
214                                 *((gulong *)param[i].data) = RGB_FROM_GDK_COLOR(color); 
215                         }
216                         else 
217                                 /* be compatible and accept ints */
218                                 *((gulong *)param[i].data) = strtoul(value, 0, 10); 
219                         break;
220                 default:
221                         break;
222                 }
223         }
224 }
225
226 #define TRY(func) \
227 if (!(func)) \
228 { \
229         g_warning("Failed to write configuration to file"); \
230         if (orig_fp) fclose(orig_fp); \
231         prefs_file_close_revert(pfile); \
232         g_free(rcpath); \
233         g_free(block_label); \
234         return; \
235 } \
236
237 void prefs_write_config(PrefParam *param, const gchar *label,
238                         const gchar *rcfile)
239 {
240         FILE *orig_fp;
241         PrefFile *pfile;
242         gchar *rcpath;
243         gchar buf[PREFSBUFSIZE];
244         gchar *block_label = NULL;
245         gboolean block_matched = FALSE;
246
247         cm_return_if_fail(param != NULL);
248         cm_return_if_fail(label != NULL);
249         cm_return_if_fail(rcfile != NULL);
250
251         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, rcfile, NULL);
252         if ((orig_fp = g_fopen(rcpath, "rb")) == NULL) {
253                 if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
254         }
255
256         if ((pfile = prefs_write_open(rcpath)) == NULL) {
257                 g_warning("Failed to write configuration to file");
258                 if (orig_fp) fclose(orig_fp);
259                 g_free(rcpath);
260                 return;
261         }
262
263         block_label = g_strdup_printf("[%s]", label);
264
265         /* search aiming block */
266         if (orig_fp) {
267                 while (fgets(buf, sizeof(buf), orig_fp) != NULL) {
268                         gint val;
269
270                         val = strncmp(buf, block_label, strlen(block_label));
271                         if (val == 0) {
272                                 debug_print("Found %s\n", block_label);
273                                 block_matched = TRUE;
274                                 break;
275                         } else
276                                 TRY(fputs(buf, pfile->fp) != EOF);
277                 }
278         }
279
280         TRY(fprintf(pfile->fp, "%s\n", block_label) > 0);
281
282         /* write all param data to file */
283         TRY(prefs_write_param(param, pfile->fp) == 0);
284
285         if (block_matched) {
286                 gboolean in_dup_block = FALSE;
287                 while (fgets(buf, sizeof(buf), orig_fp) != NULL) {
288                         /* next block */
289                         if (buf[0] == '[') {
290                                 TRY(fputc('\n', pfile->fp) != EOF &&
291                                     fputs(buf, pfile->fp)  != EOF);
292                                 break;
293                         }
294                 }
295                 while (fgets(buf, sizeof(buf), orig_fp) != NULL) {
296                         if (buf[0] == '[') {
297                                 if (!strncmp(buf, block_label,
298                                                 strlen(block_label)))
299                                         in_dup_block = TRUE;
300                                 else
301                                         in_dup_block = FALSE;
302                         }
303                         if (!in_dup_block)
304                                 TRY(fputs(buf, pfile->fp) != EOF);
305                 }
306         }
307
308         g_free(block_label);
309         block_label = NULL;
310
311         if (orig_fp) fclose(orig_fp);
312         if (prefs_file_close(pfile) < 0)
313                 g_warning("Failed to write configuration to file");
314         g_free(rcpath);
315
316         debug_print("Configuration is saved.\n");
317 }
318
319 gint prefs_write_param(PrefParam *param, FILE *fp)
320 {
321         gint i;
322         gchar buf[PREFSBUFSIZE] = "";
323
324         for (i = 0; param[i].name != NULL; i++) {
325                 switch (param[i].type) {
326                 case P_STRING:
327                 {
328                         gchar *tmp = NULL;
329
330                         if (*((gchar **)param[i].data)) {
331                                 if (g_utf8_validate(*((gchar **)param[i].data), -1, NULL))
332                                         tmp = g_strdup(*((gchar **)param[i].data));
333                                 else {
334                                         tmp = conv_codeset_strdup(*((gchar **)param[i].data),
335                                                 conv_get_locale_charset_str_no_utf8(),
336                                                 CS_INTERNAL);
337                                         if (!tmp)
338                                                 tmp = g_strdup(*((gchar **)param[i].data));
339                                 }
340                         }
341
342                         g_snprintf(buf, sizeof(buf), "%s=%s\n", param[i].name,
343                                    tmp ? tmp : "");
344
345                         g_free(tmp);
346                         break;
347                 }
348                 case P_PASSWORD:
349                         buf[0] = '\0'; /* Passwords are written to password store. */
350                         break;
351                 case P_INT:
352                         g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
353                                    *((gint *)param[i].data));
354                         break;
355                 case P_BOOL:
356                         g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
357                                    *((gboolean *)param[i].data));
358                         break;
359                 case P_ENUM:
360                         g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
361                                    *((DummyEnum *)param[i].data));
362                         break;
363                 case P_USHORT:
364                         g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
365                                    *((gushort *)param[i].data));
366                         break;
367                 case P_COLOR:
368                         g_snprintf(buf, sizeof buf,  "%s=#%6.6lx\n", param[i].name,
369                                    *((gulong *) param[i].data));
370                         break;
371                 default:
372                         /* unrecognized, fail */
373                         debug_print("Unrecognized parameter type\n");
374                         return -1;
375                 }
376
377                 if (buf[0] != '\0') {
378                         if (fputs(buf, fp) == EOF) {
379                                 perror("fputs");
380                                 return -1;
381                         }
382                 }
383         }
384
385         return 0;
386 }
387
388 void prefs_set_default(PrefParam *param)
389 {
390         gint i;
391         GdkColor color;
392
393         cm_return_if_fail(param != NULL);
394
395         for (i = 0; param[i].name != NULL; i++) {
396                 if (!param[i].data) continue;
397
398                 switch (param[i].type) {
399                 case P_STRING:
400                         g_free(*((gchar **)param[i].data));
401                         if (param[i].defval != NULL) {
402                                 if (!strncasecmp(param[i].defval, "ENV_", 4)) {
403                                         const gchar *envstr;
404                                         gchar *tmp;
405
406                                         envstr = g_getenv(param[i].defval + 4);
407                                         tmp = envstr && *envstr ?
408                                                 conv_codeset_strdup(envstr,
409                                                                     conv_get_locale_charset_str(),
410                                                                     CS_INTERNAL)
411                                                 : g_strdup("");
412                                         if (!tmp) {
413                                                 g_warning("Failed to convert character set.");
414                                                 tmp = g_strdup(envstr);
415                                         }
416                                         *((gchar **)param[i].data) = tmp;
417                                 } else if (param[i].defval[0] == '~')
418                                         *((gchar **)param[i].data) =
419                                                 g_strconcat(get_home_dir(),
420                                                             param[i].defval + 1,
421                                                             NULL);
422                                 else 
423                                         *((gchar **)param[i].data) =
424                                                 g_strdup(param[i].defval);
425                         } else
426                                 *((gchar **)param[i].data) = NULL;
427                         break;
428                 case P_PASSWORD:
429                         g_free(*((gchar **)param[i].data));
430                         if (param[i].defval != NULL) {
431                                 if (param[i].defval[0] != '\0')
432                                         *((gchar **)param[i].data) =
433                                                 g_strdup(param[i].defval);
434                                 else
435                                         *((gchar **)param[i].data) = NULL;
436                         } else
437                                 *((gchar **)param[i].data) = NULL;
438                         break;
439                 case P_INT:
440                         if (param[i].defval != NULL)
441                                 *((gint *)param[i].data) =
442                                         (gint)atoi(param[i].defval);
443                         else
444                                 *((gint *)param[i].data) = 0;
445                         break;
446                 case P_BOOL:
447                         if (param[i].defval != NULL) {
448                                 if (!g_ascii_strcasecmp(param[i].defval, "TRUE"))
449                                         *((gboolean *)param[i].data) = TRUE;
450                                 else
451                                         *((gboolean *)param[i].data) = atoi(param[i].defval) ? TRUE : FALSE;
452                         } else
453                                 *((gboolean *)param[i].data) = FALSE;
454                         break;
455                 case P_ENUM:
456                         if (param[i].defval != NULL)
457                                 *((DummyEnum*)param[i].data) =
458                                         (DummyEnum)atoi(param[i].defval);
459                         else
460                                 *((DummyEnum *)param[i].data) = 0;
461                         break;
462                 case P_USHORT:
463                         if (param[i].defval != NULL)
464                                 *((gushort *)param[i].data) = (gushort)atoi(param[i].defval);
465                         else
466                                 *((gushort *)param[i].data) = 0;
467                         break;
468                 case P_COLOR:
469                         if (param[i].defval != NULL && gdk_color_parse(param[i].defval, &color))
470                                 *((gulong *)param[i].data) = RGB_FROM_GDK_COLOR(color);
471                         else if (param[i].defval)
472                                 /* be compatible and accept ints */
473                                 *((gulong *)param[i].data) = strtoul(param[i].defval, 0, 10); 
474                         else
475                                 *((gulong *)param[i].data) = 0; 
476                         break;
477                 default:
478                         break;
479                 }
480         }
481 }
482
483 void prefs_free(PrefParam *param)
484 {
485         gint i;
486
487         cm_return_if_fail(param != NULL);
488
489         for (i = 0; param[i].name != NULL; i++) {
490                 if (!param[i].data) continue;
491
492                 switch (param[i].type) {
493                 case P_STRING:
494                 case P_PASSWORD:
495                         g_free(*((gchar **)param[i].data));
496                         break;
497                 default:
498                         break;
499                 }
500         }
501 }
502
503 void prefs_button_toggled(GtkToggleButton *toggle_btn, GtkWidget *widget)
504 {
505         gboolean is_active;
506
507         is_active = gtk_toggle_button_get_active(toggle_btn);
508         gtk_widget_set_sensitive(widget, is_active);
509 }
510
511 void prefs_button_toggled_reverse(GtkToggleButton *toggle_btn, GtkWidget *widget)
512 {
513         gboolean is_active;
514
515         is_active = gtk_toggle_button_get_active(toggle_btn);
516         gtk_widget_set_sensitive(widget, !is_active);
517 }
518
519 void prefs_set_dialog(PrefParam *param)
520 {
521         gint i;
522
523         for (i = 0; param[i].name != NULL; i++) {
524                 if (param[i].widget_set_func)
525                         param[i].widget_set_func(&param[i]);
526         }
527 }
528
529 void prefs_set_data_from_dialog(PrefParam *param)
530 {
531         gint i;
532
533         for (i = 0; param[i].name != NULL; i++) {
534                 if (param[i].data_set_func)
535                         param[i].data_set_func(&param[i]);
536         }
537 }
538
539 void prefs_set_dialog_to_default(PrefParam *param)
540 {
541         gint       i;
542         PrefParam  tmpparam;
543         gchar     *str_data = NULL;
544         gint       int_data;
545         gushort    ushort_data;
546         gboolean   bool_data;
547         DummyEnum  enum_data;
548
549         for (i = 0; param[i].name != NULL; i++) {
550                 if (!param[i].widget_set_func) continue;
551
552                 tmpparam = param[i];
553
554                 switch (tmpparam.type) {
555                 case P_STRING:
556                         if (tmpparam.defval) {
557                                 if (!g_ascii_strncasecmp(tmpparam.defval, "ENV_", 4)) {
558                                         str_data = g_strdup(g_getenv(param[i].defval + 4));
559                                         tmpparam.data = &str_data;
560                                         break;
561                                 } else if (tmpparam.defval[0] == '~') {
562                                         str_data =
563                                                 g_strconcat(get_home_dir(),
564                                                             param[i].defval + 1,
565                                                             NULL);
566                                         tmpparam.data = &str_data;
567                                         break;
568                                 }
569                         }
570                         tmpparam.data = &tmpparam.defval;
571                         break;
572                 case P_PASSWORD:
573                         tmpparam.data = &tmpparam.defval;
574                         break;
575                 case P_INT:
576                         if (tmpparam.defval)
577                                 int_data = atoi(tmpparam.defval);
578                         else
579                                 int_data = 0;
580                         tmpparam.data = &int_data;
581                         break;
582                 case P_USHORT:
583                         if (tmpparam.defval)
584                                 ushort_data = atoi(tmpparam.defval);
585                         else
586                                 ushort_data = 0;
587                         tmpparam.data = &ushort_data;
588                         break;
589                 case P_BOOL:
590                         if (tmpparam.defval) {
591                                 if (!g_ascii_strcasecmp(tmpparam.defval, "TRUE"))
592                                         bool_data = TRUE;
593                                 else
594                                         bool_data = atoi(tmpparam.defval)
595                                                 ? TRUE : FALSE;
596                         } else
597                                 bool_data = FALSE;
598                         tmpparam.data = &bool_data;
599                         break;
600                 case P_ENUM:
601                         if (tmpparam.defval)
602                                 enum_data = (DummyEnum)atoi(tmpparam.defval);
603                         else
604                                 enum_data = 0;
605                         tmpparam.data = &enum_data;
606                         break;
607                 case P_OTHER:
608                 default:
609                         break;
610                 }
611                 tmpparam.widget_set_func(&tmpparam);
612                 g_free(str_data);
613                 str_data = NULL;
614         }
615 }
616
617 void prefs_set_data_from_entry(PrefParam *pparam)
618 {
619         gchar **str;
620         const gchar *entry_str;
621
622         cm_return_if_fail(*pparam->widget != NULL);
623
624         entry_str = gtk_entry_get_text(GTK_ENTRY(*pparam->widget));
625
626         switch (pparam->type) {
627         case P_STRING:
628                 str = (gchar **)pparam->data;
629                 g_free(*str);
630                 *str = entry_str[0] ? g_strdup(entry_str) : NULL;
631                 break;
632         case P_PASSWORD:
633                 break;
634         case P_USHORT:
635                 *((gushort *)pparam->data) = atoi(entry_str);
636                 break;
637         case P_INT:
638                 *((gint *)pparam->data) = atoi(entry_str);
639                 break;
640         default:
641                 g_warning("Invalid PrefType for GtkEntry widget: %d",
642                           pparam->type);
643         }
644 }
645
646 void prefs_set_escaped_data_from_entry(PrefParam *pparam)
647 {
648         gchar **str;
649
650         cm_return_if_fail(*pparam->widget != NULL);
651
652         switch (pparam->type) {
653         case P_STRING:
654                 str = (gchar **)pparam->data;
655                 g_free(*str);
656                 *str = pref_get_pref_from_entry(GTK_ENTRY(*pparam->widget));
657                 break;
658         default:
659                 g_warning("Invalid escaped PrefType for GtkEntry widget: %d",
660                           pparam->type);
661         }
662 }
663
664 void prefs_set_entry(PrefParam *pparam)
665 {
666         gchar **str;
667         cm_return_if_fail(*pparam->widget != NULL);
668
669         switch (pparam->type) {
670         case P_STRING:
671                 str = (gchar **)pparam->data;
672                 gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
673                                    *str ? *str : "");
674                 break;
675         case P_INT:
676                 gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
677                                    itos(*((gint *)pparam->data)));
678                 break;
679         case P_USHORT:
680                 gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
681                                    itos(*((gushort *)pparam->data)));
682                 break;
683         default:
684                 g_warning("Invalid PrefType for GtkEntry widget: %d",
685                           pparam->type);
686         }
687 }
688
689 void prefs_set_entry_from_escaped(PrefParam *pparam)
690 {
691         gchar **str;
692
693         cm_return_if_fail(*pparam->widget != NULL);
694
695         switch (pparam->type) {
696         case P_STRING:
697                 str = (gchar **)pparam->data;
698                 pref_set_entry_from_pref(GTK_ENTRY(*pparam->widget),
699                                    *str ? *str : "");
700                 break;
701         default:
702                 g_warning("Invalid escaped PrefType for GtkEntry widget: %d",
703                           pparam->type);
704         }
705 }
706
707 void prefs_set_data_from_text(PrefParam *pparam)
708 {
709         gchar **str;
710         gchar *text = NULL, *tp = NULL;
711         gchar *tmp, *tmpp;
712
713         cm_return_if_fail(*pparam->widget != NULL);
714
715         switch (pparam->type) {
716         case P_STRING:
717                 str = (gchar **)pparam->data;
718                 g_free(*str);
719                 if (GTK_IS_EDITABLE(*pparam->widget)) {   /* need? */
720                         tp = text = gtk_editable_get_chars
721                                         (GTK_EDITABLE(*pparam->widget), 0, -1);
722                 } else if (GTK_IS_TEXT_VIEW(*pparam->widget)) {
723                         GtkTextView *textview = GTK_TEXT_VIEW(*pparam->widget);
724                         GtkTextBuffer *buffer = gtk_text_view_get_buffer(textview);
725                         GtkTextIter start, end;
726                         gtk_text_buffer_get_start_iter(buffer, &start);
727                         gtk_text_buffer_get_iter_at_offset(buffer, &end, -1);
728                         tp = text = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
729                 }
730
731                 cm_return_if_fail (tp && text);
732
733                 if (text[0] == '\0') {
734                         *str = NULL;
735                         g_free(text);
736                         break;
737                 }
738
739                 Xalloca(tmpp = tmp, strlen(text) * 2 + 1,
740                         { *str = NULL; break; });
741                 while (*tp) {
742                         if (*tp == '\n') {
743                                 *tmpp++ = '\\';
744                                 *tmpp++ = 'n';
745                                 tp++;
746                         } else
747                                 *tmpp++ = *tp++;
748                 }
749                 *tmpp = '\0';
750                 *str = g_strdup(tmp);
751                 g_free(text);
752                 break;
753         default:
754                 g_warning("Invalid PrefType for GtkText widget: %d",
755                           pparam->type);
756         }
757 }
758
759 void prefs_set_escaped_data_from_text(PrefParam *pparam)
760 {
761         gchar **str;
762
763         cm_return_if_fail(*pparam->widget != NULL);
764
765         switch (pparam->type) {
766         case P_STRING:
767                 str = (gchar **)pparam->data;
768                 g_free(*str);
769                 *str = pref_get_pref_from_textview(GTK_TEXT_VIEW(*pparam->widget));
770                 break;
771         default:
772                 g_warning("Invalid escaped PrefType for GtkText widget: %d",
773                           pparam->type);
774         }
775 }
776
777 void prefs_set_text(PrefParam *pparam)
778 {
779         gchar *buf, *sp, *bufp;
780         gchar **str;
781         GtkTextView *text;
782         GtkTextBuffer *buffer;
783         GtkTextIter iter;
784
785         cm_return_if_fail(*pparam->widget != NULL);
786
787         switch (pparam->type) {
788         case P_STRING:
789                 str = (gchar **)pparam->data;
790                 if (*str) {
791                         bufp = buf = alloca(strlen(*str) + 1);
792                         if (!buf) buf = "";
793                         else {
794                                 sp = *str;
795                                 while (*sp) {
796                                         if (*sp == '\\' && *(sp + 1) == 'n') {
797                                                 *bufp++ = '\n';
798                                                 sp += 2;
799                                         } else
800                                                 *bufp++ = *sp++;
801                                 }
802                                 *bufp = '\0';
803                         }
804                 } else
805                         buf = "";
806
807                 text = GTK_TEXT_VIEW(*pparam->widget);
808                 buffer = gtk_text_view_get_buffer(text);
809                 gtk_text_buffer_set_text(buffer, "", -1);
810                 gtk_text_buffer_get_start_iter(buffer, &iter);
811                 gtk_text_buffer_insert(buffer, &iter, buf, -1);
812                 break;
813         default:
814                 g_warning("Invalid PrefType for GtkTextView widget: %d",
815                           pparam->type);
816         }
817 }
818
819 void prefs_set_text_from_escaped(PrefParam *pparam)
820 {
821         gchar **str;
822
823         cm_return_if_fail(*pparam->widget != NULL);
824
825         switch (pparam->type) {
826         case P_STRING:
827                 str = (gchar **)pparam->data;
828                 pref_set_textview_from_pref(GTK_TEXT_VIEW(*pparam->widget),
829                                  *str ? *str : "");
830                 break;
831         default:
832                 g_warning("Invalid escaped PrefType for GtkTextView widget: %d",
833                           pparam->type);
834         }
835 }
836
837 void prefs_set_data_from_toggle(PrefParam *pparam)
838 {
839         cm_return_if_fail(pparam->type == P_BOOL);
840         cm_return_if_fail(*pparam->widget != NULL);
841         
842         *((gboolean *)pparam->data) =
843                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(*pparam->widget));
844 }
845
846 void prefs_set_toggle(PrefParam *pparam)
847 {
848         cm_return_if_fail(pparam->type == P_BOOL);
849         cm_return_if_fail(*pparam->widget != NULL);
850
851         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(*pparam->widget),
852                                      *((gboolean *)pparam->data));
853 }
854
855 void prefs_set_data_from_spinbtn(PrefParam *pparam)
856 {
857         cm_return_if_fail(*pparam->widget != NULL);
858
859         switch (pparam->type) {
860         case P_INT:
861                 *((gint *)pparam->data) =
862                         gtk_spin_button_get_value_as_int
863                         (GTK_SPIN_BUTTON(*pparam->widget));
864                 break;
865         case P_USHORT:
866                 *((gushort *)pparam->data) =
867                         (gushort)gtk_spin_button_get_value_as_int
868                         (GTK_SPIN_BUTTON(*pparam->widget));
869                 break;
870         default:
871                 g_warning("Invalid PrefType for GtkSpinButton widget: %d",
872                           pparam->type);
873         }
874 }
875
876 void prefs_set_spinbtn(PrefParam *pparam)
877 {
878         cm_return_if_fail(*pparam->widget != NULL);
879
880         switch (pparam->type) {
881         case P_INT:
882                 gtk_spin_button_set_value(GTK_SPIN_BUTTON(*pparam->widget),
883                                           (gfloat)*((gint *)pparam->data));
884                 break;
885         case P_USHORT:
886                 gtk_spin_button_set_value(GTK_SPIN_BUTTON(*pparam->widget),
887                                           (gfloat)*((gushort *)pparam->data));
888                 break;
889         default:
890                 g_warning("Invalid PrefType for GtkSpinButton widget: %d",
891                           pparam->type);
892         }
893 }
894
895 static GSList *prefs_pages = NULL;
896
897 static void prefs_gtk_window_closed_cb(PrefsWindow *prefswindow)
898 {
899         if (prefswindow == NULL)
900                 return;
901
902         if (prefswindow->dialog_response > PREFSWINDOW_RESPONSE_CANCEL)
903                 prefs_common_write_config();
904 }
905
906 void prefs_gtk_open(void)
907 {
908         prefswindow_open(_("Preferences"), prefs_pages, NULL,
909                         &prefs_common.prefswin_width, &prefs_common.prefswin_height,
910                         NULL, prefs_gtk_window_closed_cb, prefs_gtk_window_closed_cb);
911 }
912
913 void prefs_gtk_register_page(PrefsPage *page)
914 {
915         prefs_pages = g_slist_append(prefs_pages, page);
916 }
917
918 void prefs_gtk_unregister_page(PrefsPage *page)
919 {
920         prefs_pages = g_slist_remove(prefs_pages, page);
921 }
922
923 static void prefs_destroy_whole_cache(gpointer to_free)
924 {       
925         GHashTable *table = (GHashTable *)to_free;
926         g_hash_table_destroy(table);
927 }
928
929 static void prefs_destroy_file_cache(gpointer to_free)
930 {       
931         GHashTable *table = (GHashTable *)to_free;
932         g_hash_table_destroy(table);
933 }
934
935 static int prefs_cache_sections(GHashTable *file_cache, const gchar *rcfile)
936 {
937         FILE *fp = NULL;
938         gchar buf[PREFSBUFSIZE];
939         GHashTable *section_cache = NULL;
940
941         if (rcfile)
942                 fp = g_fopen(rcfile, "rb");
943         if (!fp) {
944                 debug_print("cache: %s: %s\n", rcfile?rcfile:"(null)", g_strerror(errno));
945                 return -1;
946         }
947         
948 #ifdef HAVE_FGETS_UNLOCKED
949         flockfile(fp);
950 #endif
951         
952         while (SC_FGETS(buf, sizeof(buf), fp) != NULL) {
953                 strretchomp(buf);
954                 if (buf[0] == '\0')
955                         continue;
956                 if (buf[0] == '#')
957                         continue; /* comment */
958                 if (buf[0] == '[') { /* new section */
959                         gchar *blockname = g_strdup(buf+1);
960
961                         if (strrchr(blockname, ']'))
962                                 *strrchr(blockname, ']') = '\0';
963
964                         if ((section_cache = g_hash_table_lookup(file_cache, blockname)) == NULL) {
965                                 debug_print("new section '%s'\n", blockname);
966                                 section_cache = g_hash_table_new_full(g_str_hash, g_str_equal,
967                                                 g_free, NULL);
968                                 g_hash_table_insert(file_cache, 
969                                         blockname, section_cache);
970                         } else {
971                                 debug_print("section '%s' already done\n", blockname);
972                                 g_free(blockname);
973                                 section_cache = NULL;
974                                 continue;
975                         }
976                 } else {
977                         if (!section_cache) {
978                                 debug_print("skipping stuff %s with no section\n", buf);
979                                 continue;
980                         } else {
981                                 gchar *pref;
982                                 
983                                 if (!strchr(buf, '=')) {
984                                         /* plugins do differently */
985                                         continue;
986                                 }
987                                 pref = g_strdup(buf);
988                                 
989                                 //debug_print("new pref '%s'\n", pref);
990                                 g_hash_table_insert(section_cache, pref, GINT_TO_POINTER(1));
991                         }
992                 }
993         }
994 #ifdef HAVE_FGETS_UNLOCKED
995         funlockfile(fp);
996 #endif
997         fclose(fp);
998         return 0;
999 }
1000
1001 static int prefs_cache(const gchar *rcfile)
1002 {
1003         GHashTable *file_cache = g_hash_table_new_full(g_str_hash, g_str_equal, 
1004                                         g_free, prefs_destroy_file_cache);
1005         
1006         debug_print("new file '%s'\n", rcfile?rcfile:"(null)");
1007         g_hash_table_insert(whole_cache, g_strdup(rcfile), file_cache);
1008         
1009         return prefs_cache_sections(file_cache, rcfile);
1010 }
1011
1012 void prefs_prepare_cache(void)
1013 {
1014         gchar *clawsrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
1015         gchar *folderitemrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, FOLDERITEM_RC, NULL);
1016         gchar *accountrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACCOUNT_RC, NULL);
1017         
1018         if (whole_cache == NULL) {
1019                 whole_cache = g_hash_table_new_full(g_str_hash, g_str_equal,
1020                                 g_free, prefs_destroy_whole_cache);
1021         } else {
1022                 debug_print("already cached\n");
1023                 g_free(clawsrc);
1024                 g_free(folderitemrc);
1025                 g_free(accountrc);
1026                 return;
1027         }
1028         if (prefs_cache(clawsrc) < 0 ||
1029             prefs_cache(folderitemrc) < 0 ||
1030             prefs_cache(accountrc) < 0)
1031                 prefs_destroy_cache();
1032
1033         g_free(clawsrc);
1034         g_free(folderitemrc);
1035         g_free(accountrc);
1036 }
1037
1038 void prefs_destroy_cache(void)
1039 {
1040         if (!whole_cache) {
1041                 debug_print("no cache\n");
1042                 return;
1043         }
1044         debug_print("destroying cache\n");
1045         g_hash_table_destroy(whole_cache);
1046         whole_cache = NULL;
1047         return;
1048 }
1049
1050 static void prefs_parse_cache(gpointer key, gpointer value, gpointer user_data)
1051 {
1052         gchar *pref = (gchar *)key;
1053
1054         PrefParam *param = (PrefParam *)user_data;
1055         
1056         prefs_config_parse_one_line(param, pref);
1057 }
1058
1059 static gboolean prefs_read_config_from_cache(PrefParam *param, const gchar *label,
1060                                const gchar *rcfile) 
1061 {
1062         GHashTable *sections_table = NULL;
1063         GHashTable *values_table = NULL;
1064         sections_table = g_hash_table_lookup(whole_cache, rcfile);
1065         
1066         if (sections_table == NULL) {
1067                 g_warning("Can't find %s in the whole cache", rcfile?rcfile:"(null)");
1068                 return FALSE;
1069         }
1070         values_table = g_hash_table_lookup(sections_table, label);
1071         
1072         if (values_table == NULL) {
1073                 debug_print("no '%s' section in '%s' cache\n", label?label:"(null)", rcfile?rcfile:"(null)");
1074                 return TRUE;
1075         }
1076         g_hash_table_foreach(values_table, prefs_parse_cache, param);
1077         return TRUE;
1078 }