Use 'dumb quotes' rather than `really dumb quotes'
[platform/upstream/glib.git] / gio / gsettingsschema.c
1 /*
2  * Copyright © 2010 Codethink Limited
3  * Copyright © 2011 Canonical Limited
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the licence, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include "config.h"
22
23 #include "gsettingsschema-internal.h"
24 #include "gsettings.h"
25
26 #include "gvdb/gvdb-reader.h"
27 #include "strinfo.c"
28
29 #include <glibintl.h>
30 #include <locale.h>
31 #include <string.h>
32
33 /**
34  * SECTION:gsettingsschema
35  * @short_description: introspecting and controlling the loading of
36  *                     GSettings schemas
37  *
38  * The #GSettingsSchemaSource and #GSettingsSchema APIs provide a
39  * mechanism for advanced control over the loading of schemas and a
40  * mechanism for introspecting their content.
41  *
42  * Plugin loading systems that wish to provide plugins a way to access
43  * settings face the problem of how to make the schemas for these
44  * settings visible to GSettings.  Typically, a plugin will want to ship
45  * the schema along with itself and it won't be installed into the
46  * standard system directories for schemas.
47  *
48  * #GSettingsSchemaSource provides a mechanism for dealing with this by
49  * allowing the creation of a new 'schema source' from which schemas can
50  * be acquired.  This schema source can then become part of the metadata
51  * associated with the plugin and queried whenever the plugin requires
52  * access to some settings.
53  *
54  * Consider the following example:
55  *
56  * |[
57  * typedef struct
58  * {
59  *    ...
60  *    GSettingsSchemaSource *schema_source;
61  *    ...
62  * } Plugin;
63  *
64  * Plugin *
65  * initialise_plugin (const gchar *dir)
66  * {
67  *   Plugin *plugin;
68  *
69  *   ...
70  *
71  *   plugin->schema_source =
72  *     g_settings_new_schema_source_from_directory (dir,
73  *       g_settings_schema_source_get_default (), FALSE, NULL);
74  *
75  *   ...
76  *
77  *   return plugin;
78  * }
79  *
80  * ...
81  *
82  * GSettings *
83  * plugin_get_settings (Plugin      *plugin,
84  *                      const gchar *schema_id)
85  * {
86  *   GSettingsSchema *schema;
87  *
88  *   if (schema_id == NULL)
89  *     schema_id = plugin->identifier;
90  *
91  *   schema = g_settings_schema_source_lookup (plugin->schema_source,
92  *                                             schema_id, FALSE);
93  *
94  *   if (schema == NULL)
95  *     {
96  *       ... disable the plugin or abort, etc ...
97  *     }
98  *
99  *   return g_settings_new_full (schema, NULL, NULL);
100  * }
101  * ]|
102  *
103  * The code above shows how hooks should be added to the code that
104  * initialises (or enables) the plugin to create the schema source and
105  * how an API can be added to the plugin system to provide a convenient
106  * way for the plugin to access its settings, using the schemas that it
107  * ships.
108  *
109  * From the standpoint of the plugin, it would need to ensure that it
110  * ships a gschemas.compiled file as part of itself, and then simply do
111  * the following:
112  *
113  * |[
114  * {
115  *   GSettings *settings;
116  *   gint some_value;
117  *
118  *   settings = plugin_get_settings (self, NULL);
119  *   some_value = g_settings_get_int (settings, "some-value");
120  *   ...
121  * }
122  * ]|
123  *
124  * It's also possible that the plugin system expects the schema source
125  * files (ie: .gschema.xml files) instead of a gschemas.compiled file.
126  * In that case, the plugin loading system must compile the schemas for
127  * itself before attempting to create the settings source.
128  *
129  * Since: 2.32
130  **/
131
132 /**
133  * GSettingsSchema:
134  *
135  * This is an opaque structure type.  You may not access it directly.
136  *
137  * Since: 2.32
138  **/
139 struct _GSettingsSchema
140 {
141   const gchar *gettext_domain;
142   const gchar *path;
143   GQuark *items;
144   gint n_items;
145   GvdbTable *table;
146   gchar *id;
147
148   gint ref_count;
149 };
150
151 /**
152  * G_TYPE_SETTINGS_SCHEMA_SOURCE:
153  *
154  * A boxed #GType corresponding to #GSettingsSchemaSource.
155  *
156  * Since: 2.32
157  **/
158 G_DEFINE_BOXED_TYPE (GSettingsSchemaSource, g_settings_schema_source, g_settings_schema_source_ref, g_settings_schema_source_unref)
159
160 /**
161  * G_TYPE_SETTINGS_SCHEMA:
162  *
163  * A boxed #GType corresponding to #GSettingsSchema.
164  *
165  * Since: 2.32
166  **/
167 G_DEFINE_BOXED_TYPE (GSettingsSchema, g_settings_schema, g_settings_schema_ref, g_settings_schema_unref)
168
169 /**
170  * GSettingsSchemaSource:
171  *
172  * This is an opaque structure type.  You may not access it directly.
173  *
174  * Since: 2.32
175  **/
176 struct _GSettingsSchemaSource
177 {
178   GSettingsSchemaSource *parent;
179   GvdbTable *table;
180
181   gint ref_count;
182 };
183
184 static GSettingsSchemaSource *schema_sources;
185
186 static void
187 prepend_schema_table (GvdbTable *table)
188 {
189   GSettingsSchemaSource *source;
190
191   /* we steal the reference from 'schema_sources' for our ->parent */
192   source = g_slice_new (GSettingsSchemaSource);
193   source->parent = schema_sources;
194   source->table = table;
195   source->ref_count = 1;
196
197   schema_sources = source;
198 }
199
200 /**
201  * g_settings_schema_source_ref:
202  * @source: a #GSettingsSchemaSource
203  *
204  * Increase the reference count of @source, returning a new reference.
205  *
206  * Returns: a new reference to @source
207  *
208  * Since: 2.32
209  **/
210 GSettingsSchemaSource *
211 g_settings_schema_source_ref (GSettingsSchemaSource *source)
212 {
213   g_atomic_int_inc (&source->ref_count);
214
215   return source;
216 }
217
218 /**
219  * g_settings_schema_source_unref:
220  * @source: a #GSettingsSchemaSource
221  *
222  * Decrease the reference count of @source, possibly freeing it.
223  *
224  * Since: 2.32
225  **/
226 void
227 g_settings_schema_source_unref (GSettingsSchemaSource *source)
228 {
229   if (g_atomic_int_dec_and_test (&source->ref_count))
230     {
231       if (source == schema_sources)
232         g_error ("g_settings_schema_source_unref() called too many times on the default schema source");
233
234       if (source->parent)
235         g_settings_schema_source_unref (source->parent);
236       gvdb_table_unref (source->table);
237
238       g_slice_free (GSettingsSchemaSource, source);
239     }
240 }
241
242 /**
243  * g_settings_schema_source_new_from_directory:
244  * @directory: the filename of a directory
245  * @parent: (allow-none): a #GSettingsSchemaSource, or %NULL
246  * @trusted: %TRUE, if the directory is trusted
247  * @error: a pointer to a #GError pointer set to %NULL, or %NULL
248  *
249  * Attempts to create a new schema source corresponding to the contents
250  * of the given directory.
251  *
252  * This function is not required for normal uses of #GSettings but it
253  * may be useful to authors of plugin management systems.
254  *
255  * The directory should contain a file called
256  * <filename>gschemas.compiled</filename> as produced by
257  * <command>glib-compile-schemas</command>.
258  *
259  * If @trusted is %TRUE then <filename>gschemas.compiled</filename> is
260  * trusted not to be corrupted.  This assumption has a performance
261  * advantage, but can result in crashes or inconsistent behaviour in the
262  * case of a corrupted file.  Generally, you should set @trusted to
263  * %TRUE for files installed by the system and to %FALSE for files in
264  * the home directory.
265  *
266  * If @parent is non-%NULL then there are two effects.
267  *
268  * First, if g_settings_schema_source_lookup() is called with the
269  * @recursive flag set to %TRUE and the schema can not be found in the
270  * source, the lookup will recurse to the parent.
271  *
272  * Second, any references to other schemas specified within this
273  * source (ie: <literal>child</literal> or <literal>extends</literal>)
274  * references may be resolved from the @parent.
275  *
276  * For this second reason, except in very unusual situations, the
277  * @parent should probably be given as the default schema source, as
278  * returned by g_settings_schema_source_get_default().
279  *
280  * Since: 2.32
281  **/
282 GSettingsSchemaSource *
283 g_settings_schema_source_new_from_directory (const gchar            *directory,
284                                              GSettingsSchemaSource  *parent,
285                                              gboolean                trusted,
286                                              GError                **error)
287 {
288   GSettingsSchemaSource *source;
289   GvdbTable *table;
290   gchar *filename;
291
292   filename = g_build_filename (directory, "gschemas.compiled", NULL);
293   table = gvdb_table_new (filename, trusted, error);
294   g_free (filename);
295
296   if (table == NULL)
297     return NULL;
298
299   source = g_slice_new (GSettingsSchemaSource);
300   source->parent = parent ? g_settings_schema_source_ref (parent) : NULL;
301   source->table = table;
302   source->ref_count = 1;
303
304   return source;
305 }
306
307 static void
308 initialise_schema_sources (void)
309 {
310   static gsize initialised;
311
312   /* need a separate variable because 'schema_sources' may legitimately
313    * be null if we have zero valid schema sources
314    */
315   if G_UNLIKELY (g_once_init_enter (&initialised))
316     {
317       const gchar * const *dirs;
318       const gchar *path;
319       gint i;
320
321       /* iterate in reverse: count up, then count down */
322       dirs = g_get_system_data_dirs ();
323       for (i = 0; dirs[i]; i++);
324
325       while (i--)
326         {
327           gchar *filename;
328           GvdbTable *table;
329
330           filename = g_build_filename (dirs[i], "glib-2.0", "schemas", "gschemas.compiled", NULL);
331           table = gvdb_table_new (filename, TRUE, NULL);
332
333           if (table != NULL)
334             prepend_schema_table (table);
335
336           g_free (filename);
337         }
338
339       if ((path = g_getenv ("GSETTINGS_SCHEMA_DIR")) != NULL)
340         {
341           gchar *filename;
342           GvdbTable *table;
343
344           filename = g_build_filename (path, "gschemas.compiled", NULL);
345           table = gvdb_table_new (filename, TRUE, NULL);
346
347           if (table != NULL)
348             prepend_schema_table (table);
349
350           g_free (filename);
351         }
352
353       g_once_init_leave (&initialised, TRUE);
354     }
355 }
356
357 /**
358  * g_settings_schema_source_get_default:
359  *
360  * Gets the default system schema source.
361  *
362  * This function is not required for normal uses of #GSettings but it
363  * may be useful to authors of plugin management systems or to those who
364  * want to introspect the content of schemas.
365  *
366  * If no schemas are installed, %NULL will be returned.
367  *
368  * The returned source may actually consist of multiple schema sources
369  * from different directories, depending on which directories were given
370  * in <envar>XDG_DATA_DIRS</envar> and
371  * <envar>GSETTINGS_SCHEMA_DIR</envar>.  For this reason, all lookups
372  * performed against the default source should probably be done
373  * recursively.
374  *
375  * Returns: (transfer none): the default schema source
376  *
377  * Since: 2.32
378  **/
379  GSettingsSchemaSource *
380 g_settings_schema_source_get_default (void)
381 {
382   initialise_schema_sources ();
383
384   return schema_sources;
385 }
386
387 /**
388  * g_settings_schema_source_lookup:
389  * @source: a #GSettingsSchemaSource
390  * @schema_id: a schema ID
391  * @recursive: %TRUE if the lookup should be recursive
392  *
393  * Looks up a schema with the identifier @schema_id in @source.
394  *
395  * This function is not required for normal uses of #GSettings but it
396  * may be useful to authors of plugin management systems or to those who
397  * want to introspect the content of schemas.
398  *
399  * If the schema isn't found directly in @source and @recursive is %TRUE
400  * then the parent sources will also be checked.
401  *
402  * If the schema isn't found, %NULL is returned.
403  *
404  * Returns: (transfer full): a new #GSettingsSchema
405  *
406  * Since: 2.32
407  **/
408 GSettingsSchema *
409 g_settings_schema_source_lookup (GSettingsSchemaSource *source,
410                                  const gchar           *schema_id,
411                                  gboolean               recursive)
412 {
413   GSettingsSchema *schema;
414   GvdbTable *table;
415
416   g_return_val_if_fail (source != NULL, NULL);
417   g_return_val_if_fail (schema_id != NULL, NULL);
418
419   table = gvdb_table_get_table (source->table, schema_id);
420
421   if (table == NULL && recursive)
422     for (source = source->parent; source; source = source->parent)
423       if ((table = gvdb_table_get_table (source->table, schema_id)))
424         break;
425
426   if (table == NULL)
427     return NULL;
428
429   schema = g_slice_new0 (GSettingsSchema);
430   schema->ref_count = 1;
431   schema->id = g_strdup (schema_id);
432   schema->table = table;
433   schema->path = g_settings_schema_get_string (schema, ".path");
434   schema->gettext_domain = g_settings_schema_get_string (schema, ".gettext-domain");
435
436   if (schema->gettext_domain)
437     bind_textdomain_codeset (schema->gettext_domain, "UTF-8");
438
439   return schema;
440 }
441
442 static gboolean
443 steal_item (gpointer key,
444             gpointer value,
445             gpointer user_data)
446 {
447   gchar ***ptr = user_data;
448
449   *(*ptr)++ = (gchar *) key;
450
451   return TRUE;
452 }
453
454 static const gchar * const *non_relocatable_schema_list;
455 static const gchar * const *relocatable_schema_list;
456 static gsize schema_lists_initialised;
457
458 static void
459 ensure_schema_lists (void)
460 {
461   if (g_once_init_enter (&schema_lists_initialised))
462     {
463       GSettingsSchemaSource *source;
464       GHashTable *single, *reloc;
465       const gchar **ptr;
466       gchar **list;
467       gint i;
468
469       initialise_schema_sources ();
470
471       /* We use hash tables to avoid duplicate listings for schemas that
472        * appear in more than one file.
473        */
474       single = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
475       reloc = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
476
477       for (source = schema_sources; source; source = source->parent)
478         {
479           list = gvdb_table_list (source->table, "");
480
481           /* empty schema cache file? */
482           if (list == NULL)
483             continue;
484
485           for (i = 0; list[i]; i++)
486             {
487               if (!g_hash_table_lookup (single, list[i]) &&
488                   !g_hash_table_lookup (reloc, list[i]))
489                 {
490                   GvdbTable *table;
491
492                   table = gvdb_table_get_table (source->table, list[i]);
493                   g_assert (table != NULL);
494
495                   if (gvdb_table_has_value (table, ".path"))
496                     g_hash_table_insert (single, g_strdup (list[i]), NULL);
497                   else
498                     g_hash_table_insert (reloc, g_strdup (list[i]), NULL);
499
500                   gvdb_table_unref (table);
501                 }
502             }
503
504           g_strfreev (list);
505         }
506
507       ptr = g_new (const gchar *, g_hash_table_size (single) + 1);
508       non_relocatable_schema_list = ptr;
509       g_hash_table_foreach_steal (single, steal_item, &ptr);
510       g_hash_table_unref (single);
511       *ptr = NULL;
512
513       ptr = g_new (const gchar *, g_hash_table_size (reloc) + 1);
514       relocatable_schema_list = ptr;
515       g_hash_table_foreach_steal (reloc, steal_item, &ptr);
516       g_hash_table_unref (reloc);
517       *ptr = NULL;
518
519       g_once_init_leave (&schema_lists_initialised, TRUE);
520     }
521 }
522
523 /**
524  * g_settings_list_schemas:
525  *
526  * Gets a list of the #GSettings schemas installed on the system.  The
527  * returned list is exactly the list of schemas for which you may call
528  * g_settings_new() without adverse effects.
529  *
530  * This function does not list the schemas that do not provide their own
531  * paths (ie: schemas for which you must use
532  * g_settings_new_with_path()).  See
533  * g_settings_list_relocatable_schemas() for that.
534  *
535  * Returns: (element-type utf8) (transfer none):  a list of #GSettings
536  *   schemas that are available.  The list must not be modified or
537  *   freed.
538  *
539  * Since: 2.26
540  **/
541 const gchar * const *
542 g_settings_list_schemas (void)
543 {
544   ensure_schema_lists ();
545
546   return non_relocatable_schema_list;
547 }
548
549 /**
550  * g_settings_list_relocatable_schemas:
551  *
552  * Gets a list of the relocatable #GSettings schemas installed on the
553  * system.  These are schemas that do not provide their own path.  It is
554  * usual to instantiate these schemas directly, but if you want to you
555  * can use g_settings_new_with_path() to specify the path.
556  *
557  * The output of this function, taken together with the output of
558  * g_settings_list_schemas() represents the complete list of all
559  * installed schemas.
560  *
561  * Returns: (element-type utf8) (transfer none): a list of relocatable
562  *   #GSettings schemas that are available.  The list must not be
563  *   modified or freed.
564  *
565  * Since: 2.28
566  **/
567 const gchar * const *
568 g_settings_list_relocatable_schemas (void)
569 {
570   ensure_schema_lists ();
571
572   return relocatable_schema_list;
573 }
574
575 /**
576  * g_settings_schema_ref:
577  * @schema: a #GSettingsSchema
578  *
579  * Increase the reference count of @schema, returning a new reference.
580  *
581  * Returns: a new reference to @schema
582  *
583  * Since: 2.32
584  **/
585 GSettingsSchema *
586 g_settings_schema_ref (GSettingsSchema *schema)
587 {
588   g_atomic_int_inc (&schema->ref_count);
589
590   return schema;
591 }
592
593 /**
594  * g_settings_schema_unref:
595  * @schema: a #GSettingsSchema
596  *
597  * Decrease the reference count of @schema, possibly freeing it.
598  *
599  * Since: 2.32
600  **/
601 void
602 g_settings_schema_unref (GSettingsSchema *schema)
603 {
604   if (g_atomic_int_dec_and_test (&schema->ref_count))
605     {
606       gvdb_table_unref (schema->table);
607       g_free (schema->items);
608       g_free (schema->id);
609
610       g_slice_free (GSettingsSchema, schema);
611     }
612 }
613
614 const gchar *
615 g_settings_schema_get_string (GSettingsSchema *schema,
616                               const gchar     *key)
617 {
618   const gchar *result = NULL;
619   GVariant *value;
620
621   if ((value = gvdb_table_get_raw_value (schema->table, key)))
622     {
623       result = g_variant_get_string (value, NULL);
624       g_variant_unref (value);
625     }
626
627   return result;
628 }
629
630 GVariantIter *
631 g_settings_schema_get_value (GSettingsSchema *schema,
632                              const gchar     *key)
633 {
634   GVariantIter *iter;
635   GVariant *value;
636
637   value = gvdb_table_get_raw_value (schema->table, key);
638
639   if G_UNLIKELY (value == NULL || !g_variant_is_of_type (value, G_VARIANT_TYPE_TUPLE))
640     g_error ("Settings schema '%s' does not contain a key named '%s'", schema->id, key);
641
642   iter = g_variant_iter_new (value);
643   g_variant_unref (value);
644
645   return iter;
646 }
647
648 /**
649  * g_settings_schema_get_path:
650  * @schema: a #GSettingsSchema
651  *
652  * Gets the path associated with @schema, or %NULL.
653  *
654  * Schemas may be single-instance or relocatable.  Single-instance
655  * schemas correspond to exactly one set of keys in the backend
656  * database: those located at the path returned by this function.
657  *
658  * Relocatable schemas can be referenced by other schemas and can
659  * threfore describe multiple sets of keys at different locations.  For
660  * relocatable schemas, this function will return %NULL.
661  *
662  * Returns: (transfer none): the path of the schema, or %NULL
663  *
664  * Since: 2.32
665  **/
666 const gchar *
667 g_settings_schema_get_path (GSettingsSchema *schema)
668 {
669   return schema->path;
670 }
671
672 const gchar *
673 g_settings_schema_get_gettext_domain (GSettingsSchema *schema)
674 {
675   return schema->gettext_domain;
676 }
677
678 gboolean
679 g_settings_schema_has_key (GSettingsSchema *schema,
680                            const gchar     *key)
681 {
682   return gvdb_table_has_value (schema->table, key);
683 }
684
685 const GQuark *
686 g_settings_schema_list (GSettingsSchema *schema,
687                         gint            *n_items)
688 {
689   gint i, j;
690
691   if (schema->items == NULL)
692     {
693       gchar **list;
694       gint len;
695
696       list = gvdb_table_list (schema->table, "");
697       len = list ? g_strv_length (list) : 0;
698
699       schema->items = g_new (GQuark, len);
700       j = 0;
701
702       for (i = 0; i < len; i++)
703         if (list[i][0] != '.')
704           schema->items[j++] = g_quark_from_string (list[i]);
705       schema->n_items = j;
706
707       g_strfreev (list);
708     }
709
710   *n_items = schema->n_items;
711   return schema->items;
712 }
713
714 /**
715  * g_settings_schema_get_id:
716  * @schema: a #GSettingsSchema
717  *
718  * Get the ID of @schema.
719  *
720  * Returns: (transfer none): the ID
721  **/
722 const gchar *
723 g_settings_schema_get_id (GSettingsSchema *schema)
724 {
725   return schema->id;
726 }
727
728 static inline void
729 endian_fixup (GVariant **value)
730 {
731 #if G_BYTE_ORDER == G_BIG_ENDIAN
732   GVariant *tmp;
733
734   tmp = g_variant_byteswap (*value);
735   g_variant_unref (*value);
736   *value = tmp;
737 #endif
738 }
739
740 void
741 g_settings_schema_key_init (GSettingsSchemaKey *key,
742                             GSettingsSchema    *schema,
743                             const gchar        *name)
744 {
745   GVariantIter *iter;
746   GVariant *data;
747   guchar code;
748
749   memset (key, 0, sizeof *key);
750
751   iter = g_settings_schema_get_value (schema, name);
752
753   key->schema = g_settings_schema_ref (schema);
754   key->default_value = g_variant_iter_next_value (iter);
755   endian_fixup (&key->default_value);
756   key->type = g_variant_get_type (key->default_value);
757   key->name = g_intern_string (name);
758
759   while (g_variant_iter_next (iter, "(y*)", &code, &data))
760     {
761       switch (code)
762         {
763         case 'l':
764           /* translation requested */
765           g_variant_get (data, "(y&s)", &key->lc_char, &key->unparsed);
766           break;
767
768         case 'e':
769           /* enumerated types... */
770           key->is_enum = TRUE;
771           goto choice;
772
773         case 'f':
774           /* flags... */
775           key->is_flags = TRUE;
776           goto choice;
777
778         choice: case 'c':
779           /* ..., choices, aliases */
780           key->strinfo = g_variant_get_fixed_array (data, &key->strinfo_length, sizeof (guint32));
781           break;
782
783         case 'r':
784           g_variant_get (data, "(**)", &key->minimum, &key->maximum);
785           endian_fixup (&key->minimum);
786           endian_fixup (&key->maximum);
787           break;
788
789         default:
790           g_warning ("unknown schema extension '%c'", code);
791           break;
792         }
793
794       g_variant_unref (data);
795     }
796
797   g_variant_iter_free (iter);
798 }
799
800 void
801 g_settings_schema_key_clear (GSettingsSchemaKey *key)
802 {
803   if (key->minimum)
804     g_variant_unref (key->minimum);
805
806   if (key->maximum)
807     g_variant_unref (key->maximum);
808
809   g_variant_unref (key->default_value);
810
811   g_settings_schema_unref (key->schema);
812 }
813
814 gboolean
815 g_settings_schema_key_type_check (GSettingsSchemaKey *key,
816                                   GVariant           *value)
817 {
818   g_return_val_if_fail (value != NULL, FALSE);
819
820   return g_variant_is_of_type (value, key->type);
821 }
822
823 gboolean
824 g_settings_schema_key_range_check (GSettingsSchemaKey *key,
825                                    GVariant           *value)
826 {
827   if (key->minimum == NULL && key->strinfo == NULL)
828     return TRUE;
829
830   if (g_variant_is_container (value))
831     {
832       gboolean ok = TRUE;
833       GVariantIter iter;
834       GVariant *child;
835
836       g_variant_iter_init (&iter, value);
837       while (ok && (child = g_variant_iter_next_value (&iter)))
838         {
839           ok = g_settings_schema_key_range_check (key, child);
840           g_variant_unref (child);
841         }
842
843       return ok;
844     }
845
846   if (key->minimum)
847     {
848       return g_variant_compare (key->minimum, value) <= 0 &&
849              g_variant_compare (value, key->maximum) <= 0;
850     }
851
852   return strinfo_is_string_valid (key->strinfo, key->strinfo_length,
853                                   g_variant_get_string (value, NULL));
854 }
855
856 GVariant *
857 g_settings_schema_key_range_fixup (GSettingsSchemaKey *key,
858                                    GVariant           *value)
859 {
860   const gchar *target;
861
862   if (g_settings_schema_key_range_check (key, value))
863     return g_variant_ref (value);
864
865   if (key->strinfo == NULL)
866     return NULL;
867
868   if (g_variant_is_container (value))
869     {
870       GVariantBuilder builder;
871       GVariantIter iter;
872       GVariant *child;
873
874       g_variant_iter_init (&iter, value);
875       g_variant_builder_init (&builder, g_variant_get_type (value));
876
877       while ((child = g_variant_iter_next_value (&iter)))
878         {
879           GVariant *fixed;
880
881           fixed = g_settings_schema_key_range_fixup (key, child);
882           g_variant_unref (child);
883
884           if (fixed == NULL)
885             {
886               g_variant_builder_clear (&builder);
887               return NULL;
888             }
889
890           g_variant_builder_add_value (&builder, fixed);
891           g_variant_unref (fixed);
892         }
893
894       return g_variant_ref_sink (g_variant_builder_end (&builder));
895     }
896
897   target = strinfo_string_from_alias (key->strinfo, key->strinfo_length,
898                                       g_variant_get_string (value, NULL));
899   return target ? g_variant_ref_sink (g_variant_new_string (target)) : NULL;
900 }
901
902
903 GVariant *
904 g_settings_schema_key_get_translated_default (GSettingsSchemaKey *key)
905 {
906   const gchar *translated;
907   GError *error = NULL;
908   const gchar *domain;
909   GVariant *value;
910
911   domain = g_settings_schema_get_gettext_domain (key->schema);
912
913   if (key->lc_char == '\0')
914     /* translation not requested for this key */
915     return NULL;
916
917   if (key->lc_char == 't')
918     translated = g_dcgettext (domain, key->unparsed, LC_TIME);
919   else
920     translated = g_dgettext (domain, key->unparsed);
921
922   if (translated == key->unparsed)
923     /* the default value was not translated */
924     return NULL;
925
926   /* try to parse the translation of the unparsed default */
927   value = g_variant_parse (key->type, translated, NULL, NULL, &error);
928
929   if (value == NULL)
930     {
931       g_warning ("Failed to parse translated string '%s' for "
932                  "key '%s' in schema '%s': %s", key->unparsed, key->name,
933                  g_settings_schema_get_id (key->schema), error->message);
934       g_warning ("Using untranslated default instead.");
935       g_error_free (error);
936     }
937
938   else if (!g_settings_schema_key_range_check (key, value))
939     {
940       g_warning ("Translated default '%s' for key '%s' in schema '%s' "
941                  "is outside of valid range", key->unparsed, key->name,
942                  g_settings_schema_get_id (key->schema));
943       g_variant_unref (value);
944       value = NULL;
945     }
946
947   return value;
948 }
949
950 gint
951 g_settings_schema_key_to_enum (GSettingsSchemaKey *key,
952                                GVariant           *value)
953 {
954   gboolean it_worked;
955   guint result;
956
957   it_worked = strinfo_enum_from_string (key->strinfo, key->strinfo_length,
958                                         g_variant_get_string (value, NULL),
959                                         &result);
960
961   /* 'value' can only come from the backend after being filtered for validity,
962    * from the translation after being filtered for validity, or from the schema
963    * itself (which the schema compiler checks for validity).  If this assertion
964    * fails then it's really a bug in GSettings or the schema compiler...
965    */
966   g_assert (it_worked);
967
968   return result;
969 }
970
971 GVariant *
972 g_settings_schema_key_from_enum (GSettingsSchemaKey *key,
973                                  gint                value)
974 {
975   const gchar *string;
976
977   string = strinfo_string_from_enum (key->strinfo, key->strinfo_length, value);
978
979   if (string == NULL)
980     return NULL;
981
982   return g_variant_new_string (string);
983 }
984
985 guint
986 g_settings_schema_key_to_flags (GSettingsSchemaKey *key,
987                                 GVariant           *value)
988 {
989   GVariantIter iter;
990   const gchar *flag;
991   guint result;
992
993   result = 0;
994   g_variant_iter_init (&iter, value);
995   while (g_variant_iter_next (&iter, "&s", &flag))
996     {
997       gboolean it_worked;
998       guint flag_value;
999
1000       it_worked = strinfo_enum_from_string (key->strinfo, key->strinfo_length, flag, &flag_value);
1001       /* as in g_settings_to_enum() */
1002       g_assert (it_worked);
1003
1004       result |= flag_value;
1005     }
1006
1007   return result;
1008 }
1009
1010 GVariant *
1011 g_settings_schema_key_from_flags (GSettingsSchemaKey *key,
1012                                   guint               value)
1013 {
1014   GVariantBuilder builder;
1015   gint i;
1016
1017   g_variant_builder_init (&builder, G_VARIANT_TYPE ("as"));
1018
1019   for (i = 0; i < 32; i++)
1020     if (value & (1u << i))
1021       {
1022         const gchar *string;
1023
1024         string = strinfo_string_from_enum (key->strinfo, key->strinfo_length, 1u << i);
1025
1026         if (string == NULL)
1027           {
1028             g_variant_builder_clear (&builder);
1029             return NULL;
1030           }
1031
1032         g_variant_builder_add (&builder, "s", string);
1033       }
1034
1035   return g_variant_builder_end (&builder);
1036 }