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