Simplify glib/glib/tests setup
[glib.git] / gio / gsettingsschema.c
blob7ee807f522967a4eed83fb8ce91da21e1cc31875
1 /*
2 * Copyright © 2010 Codethink Limited
3 * Copyright © 2011 Canonical Limited
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.
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.
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.
21 #include "config.h"
23 #include "gsettingsschema-internal.h"
24 #include "gsettings.h"
26 #include "gvdb/gvdb-reader.h"
27 #include "strinfo.c"
29 #include <glibintl.h>
30 #include <locale.h>
31 #include <string.h>
33 /**
34 * SECTION:gsettingsschema
35 * @short_description: introspecting and controlling the loading of
36 * GSettings schemas
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.
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.
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.
54 * Consider the following example:
56 * |[
57 * typedef struct
58 * {
59 * ...
60 * GSettingsSchemaSource *schema_source;
61 * ...
62 * } Plugin;
64 * Plugin *
65 * initialise_plugin (const gchar *dir)
66 * {
67 * Plugin *plugin;
69 * ...
71 * plugin->schema_source =
72 * g_settings_new_schema_source_from_directory (dir,
73 * g_settings_schema_source_get_default (), FALSE, NULL);
75 * ...
77 * return plugin;
78 * }
80 * ...
82 * GSettings *
83 * plugin_get_settings (Plugin *plugin,
84 * const gchar *schema_id)
85 * {
86 * GSettingsSchema *schema;
88 * if (schema_id == NULL)
89 * schema_id = plugin->identifier;
91 * schema = g_settings_schema_source_lookup (plugin->schema_source,
92 * schema_id, FALSE);
94 * if (schema == NULL)
95 * {
96 * ... disable the plugin or abort, etc ...
97 * }
99 * return g_settings_new_full (schema, NULL, NULL);
101 * ]|
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.
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:
113 * |[
115 * GSettings *settings;
116 * gint some_value;
118 * settings = plugin_get_settings (self, NULL);
119 * some_value = g_settings_get_int (settings, "some-value");
120 * ...
122 * ]|
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.
129 * Since: 2.32
133 * GSettingsSchema:
135 * This is an opaque structure type. You may not access it directly.
137 * Since: 2.32
139 struct _GSettingsSchema
141 const gchar *gettext_domain;
142 const gchar *path;
143 GQuark *items;
144 gint n_items;
145 GvdbTable *table;
146 gchar *id;
148 gint ref_count;
152 * G_TYPE_SETTINGS_SCHEMA_SOURCE:
154 * A boxed #GType corresponding to #GSettingsSchemaSource.
156 * Since: 2.32
158 G_DEFINE_BOXED_TYPE (GSettingsSchemaSource, g_settings_schema_source, g_settings_schema_source_ref, g_settings_schema_source_unref)
161 * G_TYPE_SETTINGS_SCHEMA:
163 * A boxed #GType corresponding to #GSettingsSchema.
165 * Since: 2.32
167 G_DEFINE_BOXED_TYPE (GSettingsSchema, g_settings_schema, g_settings_schema_ref, g_settings_schema_unref)
170 * GSettingsSchemaSource:
172 * This is an opaque structure type. You may not access it directly.
174 * Since: 2.32
176 struct _GSettingsSchemaSource
178 GSettingsSchemaSource *parent;
179 GvdbTable *table;
181 gint ref_count;
184 static GSettingsSchemaSource *schema_sources;
186 static void
187 prepend_schema_table (GvdbTable *table)
189 GSettingsSchemaSource *source;
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;
197 schema_sources = source;
201 * g_settings_schema_source_ref:
202 * @source: a #GSettingsSchemaSource
204 * Increase the reference count of @source, returning a new reference.
206 * Returns: a new reference to @source
208 * Since: 2.32
210 GSettingsSchemaSource *
211 g_settings_schema_source_ref (GSettingsSchemaSource *source)
213 g_atomic_int_inc (&source->ref_count);
215 return source;
219 * g_settings_schema_source_unref:
220 * @source: a #GSettingsSchemaSource
222 * Decrease the reference count of @source, possibly freeing it.
224 * Since: 2.32
226 void
227 g_settings_schema_source_unref (GSettingsSchemaSource *source)
229 if (g_atomic_int_dec_and_test (&source->ref_count))
231 if (source == schema_sources)
232 g_error ("g_settings_schema_source_unref() called too many times on the default schema source");
234 if (source->parent)
235 g_settings_schema_source_unref (source->parent);
236 gvdb_table_unref (source->table);
238 g_slice_free (GSettingsSchemaSource, source);
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
249 * Attempts to create a new schema source corresponding to the contents
250 * of the given directory.
252 * This function is not required for normal uses of #GSettings but it
253 * may be useful to authors of plugin management systems.
255 * The directory should contain a file called
256 * <filename>gschemas.compiled</filename> as produced by
257 * <command>glib-compile-schemas</command>.
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.
266 * If @parent is non-%NULL then there are two effects.
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.
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.
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().
280 * Since: 2.32
282 GSettingsSchemaSource *
283 g_settings_schema_source_new_from_directory (const gchar *directory,
284 GSettingsSchemaSource *parent,
285 gboolean trusted,
286 GError **error)
288 GSettingsSchemaSource *source;
289 GvdbTable *table;
290 gchar *filename;
292 filename = g_build_filename (directory, "gschemas.compiled", NULL);
293 table = gvdb_table_new (filename, trusted, error);
294 g_free (filename);
296 if (table == NULL)
297 return NULL;
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;
304 return source;
307 static void
308 initialise_schema_sources (void)
310 static gsize initialised;
312 /* need a separate variable because 'schema_sources' may legitimately
313 * be null if we have zero valid schema sources
315 if G_UNLIKELY (g_once_init_enter (&initialised))
317 const gchar * const *dirs;
318 const gchar *path;
319 gint i;
321 /* iterate in reverse: count up, then count down */
322 dirs = g_get_system_data_dirs ();
323 for (i = 0; dirs[i]; i++);
325 while (i--)
327 gchar *filename;
328 GvdbTable *table;
330 filename = g_build_filename (dirs[i], "glib-2.0", "schemas", "gschemas.compiled", NULL);
331 table = gvdb_table_new (filename, TRUE, NULL);
333 if (table != NULL)
334 prepend_schema_table (table);
336 g_free (filename);
339 if ((path = g_getenv ("GSETTINGS_SCHEMA_DIR")) != NULL)
341 gchar *filename;
342 GvdbTable *table;
344 filename = g_build_filename (path, "gschemas.compiled", NULL);
345 table = gvdb_table_new (filename, TRUE, NULL);
347 if (table != NULL)
348 prepend_schema_table (table);
350 g_free (filename);
353 g_once_init_leave (&initialised, TRUE);
358 * g_settings_schema_source_get_default:
360 * Gets the default system schema source.
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.
366 * If no schemas are installed, %NULL will be returned.
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.
375 * Returns: (transfer none): the default schema source
377 * Since: 2.32
379 GSettingsSchemaSource *
380 g_settings_schema_source_get_default (void)
382 initialise_schema_sources ();
384 return schema_sources;
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
393 * Looks up a schema with the identifier @schema_id in @source.
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.
399 * If the schema isn't found directly in @source and @recursive is %TRUE
400 * then the parent sources will also be checked.
402 * If the schema isn't found, %NULL is returned.
404 * Returns: (transfer full): a new #GSettingsSchema
406 * Since: 2.32
408 GSettingsSchema *
409 g_settings_schema_source_lookup (GSettingsSchemaSource *source,
410 const gchar *schema_id,
411 gboolean recursive)
413 GSettingsSchema *schema;
414 GvdbTable *table;
416 g_return_val_if_fail (source != NULL, NULL);
417 g_return_val_if_fail (schema_id != NULL, NULL);
419 table = gvdb_table_get_table (source->table, schema_id);
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;
426 if (table == NULL)
427 return NULL;
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");
436 if (schema->gettext_domain)
437 bind_textdomain_codeset (schema->gettext_domain, "UTF-8");
439 return schema;
442 static gboolean
443 steal_item (gpointer key,
444 gpointer value,
445 gpointer user_data)
447 gchar ***ptr = user_data;
449 *(*ptr)++ = (gchar *) key;
451 return TRUE;
454 static const gchar * const *non_relocatable_schema_list;
455 static const gchar * const *relocatable_schema_list;
456 static gsize schema_lists_initialised;
458 static void
459 ensure_schema_lists (void)
461 if (g_once_init_enter (&schema_lists_initialised))
463 GSettingsSchemaSource *source;
464 GHashTable *single, *reloc;
465 const gchar **ptr;
466 gchar **list;
467 gint i;
469 initialise_schema_sources ();
471 /* We use hash tables to avoid duplicate listings for schemas that
472 * appear in more than one file.
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);
477 for (source = schema_sources; source; source = source->parent)
479 list = gvdb_table_list (source->table, "");
481 /* empty schema cache file? */
482 if (list == NULL)
483 continue;
485 for (i = 0; list[i]; i++)
487 if (!g_hash_table_lookup (single, list[i]) &&
488 !g_hash_table_lookup (reloc, list[i]))
490 GvdbTable *table;
492 table = gvdb_table_get_table (source->table, list[i]);
493 g_assert (table != NULL);
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);
500 gvdb_table_unref (table);
504 g_strfreev (list);
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;
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;
519 g_once_init_leave (&schema_lists_initialised, TRUE);
524 * g_settings_list_schemas:
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.
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.
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.
539 * Since: 2.26
541 const gchar * const *
542 g_settings_list_schemas (void)
544 ensure_schema_lists ();
546 return non_relocatable_schema_list;
550 * g_settings_list_relocatable_schemas:
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.
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.
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.
565 * Since: 2.28
567 const gchar * const *
568 g_settings_list_relocatable_schemas (void)
570 ensure_schema_lists ();
572 return relocatable_schema_list;
576 * g_settings_schema_ref:
577 * @schema: a #GSettingsSchema
579 * Increase the reference count of @schema, returning a new reference.
581 * Returns: a new reference to @schema
583 * Since: 2.32
585 GSettingsSchema *
586 g_settings_schema_ref (GSettingsSchema *schema)
588 g_atomic_int_inc (&schema->ref_count);
590 return schema;
594 * g_settings_schema_unref:
595 * @schema: a #GSettingsSchema
597 * Decrease the reference count of @schema, possibly freeing it.
599 * Since: 2.32
601 void
602 g_settings_schema_unref (GSettingsSchema *schema)
604 if (g_atomic_int_dec_and_test (&schema->ref_count))
606 gvdb_table_unref (schema->table);
607 g_free (schema->items);
608 g_free (schema->id);
610 g_slice_free (GSettingsSchema, schema);
614 const gchar *
615 g_settings_schema_get_string (GSettingsSchema *schema,
616 const gchar *key)
618 const gchar *result = NULL;
619 GVariant *value;
621 if ((value = gvdb_table_get_raw_value (schema->table, key)))
623 result = g_variant_get_string (value, NULL);
624 g_variant_unref (value);
627 return result;
630 GVariantIter *
631 g_settings_schema_get_value (GSettingsSchema *schema,
632 const gchar *key)
634 GVariantIter *iter;
635 GVariant *value;
637 value = gvdb_table_get_raw_value (schema->table, key);
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);
642 iter = g_variant_iter_new (value);
643 g_variant_unref (value);
645 return iter;
649 * g_settings_schema_get_path:
650 * @schema: a #GSettingsSchema
652 * Gets the path associated with @schema, or %NULL.
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.
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.
662 * Returns: (transfer none): the path of the schema, or %NULL
664 * Since: 2.32
666 const gchar *
667 g_settings_schema_get_path (GSettingsSchema *schema)
669 return schema->path;
672 const gchar *
673 g_settings_schema_get_gettext_domain (GSettingsSchema *schema)
675 return schema->gettext_domain;
678 gboolean
679 g_settings_schema_has_key (GSettingsSchema *schema,
680 const gchar *key)
682 return gvdb_table_has_value (schema->table, key);
685 const GQuark *
686 g_settings_schema_list (GSettingsSchema *schema,
687 gint *n_items)
689 gint i, j;
691 if (schema->items == NULL)
693 gchar **list;
694 gint len;
696 list = gvdb_table_list (schema->table, "");
697 len = list ? g_strv_length (list) : 0;
699 schema->items = g_new (GQuark, len);
700 j = 0;
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;
707 g_strfreev (list);
710 *n_items = schema->n_items;
711 return schema->items;
715 * g_settings_schema_get_id:
716 * @schema: a #GSettingsSchema
718 * Get the ID of @schema.
720 * Returns: (transfer none): the ID
722 const gchar *
723 g_settings_schema_get_id (GSettingsSchema *schema)
725 return schema->id;
728 static inline void
729 endian_fixup (GVariant **value)
731 #if G_BYTE_ORDER == G_BIG_ENDIAN
732 GVariant *tmp;
734 tmp = g_variant_byteswap (*value);
735 g_variant_unref (*value);
736 *value = tmp;
737 #endif
740 void
741 g_settings_schema_key_init (GSettingsSchemaKey *key,
742 GSettingsSchema *schema,
743 const gchar *name)
745 GVariantIter *iter;
746 GVariant *data;
747 guchar code;
749 memset (key, 0, sizeof *key);
751 iter = g_settings_schema_get_value (schema, name);
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);
759 while (g_variant_iter_next (iter, "(y*)", &code, &data))
761 switch (code)
763 case 'l':
764 /* translation requested */
765 g_variant_get (data, "(y&s)", &key->lc_char, &key->unparsed);
766 break;
768 case 'e':
769 /* enumerated types... */
770 key->is_enum = TRUE;
771 goto choice;
773 case 'f':
774 /* flags... */
775 key->is_flags = TRUE;
776 goto choice;
778 choice: case 'c':
779 /* ..., choices, aliases */
780 key->strinfo = g_variant_get_fixed_array (data, &key->strinfo_length, sizeof (guint32));
781 break;
783 case 'r':
784 g_variant_get (data, "(**)", &key->minimum, &key->maximum);
785 endian_fixup (&key->minimum);
786 endian_fixup (&key->maximum);
787 break;
789 default:
790 g_warning ("unknown schema extension '%c'", code);
791 break;
794 g_variant_unref (data);
797 g_variant_iter_free (iter);
800 void
801 g_settings_schema_key_clear (GSettingsSchemaKey *key)
803 if (key->minimum)
804 g_variant_unref (key->minimum);
806 if (key->maximum)
807 g_variant_unref (key->maximum);
809 g_variant_unref (key->default_value);
811 g_settings_schema_unref (key->schema);
814 gboolean
815 g_settings_schema_key_type_check (GSettingsSchemaKey *key,
816 GVariant *value)
818 g_return_val_if_fail (value != NULL, FALSE);
820 return g_variant_is_of_type (value, key->type);
823 gboolean
824 g_settings_schema_key_range_check (GSettingsSchemaKey *key,
825 GVariant *value)
827 if (key->minimum == NULL && key->strinfo == NULL)
828 return TRUE;
830 if (g_variant_is_container (value))
832 gboolean ok = TRUE;
833 GVariantIter iter;
834 GVariant *child;
836 g_variant_iter_init (&iter, value);
837 while (ok && (child = g_variant_iter_next_value (&iter)))
839 ok = g_settings_schema_key_range_check (key, child);
840 g_variant_unref (child);
843 return ok;
846 if (key->minimum)
848 return g_variant_compare (key->minimum, value) <= 0 &&
849 g_variant_compare (value, key->maximum) <= 0;
852 return strinfo_is_string_valid (key->strinfo, key->strinfo_length,
853 g_variant_get_string (value, NULL));
856 GVariant *
857 g_settings_schema_key_range_fixup (GSettingsSchemaKey *key,
858 GVariant *value)
860 const gchar *target;
862 if (g_settings_schema_key_range_check (key, value))
863 return g_variant_ref (value);
865 if (key->strinfo == NULL)
866 return NULL;
868 if (g_variant_is_container (value))
870 GVariantBuilder builder;
871 GVariantIter iter;
872 GVariant *child;
874 g_variant_iter_init (&iter, value);
875 g_variant_builder_init (&builder, g_variant_get_type (value));
877 while ((child = g_variant_iter_next_value (&iter)))
879 GVariant *fixed;
881 fixed = g_settings_schema_key_range_fixup (key, child);
882 g_variant_unref (child);
884 if (fixed == NULL)
886 g_variant_builder_clear (&builder);
887 return NULL;
890 g_variant_builder_add_value (&builder, fixed);
891 g_variant_unref (fixed);
894 return g_variant_ref_sink (g_variant_builder_end (&builder));
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;
903 GVariant *
904 g_settings_schema_key_get_translated_default (GSettingsSchemaKey *key)
906 const gchar *translated;
907 GError *error = NULL;
908 const gchar *domain;
909 GVariant *value;
911 domain = g_settings_schema_get_gettext_domain (key->schema);
913 if (key->lc_char == '\0')
914 /* translation not requested for this key */
915 return NULL;
917 if (key->lc_char == 't')
918 translated = g_dcgettext (domain, key->unparsed, LC_TIME);
919 else
920 translated = g_dgettext (domain, key->unparsed);
922 if (translated == key->unparsed)
923 /* the default value was not translated */
924 return NULL;
926 /* try to parse the translation of the unparsed default */
927 value = g_variant_parse (key->type, translated, NULL, NULL, &error);
929 if (value == NULL)
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);
938 else if (!g_settings_schema_key_range_check (key, value))
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;
947 return value;
950 gint
951 g_settings_schema_key_to_enum (GSettingsSchemaKey *key,
952 GVariant *value)
954 gboolean it_worked;
955 guint result;
957 it_worked = strinfo_enum_from_string (key->strinfo, key->strinfo_length,
958 g_variant_get_string (value, NULL),
959 &result);
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...
966 g_assert (it_worked);
968 return result;
971 GVariant *
972 g_settings_schema_key_from_enum (GSettingsSchemaKey *key,
973 gint value)
975 const gchar *string;
977 string = strinfo_string_from_enum (key->strinfo, key->strinfo_length, value);
979 if (string == NULL)
980 return NULL;
982 return g_variant_new_string (string);
985 guint
986 g_settings_schema_key_to_flags (GSettingsSchemaKey *key,
987 GVariant *value)
989 GVariantIter iter;
990 const gchar *flag;
991 guint result;
993 result = 0;
994 g_variant_iter_init (&iter, value);
995 while (g_variant_iter_next (&iter, "&s", &flag))
997 gboolean it_worked;
998 guint flag_value;
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);
1004 result |= flag_value;
1007 return result;
1010 GVariant *
1011 g_settings_schema_key_from_flags (GSettingsSchemaKey *key,
1012 guint value)
1014 GVariantBuilder builder;
1015 gint i;
1017 g_variant_builder_init (&builder, G_VARIANT_TYPE ("as"));
1019 for (i = 0; i < 32; i++)
1020 if (value & (1u << i))
1022 const gchar *string;
1024 string = strinfo_string_from_enum (key->strinfo, key->strinfo_length, 1u << i);
1026 if (string == NULL)
1028 g_variant_builder_clear (&builder);
1029 return NULL;
1032 g_variant_builder_add (&builder, "s", string);
1035 return g_variant_builder_end (&builder);