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