Remove wrong documentation about start group handling. (#476856, Areg
[platform/upstream/glib.git] / glib / gkeyfile.c
1 /* gkeyfile.c - key file parser
2  *
3  *  Copyright 2004  Red Hat, Inc.  
4  *
5  * Written by Ray Strode <rstrode@redhat.com>
6  *            Matthias Clasen <mclasen@redhat.com>
7  *
8  * GLib is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * GLib is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with GLib; see the file COPYING.LIB.  If not,
20  * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  *   Boston, MA 02111-1307, USA.
22  */
23
24 #include "config.h"
25
26 #include "gkeyfile.h"
27
28 #include <errno.h>
29 #include <fcntl.h>
30 #include <locale.h>
31 #include <string.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <sys/types.h>
35 #include <sys/stat.h>
36 #ifdef HAVE_UNISTD_H
37 #include <unistd.h>
38 #endif
39 #ifdef G_OS_WIN32
40 #include <io.h>
41
42 #ifndef S_ISREG
43 #define S_ISREG(mode) ((mode)&_S_IFREG)
44 #endif
45
46 #endif  /* G_OS_WIN23 */
47
48 #include "gconvert.h"
49 #include "gdataset.h"
50 #include "gerror.h"
51 #include "gfileutils.h"
52 #include "ghash.h"
53 #include "glibintl.h"
54 #include "glist.h"
55 #include "gslist.h"
56 #include "gmem.h"
57 #include "gmessages.h"
58 #include "gstdio.h"
59 #include "gstring.h"
60 #include "gstrfuncs.h"
61 #include "gutils.h"
62
63 #include "galias.h"
64
65 typedef struct _GKeyFileGroup GKeyFileGroup;
66
67 struct _GKeyFile
68 {
69   GList *groups;
70   GHashTable *group_hash;
71
72   GKeyFileGroup *start_group;
73   GKeyFileGroup *current_group;
74
75   GString *parse_buffer; /* Holds up to one line of not-yet-parsed data */
76
77   /* Used for sizing the output buffer during serialization
78    */
79   gsize approximate_size;
80
81   gchar list_separator;
82
83   GKeyFileFlags flags;
84
85   gchar **locales;
86 };
87
88 typedef struct _GKeyFileKeyValuePair GKeyFileKeyValuePair;
89
90 struct _GKeyFileGroup
91 {
92   const gchar *name;  /* NULL for above first group (which will be comments) */
93
94   GKeyFileKeyValuePair *comment; /* Special comment that is stuck to the top of a group */
95   gboolean has_trailing_blank_line;
96
97   GList *key_value_pairs; 
98
99   /* Used in parallel with key_value_pairs for
100    * increased lookup performance
101    */
102   GHashTable *lookup_map;
103 };
104
105 struct _GKeyFileKeyValuePair
106 {
107   gchar *key;  /* NULL for comments */
108   gchar *value;
109 };
110
111 static gint                  find_file_in_data_dirs            (const gchar            *file,
112                                                                 const gchar           **data_dirs,
113                                                                 gchar                 **output_file,
114                                                                 GError                **error);
115 static gboolean              g_key_file_load_from_fd           (GKeyFile               *key_file,
116                                                                 gint                    fd,
117                                                                 GKeyFileFlags           flags,
118                                                                 GError                **error);
119 static GList                *g_key_file_lookup_group_node      (GKeyFile               *key_file,
120                                                                 const gchar            *group_name);
121 static GKeyFileGroup        *g_key_file_lookup_group           (GKeyFile               *key_file,
122                                                                 const gchar            *group_name);
123
124 static GList                *g_key_file_lookup_key_value_pair_node  (GKeyFile       *key_file,
125                                                                      GKeyFileGroup  *group,
126                                                                      const gchar    *key);
127 static GKeyFileKeyValuePair *g_key_file_lookup_key_value_pair       (GKeyFile       *key_file,
128                                                                      GKeyFileGroup  *group,
129                                                                      const gchar    *key);
130
131 static void                  g_key_file_remove_group_node          (GKeyFile      *key_file,
132                                                                     GList         *group_node);
133 static void                  g_key_file_remove_key_value_pair_node (GKeyFile      *key_file,
134                                                                     GKeyFileGroup *group,
135                                                                     GList         *pair_node);
136
137 static void                  g_key_file_add_key                (GKeyFile               *key_file,
138                                                                 GKeyFileGroup          *group,
139                                                                 const gchar            *key,
140                                                                 const gchar            *value);
141 static void                  g_key_file_add_group              (GKeyFile               *key_file,
142                                                                 const gchar            *group_name);
143 static gboolean              g_key_file_is_group_name          (const gchar *name);
144 static gboolean              g_key_file_is_key_name            (const gchar *name);
145 static void                  g_key_file_key_value_pair_free    (GKeyFileKeyValuePair   *pair);
146 static gboolean              g_key_file_line_is_comment        (const gchar            *line);
147 static gboolean              g_key_file_line_is_group          (const gchar            *line);
148 static gboolean              g_key_file_line_is_key_value_pair (const gchar            *line);
149 static gchar                *g_key_file_parse_value_as_string  (GKeyFile               *key_file,
150                                                                 const gchar            *value,
151                                                                 GSList                **separators,
152                                                                 GError                **error);
153 static gchar                *g_key_file_parse_string_as_value  (GKeyFile               *key_file,
154                                                                 const gchar            *string,
155                                                                 gboolean                escape_separator);
156 static gint                  g_key_file_parse_value_as_integer (GKeyFile               *key_file,
157                                                                 const gchar            *value,
158                                                                 GError                **error);
159 static gchar                *g_key_file_parse_integer_as_value (GKeyFile               *key_file,
160                                                                 gint                    value);
161 static gdouble               g_key_file_parse_value_as_double  (GKeyFile               *key_file,
162                                                                 const gchar            *value,
163                                                                 GError                **error);
164 static gboolean              g_key_file_parse_value_as_boolean (GKeyFile               *key_file,
165                                                                 const gchar            *value,
166                                                                 GError                **error);
167 static gchar                *g_key_file_parse_boolean_as_value (GKeyFile               *key_file,
168                                                                 gboolean                value);
169 static gchar                *g_key_file_parse_value_as_comment (GKeyFile               *key_file,
170                                                                 const gchar            *value);
171 static gchar                *g_key_file_parse_comment_as_value (GKeyFile               *key_file,
172                                                                 const gchar            *comment);
173 static void                  g_key_file_parse_key_value_pair   (GKeyFile               *key_file,
174                                                                 const gchar            *line,
175                                                                 gsize                   length,
176                                                                 GError                **error);
177 static void                  g_key_file_parse_comment          (GKeyFile               *key_file,
178                                                                 const gchar            *line,
179                                                                 gsize                   length,
180                                                                 GError                **error);
181 static void                  g_key_file_parse_group            (GKeyFile               *key_file,
182                                                                 const gchar            *line,
183                                                                 gsize                   length,
184                                                                 GError                **error);
185 static gchar                *key_get_locale                    (const gchar            *key);
186 static void                  g_key_file_parse_data             (GKeyFile               *key_file,
187                                                                 const gchar            *data,
188                                                                 gsize                   length,
189                                                                 GError                **error);
190 static void                  g_key_file_flush_parse_buffer     (GKeyFile               *key_file,
191                                                                 GError                **error);
192
193
194 GQuark
195 g_key_file_error_quark (void)
196 {
197   return g_quark_from_static_string ("g-key-file-error-quark");
198 }
199
200 static void
201 g_key_file_init (GKeyFile *key_file)
202 {  
203   key_file->current_group = g_slice_new0 (GKeyFileGroup);
204   key_file->groups = g_list_prepend (NULL, key_file->current_group);
205   key_file->group_hash = g_hash_table_new (g_str_hash, g_str_equal);
206   key_file->start_group = NULL;
207   key_file->parse_buffer = g_string_sized_new (128);
208   key_file->approximate_size = 0;
209   key_file->list_separator = ';';
210   key_file->flags = 0;
211   key_file->locales = g_strdupv ((gchar **)g_get_language_names ());
212 }
213
214 static void
215 g_key_file_clear (GKeyFile *key_file)
216 {
217   GList *tmp, *group_node;
218
219   if (key_file->locales) 
220     {
221       g_strfreev (key_file->locales);
222       key_file->locales = NULL;
223     }
224
225   if (key_file->parse_buffer)
226     {
227       g_string_free (key_file->parse_buffer, TRUE);
228       key_file->parse_buffer = NULL;
229     }
230
231   tmp = key_file->groups;
232   while (tmp != NULL)
233     {
234       group_node = tmp;
235       tmp = tmp->next;
236       g_key_file_remove_group_node (key_file, group_node);
237     }
238
239   g_hash_table_destroy (key_file->group_hash);
240   key_file->group_hash = NULL;
241
242   g_warn_if_fail (key_file->groups == NULL);
243 }
244
245
246 /**
247  * g_key_file_new:
248  *
249  * Creates a new empty #GKeyFile object. Use
250  * g_key_file_load_from_file(), g_key_file_load_from_data(),
251  * g_key_file_load_from_dirs() or g_key_file_load_from_data_dirs() to
252  * read an existing key file.
253  *
254  * Return value: an empty #GKeyFile.
255  *
256  * Since: 2.6
257  **/
258 GKeyFile *
259 g_key_file_new (void)
260 {
261   GKeyFile *key_file;
262
263   key_file = g_slice_new0 (GKeyFile);
264   g_key_file_init (key_file);
265
266   return key_file;
267 }
268
269 /**
270  * g_key_file_set_list_separator:
271  * @key_file: a #GKeyFile 
272  * @separator: the separator
273  *
274  * Sets the character which is used to separate
275  * values in lists. Typically ';' or ',' are used
276  * as separators. The default list separator is ';'.
277  *
278  * Since: 2.6
279  */
280 void
281 g_key_file_set_list_separator (GKeyFile *key_file,
282                                gchar     separator)
283 {
284   g_return_if_fail (key_file != NULL);
285
286   key_file->list_separator = separator;
287 }
288
289
290 /* Iterates through all the directories in *dirs trying to
291  * open file.  When it successfully locates and opens a file it
292  * returns the file descriptor to the open file.  It also
293  * outputs the absolute path of the file in output_file.
294  */
295 static gint
296 find_file_in_data_dirs (const gchar   *file,
297                         const gchar  **dirs,
298                         gchar        **output_file,
299                         GError       **error)
300 {
301   const gchar **data_dirs, *data_dir;
302   gchar *path;
303   gint fd;
304
305   path = NULL;
306   fd = -1;
307
308   if (dirs == NULL)
309     return fd;
310
311   data_dirs = dirs;
312
313   while (data_dirs && (data_dir = *data_dirs) && fd < 0)
314     {
315       gchar *candidate_file, *sub_dir;
316
317       candidate_file = (gchar *) file;
318       sub_dir = g_strdup ("");
319       while (candidate_file != NULL && fd < 0)
320         {
321           gchar *p;
322
323           path = g_build_filename (data_dir, sub_dir,
324                                    candidate_file, NULL);
325
326           fd = g_open (path, O_RDONLY, 0);
327
328           if (fd < 0)
329             {
330               g_free (path);
331               path = NULL;
332             }
333
334           candidate_file = strchr (candidate_file, '-');
335
336           if (candidate_file == NULL)
337             break;
338
339           candidate_file++;
340
341           g_free (sub_dir);
342           sub_dir = g_strndup (file, candidate_file - file - 1);
343
344           for (p = sub_dir; *p != '\0'; p++)
345             {
346               if (*p == '-')
347                 *p = G_DIR_SEPARATOR;
348             }
349         }
350       g_free (sub_dir);
351       data_dirs++;
352     }
353
354   if (fd < 0)
355     {
356       g_set_error (error, G_KEY_FILE_ERROR,
357                    G_KEY_FILE_ERROR_NOT_FOUND,
358                    _("Valid key file could not be "
359                      "found in search dirs"));
360     }
361
362   if (output_file != NULL && fd > 0)
363     *output_file = g_strdup (path);
364
365   g_free (path);
366
367   return fd;
368 }
369
370 static gboolean
371 g_key_file_load_from_fd (GKeyFile       *key_file,
372                          gint            fd,
373                          GKeyFileFlags   flags,
374                          GError        **error)
375 {
376   GError *key_file_error = NULL;
377   gssize bytes_read;
378   struct stat stat_buf;
379   gchar read_buf[4096];
380   
381   if (fstat (fd, &stat_buf) < 0)
382     {
383       g_set_error (error, G_FILE_ERROR,
384                    g_file_error_from_errno (errno),
385                    "%s", g_strerror (errno));
386       return FALSE;
387     }
388
389   if (!S_ISREG (stat_buf.st_mode))
390     {
391       g_set_error (error, G_KEY_FILE_ERROR,
392                    G_KEY_FILE_ERROR_PARSE,
393                    _("Not a regular file"));
394       return FALSE;
395     }
396
397   if (stat_buf.st_size == 0)
398     {
399       g_set_error (error, G_KEY_FILE_ERROR,
400                    G_KEY_FILE_ERROR_PARSE,
401                    _("File is empty"));
402       return FALSE;
403     }
404
405   if (key_file->approximate_size > 0)
406     {
407       g_key_file_clear (key_file);
408       g_key_file_init (key_file);
409     }
410   key_file->flags = flags;
411
412   bytes_read = 0;
413   do
414     {
415       bytes_read = read (fd, read_buf, 4096);
416
417       if (bytes_read == 0)  /* End of File */
418         break;
419
420       if (bytes_read < 0)
421         {
422           if (errno == EINTR || errno == EAGAIN)
423             continue;
424
425           g_set_error (error, G_FILE_ERROR,
426                        g_file_error_from_errno (errno),
427                        "%s", g_strerror (errno));
428           return FALSE;
429         }
430
431       g_key_file_parse_data (key_file, 
432                              read_buf, bytes_read,
433                              &key_file_error);
434     }
435   while (!key_file_error);
436
437   if (key_file_error)
438     {
439       g_propagate_error (error, key_file_error);
440       return FALSE;
441     }
442
443   g_key_file_flush_parse_buffer (key_file, &key_file_error);
444
445   if (key_file_error)
446     {
447       g_propagate_error (error, key_file_error);
448       return FALSE;
449     }
450
451   return TRUE;
452 }
453
454 /**
455  * g_key_file_load_from_file:
456  * @key_file: an empty #GKeyFile struct
457  * @file: the path of a filename to load, in the GLib filename encoding
458  * @flags: flags from #GKeyFileFlags
459  * @error: return location for a #GError, or %NULL
460  *
461  * Loads a key file into an empty #GKeyFile structure.
462  * If the file could not be loaded then %error is set to 
463  * either a #GFileError or #GKeyFileError.
464  *
465  * Return value: %TRUE if a key file could be loaded, %FALSE otherwise
466  *
467  * Since: 2.6
468  **/
469 gboolean
470 g_key_file_load_from_file (GKeyFile       *key_file,
471                            const gchar    *file,
472                            GKeyFileFlags   flags,
473                            GError        **error)
474 {
475   GError *key_file_error = NULL;
476   gint fd;
477
478   g_return_val_if_fail (key_file != NULL, FALSE);
479   g_return_val_if_fail (file != NULL, FALSE);
480
481   fd = g_open (file, O_RDONLY, 0);
482
483   if (fd < 0)
484     {
485       g_set_error (error, G_FILE_ERROR,
486                    g_file_error_from_errno (errno),
487                    "%s", g_strerror (errno));
488       return FALSE;
489     }
490
491   g_key_file_load_from_fd (key_file, fd, flags, &key_file_error);
492   close (fd);
493
494   if (key_file_error)
495     {
496       g_propagate_error (error, key_file_error);
497       return FALSE;
498     }
499
500   return TRUE;
501 }
502
503 /**
504  * g_key_file_load_from_data:
505  * @key_file: an empty #GKeyFile struct
506  * @data: key file loaded in memory
507  * @length: the length of @data in bytes
508  * @flags: flags from #GKeyFileFlags
509  * @error: return location for a #GError, or %NULL
510  *
511  * Loads a key file from memory into an empty #GKeyFile structure.  
512  * If the object cannot be created then %error is set to a #GKeyFileError. 
513  *
514  * Return value: %TRUE if a key file could be loaded, %FALSE otherwise
515  *
516  * Since: 2.6
517  **/
518 gboolean
519 g_key_file_load_from_data (GKeyFile       *key_file,
520                            const gchar    *data,
521                            gsize           length,
522                            GKeyFileFlags   flags,
523                            GError        **error)
524 {
525   GError *key_file_error = NULL;
526
527   g_return_val_if_fail (key_file != NULL, FALSE);
528   g_return_val_if_fail (data != NULL, FALSE);
529   g_return_val_if_fail (length != 0, FALSE);
530
531   if (length == (gsize)-1)
532     length = strlen (data);
533
534   if (key_file->approximate_size > 0)
535     {
536       g_key_file_clear (key_file);
537       g_key_file_init (key_file);
538     }
539   key_file->flags = flags;
540
541   g_key_file_parse_data (key_file, data, length, &key_file_error);
542   
543   if (key_file_error)
544     {
545       g_propagate_error (error, key_file_error);
546       return FALSE;
547     }
548
549   g_key_file_flush_parse_buffer (key_file, &key_file_error);
550   
551   if (key_file_error)
552     {
553       g_propagate_error (error, key_file_error);
554       return FALSE;
555     }
556
557   return TRUE;
558 }
559
560 /**
561  * g_key_file_load_from_dirs:
562  * @key_file: an empty #GKeyFile struct
563  * @file: a relative path to a filename to open and parse
564  * @search_dirs: %NULL-terminated array of directories to search
565  * @full_path: return location for a string containing the full path
566  *   of the file, or %NULL
567  * @flags: flags from #GKeyFileFlags
568  * @error: return location for a #GError, or %NULL
569  *
570  * This function looks for a key file named @file in the paths
571  * specified in @search_dirs, loads the file into @key_file and
572  * returns the file's full path in @full_path.  If the file could not
573  * be loaded then an %error is set to either a #GFileError or
574  * #GKeyFileError.
575  *
576  * Return value: %TRUE if a key file could be loaded, %FALSE otherwise
577  *
578  * Since: 2.14
579  **/
580 gboolean
581 g_key_file_load_from_dirs (GKeyFile       *key_file,
582                            const gchar    *file,
583                            const gchar   **search_dirs,
584                            gchar         **full_path,
585                            GKeyFileFlags   flags,
586                            GError        **error)
587 {
588   GError *key_file_error = NULL;
589   const gchar **data_dirs;
590   gchar *output_path;
591   gint fd;
592   gboolean found_file;
593
594   g_return_val_if_fail (key_file != NULL, FALSE);
595   g_return_val_if_fail (!g_path_is_absolute (file), FALSE);
596   g_return_val_if_fail (search_dirs != NULL, FALSE);
597
598   found_file = FALSE;
599   data_dirs = search_dirs;
600   output_path = NULL;
601   while (*data_dirs != NULL && !found_file)
602     {
603       g_free (output_path);
604
605       fd = find_file_in_data_dirs (file, data_dirs, &output_path,
606                                    &key_file_error);
607
608       if (fd < 0)
609         {
610           if (key_file_error)
611             g_propagate_error (error, key_file_error);
612           break;
613         }
614
615       found_file = g_key_file_load_from_fd (key_file, fd, flags,
616                                             &key_file_error);
617       close (fd);
618
619       if (key_file_error)
620         {
621           g_propagate_error (error, key_file_error);
622           break;
623         }
624     }
625
626   if (found_file && full_path)
627     *full_path = output_path;
628   else
629     g_free (output_path);
630
631   return found_file;
632 }
633
634 /**
635  * g_key_file_load_from_data_dirs:
636  * @key_file: an empty #GKeyFile struct
637  * @file: a relative path to a filename to open and parse
638  * @full_path: return location for a string containing the full path
639  *   of the file, or %NULL
640  * @flags: flags from #GKeyFileFlags 
641  * @error: return location for a #GError, or %NULL
642  *
643  * This function looks for a key file named @file in the paths 
644  * returned from g_get_user_data_dir() and g_get_system_data_dirs(), 
645  * loads the file into @key_file and returns the file's full path in 
646  * @full_path.  If the file could not be loaded then an %error is
647  * set to either a #GFileError or #GKeyFileError.
648  *
649  * Return value: %TRUE if a key file could be loaded, %FALSE othewise
650  * Since: 2.6
651  **/
652 gboolean
653 g_key_file_load_from_data_dirs (GKeyFile       *key_file,
654                                 const gchar    *file,
655                                 gchar         **full_path,
656                                 GKeyFileFlags   flags,
657                                 GError        **error)
658 {
659   gchar **all_data_dirs;
660   const gchar * user_data_dir;
661   const gchar * const * system_data_dirs;
662   gsize i, j;
663   gboolean found_file;
664
665   g_return_val_if_fail (key_file != NULL, FALSE);
666   g_return_val_if_fail (!g_path_is_absolute (file), FALSE);
667
668   user_data_dir = g_get_user_data_dir ();
669   system_data_dirs = g_get_system_data_dirs ();
670   all_data_dirs = g_new (gchar *, g_strv_length ((gchar **)system_data_dirs) + 2);
671
672   i = 0;
673   all_data_dirs[i++] = g_strdup (user_data_dir);
674
675   j = 0;
676   while (system_data_dirs[j] != NULL)
677     all_data_dirs[i++] = g_strdup (system_data_dirs[j++]);
678   all_data_dirs[i] = NULL;
679
680   found_file = g_key_file_load_from_dirs (key_file,
681                                           file,
682                                           (const gchar **)all_data_dirs,
683                                           full_path,
684                                           flags,
685                                           error);
686
687   g_strfreev (all_data_dirs);
688
689   return found_file;
690 }
691
692 /**
693  * g_key_file_free:
694  * @key_file: a #GKeyFile
695  *
696  * Frees a #GKeyFile.
697  *
698  * Since: 2.6
699  **/
700 void
701 g_key_file_free (GKeyFile *key_file)
702 {
703   g_return_if_fail (key_file != NULL);
704   
705   g_key_file_clear (key_file);
706   g_slice_free (GKeyFile, key_file);
707 }
708
709 /* If G_KEY_FILE_KEEP_TRANSLATIONS is not set, only returns
710  * true for locales that match those in g_get_language_names().
711  */
712 static gboolean
713 g_key_file_locale_is_interesting (GKeyFile    *key_file,
714                                   const gchar *locale)
715 {
716   gsize i;
717
718   if (key_file->flags & G_KEY_FILE_KEEP_TRANSLATIONS)
719     return TRUE;
720
721   for (i = 0; key_file->locales[i] != NULL; i++)
722     {
723       if (g_ascii_strcasecmp (key_file->locales[i], locale) == 0)
724         return TRUE;
725     }
726
727   return FALSE;
728 }
729
730 static void
731 g_key_file_parse_line (GKeyFile     *key_file,
732                        const gchar  *line,
733                        gsize         length,
734                        GError      **error)
735 {
736   GError *parse_error = NULL;
737   gchar *line_start;
738
739   g_return_if_fail (key_file != NULL);
740   g_return_if_fail (line != NULL);
741
742   line_start = (gchar *) line;
743   while (g_ascii_isspace (*line_start))
744     line_start++;
745
746   if (g_key_file_line_is_comment (line_start))
747     g_key_file_parse_comment (key_file, line, length, &parse_error);
748   else if (g_key_file_line_is_group (line_start))
749     g_key_file_parse_group (key_file, line_start,
750                             length - (line_start - line),
751                             &parse_error);
752   else if (g_key_file_line_is_key_value_pair (line_start))
753     g_key_file_parse_key_value_pair (key_file, line_start,
754                                      length - (line_start - line),
755                                      &parse_error);
756   else
757     {
758       gchar *line_utf8 = _g_utf8_make_valid (line);
759       g_set_error (error, G_KEY_FILE_ERROR,
760                    G_KEY_FILE_ERROR_PARSE,
761                    _("Key file contains line '%s' which is not "
762                      "a key-value pair, group, or comment"), 
763                    line_utf8);
764       g_free (line_utf8);
765
766       return;
767     }
768
769   if (parse_error)
770     g_propagate_error (error, parse_error);
771 }
772
773 static void
774 g_key_file_parse_comment (GKeyFile     *key_file,
775                           const gchar  *line,
776                           gsize         length,
777                           GError      **error)
778 {
779   GKeyFileKeyValuePair *pair;
780   
781   if (!(key_file->flags & G_KEY_FILE_KEEP_COMMENTS))
782     return;
783   
784   g_warn_if_fail (key_file->current_group != NULL);
785
786   pair = g_slice_new (GKeyFileKeyValuePair);
787   pair->key = NULL;
788   pair->value = g_strndup (line, length);
789   
790   key_file->current_group->key_value_pairs =
791     g_list_prepend (key_file->current_group->key_value_pairs, pair);
792
793   if (length == 0 || line[0] != '#')
794     key_file->current_group->has_trailing_blank_line = TRUE;
795 }
796
797 static void
798 g_key_file_parse_group (GKeyFile     *key_file,
799                         const gchar  *line,
800                         gsize         length,
801                         GError      **error)
802 {
803   gchar *group_name;
804   const gchar *group_name_start, *group_name_end;
805   
806   /* advance past opening '['
807    */
808   group_name_start = line + 1;
809   group_name_end = line + length - 1;
810   
811   while (*group_name_end != ']')
812     group_name_end--;
813
814   group_name = g_strndup (group_name_start, 
815                           group_name_end - group_name_start);
816   
817   if (!g_key_file_is_group_name (group_name))
818     {
819       g_set_error (error, G_KEY_FILE_ERROR,
820                    G_KEY_FILE_ERROR_PARSE,
821                    _("Invalid group name: %s"), group_name);
822       g_free (group_name);
823       return;
824     }
825
826   g_key_file_add_group (key_file, group_name);
827   g_free (group_name);
828 }
829
830 static void
831 g_key_file_parse_key_value_pair (GKeyFile     *key_file,
832                                  const gchar  *line,
833                                  gsize         length,
834                                  GError      **error)
835 {
836   gchar *key, *value, *key_end, *value_start, *locale;
837   gsize key_len, value_len;
838
839   if (key_file->current_group == NULL || key_file->current_group->name == NULL)
840     {
841       g_set_error (error, G_KEY_FILE_ERROR,
842                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
843                    _("Key file does not start with a group"));
844       return;
845     }
846
847   key_end = value_start = strchr (line, '=');
848
849   g_warn_if_fail (key_end != NULL);
850
851   key_end--;
852   value_start++;
853
854   /* Pull the key name from the line (chomping trailing whitespace)
855    */
856   while (g_ascii_isspace (*key_end))
857     key_end--;
858
859   key_len = key_end - line + 2;
860
861   g_warn_if_fail (key_len <= length);
862
863   key = g_strndup (line, key_len - 1);
864
865   if (!g_key_file_is_key_name (key))
866     {
867       g_set_error (error, G_KEY_FILE_ERROR,
868                    G_KEY_FILE_ERROR_PARSE,
869                    _("Invalid key name: %s"), key);
870       g_free (key);
871       return; 
872     }
873
874   /* Pull the value from the line (chugging leading whitespace)
875    */
876   while (g_ascii_isspace (*value_start))
877     value_start++;
878
879   value_len = line + length - value_start + 1;
880
881   value = g_strndup (value_start, value_len);
882
883   g_warn_if_fail (key_file->start_group != NULL);
884
885   if (key_file->current_group
886       && key_file->current_group->name
887       && strcmp (key_file->start_group->name,
888                  key_file->current_group->name) == 0
889       && strcmp (key, "Encoding") == 0)
890     {
891       if (g_ascii_strcasecmp (value, "UTF-8") != 0)
892         {
893           gchar *value_utf8 = _g_utf8_make_valid (value);
894           g_set_error (error, G_KEY_FILE_ERROR,
895                        G_KEY_FILE_ERROR_UNKNOWN_ENCODING,
896                        _("Key file contains unsupported "
897                          "encoding '%s'"), value_utf8);
898           g_free (value_utf8);
899
900           g_free (key);
901           g_free (value);
902           return;
903         }
904     }
905
906   /* Is this key a translation? If so, is it one that we care about?
907    */
908   locale = key_get_locale (key);
909
910   if (locale == NULL || g_key_file_locale_is_interesting (key_file, locale))
911     g_key_file_add_key (key_file, key_file->current_group, key, value);
912
913   g_free (locale);
914   g_free (key);
915   g_free (value);
916 }
917
918 static gchar *
919 key_get_locale (const gchar *key)
920 {
921   gchar *locale;
922
923   locale = g_strrstr (key, "[");
924
925   if (locale && strlen (locale) <= 2)
926     locale = NULL;
927
928   if (locale)
929     locale = g_strndup (locale + 1, strlen (locale) - 2);
930
931   return locale;
932 }
933
934 static void
935 g_key_file_parse_data (GKeyFile     *key_file,
936                        const gchar  *data,
937                        gsize         length,
938                        GError      **error)
939 {
940   GError *parse_error;
941   gsize i;
942
943   g_return_if_fail (key_file != NULL);
944   g_return_if_fail (data != NULL);
945
946   parse_error = NULL;
947
948   for (i = 0; i < length; i++)
949     {
950       if (data[i] == '\n')
951         {
952           if (i > 0 && data[i - 1] == '\r')
953             g_string_erase (key_file->parse_buffer,
954                             key_file->parse_buffer->len - 1,
955                             1);
956             
957           /* When a newline is encountered flush the parse buffer so that the
958            * line can be parsed.  Note that completely blank lines won't show
959            * up in the parse buffer, so they get parsed directly.
960            */
961           if (key_file->parse_buffer->len > 0)
962             g_key_file_flush_parse_buffer (key_file, &parse_error);
963           else
964             g_key_file_parse_comment (key_file, "", 1, &parse_error);
965
966           if (parse_error)
967             {
968               g_propagate_error (error, parse_error);
969               return;
970             }
971         }
972       else
973         g_string_append_c (key_file->parse_buffer, data[i]);
974     }
975
976   key_file->approximate_size += length;
977 }
978
979 static void
980 g_key_file_flush_parse_buffer (GKeyFile  *key_file,
981                                GError   **error)
982 {
983   GError *file_error = NULL;
984
985   g_return_if_fail (key_file != NULL);
986
987   file_error = NULL;
988
989   if (key_file->parse_buffer->len > 0)
990     {
991       g_key_file_parse_line (key_file, key_file->parse_buffer->str,
992                              key_file->parse_buffer->len,
993                              &file_error);
994       g_string_erase (key_file->parse_buffer, 0, -1);
995
996       if (file_error)
997         {
998           g_propagate_error (error, file_error);
999           return;
1000         }
1001     }
1002 }
1003
1004 /**
1005  * g_key_file_to_data:
1006  * @key_file: a #GKeyFile
1007  * @length: return location for the length of the 
1008  *   returned string, or %NULL
1009  * @error: return location for a #GError, or %NULL
1010  *
1011  * This function outputs @key_file as a string.  
1012  *
1013  * Return value: a newly allocated string holding
1014  *   the contents of the #GKeyFile 
1015  *
1016  * Since: 2.6
1017  **/
1018 gchar *
1019 g_key_file_to_data (GKeyFile  *key_file,
1020                     gsize     *length,
1021                     GError   **error)
1022 {
1023   GString *data_string;
1024   GList *group_node, *key_file_node;
1025   gboolean has_blank_line = TRUE;
1026
1027   g_return_val_if_fail (key_file != NULL, NULL);
1028
1029   data_string = g_string_sized_new (2 * key_file->approximate_size);
1030   
1031   for (group_node = g_list_last (key_file->groups);
1032        group_node != NULL;
1033        group_node = group_node->prev)
1034     {
1035       GKeyFileGroup *group;
1036
1037       group = (GKeyFileGroup *) group_node->data;
1038
1039       /* separate groups by at least an empty line */
1040       if (!has_blank_line)
1041         g_string_append_c (data_string, '\n');
1042       has_blank_line = group->has_trailing_blank_line;
1043
1044       if (group->comment != NULL)
1045         g_string_append_printf (data_string, "%s\n", group->comment->value);
1046
1047       if (group->name != NULL)
1048         g_string_append_printf (data_string, "[%s]\n", group->name);
1049
1050       for (key_file_node = g_list_last (group->key_value_pairs);
1051            key_file_node != NULL;
1052            key_file_node = key_file_node->prev)
1053         {
1054           GKeyFileKeyValuePair *pair;
1055
1056           pair = (GKeyFileKeyValuePair *) key_file_node->data;
1057
1058           if (pair->key != NULL)
1059             g_string_append_printf (data_string, "%s=%s\n", pair->key, pair->value);
1060           else
1061             g_string_append_printf (data_string, "%s\n", pair->value);
1062         }
1063     }
1064
1065   if (length)
1066     *length = data_string->len;
1067
1068   return g_string_free (data_string, FALSE);
1069 }
1070
1071 /**
1072  * g_key_file_get_keys:
1073  * @key_file: a #GKeyFile
1074  * @group_name: a group name
1075  * @length: return location for the number of keys returned, or %NULL
1076  * @error: return location for a #GError, or %NULL
1077  *
1078  * Returns all keys for the group name @group_name.  The array of
1079  * returned keys will be %NULL-terminated, so @length may
1080  * optionally be %NULL. In the event that the @group_name cannot
1081  * be found, %NULL is returned and @error is set to
1082  * #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.
1083  *
1084  * Return value: a newly-allocated %NULL-terminated array of strings. 
1085  *     Use g_strfreev() to free it.
1086  *
1087  * Since: 2.6
1088  **/
1089 gchar **
1090 g_key_file_get_keys (GKeyFile     *key_file,
1091                      const gchar  *group_name,
1092                      gsize        *length,
1093                      GError      **error)
1094 {
1095   GKeyFileGroup *group;
1096   GList *tmp;
1097   gchar **keys;
1098   gsize i, num_keys;
1099   
1100   g_return_val_if_fail (key_file != NULL, NULL);
1101   g_return_val_if_fail (group_name != NULL, NULL);
1102   
1103   group = g_key_file_lookup_group (key_file, group_name);
1104   
1105   if (!group)
1106     {
1107       g_set_error (error, G_KEY_FILE_ERROR,
1108                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
1109                    _("Key file does not have group '%s'"),
1110                    group_name ? group_name : "(null)");
1111       return NULL;
1112     }
1113
1114   num_keys = 0;
1115   for (tmp = group->key_value_pairs; tmp; tmp = tmp->next)
1116     {
1117       GKeyFileKeyValuePair *pair;
1118
1119       pair = (GKeyFileKeyValuePair *) tmp->data;
1120
1121       if (pair->key)
1122         num_keys++;
1123     }
1124   
1125   keys = g_new (gchar *, num_keys + 1);
1126
1127   i = num_keys - 1;
1128   for (tmp = group->key_value_pairs; tmp; tmp = tmp->next)
1129     {
1130       GKeyFileKeyValuePair *pair;
1131
1132       pair = (GKeyFileKeyValuePair *) tmp->data;
1133
1134       if (pair->key)
1135         {
1136           keys[i] = g_strdup (pair->key);
1137           i--;
1138         }
1139     }
1140
1141   keys[num_keys] = NULL;
1142
1143   if (length)
1144     *length = num_keys;
1145
1146   return keys;
1147 }
1148
1149 /**
1150  * g_key_file_get_start_group:
1151  * @key_file: a #GKeyFile
1152  *
1153  * Returns the name of the start group of the file. 
1154  *
1155  * Return value: The start group of the key file.
1156  *
1157  * Since: 2.6
1158  **/
1159 gchar *
1160 g_key_file_get_start_group (GKeyFile *key_file)
1161 {
1162   g_return_val_if_fail (key_file != NULL, NULL);
1163
1164   if (key_file->start_group)
1165     return g_strdup (key_file->start_group->name);
1166
1167   return NULL;
1168 }
1169
1170 /**
1171  * g_key_file_get_groups:
1172  * @key_file: a #GKeyFile
1173  * @length: return location for the number of returned groups, or %NULL
1174  *
1175  * Returns all groups in the key file loaded with @key_file.  
1176  * The array of returned groups will be %NULL-terminated, so 
1177  * @length may optionally be %NULL.
1178  *
1179  * Return value: a newly-allocated %NULL-terminated array of strings. 
1180  *   Use g_strfreev() to free it.
1181  * Since: 2.6
1182  **/
1183 gchar **
1184 g_key_file_get_groups (GKeyFile *key_file,
1185                        gsize    *length)
1186 {
1187   GList *group_node;
1188   gchar **groups;
1189   gsize i, num_groups;
1190
1191   g_return_val_if_fail (key_file != NULL, NULL);
1192
1193   num_groups = g_list_length (key_file->groups);
1194
1195   g_return_val_if_fail (num_groups > 0, NULL);
1196
1197   group_node = g_list_last (key_file->groups);
1198   
1199   g_return_val_if_fail (((GKeyFileGroup *) group_node->data)->name == NULL, NULL);
1200
1201   /* Only need num_groups instead of num_groups + 1
1202    * because the first group of the file (last in the
1203    * list) is always the comment group at the top,
1204    * which we skip
1205    */
1206   groups = g_new (gchar *, num_groups);
1207
1208
1209   i = 0;
1210   for (group_node = group_node->prev;
1211        group_node != NULL;
1212        group_node = group_node->prev)
1213     {
1214       GKeyFileGroup *group;
1215
1216       group = (GKeyFileGroup *) group_node->data;
1217
1218       g_warn_if_fail (group->name != NULL);
1219
1220       groups[i++] = g_strdup (group->name);
1221     }
1222   groups[i] = NULL;
1223
1224   if (length)
1225     *length = i;
1226
1227   return groups;
1228 }
1229
1230 /**
1231  * g_key_file_get_value:
1232  * @key_file: a #GKeyFile
1233  * @group_name: a group name
1234  * @key: a key
1235  * @error: return location for a #GError, or %NULL
1236  *
1237  * Returns the value associated with @key under @group_name.  
1238  *
1239  * In the event the key cannot be found, %NULL is returned and 
1240  * @error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND.  In the 
1241  * event that the @group_name cannot be found, %NULL is returned 
1242  * and @error is set to #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.
1243  *
1244  * Return value: a newly allocated string or %NULL if the specified 
1245  *  key cannot be found.
1246  *
1247  * Since: 2.6
1248  **/
1249 gchar *
1250 g_key_file_get_value (GKeyFile     *key_file,
1251                       const gchar  *group_name,
1252                       const gchar  *key,
1253                       GError      **error)
1254 {
1255   GKeyFileGroup *group;
1256   GKeyFileKeyValuePair *pair;
1257   gchar *value = NULL;
1258
1259   g_return_val_if_fail (key_file != NULL, NULL);
1260   g_return_val_if_fail (group_name != NULL, NULL);
1261   g_return_val_if_fail (key != NULL, NULL);
1262   
1263   group = g_key_file_lookup_group (key_file, group_name);
1264
1265   if (!group)
1266     {
1267       g_set_error (error, G_KEY_FILE_ERROR,
1268                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
1269                    _("Key file does not have group '%s'"),
1270                    group_name ? group_name : "(null)");
1271       return NULL;
1272     }
1273
1274   pair = g_key_file_lookup_key_value_pair (key_file, group, key);
1275
1276   if (pair)
1277     value = g_strdup (pair->value);
1278   else
1279     g_set_error (error, G_KEY_FILE_ERROR,
1280                  G_KEY_FILE_ERROR_KEY_NOT_FOUND,
1281                  _("Key file does not have key '%s'"), key);
1282
1283   return value;
1284 }
1285
1286 /**
1287  * g_key_file_set_value:
1288  * @key_file: a #GKeyFile
1289  * @group_name: a group name
1290  * @key: a key
1291  * @value: a string
1292  *
1293  * Associates a new value with @key under @group_name.  
1294  * If @key cannot be found then it is created. 
1295  * If @group_name cannot be found then it is created.
1296  *
1297  * Since: 2.6
1298  **/
1299 void
1300 g_key_file_set_value (GKeyFile    *key_file,
1301                       const gchar *group_name,
1302                       const gchar *key,
1303                       const gchar *value)
1304 {
1305   GKeyFileGroup *group;
1306   GKeyFileKeyValuePair *pair;
1307
1308   g_return_if_fail (key_file != NULL);
1309   g_return_if_fail (g_key_file_is_group_name (group_name));
1310   g_return_if_fail (g_key_file_is_key_name (key));
1311   g_return_if_fail (value != NULL);
1312
1313   group = g_key_file_lookup_group (key_file, group_name);
1314
1315   if (!group)
1316     {
1317       g_key_file_add_group (key_file, group_name);
1318       group = (GKeyFileGroup *) key_file->groups->data;
1319
1320       g_key_file_add_key (key_file, group, key, value);
1321     }
1322   else
1323     {
1324       pair = g_key_file_lookup_key_value_pair (key_file, group, key);
1325
1326       if (!pair)
1327         g_key_file_add_key (key_file, group, key, value);
1328       else
1329         {
1330           g_free (pair->value);
1331           pair->value = g_strdup (value);
1332         }
1333     }
1334 }
1335
1336 /**
1337  * g_key_file_get_string:
1338  * @key_file: a #GKeyFile
1339  * @group_name: a group name
1340  * @key: a key
1341  * @error: return location for a #GError, or %NULL
1342  *
1343  * Returns the value associated with @key under @group_name.  
1344  *
1345  * In the event the key cannot be found, %NULL is returned and 
1346  * @error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND.  In the 
1347  * event that the @group_name cannot be found, %NULL is returned 
1348  * and @error is set to #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.
1349  *
1350  * Return value: a newly allocated string or %NULL if the specified 
1351  *   key cannot be found.
1352  *
1353  * Since: 2.6
1354  **/
1355 gchar *
1356 g_key_file_get_string (GKeyFile     *key_file,
1357                        const gchar  *group_name,
1358                        const gchar  *key,
1359                        GError      **error)
1360 {
1361   gchar *value, *string_value;
1362   GError *key_file_error;
1363
1364   g_return_val_if_fail (key_file != NULL, NULL);
1365   g_return_val_if_fail (group_name != NULL, NULL);
1366   g_return_val_if_fail (key != NULL, NULL);
1367
1368   key_file_error = NULL;
1369
1370   value = g_key_file_get_value (key_file, group_name, key, &key_file_error);
1371
1372   if (key_file_error)
1373     {
1374       g_propagate_error (error, key_file_error);
1375       return NULL;
1376     }
1377
1378   if (!g_utf8_validate (value, -1, NULL))
1379     {
1380       gchar *value_utf8 = _g_utf8_make_valid (value);
1381       g_set_error (error, G_KEY_FILE_ERROR,
1382                    G_KEY_FILE_ERROR_UNKNOWN_ENCODING,
1383                    _("Key file contains key '%s' with value '%s' "
1384                      "which is not UTF-8"), key, value_utf8);
1385       g_free (value_utf8);
1386       g_free (value);
1387
1388       return NULL;
1389     }
1390
1391   string_value = g_key_file_parse_value_as_string (key_file, value, NULL,
1392                                                    &key_file_error);
1393   g_free (value);
1394
1395   if (key_file_error)
1396     {
1397       if (g_error_matches (key_file_error,
1398                            G_KEY_FILE_ERROR,
1399                            G_KEY_FILE_ERROR_INVALID_VALUE))
1400         {
1401           g_set_error (error, G_KEY_FILE_ERROR,
1402                        G_KEY_FILE_ERROR_INVALID_VALUE,
1403                        _("Key file contains key '%s' "
1404                          "which has value that cannot be interpreted."),
1405                        key);
1406           g_error_free (key_file_error);
1407         }
1408       else
1409         g_propagate_error (error, key_file_error);
1410     }
1411
1412   return string_value;
1413 }
1414
1415 /**
1416  * g_key_file_set_string:
1417  * @key_file: a #GKeyFile
1418  * @group_name: a group name
1419  * @key: a key
1420  * @string: a string
1421  *
1422  * Associates a new string value with @key under @group_name.  
1423  * If @key cannot be found then it is created.  
1424  * If @group_name cannot be found then it is created.
1425  *
1426  * Since: 2.6
1427  **/
1428 void
1429 g_key_file_set_string (GKeyFile    *key_file,
1430                        const gchar *group_name,
1431                        const gchar *key,
1432                        const gchar *string)
1433 {
1434   gchar *value;
1435
1436   g_return_if_fail (key_file != NULL);
1437   g_return_if_fail (string != NULL);
1438
1439   value = g_key_file_parse_string_as_value (key_file, string, FALSE);
1440   g_key_file_set_value (key_file, group_name, key, value);
1441   g_free (value);
1442 }
1443
1444 /**
1445  * g_key_file_get_string_list:
1446  * @key_file: a #GKeyFile
1447  * @group_name: a group name
1448  * @key: a key
1449  * @length: return location for the number of returned strings, or %NULL
1450  * @error: return location for a #GError, or %NULL
1451  *
1452  * Returns the values associated with @key under @group_name.
1453  *
1454  * In the event the key cannot be found, %NULL is returned and
1455  * @error is set to #G_KEY_FILE_ERROR_KEY_NOT_FOUND.  In the
1456  * event that the @group_name cannot be found, %NULL is returned
1457  * and @error is set to #G_KEY_FILE_ERROR_GROUP_NOT_FOUND.
1458  *
1459  * Return value: a %NULL-terminated string array or %NULL if the specified 
1460  *   key cannot be found. The array should be freed with g_strfreev().
1461  *
1462  * Since: 2.6
1463  **/
1464 gchar **
1465 g_key_file_get_string_list (GKeyFile     *key_file,
1466                             const gchar  *group_name,
1467                             const gchar  *key,
1468                             gsize        *length,
1469                             GError      **error)
1470 {
1471   GError *key_file_error = NULL;
1472   gchar *value, *string_value, **values;
1473   gint i, len;
1474   GSList *p, *pieces = NULL;
1475
1476   g_return_val_if_fail (key_file != NULL, NULL);
1477   g_return_val_if_fail (group_name != NULL, NULL);
1478   g_return_val_if_fail (key != NULL, NULL);
1479
1480   if (length)
1481     *length = 0;
1482
1483   value = g_key_file_get_value (key_file, group_name, key, &key_file_error);
1484
1485   if (key_file_error)
1486     {
1487       g_propagate_error (error, key_file_error);
1488       return NULL;
1489     }
1490
1491   if (!g_utf8_validate (value, -1, NULL))
1492     {
1493       gchar *value_utf8 = _g_utf8_make_valid (value);
1494       g_set_error (error, G_KEY_FILE_ERROR,
1495                    G_KEY_FILE_ERROR_UNKNOWN_ENCODING,
1496                    _("Key file contains key '%s' with value '%s' "
1497                      "which is not UTF-8"), key, value_utf8);
1498       g_free (value_utf8);
1499       g_free (value);
1500
1501       return NULL;
1502     }
1503
1504   string_value = g_key_file_parse_value_as_string (key_file, value, &pieces, &key_file_error);
1505   g_free (value);
1506   g_free (string_value);
1507
1508   if (key_file_error)
1509     {
1510       if (g_error_matches (key_file_error,
1511                            G_KEY_FILE_ERROR,
1512                            G_KEY_FILE_ERROR_INVALID_VALUE))
1513         {
1514           g_set_error (error, G_KEY_FILE_ERROR,
1515                        G_KEY_FILE_ERROR_INVALID_VALUE,
1516                        _("Key file contains key '%s' "
1517                          "which has value that cannot be interpreted."),
1518                        key);
1519           g_error_free (key_file_error);
1520         }
1521       else
1522         g_propagate_error (error, key_file_error);
1523     }
1524
1525   len = g_slist_length (pieces);
1526   values = g_new (gchar *, len + 1);
1527   for (p = pieces, i = 0; p; p = p->next)
1528     values[i++] = p->data;
1529   values[len] = NULL;
1530
1531   g_slist_free (pieces);
1532
1533   if (length)
1534     *length = len;
1535
1536   return values;
1537 }
1538
1539 /**
1540  * g_key_file_set_string_list:
1541  * @key_file: a #GKeyFile
1542  * @group_name: a group name
1543  * @key: a key
1544  * @list: an array of locale string values
1545  * @length: number of locale string values in @list
1546  *
1547  * Associates a list of string values for @key under @group_name.
1548  * If @key cannot be found then it is created.  
1549  * If @group_name cannot be found then it is created.
1550  *
1551  * Since: 2.6
1552  **/
1553 void
1554 g_key_file_set_string_list (GKeyFile            *key_file,
1555                             const gchar         *group_name,
1556                             const gchar         *key,
1557                             const gchar * const  list[],
1558                             gsize                length)
1559 {
1560   GString *value_list;
1561   gsize i;
1562
1563   g_return_if_fail (key_file != NULL);
1564   g_return_if_fail (list != NULL);
1565
1566   value_list = g_string_sized_new (length * 128);
1567   for (i = 0; i < length && list[i] != NULL; i++)
1568     {
1569       gchar *value;
1570
1571       value = g_key_file_parse_string_as_value (key_file, list[i], TRUE);
1572       g_string_append (value_list, value);
1573       g_string_append_c (value_list, key_file->list_separator);
1574
1575       g_free (value);
1576     }
1577
1578   g_key_file_set_value (key_file, group_name, key, value_list->str);
1579   g_string_free (value_list, TRUE);
1580 }
1581
1582 /**
1583  * g_key_file_set_locale_string:
1584  * @key_file: a #GKeyFile
1585  * @group_name: a group name
1586  * @key: a key
1587  * @locale: a locale
1588  * @string: a string
1589  *
1590  * Associates a string value for @key and @locale under @group_name.  
1591  * If the translation for @key cannot be found then it is created.
1592  *
1593  * Since: 2.6
1594  **/
1595 void
1596 g_key_file_set_locale_string (GKeyFile     *key_file,
1597                               const gchar  *group_name,
1598                               const gchar  *key,
1599                               const gchar  *locale,
1600                               const gchar  *string)
1601 {
1602   gchar *full_key, *value;
1603
1604   g_return_if_fail (key_file != NULL);
1605   g_return_if_fail (key != NULL);
1606   g_return_if_fail (locale != NULL);
1607   g_return_if_fail (string != NULL);
1608
1609   value = g_key_file_parse_string_as_value (key_file, string, FALSE);
1610   full_key = g_strdup_printf ("%s[%s]", key, locale);
1611   g_key_file_set_value (key_file, group_name, full_key, value);
1612   g_free (full_key);
1613   g_free (value);
1614 }
1615
1616 extern GSList *_g_compute_locale_variants (const gchar *locale);
1617
1618 /**
1619  * g_key_file_get_locale_string:
1620  * @key_file: a #GKeyFile
1621  * @group_name: a group name
1622  * @key: a key
1623  * @locale: a locale or %NULL
1624  * @error: return location for a #GError, or %NULL
1625  *
1626  * Returns the value associated with @key under @group_name
1627  * translated in the given @locale if available.  If @locale is
1628  * %NULL then the current locale is assumed. 
1629  *
1630  * If @key cannot be found then %NULL is returned and @error is set 
1631  * to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. If the value associated
1632  * with @key cannot be interpreted or no suitable translation can
1633  * be found then the untranslated value is returned.
1634  *
1635  * Return value: a newly allocated string or %NULL if the specified 
1636  *   key cannot be found.
1637  *
1638  * Since: 2.6
1639  **/
1640 gchar *
1641 g_key_file_get_locale_string (GKeyFile     *key_file,
1642                               const gchar  *group_name,
1643                               const gchar  *key,
1644                               const gchar  *locale,
1645                               GError      **error)
1646 {
1647   gchar *candidate_key, *translated_value;
1648   GError *key_file_error;
1649   gchar **languages;
1650   gboolean free_languages = FALSE;
1651   gint i;
1652
1653   g_return_val_if_fail (key_file != NULL, NULL);
1654   g_return_val_if_fail (group_name != NULL, NULL);
1655   g_return_val_if_fail (key != NULL, NULL);
1656
1657   candidate_key = NULL;
1658   translated_value = NULL;
1659   key_file_error = NULL;
1660
1661   if (locale)
1662     {
1663       GSList *l, *list;
1664
1665       list = _g_compute_locale_variants (locale);
1666
1667       languages = g_new (gchar *, g_slist_length (list) + 1);
1668       for (l = list, i = 0; l; l = l->next, i++)
1669         languages[i] = l->data;
1670       languages[i] = NULL;
1671
1672       g_slist_free (list);
1673       free_languages = TRUE;
1674     }
1675   else
1676     {
1677       languages = (gchar **) g_get_language_names ();
1678       free_languages = FALSE;
1679     }
1680   
1681   for (i = 0; languages[i]; i++)
1682     {
1683       candidate_key = g_strdup_printf ("%s[%s]", key, languages[i]);
1684       
1685       translated_value = g_key_file_get_string (key_file,
1686                                                 group_name,
1687                                                 candidate_key, NULL);
1688       g_free (candidate_key);
1689
1690       if (translated_value)
1691         break;
1692
1693       g_free (translated_value);
1694       translated_value = NULL;
1695    }
1696
1697   /* Fallback to untranslated key
1698    */
1699   if (!translated_value)
1700     {
1701       translated_value = g_key_file_get_string (key_file, group_name, key,
1702                                                 &key_file_error);
1703       
1704       if (!translated_value)
1705         g_propagate_error (error, key_file_error);
1706     }
1707
1708   if (free_languages)
1709     g_strfreev (languages);
1710
1711   return translated_value;
1712 }
1713
1714 /** 
1715  * g_key_file_get_locale_string_list: 
1716  * @key_file: a #GKeyFile
1717  * @group_name: a group name
1718  * @key: a key
1719  * @locale: a locale
1720  * @length: return location for the number of returned strings or %NULL
1721  * @error: return location for a #GError or %NULL
1722  *
1723  * Returns the values associated with @key under @group_name
1724  * translated in the given @locale if available.  If @locale is
1725  * %NULL then the current locale is assumed.
1726
1727  * If @key cannot be found then %NULL is returned and @error is set 
1728  * to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. If the values associated
1729  * with @key cannot be interpreted or no suitable translations
1730  * can be found then the untranslated values are returned. The 
1731  * returned array is %NULL-terminated, so @length may optionally 
1732  * be %NULL.
1733  *
1734  * Return value: a newly allocated %NULL-terminated string array
1735  *   or %NULL if the key isn't found. The string array should be freed
1736  *   with g_strfreev().
1737  *
1738  * Since: 2.6
1739  **/
1740 gchar **
1741 g_key_file_get_locale_string_list (GKeyFile     *key_file,
1742                                    const gchar  *group_name,
1743                                    const gchar  *key,
1744                                    const gchar  *locale,
1745                                    gsize        *length,
1746                                    GError      **error)
1747 {
1748   GError *key_file_error;
1749   gchar **values, *value;
1750
1751   g_return_val_if_fail (key_file != NULL, NULL);
1752   g_return_val_if_fail (group_name != NULL, NULL);
1753   g_return_val_if_fail (key != NULL, NULL);
1754
1755   key_file_error = NULL;
1756
1757   value = g_key_file_get_locale_string (key_file, group_name, 
1758                                         key, locale,
1759                                         &key_file_error);
1760   
1761   if (key_file_error)
1762     g_propagate_error (error, key_file_error);
1763   
1764   if (!value)
1765     {
1766       if (length)
1767         *length = 0;
1768       return NULL;
1769     }
1770
1771   if (value[strlen (value) - 1] == ';')
1772     value[strlen (value) - 1] = '\0';
1773
1774   values = g_strsplit (value, ";", 0);
1775
1776   g_free (value);
1777
1778   if (length)
1779     *length = g_strv_length (values);
1780
1781   return values;
1782 }
1783
1784 /**
1785  * g_key_file_set_locale_string_list:
1786  * @key_file: a #GKeyFile
1787  * @group_name: a group name
1788  * @key: a key
1789  * @locale: a locale
1790  * @list: a %NULL-terminated array of locale string values
1791  * @length: the length of @list
1792  *
1793  * Associates a list of string values for @key and @locale under
1794  * @group_name.  If the translation for @key cannot be found then
1795  * it is created. 
1796  *
1797  * Since: 2.6
1798  **/
1799 void
1800 g_key_file_set_locale_string_list (GKeyFile            *key_file,
1801                                    const gchar         *group_name,
1802                                    const gchar         *key,
1803                                    const gchar         *locale,
1804                                    const gchar * const  list[],
1805                                    gsize                length)
1806 {
1807   GString *value_list;
1808   gchar *full_key;
1809   gsize i;
1810
1811   g_return_if_fail (key_file != NULL);
1812   g_return_if_fail (key != NULL);
1813   g_return_if_fail (locale != NULL);
1814   g_return_if_fail (length != 0);
1815
1816   value_list = g_string_sized_new (length * 128);
1817   for (i = 0; i < length && list[i] != NULL; i++)
1818     {
1819       gchar *value;
1820       
1821       value = g_key_file_parse_string_as_value (key_file, list[i], TRUE);
1822       
1823       g_string_append (value_list, value);
1824       g_string_append_c (value_list, ';');
1825
1826       g_free (value);
1827     }
1828
1829   full_key = g_strdup_printf ("%s[%s]", key, locale);
1830   g_key_file_set_value (key_file, group_name, full_key, value_list->str);
1831   g_free (full_key);
1832   g_string_free (value_list, TRUE);
1833 }
1834
1835 /**
1836  * g_key_file_get_boolean:
1837  * @key_file: a #GKeyFile
1838  * @group_name: a group name
1839  * @key: a key
1840  * @error: return location for a #GError
1841  *
1842  * Returns the value associated with @key under @group_name as a
1843  * boolean. 
1844  *
1845  * If @key cannot be found then %FALSE is returned and @error is set
1846  * to #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the value
1847  * associated with @key cannot be interpreted as a boolean then %FALSE
1848  * is returned and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.
1849  *
1850  * Return value: the value associated with the key as a boolean, 
1851  *    or %FALSE if the key was not found or could not be parsed.
1852  *
1853  * Since: 2.6
1854  **/
1855 gboolean
1856 g_key_file_get_boolean (GKeyFile     *key_file,
1857                         const gchar  *group_name,
1858                         const gchar  *key,
1859                         GError      **error)
1860 {
1861   GError *key_file_error = NULL;
1862   gchar *value;
1863   gboolean bool_value;
1864
1865   g_return_val_if_fail (key_file != NULL, FALSE);
1866   g_return_val_if_fail (group_name != NULL, FALSE);
1867   g_return_val_if_fail (key != NULL, FALSE);
1868
1869   value = g_key_file_get_value (key_file, group_name, key, &key_file_error);
1870
1871   if (!value)
1872     {
1873       g_propagate_error (error, key_file_error);
1874       return FALSE;
1875     }
1876
1877   bool_value = g_key_file_parse_value_as_boolean (key_file, value,
1878                                                   &key_file_error);
1879   g_free (value);
1880
1881   if (key_file_error)
1882     {
1883       if (g_error_matches (key_file_error,
1884                            G_KEY_FILE_ERROR,
1885                            G_KEY_FILE_ERROR_INVALID_VALUE))
1886         {
1887           g_set_error (error, G_KEY_FILE_ERROR,
1888                        G_KEY_FILE_ERROR_INVALID_VALUE,
1889                        _("Key file contains key '%s' "
1890                          "which has value that cannot be interpreted."),
1891                        key);
1892           g_error_free (key_file_error);
1893         }
1894       else
1895         g_propagate_error (error, key_file_error);
1896     }
1897
1898   return bool_value;
1899 }
1900
1901 /**
1902  * g_key_file_set_boolean:
1903  * @key_file: a #GKeyFile
1904  * @group_name: a group name
1905  * @key: a key
1906  * @value: %TRUE or %FALSE
1907  *
1908  * Associates a new boolean value with @key under @group_name.
1909  * If @key cannot be found then it is created. 
1910  *
1911  * Since: 2.6
1912  **/
1913 void
1914 g_key_file_set_boolean (GKeyFile    *key_file,
1915                         const gchar *group_name,
1916                         const gchar *key,
1917                         gboolean     value)
1918 {
1919   gchar *result;
1920
1921   g_return_if_fail (key_file != NULL);
1922
1923   result = g_key_file_parse_boolean_as_value (key_file, value);
1924   g_key_file_set_value (key_file, group_name, key, result);
1925   g_free (result);
1926 }
1927
1928 /**
1929  * g_key_file_get_boolean_list:
1930  * @key_file: a #GKeyFile
1931  * @group_name: a group name
1932  * @key: a key
1933  * @length: the number of booleans returned
1934  * @error: return location for a #GError
1935  *
1936  * Returns the values associated with @key under @group_name as
1937  * booleans. 
1938  *
1939  * If @key cannot be found then %NULL is returned and @error is set to
1940  * #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the values associated
1941  * with @key cannot be interpreted as booleans then %NULL is returned
1942  * and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.
1943  *
1944  * Return value: the values associated with the key as a list of
1945  *    booleans, or %NULL if the key was not found or could not be parsed.
1946  * 
1947  * Since: 2.6
1948  **/
1949 gboolean *
1950 g_key_file_get_boolean_list (GKeyFile     *key_file,
1951                              const gchar  *group_name,
1952                              const gchar  *key,
1953                              gsize        *length,
1954                              GError      **error)
1955 {
1956   GError *key_file_error;
1957   gchar **values;
1958   gboolean *bool_values;
1959   gsize i, num_bools;
1960
1961   g_return_val_if_fail (key_file != NULL, NULL);
1962   g_return_val_if_fail (group_name != NULL, NULL);
1963   g_return_val_if_fail (key != NULL, NULL);
1964
1965   if (length)
1966     *length = 0;
1967
1968   key_file_error = NULL;
1969
1970   values = g_key_file_get_string_list (key_file, group_name, key,
1971                                        &num_bools, &key_file_error);
1972
1973   if (key_file_error)
1974     g_propagate_error (error, key_file_error);
1975
1976   if (!values)
1977     return NULL;
1978
1979   bool_values = g_new (gboolean, num_bools);
1980
1981   for (i = 0; i < num_bools; i++)
1982     {
1983       bool_values[i] = g_key_file_parse_value_as_boolean (key_file,
1984                                                           values[i],
1985                                                           &key_file_error);
1986
1987       if (key_file_error)
1988         {
1989           g_propagate_error (error, key_file_error);
1990           g_strfreev (values);
1991           g_free (bool_values);
1992
1993           return NULL;
1994         }
1995     }
1996   g_strfreev (values);
1997
1998   if (length)
1999     *length = num_bools;
2000
2001   return bool_values;
2002 }
2003
2004 /**
2005  * g_key_file_set_boolean_list:
2006  * @key_file: a #GKeyFile
2007  * @group_name: a group name
2008  * @key: a key
2009  * @list: an array of boolean values
2010  * @length: length of @list
2011  *
2012  * Associates a list of boolean values with @key under @group_name.  
2013  * If @key cannot be found then it is created.
2014  * If @group_name is %NULL, the start_group is used.
2015  *
2016  * Since: 2.6
2017  **/
2018 void
2019 g_key_file_set_boolean_list (GKeyFile    *key_file,
2020                              const gchar *group_name,
2021                              const gchar *key,
2022                              gboolean     list[],
2023                              gsize        length)
2024 {
2025   GString *value_list;
2026   gsize i;
2027
2028   g_return_if_fail (key_file != NULL);
2029   g_return_if_fail (list != NULL);
2030
2031   value_list = g_string_sized_new (length * 8);
2032   for (i = 0; i < length; i++)
2033     {
2034       gchar *value;
2035
2036       value = g_key_file_parse_boolean_as_value (key_file, list[i]);
2037
2038       g_string_append (value_list, value);
2039       g_string_append_c (value_list, key_file->list_separator);
2040
2041       g_free (value);
2042     }
2043
2044   g_key_file_set_value (key_file, group_name, key, value_list->str);
2045   g_string_free (value_list, TRUE);
2046 }
2047
2048 /**
2049  * g_key_file_get_integer:
2050  * @key_file: a #GKeyFile
2051  * @group_name: a group name
2052  * @key: a key
2053  * @error: return location for a #GError
2054  *
2055  * Returns the value associated with @key under @group_name as an
2056  * integer. 
2057  *
2058  * If @key cannot be found then 0 is returned and @error is set to
2059  * #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the value associated
2060  * with @key cannot be interpreted as an integer then 0 is returned
2061  * and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.
2062  *
2063  * Return value: the value associated with the key as an integer, or
2064  *     0 if the key was not found or could not be parsed.
2065  *
2066  * Since: 2.6
2067  **/
2068 gint
2069 g_key_file_get_integer (GKeyFile     *key_file,
2070                         const gchar  *group_name,
2071                         const gchar  *key,
2072                         GError      **error)
2073 {
2074   GError *key_file_error;
2075   gchar *value;
2076   gint int_value;
2077
2078   g_return_val_if_fail (key_file != NULL, -1);
2079   g_return_val_if_fail (group_name != NULL, -1);
2080   g_return_val_if_fail (key != NULL, -1);
2081
2082   key_file_error = NULL;
2083
2084   value = g_key_file_get_value (key_file, group_name, key, &key_file_error);
2085
2086   if (key_file_error)
2087     {
2088       g_propagate_error (error, key_file_error);
2089       return 0;
2090     }
2091
2092   int_value = g_key_file_parse_value_as_integer (key_file, value,
2093                                                  &key_file_error);
2094   g_free (value);
2095
2096   if (key_file_error)
2097     {
2098       if (g_error_matches (key_file_error,
2099                            G_KEY_FILE_ERROR,
2100                            G_KEY_FILE_ERROR_INVALID_VALUE))
2101         {
2102           g_set_error (error, G_KEY_FILE_ERROR,
2103                        G_KEY_FILE_ERROR_INVALID_VALUE,
2104                        _("Key file contains key '%s' in group '%s' "
2105                          "which has value that cannot be interpreted."), key, 
2106                        group_name);
2107           g_error_free (key_file_error);
2108         }
2109       else
2110         g_propagate_error (error, key_file_error);
2111     }
2112
2113   return int_value;
2114 }
2115
2116 /**
2117  * g_key_file_set_integer:
2118  * @key_file: a #GKeyFile
2119  * @group_name: a group name
2120  * @key: a key
2121  * @value: an integer value
2122  *
2123  * Associates a new integer value with @key under @group_name.
2124  * If @key cannot be found then it is created.
2125  *
2126  * Since: 2.6
2127  **/
2128 void
2129 g_key_file_set_integer (GKeyFile    *key_file,
2130                         const gchar *group_name,
2131                         const gchar *key,
2132                         gint         value)
2133 {
2134   gchar *result;
2135
2136   g_return_if_fail (key_file != NULL);
2137
2138   result = g_key_file_parse_integer_as_value (key_file, value);
2139   g_key_file_set_value (key_file, group_name, key, result);
2140   g_free (result);
2141 }
2142
2143 /**
2144  * g_key_file_get_integer_list:
2145  * @key_file: a #GKeyFile
2146  * @group_name: a group name
2147  * @key: a key
2148  * @length: the number of integers returned
2149  * @error: return location for a #GError
2150  *
2151  * Returns the values associated with @key under @group_name as
2152  * integers. 
2153  *
2154  * If @key cannot be found then %NULL is returned and @error is set to
2155  * #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the values associated
2156  * with @key cannot be interpreted as integers then %NULL is returned
2157  * and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.
2158  *
2159  * Return value: the values associated with the key as a list of
2160  *     integers, or %NULL if the key was not found or could not be parsed.
2161  *
2162  * Since: 2.6
2163  **/
2164 gint *
2165 g_key_file_get_integer_list (GKeyFile     *key_file,
2166                              const gchar  *group_name,
2167                              const gchar  *key,
2168                              gsize        *length,
2169                              GError      **error)
2170 {
2171   GError *key_file_error = NULL;
2172   gchar **values;
2173   gint *int_values;
2174   gsize i, num_ints;
2175
2176   g_return_val_if_fail (key_file != NULL, NULL);
2177   g_return_val_if_fail (group_name != NULL, NULL);
2178   g_return_val_if_fail (key != NULL, NULL);
2179
2180   if (length)
2181     *length = 0;
2182
2183   values = g_key_file_get_string_list (key_file, group_name, key,
2184                                        &num_ints, &key_file_error);
2185
2186   if (key_file_error)
2187     g_propagate_error (error, key_file_error);
2188
2189   if (!values)
2190     return NULL;
2191
2192   int_values = g_new (gint, num_ints);
2193
2194   for (i = 0; i < num_ints; i++)
2195     {
2196       int_values[i] = g_key_file_parse_value_as_integer (key_file,
2197                                                          values[i],
2198                                                          &key_file_error);
2199
2200       if (key_file_error)
2201         {
2202           g_propagate_error (error, key_file_error);
2203           g_strfreev (values);
2204           g_free (int_values);
2205
2206           return NULL;
2207         }
2208     }
2209   g_strfreev (values);
2210
2211   if (length)
2212     *length = num_ints;
2213
2214   return int_values;
2215 }
2216
2217 /**
2218  * g_key_file_set_integer_list:
2219  * @key_file: a #GKeyFile
2220  * @group_name: a group name
2221  * @key: a key
2222  * @list: an array of integer values
2223  * @length: number of integer values in @list
2224  *
2225  * Associates a list of integer values with @key under @group_name.  
2226  * If @key cannot be found then it is created.
2227  *
2228  * Since: 2.6
2229  **/
2230 void
2231 g_key_file_set_integer_list (GKeyFile    *key_file,
2232                              const gchar *group_name,
2233                              const gchar *key,
2234                              gint         list[],
2235                              gsize        length)
2236 {
2237   GString *values;
2238   gsize i;
2239
2240   g_return_if_fail (key_file != NULL);
2241   g_return_if_fail (list != NULL);
2242
2243   values = g_string_sized_new (length * 16);
2244   for (i = 0; i < length; i++)
2245     {
2246       gchar *value;
2247
2248       value = g_key_file_parse_integer_as_value (key_file, list[i]);
2249
2250       g_string_append (values, value);
2251       g_string_append_c (values, ';');
2252
2253       g_free (value);
2254     }
2255
2256   g_key_file_set_value (key_file, group_name, key, values->str);
2257   g_string_free (values, TRUE);
2258 }
2259
2260 /**
2261  * g_key_file_get_double:
2262  * @key_file: a #GKeyFile
2263  * @group_name: a group name
2264  * @key: a key
2265  * @error: return location for a #GError
2266  *
2267  * Returns the value associated with @key under @group_name as a
2268  * double. If @group_name is %NULL, the start_group is used.
2269  *
2270  * If @key cannot be found then 0.0 is returned and @error is set to
2271  * #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the value associated
2272  * with @key cannot be interpreted as a double then 0.0 is returned
2273  * and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.
2274  *
2275  * Return value: the value associated with the key as a double, or
2276  *     0.0 if the key was not found or could not be parsed.
2277  *
2278  * Since: 2.12
2279  **/
2280 gdouble
2281 g_key_file_get_double  (GKeyFile     *key_file,
2282                         const gchar  *group_name,
2283                         const gchar  *key,
2284                         GError      **error)
2285 {
2286   GError *key_file_error;
2287   gchar *value;
2288   gdouble double_value;
2289
2290   g_return_val_if_fail (key_file != NULL, -1);
2291   g_return_val_if_fail (group_name != NULL, -1);
2292   g_return_val_if_fail (key != NULL, -1);
2293
2294   key_file_error = NULL;
2295
2296   value = g_key_file_get_value (key_file, group_name, key, &key_file_error);
2297
2298   if (key_file_error)
2299     {
2300       g_propagate_error (error, key_file_error);
2301       return 0;
2302     }
2303
2304   double_value = g_key_file_parse_value_as_double (key_file, value,
2305                                                   &key_file_error);
2306   g_free (value);
2307
2308   if (key_file_error)
2309     {
2310       if (g_error_matches (key_file_error,
2311                            G_KEY_FILE_ERROR,
2312                            G_KEY_FILE_ERROR_INVALID_VALUE))
2313         {
2314           g_set_error (error, G_KEY_FILE_ERROR,
2315                        G_KEY_FILE_ERROR_INVALID_VALUE,
2316                        _("Key file contains key '%s' in group '%s' "
2317                          "which has value that cannot be interpreted."), key,
2318                        group_name);
2319           g_error_free (key_file_error);
2320         }
2321       else
2322         g_propagate_error (error, key_file_error);
2323     }
2324
2325   return double_value;
2326 }
2327
2328 /**
2329  * g_key_file_set_double:
2330  * @key_file: a #GKeyFile
2331  * @group_name: a group name
2332  * @key: a key
2333  * @value: an double value
2334  *
2335  * Associates a new double value with @key under @group_name.
2336  * If @key cannot be found then it is created. 
2337  *
2338  * Since: 2.12
2339  **/
2340 void
2341 g_key_file_set_double  (GKeyFile    *key_file,
2342                         const gchar *group_name,
2343                         const gchar *key,
2344                         gdouble      value)
2345 {
2346   gchar result[G_ASCII_DTOSTR_BUF_SIZE];
2347
2348   g_return_if_fail (key_file != NULL);
2349
2350   g_ascii_dtostr (result, sizeof (result), value);
2351   g_key_file_set_value (key_file, group_name, key, result);
2352 }
2353
2354 /**
2355  * g_key_file_get_double_list:
2356  * @key_file: a #GKeyFile
2357  * @group_name: a group name
2358  * @key: a key
2359  * @length: the number of doubles returned
2360  * @error: return location for a #GError
2361  *
2362  * Returns the values associated with @key under @group_name as
2363  * doubles. 
2364  *
2365  * If @key cannot be found then %NULL is returned and @error is set to
2366  * #G_KEY_FILE_ERROR_KEY_NOT_FOUND. Likewise, if the values associated
2367  * with @key cannot be interpreted as doubles then %NULL is returned
2368  * and @error is set to #G_KEY_FILE_ERROR_INVALID_VALUE.
2369  *
2370  * Return value: the values associated with the key as a list of
2371  *     doubles, or %NULL if the key was not found or could not be parsed.
2372  *
2373  * Since: 2.12
2374  **/
2375 gdouble *
2376 g_key_file_get_double_list  (GKeyFile     *key_file,
2377                              const gchar  *group_name,
2378                              const gchar  *key,
2379                              gsize        *length,
2380                              GError      **error)
2381 {
2382   GError *key_file_error = NULL;
2383   gchar **values;
2384   gdouble *double_values;
2385   gsize i, num_doubles;
2386
2387   g_return_val_if_fail (key_file != NULL, NULL);
2388   g_return_val_if_fail (group_name != NULL, NULL);
2389   g_return_val_if_fail (key != NULL, NULL);
2390
2391   if (length)
2392     *length = 0;
2393
2394   values = g_key_file_get_string_list (key_file, group_name, key,
2395                                        &num_doubles, &key_file_error);
2396
2397   if (key_file_error)
2398     g_propagate_error (error, key_file_error);
2399
2400   if (!values)
2401     return NULL;
2402
2403   double_values = g_new (gdouble, num_doubles);
2404
2405   for (i = 0; i < num_doubles; i++)
2406     {
2407       double_values[i] = g_key_file_parse_value_as_double (key_file,
2408                                                            values[i],
2409                                                            &key_file_error);
2410
2411       if (key_file_error)
2412         {
2413           g_propagate_error (error, key_file_error);
2414           g_strfreev (values);
2415           g_free (double_values);
2416
2417           return NULL;
2418         }
2419     }
2420   g_strfreev (values);
2421
2422   if (length)
2423     *length = num_doubles;
2424
2425   return double_values;
2426 }
2427
2428 /**
2429  * g_key_file_set_double_list:
2430  * @key_file: a #GKeyFile
2431  * @group_name: a group name
2432  * @key: a key
2433  * @list: an array of double values
2434  * @length: number of double values in @list
2435  *
2436  * Associates a list of double values with @key under
2437  * @group_name.  If @key cannot be found then it is created.
2438  *
2439  * Since: 2.12
2440  **/
2441 void
2442 g_key_file_set_double_list (GKeyFile    *key_file,
2443                             const gchar *group_name,
2444                             const gchar *key,
2445                             gdouble      list[],
2446                             gsize        length)
2447 {
2448   GString *values;
2449   gsize i;
2450
2451   g_return_if_fail (key_file != NULL);
2452   g_return_if_fail (list != NULL);
2453
2454   values = g_string_sized_new (length * 16);
2455   for (i = 0; i < length; i++)
2456     {
2457       gchar result[G_ASCII_DTOSTR_BUF_SIZE];
2458
2459       g_ascii_dtostr( result, sizeof (result), list[i] );
2460
2461       g_string_append (values, result);
2462       g_string_append_c (values, ';');
2463     }
2464
2465   g_key_file_set_value (key_file, group_name, key, values->str);
2466   g_string_free (values, TRUE);
2467 }
2468
2469 static gboolean
2470 g_key_file_set_key_comment (GKeyFile     *key_file,
2471                             const gchar  *group_name,
2472                             const gchar  *key,
2473                             const gchar  *comment,
2474                             GError      **error)
2475 {
2476   GKeyFileGroup *group;
2477   GKeyFileKeyValuePair *pair;
2478   GList *key_node, *comment_node, *tmp;
2479   
2480   group = g_key_file_lookup_group (key_file, group_name);
2481   if (!group)
2482     {
2483       g_set_error (error, G_KEY_FILE_ERROR,
2484                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
2485                    _("Key file does not have group '%s'"),
2486                    group_name ? group_name : "(null)");
2487
2488       return FALSE;
2489     }
2490
2491   /* First find the key the comments are supposed to be
2492    * associated with
2493    */
2494   key_node = g_key_file_lookup_key_value_pair_node (key_file, group, key);
2495
2496   if (key_node == NULL)
2497     {
2498       g_set_error (error, G_KEY_FILE_ERROR,
2499                    G_KEY_FILE_ERROR_KEY_NOT_FOUND,
2500                    _("Key file does not have key '%s' in group '%s'"),
2501                    key, group->name);
2502       return FALSE;
2503     }
2504
2505   /* Then find all the comments already associated with the
2506    * key and free them
2507    */
2508   tmp = key_node->next;
2509   while (tmp != NULL)
2510     {
2511       GKeyFileKeyValuePair *pair;
2512
2513       pair = (GKeyFileKeyValuePair *) tmp->data;
2514
2515       if (pair->key != NULL)
2516         break;
2517
2518       comment_node = tmp;
2519       tmp = tmp->next;
2520       g_key_file_remove_key_value_pair_node (key_file, group,
2521                                              comment_node); 
2522     }
2523
2524   if (comment == NULL)
2525     return TRUE;
2526
2527   /* Now we can add our new comment
2528    */
2529   pair = g_slice_new (GKeyFileKeyValuePair);
2530   pair->key = NULL;
2531   pair->value = g_key_file_parse_comment_as_value (key_file, comment);
2532   
2533   key_node = g_list_insert (key_node, pair, 1);
2534
2535   return TRUE;
2536 }
2537
2538 static gboolean
2539 g_key_file_set_group_comment (GKeyFile     *key_file,
2540                               const gchar  *group_name,
2541                               const gchar  *comment,
2542                               GError      **error)
2543 {
2544   GKeyFileGroup *group;
2545   
2546   g_return_val_if_fail (g_key_file_is_group_name (group_name), FALSE);
2547
2548   group = g_key_file_lookup_group (key_file, group_name);
2549   if (!group)
2550     {
2551       g_set_error (error, G_KEY_FILE_ERROR,
2552                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
2553                    _("Key file does not have group '%s'"),
2554                    group_name ? group_name : "(null)");
2555
2556       return FALSE;
2557     }
2558
2559   /* First remove any existing comment
2560    */
2561   if (group->comment)
2562     {
2563       g_key_file_key_value_pair_free (group->comment);
2564       group->comment = NULL;
2565     }
2566
2567   if (comment == NULL)
2568     return TRUE;
2569
2570   /* Now we can add our new comment
2571    */
2572   group->comment = g_slice_new (GKeyFileKeyValuePair);
2573   group->comment->key = NULL;
2574   group->comment->value = g_key_file_parse_comment_as_value (key_file, comment);
2575
2576   return TRUE;
2577 }
2578
2579 static gboolean
2580 g_key_file_set_top_comment (GKeyFile     *key_file,
2581                             const gchar  *comment,
2582                             GError      **error)
2583 {
2584   GList *group_node;
2585   GKeyFileGroup *group;
2586   GKeyFileKeyValuePair *pair;
2587
2588   /* The last group in the list should be the top (comments only)
2589    * group in the file
2590    */
2591   g_warn_if_fail (key_file->groups != NULL);
2592   group_node = g_list_last (key_file->groups);
2593   group = (GKeyFileGroup *) group_node->data;
2594   g_warn_if_fail (group->name == NULL);
2595
2596   /* Note all keys must be comments at the top of
2597    * the file, so we can just free it all.
2598    */
2599   if (group->key_value_pairs != NULL)
2600     {
2601       g_list_foreach (group->key_value_pairs, 
2602                       (GFunc) g_key_file_key_value_pair_free, 
2603                       NULL);
2604       g_list_free (group->key_value_pairs);
2605       group->key_value_pairs = NULL;
2606     }
2607
2608   if (comment == NULL)
2609      return TRUE;
2610
2611   pair = g_slice_new (GKeyFileKeyValuePair);
2612   pair->key = NULL;
2613   pair->value = g_key_file_parse_comment_as_value (key_file, comment);
2614   
2615   group->key_value_pairs =
2616     g_list_prepend (group->key_value_pairs, pair);
2617
2618   return TRUE;
2619 }
2620
2621 /**
2622  * g_key_file_set_comment:
2623  * @key_file: a #GKeyFile
2624  * @group_name: a group name, or %NULL
2625  * @key: a key
2626  * @comment: a comment
2627  * @error: return location for a #GError
2628  *
2629  * Places a comment above @key from @group_name.
2630  * If @key is %NULL then @comment will be written above @group_name.  
2631  * If both @key and @group_name  are %NULL, then @comment will be 
2632  * written above the first group in the file.
2633  *
2634  * Returns: %TRUE if the comment was written, %FALSE otherwise
2635  *
2636  * Since: 2.6
2637  **/
2638 gboolean
2639 g_key_file_set_comment (GKeyFile     *key_file,
2640                         const gchar  *group_name,
2641                         const gchar  *key,
2642                         const gchar  *comment,
2643                         GError      **error)
2644 {
2645   g_return_val_if_fail (key_file != NULL, FALSE);
2646
2647   if (group_name != NULL && key != NULL) 
2648     {
2649       if (!g_key_file_set_key_comment (key_file, group_name, key, comment, error))
2650         return FALSE;
2651     } 
2652   else if (group_name != NULL) 
2653     {
2654       if (!g_key_file_set_group_comment (key_file, group_name, comment, error))
2655         return FALSE;
2656     } 
2657   else 
2658     {
2659       if (!g_key_file_set_top_comment (key_file, comment, error))
2660         return FALSE;
2661     }
2662
2663   if (comment != NULL)
2664     key_file->approximate_size += strlen (comment);
2665
2666   return TRUE;
2667 }
2668
2669 static gchar *
2670 g_key_file_get_key_comment (GKeyFile     *key_file,
2671                             const gchar  *group_name,
2672                             const gchar  *key,
2673                             GError      **error)
2674 {
2675   GKeyFileGroup *group;
2676   GKeyFileKeyValuePair *pair;
2677   GList *key_node, *tmp;
2678   GString *string;
2679   gchar *comment;
2680
2681   g_return_val_if_fail (g_key_file_is_group_name (group_name), NULL);
2682
2683   group = g_key_file_lookup_group (key_file, group_name);
2684   if (!group)
2685     {
2686       g_set_error (error, G_KEY_FILE_ERROR,
2687                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
2688                    _("Key file does not have group '%s'"),
2689                    group_name ? group_name : "(null)");
2690
2691       return NULL;
2692     }
2693
2694   /* First find the key the comments are supposed to be
2695    * associated with
2696    */
2697   key_node = g_key_file_lookup_key_value_pair_node (key_file, group, key);
2698
2699   if (key_node == NULL)
2700     {
2701       g_set_error (error, G_KEY_FILE_ERROR,
2702                    G_KEY_FILE_ERROR_KEY_NOT_FOUND,
2703                    _("Key file does not have key '%s' in group '%s'"),
2704                    key, group->name);
2705       return NULL;
2706     }
2707
2708   string = NULL;
2709
2710   /* Then find all the comments already associated with the
2711    * key and concatentate them.
2712    */
2713   tmp = key_node->next;
2714   if (!key_node->next)
2715     return NULL;
2716
2717   pair = (GKeyFileKeyValuePair *) tmp->data;
2718   if (pair->key != NULL)
2719     return NULL;
2720
2721   while (tmp->next)
2722     {
2723       pair = (GKeyFileKeyValuePair *) tmp->next->data;
2724       
2725       if (pair->key != NULL)
2726         break;
2727
2728       tmp = tmp->next;
2729     }
2730
2731   while (tmp != key_node)
2732     {
2733       GKeyFileKeyValuePair *pair;
2734       
2735       pair = (GKeyFileKeyValuePair *) tmp->data;
2736       
2737       if (string == NULL)
2738         string = g_string_sized_new (512);
2739       
2740       comment = g_key_file_parse_value_as_comment (key_file, pair->value);
2741       g_string_append (string, comment);
2742       g_free (comment);
2743       
2744       tmp = tmp->prev;
2745     }
2746
2747   if (string != NULL)
2748     {
2749       comment = string->str;
2750       g_string_free (string, FALSE);
2751     }
2752   else
2753     comment = NULL;
2754
2755   return comment;
2756 }
2757
2758 static gchar *
2759 get_group_comment (GKeyFile       *key_file,
2760                    GKeyFileGroup  *group,
2761                    GError        **error)
2762 {
2763   GString *string;
2764   GList *tmp;
2765   gchar *comment;
2766
2767   string = NULL;
2768
2769   tmp = group->key_value_pairs;
2770   while (tmp)
2771     {
2772       GKeyFileKeyValuePair *pair;
2773
2774       pair = (GKeyFileKeyValuePair *) tmp->data;
2775
2776       if (pair->key != NULL)
2777         {
2778           tmp = tmp->prev;
2779           break;
2780         }
2781
2782       if (tmp->next == NULL)
2783         break;
2784
2785       tmp = tmp->next;
2786     }
2787   
2788   while (tmp != NULL)
2789     {
2790       GKeyFileKeyValuePair *pair;
2791
2792       pair = (GKeyFileKeyValuePair *) tmp->data;
2793
2794       if (string == NULL)
2795         string = g_string_sized_new (512);
2796
2797       comment = g_key_file_parse_value_as_comment (key_file, pair->value);
2798       g_string_append (string, comment);
2799       g_free (comment);
2800
2801       tmp = tmp->prev;
2802     }
2803
2804   if (string != NULL)
2805     return g_string_free (string, FALSE);
2806
2807   return NULL;
2808 }
2809
2810 static gchar *
2811 g_key_file_get_group_comment (GKeyFile     *key_file,
2812                               const gchar  *group_name,
2813                               GError      **error)
2814 {
2815   GList *group_node;
2816   GKeyFileGroup *group;
2817   
2818   group = g_key_file_lookup_group (key_file, group_name);
2819   if (!group)
2820     {
2821       g_set_error (error, G_KEY_FILE_ERROR,
2822                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
2823                    _("Key file does not have group '%s'"),
2824                    group_name ? group_name : "(null)");
2825
2826       return NULL;
2827     }
2828
2829   if (group->comment)
2830     return g_strdup (group->comment->value);
2831   
2832   group_node = g_key_file_lookup_group_node (key_file, group_name);
2833   group_node = group_node->next;
2834   group = (GKeyFileGroup *)group_node->data;  
2835   return get_group_comment (key_file, group, error);
2836 }
2837
2838 static gchar *
2839 g_key_file_get_top_comment (GKeyFile  *key_file,
2840                             GError   **error)
2841 {
2842   GList *group_node;
2843   GKeyFileGroup *group;
2844
2845   /* The last group in the list should be the top (comments only)
2846    * group in the file
2847    */
2848   g_warn_if_fail (key_file->groups != NULL);
2849   group_node = g_list_last (key_file->groups);
2850   group = (GKeyFileGroup *) group_node->data;
2851   g_warn_if_fail (group->name == NULL);
2852
2853   return get_group_comment (key_file, group, error);
2854 }
2855
2856 /**
2857  * g_key_file_get_comment:
2858  * @key_file: a #GKeyFile
2859  * @group_name: a group name, or %NULL
2860  * @key: a key
2861  * @error: return location for a #GError
2862  *
2863  * Retrieves a comment above @key from @group_name.
2864  * If @key is %NULL then @comment will be read from above 
2865  * @group_name. If both @key and @group_name are %NULL, then 
2866  * @comment will be read from above the first group in the file.
2867  *
2868  * Returns: a comment that should be freed with g_free()
2869  *
2870  * Since: 2.6
2871  **/
2872 gchar * 
2873 g_key_file_get_comment (GKeyFile     *key_file,
2874                         const gchar  *group_name,
2875                         const gchar  *key,
2876                         GError      **error)
2877 {
2878   g_return_val_if_fail (key_file != NULL, NULL);
2879
2880   if (group_name != NULL && key != NULL)
2881     return g_key_file_get_key_comment (key_file, group_name, key, error);
2882   else if (group_name != NULL)
2883     return g_key_file_get_group_comment (key_file, group_name, error);
2884   else
2885     return g_key_file_get_top_comment (key_file, error);
2886 }
2887
2888 /**
2889  * g_key_file_remove_comment:
2890  * @key_file: a #GKeyFile
2891  * @group_name: a group name, or %NULL
2892  * @key: a key
2893  * @error: return location for a #GError
2894  *
2895  * Removes a comment above @key from @group_name.
2896  * If @key is %NULL then @comment will be removed above @group_name. 
2897  * If both @key and @group_name are %NULL, then @comment will
2898  * be removed above the first group in the file.
2899  *
2900  * Returns: %TRUE if the comment was removed, %FALSE otherwise
2901  *
2902  * Since: 2.6
2903  **/
2904
2905 gboolean
2906 g_key_file_remove_comment (GKeyFile     *key_file,
2907                            const gchar  *group_name,
2908                            const gchar  *key,
2909                            GError      **error)
2910 {
2911   g_return_val_if_fail (key_file != NULL, FALSE);
2912
2913   if (group_name != NULL && key != NULL)
2914     return g_key_file_set_key_comment (key_file, group_name, key, NULL, error);
2915   else if (group_name != NULL)
2916     return g_key_file_set_group_comment (key_file, group_name, NULL, error);
2917   else
2918     return g_key_file_set_top_comment (key_file, NULL, error);
2919 }
2920
2921 /**
2922  * g_key_file_has_group:
2923  * @key_file: a #GKeyFile
2924  * @group_name: a group name
2925  *
2926  * Looks whether the key file has the group @group_name.
2927  *
2928  * Return value: %TRUE if @group_name is a part of @key_file, %FALSE
2929  * otherwise.
2930  * Since: 2.6
2931  **/
2932 gboolean
2933 g_key_file_has_group (GKeyFile    *key_file,
2934                       const gchar *group_name)
2935 {
2936   g_return_val_if_fail (key_file != NULL, FALSE);
2937   g_return_val_if_fail (group_name != NULL, FALSE);
2938
2939   return g_key_file_lookup_group (key_file, group_name) != NULL;
2940 }
2941
2942 /**
2943  * g_key_file_has_key:
2944  * @key_file: a #GKeyFile
2945  * @group_name: a group name
2946  * @key: a key name
2947  * @error: return location for a #GError
2948  *
2949  * Looks whether the key file has the key @key in the group
2950  * @group_name. 
2951  *
2952  * Return value: %TRUE if @key is a part of @group_name, %FALSE
2953  * otherwise.
2954  *
2955  * Since: 2.6
2956  **/
2957 gboolean
2958 g_key_file_has_key (GKeyFile     *key_file,
2959                     const gchar  *group_name,
2960                     const gchar  *key,
2961                     GError      **error)
2962 {
2963   GKeyFileKeyValuePair *pair;
2964   GKeyFileGroup *group;
2965
2966   g_return_val_if_fail (key_file != NULL, FALSE);
2967   g_return_val_if_fail (group_name != NULL, FALSE);
2968   g_return_val_if_fail (key != NULL, FALSE);
2969
2970   group = g_key_file_lookup_group (key_file, group_name);
2971
2972   if (!group)
2973     {
2974       g_set_error (error, G_KEY_FILE_ERROR,
2975                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
2976                    _("Key file does not have group '%s'"),
2977                    group_name ? group_name : "(null)");
2978
2979       return FALSE;
2980     }
2981
2982   pair = g_key_file_lookup_key_value_pair (key_file, group, key);
2983
2984   return pair != NULL;
2985 }
2986
2987 static void
2988 g_key_file_add_group (GKeyFile    *key_file,
2989                       const gchar *group_name)
2990 {
2991   GKeyFileGroup *group;
2992
2993   g_return_if_fail (key_file != NULL);
2994   g_return_if_fail (g_key_file_is_group_name (group_name));
2995
2996   group = g_key_file_lookup_group (key_file, group_name);
2997   if (group != NULL)
2998     {
2999       key_file->current_group = group;
3000       return;
3001     }
3002
3003   group = g_slice_new0 (GKeyFileGroup);
3004   group->name = g_strdup (group_name);
3005   group->lookup_map = g_hash_table_new (g_str_hash, g_str_equal);
3006   key_file->groups = g_list_prepend (key_file->groups, group);
3007   key_file->approximate_size += strlen (group_name) + 3;
3008   key_file->current_group = group;
3009
3010   if (key_file->start_group == NULL)
3011     key_file->start_group = group;
3012
3013   g_hash_table_insert (key_file->group_hash, (gpointer)group->name, group);
3014 }
3015
3016 static void
3017 g_key_file_key_value_pair_free (GKeyFileKeyValuePair *pair)
3018 {
3019   if (pair != NULL)
3020     {
3021       g_free (pair->key);
3022       g_free (pair->value);
3023       g_slice_free (GKeyFileKeyValuePair, pair);
3024     }
3025 }
3026
3027 /* Be careful not to call this function on a node with data in the
3028  * lookup map without removing it from the lookup map, first.
3029  *
3030  * Some current cases where this warning is not a concern are
3031  * when:
3032  *   - the node being removed is a comment node
3033  *   - the entire lookup map is getting destroyed soon after
3034  *     anyway.
3035  */ 
3036 static void
3037 g_key_file_remove_key_value_pair_node (GKeyFile      *key_file,
3038                                        GKeyFileGroup *group,
3039                                        GList         *pair_node)
3040 {
3041
3042   GKeyFileKeyValuePair *pair;
3043
3044   pair = (GKeyFileKeyValuePair *) pair_node->data;
3045
3046   group->key_value_pairs = g_list_remove_link (group->key_value_pairs, pair_node);
3047
3048   if (pair->key != NULL)
3049     key_file->approximate_size -= strlen (pair->key) + 1;
3050
3051   g_warn_if_fail (pair->value != NULL);
3052   key_file->approximate_size -= strlen (pair->value);
3053
3054   g_key_file_key_value_pair_free (pair);
3055
3056   g_list_free_1 (pair_node);
3057 }
3058
3059 static void
3060 g_key_file_remove_group_node (GKeyFile *key_file,
3061                               GList    *group_node)
3062 {
3063   GKeyFileGroup *group;
3064   GList *tmp;
3065
3066   group = (GKeyFileGroup *) group_node->data;
3067
3068   if (group->name)
3069     g_hash_table_remove (key_file->group_hash, group->name);
3070
3071   /* If the current group gets deleted make the current group the last
3072    * added group.
3073    */
3074   if (key_file->current_group == group)
3075     {
3076       /* groups should always contain at least the top comment group,
3077        * unless g_key_file_clear has been called
3078        */
3079       if (key_file->groups)
3080         key_file->current_group = (GKeyFileGroup *) key_file->groups->data;
3081       else
3082         key_file->current_group = NULL;
3083     }
3084
3085   /* If the start group gets deleted make the start group the first
3086    * added group.
3087    */
3088   if (key_file->start_group == group)
3089     {
3090       tmp = g_list_last (key_file->groups);
3091       while (tmp != NULL)
3092         {
3093           if (tmp != group_node &&
3094               ((GKeyFileGroup *) tmp->data)->name != NULL)
3095             break;
3096
3097           tmp = tmp->prev;
3098         }
3099
3100       if (tmp)
3101         key_file->start_group = (GKeyFileGroup *) tmp->data;
3102       else
3103         key_file->start_group = NULL;
3104     }
3105
3106   key_file->groups = g_list_remove_link (key_file->groups, group_node);
3107
3108   if (group->name != NULL)
3109     key_file->approximate_size -= strlen (group->name) + 3;
3110
3111   tmp = group->key_value_pairs;
3112   while (tmp != NULL)
3113     {
3114       GList *pair_node;
3115
3116       pair_node = tmp;
3117       tmp = tmp->next;
3118       g_key_file_remove_key_value_pair_node (key_file, group, pair_node);
3119     }
3120
3121   g_warn_if_fail (group->key_value_pairs == NULL);
3122
3123   if (group->lookup_map)
3124     {
3125       g_hash_table_destroy (group->lookup_map);
3126       group->lookup_map = NULL;
3127     }
3128
3129   g_free ((gchar *) group->name);
3130   g_slice_free (GKeyFileGroup, group);
3131   g_list_free_1 (group_node);
3132 }
3133
3134 /**
3135  * g_key_file_remove_group:
3136  * @key_file: a #GKeyFile
3137  * @group_name: a group name
3138  * @error: return location for a #GError or %NULL
3139  *
3140  * Removes the specified group, @group_name, 
3141  * from the key file. 
3142  *
3143  * Returns: %TRUE if the group was removed, %FALSE otherwise
3144  *
3145  * Since: 2.6
3146  **/
3147 gboolean
3148 g_key_file_remove_group (GKeyFile     *key_file,
3149                          const gchar  *group_name,
3150                          GError      **error)
3151 {
3152   GList *group_node;
3153
3154   g_return_val_if_fail (key_file != NULL, FALSE);
3155   g_return_val_if_fail (group_name != NULL, FALSE);
3156
3157   group_node = g_key_file_lookup_group_node (key_file, group_name);
3158
3159   if (!group_node)
3160     {
3161       g_set_error (error, G_KEY_FILE_ERROR,
3162                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
3163                    _("Key file does not have group '%s'"),
3164                    group_name);
3165       return FALSE;
3166     }
3167
3168   g_key_file_remove_group_node (key_file, group_node);
3169
3170   return TRUE;  
3171 }
3172
3173 static void
3174 g_key_file_add_key (GKeyFile      *key_file,
3175                     GKeyFileGroup *group,
3176                     const gchar   *key,
3177                     const gchar   *value)
3178 {
3179   GKeyFileKeyValuePair *pair;
3180
3181   pair = g_slice_new (GKeyFileKeyValuePair);
3182   pair->key = g_strdup (key);
3183   pair->value = g_strdup (value);
3184
3185   g_hash_table_replace (group->lookup_map, pair->key, pair);
3186   group->key_value_pairs = g_list_prepend (group->key_value_pairs, pair);
3187   group->has_trailing_blank_line = FALSE;
3188   key_file->approximate_size += strlen (key) + strlen (value) + 2;
3189 }
3190
3191 /**
3192  * g_key_file_remove_key:
3193  * @key_file: a #GKeyFile
3194  * @group_name: a group name
3195  * @key: a key name to remove
3196  * @error: return location for a #GError or %NULL
3197  *
3198  * Removes @key in @group_name from the key file. 
3199  *
3200  * Returns: %TRUE if the key was removed, %FALSE otherwise
3201  *
3202  * Since: 2.6
3203  **/
3204 gboolean
3205 g_key_file_remove_key (GKeyFile     *key_file,
3206                        const gchar  *group_name,
3207                        const gchar  *key,
3208                        GError      **error)
3209 {
3210   GKeyFileGroup *group;
3211   GKeyFileKeyValuePair *pair;
3212
3213   g_return_val_if_fail (key_file != NULL, FALSE);
3214   g_return_val_if_fail (group_name != NULL, FALSE);
3215   g_return_val_if_fail (key != NULL, FALSE);
3216
3217   pair = NULL;
3218
3219   group = g_key_file_lookup_group (key_file, group_name);
3220   if (!group)
3221     {
3222       g_set_error (error, G_KEY_FILE_ERROR,
3223                    G_KEY_FILE_ERROR_GROUP_NOT_FOUND,
3224                    _("Key file does not have group '%s'"),
3225                    group_name ? group_name : "(null)");
3226       return FALSE;
3227     }
3228
3229   pair = g_key_file_lookup_key_value_pair (key_file, group, key);
3230
3231   if (!pair)
3232     {
3233       g_set_error (error, G_KEY_FILE_ERROR,
3234                    G_KEY_FILE_ERROR_KEY_NOT_FOUND,
3235                    _("Key file does not have key '%s' in group '%s'"),
3236                    key, group->name);
3237       return FALSE;
3238     }
3239
3240   key_file->approximate_size -= strlen (pair->key) + strlen (pair->value) + 2;
3241
3242   group->key_value_pairs = g_list_remove (group->key_value_pairs, pair);
3243   g_hash_table_remove (group->lookup_map, pair->key);  
3244   g_key_file_key_value_pair_free (pair);
3245
3246   return TRUE;
3247 }
3248
3249 static GList *
3250 g_key_file_lookup_group_node (GKeyFile    *key_file,
3251                               const gchar *group_name)
3252 {
3253   GKeyFileGroup *group;
3254   GList *tmp;
3255
3256   for (tmp = key_file->groups; tmp != NULL; tmp = tmp->next)
3257     {
3258       group = (GKeyFileGroup *) tmp->data;
3259
3260       if (group && group->name && strcmp (group->name, group_name) == 0)
3261         break;
3262     }
3263
3264   return tmp;
3265 }
3266
3267 static GKeyFileGroup *
3268 g_key_file_lookup_group (GKeyFile    *key_file,
3269                          const gchar *group_name)
3270 {
3271   return (GKeyFileGroup *)g_hash_table_lookup (key_file->group_hash, group_name);
3272 }
3273
3274 static GList *
3275 g_key_file_lookup_key_value_pair_node (GKeyFile       *key_file,
3276                                        GKeyFileGroup  *group,
3277                                        const gchar    *key)
3278 {
3279   GList *key_node;
3280
3281   for (key_node = group->key_value_pairs;
3282        key_node != NULL;
3283        key_node = key_node->next)
3284     {
3285       GKeyFileKeyValuePair *pair;
3286
3287       pair = (GKeyFileKeyValuePair *) key_node->data; 
3288
3289       if (pair->key && strcmp (pair->key, key) == 0)
3290         break;
3291     }
3292
3293   return key_node;
3294 }
3295
3296 static GKeyFileKeyValuePair *
3297 g_key_file_lookup_key_value_pair (GKeyFile      *key_file,
3298                                   GKeyFileGroup *group,
3299                                   const gchar   *key)
3300 {
3301   return (GKeyFileKeyValuePair *) g_hash_table_lookup (group->lookup_map, key);
3302 }
3303
3304 /* Lines starting with # or consisting entirely of whitespace are merely
3305  * recorded, not parsed. This function assumes all leading whitespace
3306  * has been stripped.
3307  */
3308 static gboolean
3309 g_key_file_line_is_comment (const gchar *line)
3310 {
3311   return (*line == '#' || *line == '\0' || *line == '\n');
3312 }
3313
3314 static gboolean 
3315 g_key_file_is_group_name (const gchar *name)
3316 {
3317   gchar *p, *q;
3318
3319   if (name == NULL)
3320     return FALSE;
3321
3322   p = q = (gchar *) name;
3323   while (*q && *q != ']' && *q != '[' && !g_ascii_iscntrl (*q))
3324     q = g_utf8_find_next_char (q, NULL);
3325   
3326   if (*q != '\0' || q == p)
3327     return FALSE;
3328
3329   return TRUE;
3330 }
3331
3332 static gboolean
3333 g_key_file_is_key_name (const gchar *name)
3334 {
3335   gchar *p, *q;
3336
3337   if (name == NULL)
3338     return FALSE;
3339
3340   p = q = (gchar *) name;
3341   /* We accept a little more than the desktop entry spec says,
3342    * since gnome-vfs uses mime-types as keys in its cache.
3343    */
3344   while (*q && *q != '=' && *q != '[' && *q != ']')
3345     q = g_utf8_find_next_char (q, NULL);
3346   
3347   /* No empty keys, please */
3348   if (q == p)
3349     return FALSE;
3350
3351   /* We accept spaces in the middle of keys to not break
3352    * existing apps, but we don't tolerate initial or final
3353    * spaces, which would lead to silent corruption when
3354    * rereading the file.
3355    */
3356   if (*p == ' ' || q[-1] == ' ')
3357     return FALSE;
3358
3359   if (*q == '[')
3360     {
3361       q++;
3362       while (*q && (g_unichar_isalnum (g_utf8_get_char_validated (q, -1)) || *q == '-' || *q == '_' || *q == '.' || *q == '@'))
3363         q = g_utf8_find_next_char (q, NULL);
3364
3365       if (*q != ']')
3366         return FALSE;     
3367
3368       q++;
3369     }
3370
3371   if (*q != '\0')
3372     return FALSE;
3373
3374   return TRUE;
3375 }
3376
3377 /* A group in a key file is made up of a starting '[' followed by one
3378  * or more letters making up the group name followed by ']'.
3379  */
3380 static gboolean
3381 g_key_file_line_is_group (const gchar *line)
3382 {
3383   gchar *p;
3384
3385   p = (gchar *) line;
3386   if (*p != '[')
3387     return FALSE;
3388
3389   p++;
3390
3391   while (*p && *p != ']')
3392     p = g_utf8_find_next_char (p, NULL);
3393
3394   if (*p != ']')
3395     return FALSE;
3396  
3397   /* silently accept whitespace after the ] */
3398   p = g_utf8_find_next_char (p, NULL);
3399   while (*p == ' ' || *p == '\t')
3400     p = g_utf8_find_next_char (p, NULL);
3401      
3402   if (*p)
3403     return FALSE;
3404
3405   return TRUE;
3406 }
3407
3408 static gboolean
3409 g_key_file_line_is_key_value_pair (const gchar *line)
3410 {
3411   gchar *p;
3412
3413   p = (gchar *) g_utf8_strchr (line, -1, '=');
3414
3415   if (!p)
3416     return FALSE;
3417
3418   /* Key must be non-empty
3419    */
3420   if (*p == line[0])
3421     return FALSE;
3422
3423   return TRUE;
3424 }
3425
3426 static gchar *
3427 g_key_file_parse_value_as_string (GKeyFile     *key_file,
3428                                   const gchar  *value,
3429                                   GSList      **pieces,
3430                                   GError      **error)
3431 {
3432   gchar *string_value, *p, *q0, *q;
3433
3434   string_value = g_new (gchar, strlen (value) + 1);
3435
3436   p = (gchar *) value;
3437   q0 = q = string_value;
3438   while (*p)
3439     {
3440       if (*p == '\\')
3441         {
3442           p++;
3443
3444           switch (*p)
3445             {
3446             case 's':
3447               *q = ' ';
3448               break;
3449
3450             case 'n':
3451               *q = '\n';
3452               break;
3453
3454             case 't':
3455               *q = '\t';
3456               break;
3457
3458             case 'r':
3459               *q = '\r';
3460               break;
3461
3462             case '\\':
3463               *q = '\\';
3464               break;
3465
3466             case '\0':
3467               g_set_error (error, G_KEY_FILE_ERROR,
3468                            G_KEY_FILE_ERROR_INVALID_VALUE,
3469                            _("Key file contains escape character "
3470                              "at end of line"));
3471               break;
3472
3473             default:
3474               if (pieces && *p == key_file->list_separator)
3475                 *q = key_file->list_separator;
3476               else
3477                 {
3478                   *q++ = '\\';
3479                   *q = *p;
3480                   
3481                   if (*error == NULL)
3482                     {
3483                       gchar sequence[3];
3484                       
3485                       sequence[0] = '\\';
3486                       sequence[1] = *p;
3487                       sequence[2] = '\0';
3488                       
3489                       g_set_error (error, G_KEY_FILE_ERROR,
3490                                    G_KEY_FILE_ERROR_INVALID_VALUE,
3491                                    _("Key file contains invalid escape "
3492                                      "sequence '%s'"), sequence);
3493                     }
3494                 }
3495               break;
3496             }
3497         }
3498       else
3499         {
3500           *q = *p;
3501           if (pieces && (*p == key_file->list_separator))
3502             {
3503               *pieces = g_slist_prepend (*pieces, g_strndup (q0, q - q0));
3504               q0 = q + 1; 
3505             }
3506         }
3507
3508       if (*p == '\0')
3509         break;
3510
3511       q++;
3512       p++;
3513     }
3514
3515   *q = '\0';
3516   if (pieces)
3517   {
3518     if (q0 < q)
3519       *pieces = g_slist_prepend (*pieces, g_strndup (q0, q - q0));
3520     *pieces = g_slist_reverse (*pieces);
3521   }
3522
3523   return string_value;
3524 }
3525
3526 static gchar *
3527 g_key_file_parse_string_as_value (GKeyFile    *key_file,
3528                                   const gchar *string,
3529                                   gboolean     escape_separator)
3530 {
3531   gchar *value, *p, *q;
3532   gsize length;
3533   gboolean parsing_leading_space;
3534
3535   length = strlen (string) + 1;
3536
3537   /* Worst case would be that every character needs to be escaped.
3538    * In other words every character turns to two characters
3539    */
3540   value = g_new (gchar, 2 * length);
3541
3542   p = (gchar *) string;
3543   q = value;
3544   parsing_leading_space = TRUE;
3545   while (p < (string + length - 1))
3546     {
3547       gchar escaped_character[3] = { '\\', 0, 0 };
3548
3549       switch (*p)
3550         {
3551         case ' ':
3552           if (parsing_leading_space)
3553             {
3554               escaped_character[1] = 's';
3555               strcpy (q, escaped_character);
3556               q += 2;
3557             }
3558           else
3559             {
3560               *q = *p;
3561               q++;
3562             }
3563           break;
3564         case '\t':
3565           if (parsing_leading_space)
3566             {
3567               escaped_character[1] = 't';
3568               strcpy (q, escaped_character);
3569               q += 2;
3570             }
3571           else
3572             {
3573               *q = *p;
3574               q++;
3575             }
3576           break;
3577         case '\n':
3578           escaped_character[1] = 'n';
3579           strcpy (q, escaped_character);
3580           q += 2;
3581           break;
3582         case '\r':
3583           escaped_character[1] = 'r';
3584           strcpy (q, escaped_character);
3585           q += 2;
3586           break;
3587         case '\\':
3588           escaped_character[1] = '\\';
3589           strcpy (q, escaped_character);
3590           q += 2;
3591           parsing_leading_space = FALSE;
3592           break;
3593         default:
3594           if (escape_separator && *p == key_file->list_separator)
3595             {
3596               escaped_character[1] = key_file->list_separator;
3597               strcpy (q, escaped_character);
3598               q += 2;
3599               parsing_leading_space = TRUE;
3600             }
3601           else 
3602             {
3603               *q = *p;
3604               q++;
3605               parsing_leading_space = FALSE;
3606             }
3607           break;
3608         }
3609       p++;
3610     }
3611   *q = '\0';
3612
3613   return value;
3614 }
3615
3616 static gint
3617 g_key_file_parse_value_as_integer (GKeyFile     *key_file,
3618                                    const gchar  *value,
3619                                    GError      **error)
3620 {
3621   gchar *end_of_valid_int;
3622  glong long_value;
3623   gint int_value;
3624
3625   errno = 0;
3626   long_value = strtol (value, &end_of_valid_int, 10);
3627
3628   if (*value == '\0' || *end_of_valid_int != '\0')
3629     {
3630       gchar *value_utf8 = _g_utf8_make_valid (value);
3631       g_set_error (error, G_KEY_FILE_ERROR,
3632                    G_KEY_FILE_ERROR_INVALID_VALUE,
3633                    _("Value '%s' cannot be interpreted "
3634                      "as a number."), value_utf8);
3635       g_free (value_utf8);
3636
3637       return 0;
3638     }
3639
3640   int_value = long_value;
3641   if (int_value != long_value || errno == ERANGE)
3642     {
3643       gchar *value_utf8 = _g_utf8_make_valid (value);
3644       g_set_error (error,
3645                    G_KEY_FILE_ERROR, 
3646                    G_KEY_FILE_ERROR_INVALID_VALUE,
3647                    _("Integer value '%s' out of range"), 
3648                    value_utf8);
3649       g_free (value_utf8);
3650
3651       return 0;
3652     }
3653   
3654   return int_value;
3655 }
3656
3657 static gchar *
3658 g_key_file_parse_integer_as_value (GKeyFile *key_file,
3659                                    gint      value)
3660
3661 {
3662   return g_strdup_printf ("%d", value);
3663 }
3664
3665 static gdouble
3666 g_key_file_parse_value_as_double  (GKeyFile     *key_file,
3667                                    const gchar  *value,
3668                                    GError      **error)
3669 {
3670   gchar *end_of_valid_d;
3671   gdouble double_value = 0;
3672
3673   double_value = g_ascii_strtod (value, &end_of_valid_d);
3674
3675   if (*end_of_valid_d != '\0' || end_of_valid_d == value)
3676     {
3677       gchar *value_utf8 = _g_utf8_make_valid (value);
3678       g_set_error (error, G_KEY_FILE_ERROR,
3679                    G_KEY_FILE_ERROR_INVALID_VALUE,
3680                    _("Value '%s' cannot be interpreted "
3681                      "as a float number."), 
3682                    value_utf8);
3683       g_free (value_utf8);
3684     }
3685
3686   return double_value;
3687 }
3688
3689 static gboolean
3690 g_key_file_parse_value_as_boolean (GKeyFile     *key_file,
3691                                    const gchar  *value,
3692                                    GError      **error)
3693 {
3694   gchar *value_utf8;
3695
3696   if (strcmp (value, "true") == 0 || strcmp (value, "1") == 0)
3697     return TRUE;
3698   else if (strcmp (value, "false") == 0 || strcmp (value, "0") == 0)
3699     return FALSE;
3700
3701   value_utf8 = _g_utf8_make_valid (value);
3702   g_set_error (error, G_KEY_FILE_ERROR,
3703                G_KEY_FILE_ERROR_INVALID_VALUE,
3704                _("Value '%s' cannot be interpreted "
3705                  "as a boolean."), value_utf8);
3706   g_free (value_utf8);
3707
3708   return FALSE;
3709 }
3710
3711 static gchar *
3712 g_key_file_parse_boolean_as_value (GKeyFile *key_file,
3713                                    gboolean  value)
3714 {
3715   if (value)
3716     return g_strdup ("true");
3717   else
3718     return g_strdup ("false");
3719 }
3720
3721 static gchar *
3722 g_key_file_parse_value_as_comment (GKeyFile    *key_file,
3723                                    const gchar *value)
3724 {
3725   GString *string;
3726   gchar **lines;
3727   gsize i;
3728
3729   string = g_string_sized_new (512);
3730
3731   lines = g_strsplit (value, "\n", 0);
3732
3733   for (i = 0; lines[i] != NULL; i++)
3734     {
3735         if (lines[i][0] != '#')
3736            g_string_append_printf (string, "%s\n", lines[i]);
3737         else 
3738            g_string_append_printf (string, "%s\n", lines[i] + 1);
3739     }
3740   g_strfreev (lines);
3741
3742   return g_string_free (string, FALSE);
3743 }
3744
3745 static gchar *
3746 g_key_file_parse_comment_as_value (GKeyFile      *key_file,
3747                                    const gchar   *comment)
3748 {
3749   GString *string;
3750   gchar **lines;
3751   gsize i;
3752
3753   string = g_string_sized_new (512);
3754
3755   lines = g_strsplit (comment, "\n", 0);
3756
3757   for (i = 0; lines[i] != NULL; i++)
3758     g_string_append_printf (string, "#%s%s", lines[i], 
3759                             lines[i + 1] == NULL? "" : "\n");
3760   g_strfreev (lines);
3761
3762   return g_string_free (string, FALSE);
3763 }
3764
3765 #define __G_KEY_FILE_C__
3766 #include "galiasdef.c"