ab7f4383512021d22a1514c12d709fa6aea5fc7e
[platform/upstream/glib.git] / gio / gsettings.c
1 /*
2  * Copyright © 2009, 2010 Codethink Limited
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16  *
17  * Author: Ryan Lortie <desrt@desrt.ca>
18  */
19
20 /* Prelude {{{1 */
21 #include "config.h"
22
23 #include <glib.h>
24 #include <glibintl.h>
25
26 #include "gsettings.h"
27
28 #include "gdelayedsettingsbackend.h"
29 #include "gsettingsbackendinternal.h"
30 #include "gsettings-mapping.h"
31 #include "gsettingsschema-internal.h"
32 #include "gaction.h"
33
34 #include "strinfo.c"
35
36 /**
37  * SECTION:gsettings
38  * @short_description: High-level API for application settings
39  * @include: gio/gio.h
40  *
41  * The #GSettings class provides a convenient API for storing and retrieving
42  * application settings.
43  *
44  * Reads and writes can be considered to be non-blocking.  Reading
45  * settings with #GSettings is typically extremely fast: on
46  * approximately the same order of magnitude (but slower than) a
47  * #GHashTable lookup.  Writing settings is also extremely fast in terms
48  * of time to return to your application, but can be extremely expensive
49  * for other threads and other processes.  Many settings backends
50  * (including dconf) have lazy initialisation which means in the common
51  * case of the user using their computer without modifying any settings
52  * a lot of work can be avoided.  For dconf, the D-Bus service doesn't
53  * even need to be started in this case.  For this reason, you should
54  * only ever modify #GSettings keys in response to explicit user action.
55  * Particular care should be paid to ensure that modifications are not
56  * made during startup -- for example, when setting the initial value
57  * of preferences widgets.  The built-in g_settings_bind() functionality
58  * is careful not to write settings in response to notify signals as a
59  * result of modifications that it makes to widgets.
60  *
61  * When creating a GSettings instance, you have to specify a schema
62  * that describes the keys in your settings and their types and default
63  * values, as well as some other information.
64  *
65  * Normally, a schema has a fixed path that determines where the settings
66  * are stored in the conceptual global tree of settings. However, schemas
67  * can also be '[relocatable][gsettings-relocatable]', i.e. not equipped with
68  * a fixed path. This is
69  * useful e.g. when the schema describes an 'account', and you want to be
70  * able to store a arbitrary number of accounts.
71  *
72  * Paths must start with and end with a forward slash character ('/')
73  * and must not contain two sequential slash characters.  Paths should
74  * be chosen based on a domain name associated with the program or
75  * library to which the settings belong.  Examples of paths are
76  * "/org/gtk/settings/file-chooser/" and "/ca/desrt/dconf-editor/".
77  * Paths should not start with "/apps/", "/desktop/" or "/system/" as
78  * they often did in GConf.
79  *
80  * Unlike other configuration systems (like GConf), GSettings does not
81  * restrict keys to basic types like strings and numbers. GSettings stores
82  * values as #GVariant, and allows any #GVariantType for keys. Key names
83  * are restricted to lowercase characters, numbers and '-'. Furthermore,
84  * the names must begin with a lowercase character, must not end
85  * with a '-', and must not contain consecutive dashes.
86  *
87  * Similar to GConf, the default values in GSettings schemas can be
88  * localized, but the localized values are stored in gettext catalogs
89  * and looked up with the domain that is specified in the
90  * `gettext-domain` attribute of the <schemalist> or <schema>
91  * elements and the category that is specified in the `l10n` attribute of
92  * the <default> element. The string which is translated includes all text in
93  * the <default> element, including any surrounding quotation marks.
94  *
95  * The `l10n` attribute must be set to `messages` or `time`, and sets the
96  * [locale category for
97  * translation](https://www.gnu.org/software/gettext/manual/html_node/Aspects.html#index-locale-categories-1).
98  * The `messages` category should be used by default; use `time` for
99  * translatable date or time formats. A translation comment can be added as an
100  * XML comment immediately above the <default> element — it is recommended to
101  * add these comments to aid translators understand the meaning and
102  * implications of the default value. An optional translation `context`
103  * attribute can be set on the <default> element to disambiguate multiple
104  * defaults which use the same string.
105  *
106  * For example:
107  * |[
108  *  <!-- Translators: A list of words which are not allowed to be typed, in
109  *       GVariant serialization syntax.
110  *       See: https://developer.gnome.org/glib/stable/gvariant-text.html -->
111  *  <default l10n='messages' context='Banned words'>['bad', 'words']</default>
112  * ]|
113  *
114  * Translations of default values must remain syntactically valid serialized
115  * #GVariants (e.g. retaining any surrounding quotation marks) or runtime
116  * errors will occur.
117  *
118  * GSettings uses schemas in a compact binary form that is created
119  * by the [glib-compile-schemas][glib-compile-schemas]
120  * utility. The input is a schema description in an XML format.
121  *
122  * A DTD for the gschema XML format can be found here:
123  * [gschema.dtd](https://git.gnome.org/browse/glib/tree/gio/gschema.dtd)
124  *
125  * The [glib-compile-schemas][glib-compile-schemas] tool expects schema
126  * files to have the extension `.gschema.xml`.
127  *
128  * At runtime, schemas are identified by their id (as specified in the
129  * id attribute of the <schema> element). The convention for schema
130  * ids is to use a dotted name, similar in style to a D-Bus bus name,
131  * e.g. "org.gnome.SessionManager". In particular, if the settings are
132  * for a specific service that owns a D-Bus bus name, the D-Bus bus name
133  * and schema id should match. For schemas which deal with settings not
134  * associated with one named application, the id should not use
135  * StudlyCaps, e.g. "org.gnome.font-rendering".
136  *
137  * In addition to #GVariant types, keys can have types that have
138  * enumerated types. These can be described by a <choice>,
139  * <enum> or <flags> element, as seen in the
140  * [example][schema-enumerated]. The underlying type of such a key
141  * is string, but you can use g_settings_get_enum(), g_settings_set_enum(),
142  * g_settings_get_flags(), g_settings_set_flags() access the numeric values
143  * corresponding to the string value of enum and flags keys.
144  *
145  * An example for default value:
146  * |[
147  * <schemalist>
148  *   <schema id="org.gtk.Test" path="/org/gtk/Test/" gettext-domain="test">
149  *
150  *     <key name="greeting" type="s">
151  *       <default l10n="messages">"Hello, earthlings"</default>
152  *       <summary>A greeting</summary>
153  *       <description>
154  *         Greeting of the invading martians
155  *       </description>
156  *     </key>
157  *
158  *     <key name="box" type="(ii)">
159  *       <default>(20,30)</default>
160  *     </key>
161  *
162  *   </schema>
163  * </schemalist>
164  * ]|
165  *
166  * An example for ranges, choices and enumerated types:
167  * |[
168  * <schemalist>
169  *
170  *   <enum id="org.gtk.Test.myenum">
171  *     <value nick="first" value="1"/>
172  *     <value nick="second" value="2"/>
173  *   </enum>
174  *
175  *   <flags id="org.gtk.Test.myflags">
176  *     <value nick="flag1" value="1"/>
177  *     <value nick="flag2" value="2"/>
178  *     <value nick="flag3" value="4"/>
179  *   </flags>
180  *
181  *   <schema id="org.gtk.Test">
182  *
183  *     <key name="key-with-range" type="i">
184  *       <range min="1" max="100"/>
185  *       <default>10</default>
186  *     </key>
187  *
188  *     <key name="key-with-choices" type="s">
189  *       <choices>
190  *         <choice value='Elisabeth'/>
191  *         <choice value='Annabeth'/>
192  *         <choice value='Joe'/>
193  *       </choices>
194  *       <aliases>
195  *         <alias value='Anna' target='Annabeth'/>
196  *         <alias value='Beth' target='Elisabeth'/>
197  *       </aliases>
198  *       <default>'Joe'</default>
199  *     </key>
200  *
201  *     <key name='enumerated-key' enum='org.gtk.Test.myenum'>
202  *       <default>'first'</default>
203  *     </key>
204  *
205  *     <key name='flags-key' flags='org.gtk.Test.myflags'>
206  *       <default>["flag1","flag2"]</default>
207  *     </key>
208  *   </schema>
209  * </schemalist>
210  * ]|
211  *
212  * ## Vendor overrides
213  *
214  * Default values are defined in the schemas that get installed by
215  * an application. Sometimes, it is necessary for a vendor or distributor
216  * to adjust these defaults. Since patching the XML source for the schema
217  * is inconvenient and error-prone,
218  * [glib-compile-schemas][glib-compile-schemas] reads so-called vendor
219  * override' files. These are keyfiles in the same directory as the XML
220  * schema sources which can override default values. The schema id serves
221  * as the group name in the key file, and the values are expected in
222  * serialized GVariant form, as in the following example:
223  * |[
224  *     [org.gtk.Example]
225  *     key1='string'
226  *     key2=1.5
227  * ]|
228  *
229  * glib-compile-schemas expects schema files to have the extension
230  * `.gschema.override`.
231  *
232  * ## Binding
233  *
234  * A very convenient feature of GSettings lets you bind #GObject properties
235  * directly to settings, using g_settings_bind(). Once a GObject property
236  * has been bound to a setting, changes on either side are automatically
237  * propagated to the other side. GSettings handles details like mapping
238  * between GObject and GVariant types, and preventing infinite cycles.
239  *
240  * This makes it very easy to hook up a preferences dialog to the
241  * underlying settings. To make this even more convenient, GSettings
242  * looks for a boolean property with the name "sensitivity" and
243  * automatically binds it to the writability of the bound setting.
244  * If this 'magic' gets in the way, it can be suppressed with the
245  * #G_SETTINGS_BIND_NO_SENSITIVITY flag.
246  *
247  * ## Relocatable schemas # {#gsettings-relocatable}
248  *
249  * A relocatable schema is one with no `path` attribute specified on its
250  * <schema> element. By using g_settings_new_with_path(), a #GSettings object
251  * can be instantiated for a relocatable schema, assigning a path to the
252  * instance. Paths passed to g_settings_new_with_path() will typically be
253  * constructed dynamically from a constant prefix plus some form of instance
254  * identifier; but they must still be valid GSettings paths. Paths could also
255  * be constant and used with a globally installed schema originating from a
256  * dependency library.
257  *
258  * For example, a relocatable schema could be used to store geometry information
259  * for different windows in an application. If the schema ID was
260  * `org.foo.MyApp.Window`, it could be instantiated for paths
261  * `/org/foo/MyApp/main/`, `/org/foo/MyApp/document-1/`,
262  * `/org/foo/MyApp/document-2/`, etc. If any of the paths are well-known
263  * they can be specified as <child> elements in the parent schema, e.g.:
264  * |[
265  * <schema id="org.foo.MyApp" path="/org/foo/MyApp/">
266  *   <child name="main" schema="org.foo.MyApp.Window"/>
267  * </schema>
268  * ]|
269  *
270  * ## Build system integration # {#gsettings-build-system}
271  *
272  * GSettings comes with autotools integration to simplify compiling and
273  * installing schemas. To add GSettings support to an application, add the
274  * following to your `configure.ac`:
275  * |[
276  * GLIB_GSETTINGS
277  * ]|
278  *
279  * In the appropriate `Makefile.am`, use the following snippet to compile and
280  * install the named schema:
281  * |[
282  * gsettings_SCHEMAS = org.foo.MyApp.gschema.xml
283  * EXTRA_DIST = $(gsettings_SCHEMAS)
284  *
285  * @GSETTINGS_RULES@
286  * ]|
287  *
288  * No changes are needed to the build system to mark a schema XML file for
289  * translation. Assuming it sets the `gettext-domain` attribute, a schema may
290  * be marked for translation by adding it to `POTFILES.in`, assuming gettext
291  * 0.19 is in use (the preferred method for translation):
292  * |[
293  * data/org.foo.MyApp.gschema.xml
294  * ]|
295  *
296  * Alternatively, if intltool 0.50.1 is in use:
297  * |[
298  * [type: gettext/gsettings]data/org.foo.MyApp.gschema.xml
299  * ]|
300  *
301  * GSettings will use gettext to look up translations for the <summary> and
302  * <description> elements, and also any <default> elements which have a `l10n`
303  * attribute set. Translations must not be included in the `.gschema.xml` file
304  * by the build system, for example by using intltool XML rules with a
305  * `.gschema.xml.in` template.
306  *
307  * If an enumerated type defined in a C header file is to be used in a GSettings
308  * schema, it can either be defined manually using an <enum> element in the
309  * schema XML, or it can be extracted automatically from the C header. This
310  * approach is preferred, as it ensures the two representations are always
311  * synchronised. To do so, add the following to the relevant `Makefile.am`:
312  * |[
313  * gsettings_ENUM_NAMESPACE = org.foo.MyApp
314  * gsettings_ENUM_FILES = my-app-enums.h my-app-misc.h
315  * ]|
316  *
317  * `gsettings_ENUM_NAMESPACE` specifies the schema namespace for the enum files,
318  * which are specified in `gsettings_ENUM_FILES`. This will generate a
319  * `org.foo.MyApp.enums.xml` file containing the extracted enums, which will be
320  * automatically included in the schema compilation, install and uninstall
321  * rules. It should not be committed to version control or included in
322  * `EXTRA_DIST`.
323  */
324
325 /**
326  * GSettings:
327  *
328  * #GSettings is an opaque data structure and can only be accessed
329  * using the following functions.
330  **/
331
332 struct _GSettingsPrivate
333 {
334   /* where the signals go... */
335   GMainContext *main_context;
336
337   GSettingsBackend *backend;
338   GSettingsSchema *schema;
339   gchar *path;
340
341   GDelayedSettingsBackend *delayed;
342 };
343
344 enum
345 {
346   PROP_0,
347   PROP_SCHEMA,
348   PROP_SCHEMA_ID,
349   PROP_BACKEND,
350   PROP_PATH,
351   PROP_HAS_UNAPPLIED,
352   PROP_DELAY_APPLY
353 };
354
355 enum
356 {
357   SIGNAL_WRITABLE_CHANGE_EVENT,
358   SIGNAL_WRITABLE_CHANGED,
359   SIGNAL_CHANGE_EVENT,
360   SIGNAL_CHANGED,
361   N_SIGNALS
362 };
363
364 static guint g_settings_signals[N_SIGNALS];
365
366 G_DEFINE_TYPE_WITH_PRIVATE (GSettings, g_settings, G_TYPE_OBJECT)
367
368 /* Signals {{{1 */
369 static gboolean
370 g_settings_real_change_event (GSettings    *settings,
371                               const GQuark *keys,
372                               gint          n_keys)
373 {
374   gint i;
375
376   if (keys == NULL)
377     keys = g_settings_schema_list (settings->priv->schema, &n_keys);
378
379   for (i = 0; i < n_keys; i++)
380     {
381       const gchar *key = g_quark_to_string (keys[i]);
382
383       if (g_str_has_suffix (key, "/"))
384         continue;
385
386       g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGED], keys[i], key);
387     }
388
389   return FALSE;
390 }
391
392 static gboolean
393 g_settings_real_writable_change_event (GSettings *settings,
394                                        GQuark     key)
395 {
396   const GQuark *keys = &key;
397   gint n_keys = 1;
398   gint i;
399
400   if (key == 0)
401     keys = g_settings_schema_list (settings->priv->schema, &n_keys);
402
403   for (i = 0; i < n_keys; i++)
404     {
405       const gchar *key = g_quark_to_string (keys[i]);
406
407       if (g_str_has_suffix (key, "/"))
408         continue;
409
410       g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGED], keys[i], key);
411     }
412
413   return FALSE;
414 }
415
416 static void
417 settings_backend_changed (GObject             *target,
418                           GSettingsBackend    *backend,
419                           const gchar         *key,
420                           gpointer             origin_tag)
421 {
422   GSettings *settings = G_SETTINGS (target);
423   gboolean ignore_this;
424   gint i;
425
426   /* We used to assert here:
427    *
428    *   settings->priv->backend == backend
429    *
430    * but it could be the case that a notification is queued for delivery
431    * while someone calls g_settings_delay() (which changes the backend).
432    *
433    * Since the delay backend would just pass that straight through
434    * anyway, it doesn't make sense to try to detect this case.
435    * Therefore, we just accept it.
436    */
437
438   for (i = 0; key[i] == settings->priv->path[i]; i++);
439
440   if (settings->priv->path[i] == '\0' &&
441       g_settings_schema_has_key (settings->priv->schema, key + i))
442     {
443       GQuark quark;
444
445       quark = g_quark_from_string (key + i);
446       g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
447                      0, &quark, 1, &ignore_this);
448     }
449 }
450
451 static void
452 settings_backend_path_changed (GObject          *target,
453                                GSettingsBackend *backend,
454                                const gchar      *path,
455                                gpointer          origin_tag)
456 {
457   GSettings *settings = G_SETTINGS (target);
458   gboolean ignore_this;
459
460   if (g_str_has_prefix (settings->priv->path, path))
461     g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
462                    0, NULL, 0, &ignore_this);
463 }
464
465 static void
466 settings_backend_keys_changed (GObject             *target,
467                                GSettingsBackend    *backend,
468                                const gchar         *path,
469                                gpointer             origin_tag,
470                                const gchar * const *items)
471 {
472   GSettings *settings = G_SETTINGS (target);
473   gboolean ignore_this;
474   gint i;
475
476   for (i = 0; settings->priv->path[i] &&
477               settings->priv->path[i] == path[i]; i++);
478
479   if (path[i] == '\0')
480     {
481       GQuark quarks[256];
482       gint j, l = 0;
483
484       for (j = 0; items[j]; j++)
485          {
486            const gchar *item = items[j];
487            gint k;
488
489            for (k = 0; item[k] == settings->priv->path[i + k]; k++);
490
491            if (settings->priv->path[i + k] == '\0' &&
492                g_settings_schema_has_key (settings->priv->schema, item + k))
493              quarks[l++] = g_quark_from_string (item + k);
494
495            /* "256 quarks ought to be enough for anybody!"
496             * If this bites you, I'm sorry.  Please file a bug.
497             */
498            g_assert (l < 256);
499          }
500
501       if (l > 0)
502         g_signal_emit (settings, g_settings_signals[SIGNAL_CHANGE_EVENT],
503                        0, quarks, l, &ignore_this);
504     }
505 }
506
507 static void
508 settings_backend_writable_changed (GObject          *target,
509                                    GSettingsBackend *backend,
510                                    const gchar      *key)
511 {
512   GSettings *settings = G_SETTINGS (target);
513   gboolean ignore_this;
514   gint i;
515
516   for (i = 0; key[i] == settings->priv->path[i]; i++);
517
518   if (settings->priv->path[i] == '\0' &&
519       g_settings_schema_has_key (settings->priv->schema, key + i))
520     g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT],
521                    0, g_quark_from_string (key + i), &ignore_this);
522 }
523
524 static void
525 settings_backend_path_writable_changed (GObject          *target,
526                                         GSettingsBackend *backend,
527                                         const gchar      *path)
528 {
529   GSettings *settings = G_SETTINGS (target);
530   gboolean ignore_this;
531
532   if (g_str_has_prefix (settings->priv->path, path))
533     g_signal_emit (settings, g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT],
534                    0, (GQuark) 0, &ignore_this);
535 }
536
537 /* Properties, Construction, Destruction {{{1 */
538 static void
539 g_settings_set_property (GObject      *object,
540                          guint         prop_id,
541                          const GValue *value,
542                          GParamSpec   *pspec)
543 {
544   GSettings *settings = G_SETTINGS (object);
545
546   switch (prop_id)
547     {
548     case PROP_SCHEMA:
549       {
550         GSettingsSchema *schema;
551
552         schema = g_value_dup_boxed (value);
553
554         /* we receive a set_property() call for "settings-schema" even
555          * if it was not specified (ie: with NULL value).  ->schema
556          * could already be set at this point (ie: via "schema-id").
557          * check for NULL to avoid clobbering the existing value.
558          */
559         if (schema != NULL)
560           {
561             g_assert (settings->priv->schema == NULL);
562             settings->priv->schema = schema;
563           }
564       }
565       break;
566
567     case PROP_SCHEMA_ID:
568       {
569         const gchar *schema_id;
570
571         schema_id = g_value_get_string (value);
572
573         /* we receive a set_property() call for both "schema" and
574          * "schema-id", even if they are not set.  Hopefully only one of
575          * them is non-NULL.
576          */
577         if (schema_id != NULL)
578           {
579             GSettingsSchemaSource *default_source;
580
581             g_assert (settings->priv->schema == NULL);
582             default_source = g_settings_schema_source_get_default ();
583
584             if (default_source == NULL)
585               g_error ("No GSettings schemas are installed on the system");
586
587             settings->priv->schema = g_settings_schema_source_lookup (default_source, schema_id, TRUE);
588
589             if (settings->priv->schema == NULL)
590               g_error ("Settings schema '%s' is not installed", schema_id);
591           }
592       }
593       break;
594
595     case PROP_PATH:
596       settings->priv->path = g_value_dup_string (value);
597       break;
598
599     case PROP_BACKEND:
600       settings->priv->backend = g_value_dup_object (value);
601       break;
602
603     default:
604       g_assert_not_reached ();
605     }
606 }
607
608 static void
609 g_settings_get_property (GObject    *object,
610                          guint       prop_id,
611                          GValue     *value,
612                          GParamSpec *pspec)
613 {
614   GSettings *settings = G_SETTINGS (object);
615
616   switch (prop_id)
617     {
618     case PROP_SCHEMA:
619       g_value_set_boxed (value, settings->priv->schema);
620       break;
621
622      case PROP_SCHEMA_ID:
623       g_value_set_string (value, g_settings_schema_get_id (settings->priv->schema));
624       break;
625
626      case PROP_BACKEND:
627       g_value_set_object (value, settings->priv->backend);
628       break;
629
630      case PROP_PATH:
631       g_value_set_string (value, settings->priv->path);
632       break;
633
634      case PROP_HAS_UNAPPLIED:
635       g_value_set_boolean (value, g_settings_get_has_unapplied (settings));
636       break;
637
638      case PROP_DELAY_APPLY:
639       g_value_set_boolean (value, settings->priv->delayed != NULL);
640       break;
641
642      default:
643       g_assert_not_reached ();
644     }
645 }
646
647 static const GSettingsListenerVTable listener_vtable = {
648   settings_backend_changed,
649   settings_backend_path_changed,
650   settings_backend_keys_changed,
651   settings_backend_writable_changed,
652   settings_backend_path_writable_changed
653 };
654
655 static void
656 g_settings_constructed (GObject *object)
657 {
658   GSettings *settings = G_SETTINGS (object);
659   const gchar *schema_path;
660
661   schema_path = g_settings_schema_get_path (settings->priv->schema);
662
663   if (settings->priv->path && schema_path && strcmp (settings->priv->path, schema_path) != 0)
664     g_error ("settings object created with schema '%s' and path '%s', but path '%s' is specified by schema",
665              g_settings_schema_get_id (settings->priv->schema), settings->priv->path, schema_path);
666
667   if (settings->priv->path == NULL)
668     {
669       if (schema_path == NULL)
670         g_error ("attempting to create schema '%s' without a path",
671                  g_settings_schema_get_id (settings->priv->schema));
672
673       settings->priv->path = g_strdup (schema_path);
674     }
675
676   if (settings->priv->backend == NULL)
677     settings->priv->backend = g_settings_backend_get_default ();
678
679   g_settings_backend_watch (settings->priv->backend,
680                             &listener_vtable, G_OBJECT (settings),
681                             settings->priv->main_context);
682   g_settings_backend_subscribe (settings->priv->backend,
683                                 settings->priv->path);
684 }
685
686 static void
687 g_settings_finalize (GObject *object)
688 {
689   GSettings *settings = G_SETTINGS (object);
690
691   g_settings_backend_unsubscribe (settings->priv->backend,
692                                   settings->priv->path);
693   g_main_context_unref (settings->priv->main_context);
694   g_object_unref (settings->priv->backend);
695   g_settings_schema_unref (settings->priv->schema);
696   g_free (settings->priv->path);
697
698   G_OBJECT_CLASS (g_settings_parent_class)->finalize (object);
699 }
700
701 static void
702 g_settings_init (GSettings *settings)
703 {
704   settings->priv = g_settings_get_instance_private (settings);
705   settings->priv->main_context = g_main_context_ref_thread_default ();
706 }
707
708 static void
709 g_settings_class_init (GSettingsClass *class)
710 {
711   GObjectClass *object_class = G_OBJECT_CLASS (class);
712
713   class->writable_change_event = g_settings_real_writable_change_event;
714   class->change_event = g_settings_real_change_event;
715
716   object_class->set_property = g_settings_set_property;
717   object_class->get_property = g_settings_get_property;
718   object_class->constructed = g_settings_constructed;
719   object_class->finalize = g_settings_finalize;
720
721   /**
722    * GSettings::changed:
723    * @settings: the object on which the signal was emitted
724    * @key: the name of the key that changed
725    *
726    * The "changed" signal is emitted when a key has potentially changed.
727    * You should call one of the g_settings_get() calls to check the new
728    * value.
729    *
730    * This signal supports detailed connections.  You can connect to the
731    * detailed signal "changed::x" in order to only receive callbacks
732    * when key "x" changes.
733    *
734    * Note that @settings only emits this signal if you have read @key at
735    * least once while a signal handler was already connected for @key.
736    */
737   g_settings_signals[SIGNAL_CHANGED] =
738     g_signal_new (I_("changed"), G_TYPE_SETTINGS,
739                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
740                   G_STRUCT_OFFSET (GSettingsClass, changed),
741                   NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE,
742                   1, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
743
744   /**
745    * GSettings::change-event:
746    * @settings: the object on which the signal was emitted
747    * @keys: (array length=n_keys) (element-type GQuark) (nullable):
748    *        an array of #GQuarks for the changed keys, or %NULL
749    * @n_keys: the length of the @keys array, or 0
750    *
751    * The "change-event" signal is emitted once per change event that
752    * affects this settings object.  You should connect to this signal
753    * only if you are interested in viewing groups of changes before they
754    * are split out into multiple emissions of the "changed" signal.
755    * For most use cases it is more appropriate to use the "changed" signal.
756    *
757    * In the event that the change event applies to one or more specified
758    * keys, @keys will be an array of #GQuark of length @n_keys.  In the
759    * event that the change event applies to the #GSettings object as a
760    * whole (ie: potentially every key has been changed) then @keys will
761    * be %NULL and @n_keys will be 0.
762    *
763    * The default handler for this signal invokes the "changed" signal
764    * for each affected key.  If any other connected handler returns
765    * %TRUE then this default functionality will be suppressed.
766    *
767    * Returns: %TRUE to stop other handlers from being invoked for the
768    *          event. FALSE to propagate the event further.
769    */
770   g_settings_signals[SIGNAL_CHANGE_EVENT] =
771     g_signal_new (I_("change-event"), G_TYPE_SETTINGS,
772                   G_SIGNAL_RUN_LAST,
773                   G_STRUCT_OFFSET (GSettingsClass, change_event),
774                   g_signal_accumulator_true_handled, NULL,
775                   NULL,
776                   G_TYPE_BOOLEAN, 2, G_TYPE_POINTER, G_TYPE_INT);
777
778   /**
779    * GSettings::writable-changed:
780    * @settings: the object on which the signal was emitted
781    * @key: the key
782    *
783    * The "writable-changed" signal is emitted when the writability of a
784    * key has potentially changed.  You should call
785    * g_settings_is_writable() in order to determine the new status.
786    *
787    * This signal supports detailed connections.  You can connect to the
788    * detailed signal "writable-changed::x" in order to only receive
789    * callbacks when the writability of "x" changes.
790    */
791   g_settings_signals[SIGNAL_WRITABLE_CHANGED] =
792     g_signal_new (I_("writable-changed"), G_TYPE_SETTINGS,
793                   G_SIGNAL_RUN_LAST | G_SIGNAL_DETAILED,
794                   G_STRUCT_OFFSET (GSettingsClass, writable_changed),
795                   NULL, NULL, g_cclosure_marshal_VOID__STRING, G_TYPE_NONE,
796                   1, G_TYPE_STRING | G_SIGNAL_TYPE_STATIC_SCOPE);
797
798   /**
799    * GSettings::writable-change-event:
800    * @settings: the object on which the signal was emitted
801    * @key: the quark of the key, or 0
802    *
803    * The "writable-change-event" signal is emitted once per writability
804    * change event that affects this settings object.  You should connect
805    * to this signal if you are interested in viewing groups of changes
806    * before they are split out into multiple emissions of the
807    * "writable-changed" signal.  For most use cases it is more
808    * appropriate to use the "writable-changed" signal.
809    *
810    * In the event that the writability change applies only to a single
811    * key, @key will be set to the #GQuark for that key.  In the event
812    * that the writability change affects the entire settings object,
813    * @key will be 0.
814    *
815    * The default handler for this signal invokes the "writable-changed"
816    * and "changed" signals for each affected key.  This is done because
817    * changes in writability might also imply changes in value (if for
818    * example, a new mandatory setting is introduced).  If any other
819    * connected handler returns %TRUE then this default functionality
820    * will be suppressed.
821    *
822    * Returns: %TRUE to stop other handlers from being invoked for the
823    *          event. FALSE to propagate the event further.
824    */
825   g_settings_signals[SIGNAL_WRITABLE_CHANGE_EVENT] =
826     g_signal_new (I_("writable-change-event"), G_TYPE_SETTINGS,
827                   G_SIGNAL_RUN_LAST,
828                   G_STRUCT_OFFSET (GSettingsClass, writable_change_event),
829                   g_signal_accumulator_true_handled, NULL,
830                   NULL, G_TYPE_BOOLEAN, 1, G_TYPE_UINT);
831
832   /**
833    * GSettings:backend:
834    *
835    * The name of the context that the settings are stored in.
836    */
837   g_object_class_install_property (object_class, PROP_BACKEND,
838     g_param_spec_object ("backend",
839                          P_("GSettingsBackend"),
840                          P_("The GSettingsBackend for this settings object"),
841                          G_TYPE_SETTINGS_BACKEND, G_PARAM_CONSTRUCT_ONLY |
842                          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
843
844   /**
845    * GSettings:settings-schema:
846    *
847    * The #GSettingsSchema describing the types of keys for this
848    * #GSettings object.
849    *
850    * Ideally, this property would be called 'schema'.  #GSettingsSchema
851    * has only existed since version 2.32, however, and before then the
852    * 'schema' property was used to refer to the ID of the schema rather
853    * than the schema itself.  Take care.
854    */
855   g_object_class_install_property (object_class, PROP_SCHEMA,
856     g_param_spec_boxed ("settings-schema",
857                         P_("schema"),
858                         P_("The GSettingsSchema for this settings object"),
859                         G_TYPE_SETTINGS_SCHEMA,
860                         G_PARAM_CONSTRUCT_ONLY |
861                         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
862
863   /**
864    * GSettings:schema:
865    *
866    * The name of the schema that describes the types of keys
867    * for this #GSettings object.
868    *
869    * The type of this property is *not* #GSettingsSchema.
870    * #GSettingsSchema has only existed since version 2.32 and
871    * unfortunately this name was used in previous versions to refer to
872    * the schema ID rather than the schema itself.  Take care to use the
873    * 'settings-schema' property if you wish to pass in a
874    * #GSettingsSchema.
875    *
876    * Deprecated:2.32:Use the 'schema-id' property instead.  In a future
877    * version, this property may instead refer to a #GSettingsSchema.
878    */
879   g_object_class_install_property (object_class, PROP_SCHEMA_ID,
880     g_param_spec_string ("schema",
881                          P_("Schema name"),
882                          P_("The name of the schema for this settings object"),
883                          NULL,
884                          G_PARAM_CONSTRUCT_ONLY |
885                          G_PARAM_DEPRECATED | G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
886
887   /**
888    * GSettings:schema-id:
889    *
890    * The name of the schema that describes the types of keys
891    * for this #GSettings object.
892    */
893   g_object_class_install_property (object_class, PROP_SCHEMA_ID,
894     g_param_spec_string ("schema-id",
895                          P_("Schema name"),
896                          P_("The name of the schema for this settings object"),
897                          NULL,
898                          G_PARAM_CONSTRUCT_ONLY |
899                          G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
900
901    /**
902     * GSettings:path:
903     *
904     * The path within the backend where the settings are stored.
905     */
906    g_object_class_install_property (object_class, PROP_PATH,
907      g_param_spec_string ("path",
908                           P_("Base path"),
909                           P_("The path within the backend where the settings are"),
910                           NULL,
911                           G_PARAM_CONSTRUCT_ONLY |
912                           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
913
914    /**
915     * GSettings:has-unapplied:
916     *
917     * If this property is %TRUE, the #GSettings object has outstanding
918     * changes that will be applied when g_settings_apply() is called.
919     */
920    g_object_class_install_property (object_class, PROP_HAS_UNAPPLIED,
921      g_param_spec_boolean ("has-unapplied",
922                            P_("Has unapplied changes"),
923                            P_("TRUE if there are outstanding changes to apply()"),
924                            FALSE,
925                            G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
926
927    /**
928     * GSettings:delay-apply:
929     *
930     * Whether the #GSettings object is in 'delay-apply' mode. See
931     * g_settings_delay() for details.
932     *
933     * Since: 2.28
934     */
935    g_object_class_install_property (object_class, PROP_DELAY_APPLY,
936      g_param_spec_boolean ("delay-apply",
937                            P_("Delay-apply mode"),
938                            P_("Whether this settings object is in “delay-apply” mode"),
939                            FALSE,
940                            G_PARAM_READABLE | G_PARAM_STATIC_STRINGS));
941 }
942
943 /* Construction (new, new_with_path, etc.) {{{1 */
944 /**
945  * g_settings_new:
946  * @schema_id: the id of the schema
947  *
948  * Creates a new #GSettings object with the schema specified by
949  * @schema_id.
950  *
951  * Signals on the newly created #GSettings object will be dispatched
952  * via the thread-default #GMainContext in effect at the time of the
953  * call to g_settings_new().  The new #GSettings will hold a reference
954  * on the context.  See g_main_context_push_thread_default().
955  *
956  * Returns: a new #GSettings object
957  *
958  * Since: 2.26
959  */
960 GSettings *
961 g_settings_new (const gchar *schema_id)
962 {
963   g_return_val_if_fail (schema_id != NULL, NULL);
964
965   return g_object_new (G_TYPE_SETTINGS,
966                        "schema-id", schema_id,
967                        NULL);
968 }
969
970 static gboolean
971 path_is_valid (const gchar *path)
972 {
973   if (!path)
974     return FALSE;
975
976   if (path[0] != '/')
977     return FALSE;
978
979   if (!g_str_has_suffix (path, "/"))
980     return FALSE;
981
982   return strstr (path, "//") == NULL;
983 }
984
985 /**
986  * g_settings_new_with_path:
987  * @schema_id: the id of the schema
988  * @path: the path to use
989  *
990  * Creates a new #GSettings object with the relocatable schema specified
991  * by @schema_id and a given path.
992  *
993  * You only need to do this if you want to directly create a settings
994  * object with a schema that doesn't have a specified path of its own.
995  * That's quite rare.
996  *
997  * It is a programmer error to call this function for a schema that
998  * has an explicitly specified path.
999  *
1000  * It is a programmer error if @path is not a valid path.  A valid path
1001  * begins and ends with '/' and does not contain two consecutive '/'
1002  * characters.
1003  *
1004  * Returns: a new #GSettings object
1005  *
1006  * Since: 2.26
1007  */
1008 GSettings *
1009 g_settings_new_with_path (const gchar *schema_id,
1010                           const gchar *path)
1011 {
1012   g_return_val_if_fail (schema_id != NULL, NULL);
1013   g_return_val_if_fail (path_is_valid (path), NULL);
1014
1015   return g_object_new (G_TYPE_SETTINGS,
1016                        "schema-id", schema_id,
1017                        "path", path,
1018                        NULL);
1019 }
1020
1021 /**
1022  * g_settings_new_with_backend:
1023  * @schema_id: the id of the schema
1024  * @backend: the #GSettingsBackend to use
1025  *
1026  * Creates a new #GSettings object with the schema specified by
1027  * @schema_id and a given #GSettingsBackend.
1028  *
1029  * Creating a #GSettings object with a different backend allows accessing
1030  * settings from a database other than the usual one. For example, it may make
1031  * sense to pass a backend corresponding to the "defaults" settings database on
1032  * the system to get a settings object that modifies the system default
1033  * settings instead of the settings for this user.
1034  *
1035  * Returns: a new #GSettings object
1036  *
1037  * Since: 2.26
1038  */
1039 GSettings *
1040 g_settings_new_with_backend (const gchar      *schema_id,
1041                              GSettingsBackend *backend)
1042 {
1043   g_return_val_if_fail (schema_id != NULL, NULL);
1044   g_return_val_if_fail (G_IS_SETTINGS_BACKEND (backend), NULL);
1045
1046   return g_object_new (G_TYPE_SETTINGS,
1047                        "schema-id", schema_id,
1048                        "backend", backend,
1049                        NULL);
1050 }
1051
1052 /**
1053  * g_settings_new_with_backend_and_path:
1054  * @schema_id: the id of the schema
1055  * @backend: the #GSettingsBackend to use
1056  * @path: the path to use
1057  *
1058  * Creates a new #GSettings object with the schema specified by
1059  * @schema_id and a given #GSettingsBackend and path.
1060  *
1061  * This is a mix of g_settings_new_with_backend() and
1062  * g_settings_new_with_path().
1063  *
1064  * Returns: a new #GSettings object
1065  *
1066  * Since: 2.26
1067  */
1068 GSettings *
1069 g_settings_new_with_backend_and_path (const gchar      *schema_id,
1070                                       GSettingsBackend *backend,
1071                                       const gchar      *path)
1072 {
1073   g_return_val_if_fail (schema_id != NULL, NULL);
1074   g_return_val_if_fail (G_IS_SETTINGS_BACKEND (backend), NULL);
1075   g_return_val_if_fail (path_is_valid (path), NULL);
1076
1077   return g_object_new (G_TYPE_SETTINGS,
1078                        "schema-id", schema_id,
1079                        "backend", backend,
1080                        "path", path,
1081                        NULL);
1082 }
1083
1084 /**
1085  * g_settings_new_full:
1086  * @schema: a #GSettingsSchema
1087  * @backend: (nullable): a #GSettingsBackend
1088  * @path: (nullable): the path to use
1089  *
1090  * Creates a new #GSettings object with a given schema, backend and
1091  * path.
1092  *
1093  * It should be extremely rare that you ever want to use this function.
1094  * It is made available for advanced use-cases (such as plugin systems
1095  * that want to provide access to schemas loaded from custom locations,
1096  * etc).
1097  *
1098  * At the most basic level, a #GSettings object is a pure composition of
1099  * 4 things: a #GSettingsSchema, a #GSettingsBackend, a path within that
1100  * backend, and a #GMainContext to which signals are dispatched.
1101  *
1102  * This constructor therefore gives you full control over constructing
1103  * #GSettings instances.  The first 3 parameters are given directly as
1104  * @schema, @backend and @path, and the main context is taken from the
1105  * thread-default (as per g_settings_new()).
1106  *
1107  * If @backend is %NULL then the default backend is used.
1108  *
1109  * If @path is %NULL then the path from the schema is used.  It is an
1110  * error if @path is %NULL and the schema has no path of its own or if
1111  * @path is non-%NULL and not equal to the path that the schema does
1112  * have.
1113  *
1114  * Returns: a new #GSettings object
1115  *
1116  * Since: 2.32
1117  */
1118 GSettings *
1119 g_settings_new_full (GSettingsSchema  *schema,
1120                      GSettingsBackend *backend,
1121                      const gchar      *path)
1122 {
1123   g_return_val_if_fail (schema != NULL, NULL);
1124   g_return_val_if_fail (backend == NULL || G_IS_SETTINGS_BACKEND (backend), NULL);
1125   g_return_val_if_fail (path == NULL || path_is_valid (path), NULL);
1126
1127   return g_object_new (G_TYPE_SETTINGS,
1128                        "settings-schema", schema,
1129                        "backend", backend,
1130                        "path", path,
1131                        NULL);
1132 }
1133
1134 /* Internal read/write utilities {{{1 */
1135 static gboolean
1136 g_settings_write_to_backend (GSettings          *settings,
1137                              GSettingsSchemaKey *key,
1138                              GVariant           *value)
1139 {
1140   gboolean success;
1141   gchar *path;
1142
1143   path = g_strconcat (settings->priv->path, key->name, NULL);
1144   success = g_settings_backend_write (settings->priv->backend, path, value, NULL);
1145   g_free (path);
1146
1147   return success;
1148 }
1149
1150 static GVariant *
1151 g_settings_read_from_backend (GSettings          *settings,
1152                               GSettingsSchemaKey *key,
1153                               gboolean            user_value_only,
1154                               gboolean            default_value)
1155 {
1156   GVariant *value;
1157   GVariant *fixup;
1158   gchar *path;
1159
1160   path = g_strconcat (settings->priv->path, key->name, NULL);
1161   if (user_value_only)
1162     value = g_settings_backend_read_user_value (settings->priv->backend, path, key->type);
1163   else
1164     value = g_settings_backend_read (settings->priv->backend, path, key->type, default_value);
1165   g_free (path);
1166
1167   if (value != NULL)
1168     {
1169       fixup = g_settings_schema_key_range_fixup (key, value);
1170       g_variant_unref (value);
1171     }
1172   else
1173     fixup = NULL;
1174
1175   return fixup;
1176 }
1177
1178 /* Public Get/Set API {{{1 (get, get_value, set, set_value, get_mapped) */
1179 /**
1180  * g_settings_get_value:
1181  * @settings: a #GSettings object
1182  * @key: the key to get the value for
1183  *
1184  * Gets the value that is stored in @settings for @key.
1185  *
1186  * It is a programmer error to give a @key that isn't contained in the
1187  * schema for @settings.
1188  *
1189  * Returns: a new #GVariant
1190  *
1191  * Since: 2.26
1192  */
1193 GVariant *
1194 g_settings_get_value (GSettings   *settings,
1195                       const gchar *key)
1196 {
1197   GSettingsSchemaKey skey;
1198   GVariant *value;
1199
1200   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1201   g_return_val_if_fail (key != NULL, NULL);
1202
1203   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1204   value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE);
1205
1206   if (value == NULL)
1207     value = g_settings_schema_key_get_default_value (&skey);
1208
1209   g_settings_schema_key_clear (&skey);
1210
1211   return value;
1212 }
1213
1214 /**
1215  * g_settings_get_user_value:
1216  * @settings: a #GSettings object
1217  * @key: the key to get the user value for
1218  *
1219  * Checks the "user value" of a key, if there is one.
1220  *
1221  * The user value of a key is the last value that was set by the user.
1222  *
1223  * After calling g_settings_reset() this function should always return
1224  * %NULL (assuming something is not wrong with the system
1225  * configuration).
1226  *
1227  * It is possible that g_settings_get_value() will return a different
1228  * value than this function.  This can happen in the case that the user
1229  * set a value for a key that was subsequently locked down by the system
1230  * administrator -- this function will return the user's old value.
1231  *
1232  * This function may be useful for adding a "reset" option to a UI or
1233  * for providing indication that a particular value has been changed.
1234  *
1235  * It is a programmer error to give a @key that isn't contained in the
1236  * schema for @settings.
1237  *
1238  * Returns: (nullable) (transfer full): the user's value, if set
1239  *
1240  * Since: 2.40
1241  **/
1242 GVariant *
1243 g_settings_get_user_value (GSettings   *settings,
1244                            const gchar *key)
1245 {
1246   GSettingsSchemaKey skey;
1247   GVariant *value;
1248
1249   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1250   g_return_val_if_fail (key != NULL, NULL);
1251
1252   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1253   value = g_settings_read_from_backend (settings, &skey, TRUE, FALSE);
1254   g_settings_schema_key_clear (&skey);
1255
1256   return value;
1257 }
1258
1259 /**
1260  * g_settings_get_default_value:
1261  * @settings: a #GSettings object
1262  * @key: the key to get the default value for
1263  *
1264  * Gets the "default value" of a key.
1265  *
1266  * This is the value that would be read if g_settings_reset() were to be
1267  * called on the key.
1268  *
1269  * Note that this may be a different value than returned by
1270  * g_settings_schema_key_get_default_value() if the system administrator
1271  * has provided a default value.
1272  *
1273  * Comparing the return values of g_settings_get_default_value() and
1274  * g_settings_get_value() is not sufficient for determining if a value
1275  * has been set because the user may have explicitly set the value to
1276  * something that happens to be equal to the default.  The difference
1277  * here is that if the default changes in the future, the user's key
1278  * will still be set.
1279  *
1280  * This function may be useful for adding an indication to a UI of what
1281  * the default value was before the user set it.
1282  *
1283  * It is a programmer error to give a @key that isn't contained in the
1284  * schema for @settings.
1285  *
1286  * Returns: (nullable) (transfer full): the default value
1287  *
1288  * Since: 2.40
1289  **/
1290 GVariant *
1291 g_settings_get_default_value (GSettings   *settings,
1292                               const gchar *key)
1293 {
1294   GSettingsSchemaKey skey;
1295   GVariant *value;
1296
1297   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1298   g_return_val_if_fail (key != NULL, NULL);
1299
1300   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1301   value = g_settings_read_from_backend (settings, &skey, FALSE, TRUE);
1302
1303   if (value == NULL)
1304     value = g_settings_schema_key_get_default_value (&skey);
1305
1306   g_settings_schema_key_clear (&skey);
1307
1308   return value;
1309 }
1310
1311 /**
1312  * g_settings_get_enum:
1313  * @settings: a #GSettings object
1314  * @key: the key to get the value for
1315  *
1316  * Gets the value that is stored in @settings for @key and converts it
1317  * to the enum value that it represents.
1318  *
1319  * In order to use this function the type of the value must be a string
1320  * and it must be marked in the schema file as an enumerated type.
1321  *
1322  * It is a programmer error to give a @key that isn't contained in the
1323  * schema for @settings or is not marked as an enumerated type.
1324  *
1325  * If the value stored in the configuration database is not a valid
1326  * value for the enumerated type then this function will return the
1327  * default value.
1328  *
1329  * Returns: the enum value
1330  *
1331  * Since: 2.26
1332  **/
1333 gint
1334 g_settings_get_enum (GSettings   *settings,
1335                      const gchar *key)
1336 {
1337   GSettingsSchemaKey skey;
1338   GVariant *value;
1339   gint result;
1340
1341   g_return_val_if_fail (G_IS_SETTINGS (settings), -1);
1342   g_return_val_if_fail (key != NULL, -1);
1343
1344   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1345
1346   if (!skey.is_enum)
1347     {
1348       g_critical ("g_settings_get_enum() called on key '%s' which is not "
1349                   "associated with an enumerated type", skey.name);
1350       g_settings_schema_key_clear (&skey);
1351       return -1;
1352     }
1353
1354   value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE);
1355
1356   if (value == NULL)
1357     value = g_settings_schema_key_get_default_value (&skey);
1358
1359   result = g_settings_schema_key_to_enum (&skey, value);
1360   g_settings_schema_key_clear (&skey);
1361   g_variant_unref (value);
1362
1363   return result;
1364 }
1365
1366 /**
1367  * g_settings_set_enum:
1368  * @settings: a #GSettings object
1369  * @key: a key, within @settings
1370  * @value: an enumerated value
1371  *
1372  * Looks up the enumerated type nick for @value and writes it to @key,
1373  * within @settings.
1374  *
1375  * It is a programmer error to give a @key that isn't contained in the
1376  * schema for @settings or is not marked as an enumerated type, or for
1377  * @value not to be a valid value for the named type.
1378  *
1379  * After performing the write, accessing @key directly with
1380  * g_settings_get_string() will return the 'nick' associated with
1381  * @value.
1382  *
1383  * Returns: %TRUE, if the set succeeds
1384  **/
1385 gboolean
1386 g_settings_set_enum (GSettings   *settings,
1387                      const gchar *key,
1388                      gint         value)
1389 {
1390   GSettingsSchemaKey skey;
1391   GVariant *variant;
1392   gboolean success;
1393
1394   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1395   g_return_val_if_fail (key != NULL, FALSE);
1396
1397   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1398
1399   if (!skey.is_enum)
1400     {
1401       g_critical ("g_settings_set_enum() called on key '%s' which is not "
1402                   "associated with an enumerated type", skey.name);
1403       return FALSE;
1404     }
1405
1406   if (!(variant = g_settings_schema_key_from_enum (&skey, value)))
1407     {
1408       g_critical ("g_settings_set_enum(): invalid enum value %d for key '%s' "
1409                   "in schema '%s'.  Doing nothing.", value, skey.name,
1410                   g_settings_schema_get_id (skey.schema));
1411       g_settings_schema_key_clear (&skey);
1412       return FALSE;
1413     }
1414
1415   success = g_settings_write_to_backend (settings, &skey, variant);
1416   g_settings_schema_key_clear (&skey);
1417
1418   return success;
1419 }
1420
1421 /**
1422  * g_settings_get_flags:
1423  * @settings: a #GSettings object
1424  * @key: the key to get the value for
1425  *
1426  * Gets the value that is stored in @settings for @key and converts it
1427  * to the flags value that it represents.
1428  *
1429  * In order to use this function the type of the value must be an array
1430  * of strings and it must be marked in the schema file as an flags type.
1431  *
1432  * It is a programmer error to give a @key that isn't contained in the
1433  * schema for @settings or is not marked as a flags type.
1434  *
1435  * If the value stored in the configuration database is not a valid
1436  * value for the flags type then this function will return the default
1437  * value.
1438  *
1439  * Returns: the flags value
1440  *
1441  * Since: 2.26
1442  **/
1443 guint
1444 g_settings_get_flags (GSettings   *settings,
1445                       const gchar *key)
1446 {
1447   GSettingsSchemaKey skey;
1448   GVariant *value;
1449   guint result;
1450
1451   g_return_val_if_fail (G_IS_SETTINGS (settings), -1);
1452   g_return_val_if_fail (key != NULL, -1);
1453
1454   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1455
1456   if (!skey.is_flags)
1457     {
1458       g_critical ("g_settings_get_flags() called on key '%s' which is not "
1459                   "associated with a flags type", skey.name);
1460       g_settings_schema_key_clear (&skey);
1461       return -1;
1462     }
1463
1464   value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE);
1465
1466   if (value == NULL)
1467     value = g_settings_schema_key_get_default_value (&skey);
1468
1469   result = g_settings_schema_key_to_flags (&skey, value);
1470   g_settings_schema_key_clear (&skey);
1471   g_variant_unref (value);
1472
1473   return result;
1474 }
1475
1476 /**
1477  * g_settings_set_flags:
1478  * @settings: a #GSettings object
1479  * @key: a key, within @settings
1480  * @value: a flags value
1481  *
1482  * Looks up the flags type nicks for the bits specified by @value, puts
1483  * them in an array of strings and writes the array to @key, within
1484  * @settings.
1485  *
1486  * It is a programmer error to give a @key that isn't contained in the
1487  * schema for @settings or is not marked as a flags type, or for @value
1488  * to contain any bits that are not value for the named type.
1489  *
1490  * After performing the write, accessing @key directly with
1491  * g_settings_get_strv() will return an array of 'nicks'; one for each
1492  * bit in @value.
1493  *
1494  * Returns: %TRUE, if the set succeeds
1495  **/
1496 gboolean
1497 g_settings_set_flags (GSettings   *settings,
1498                       const gchar *key,
1499                       guint        value)
1500 {
1501   GSettingsSchemaKey skey;
1502   GVariant *variant;
1503   gboolean success;
1504
1505   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1506   g_return_val_if_fail (key != NULL, FALSE);
1507
1508   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1509
1510   if (!skey.is_flags)
1511     {
1512       g_critical ("g_settings_set_flags() called on key '%s' which is not "
1513                   "associated with a flags type", skey.name);
1514       return FALSE;
1515     }
1516
1517   if (!(variant = g_settings_schema_key_from_flags (&skey, value)))
1518     {
1519       g_critical ("g_settings_set_flags(): invalid flags value 0x%08x "
1520                   "for key '%s' in schema '%s'.  Doing nothing.",
1521                   value, skey.name, g_settings_schema_get_id (skey.schema));
1522       g_settings_schema_key_clear (&skey);
1523       return FALSE;
1524     }
1525
1526   success = g_settings_write_to_backend (settings, &skey, variant);
1527   g_settings_schema_key_clear (&skey);
1528
1529   return success;
1530 }
1531
1532 /**
1533  * g_settings_set_value:
1534  * @settings: a #GSettings object
1535  * @key: the name of the key to set
1536  * @value: a #GVariant of the correct type
1537  *
1538  * Sets @key in @settings to @value.
1539  *
1540  * It is a programmer error to give a @key that isn't contained in the
1541  * schema for @settings or for @value to have the incorrect type, per
1542  * the schema.
1543  *
1544  * If @value is floating then this function consumes the reference.
1545  *
1546  * Returns: %TRUE if setting the key succeeded,
1547  *     %FALSE if the key was not writable
1548  *
1549  * Since: 2.26
1550  **/
1551 gboolean
1552 g_settings_set_value (GSettings   *settings,
1553                       const gchar *key,
1554                       GVariant    *value)
1555 {
1556   GSettingsSchemaKey skey;
1557   gboolean success;
1558
1559   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
1560   g_return_val_if_fail (key != NULL, FALSE);
1561
1562   g_variant_ref_sink (value);
1563   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1564
1565   if (!g_settings_schema_key_type_check (&skey, value))
1566     {
1567       g_critical ("g_settings_set_value: key '%s' in '%s' expects type '%s', but a GVariant of type '%s' was given",
1568                   key,
1569                   g_settings_schema_get_id (settings->priv->schema),
1570                   g_variant_type_peek_string (skey.type),
1571                   g_variant_get_type_string (value));
1572       success = FALSE;
1573     }
1574   else if (!g_settings_schema_key_range_check (&skey, value))
1575     {
1576       g_warning ("g_settings_set_value: value for key '%s' in schema '%s' "
1577                  "is outside of valid range",
1578                  key,
1579                  g_settings_schema_get_id (settings->priv->schema));
1580       success = FALSE;
1581     }
1582   else
1583     {
1584       success = g_settings_write_to_backend (settings, &skey, value);
1585     }
1586
1587   g_settings_schema_key_clear (&skey);
1588   g_variant_unref (value);
1589
1590   return success;
1591 }
1592
1593 /**
1594  * g_settings_get:
1595  * @settings: a #GSettings object
1596  * @key: the key to get the value for
1597  * @format: a #GVariant format string
1598  * @...: arguments as per @format
1599  *
1600  * Gets the value that is stored at @key in @settings.
1601  *
1602  * A convenience function that combines g_settings_get_value() with
1603  * g_variant_get().
1604  *
1605  * It is a programmer error to give a @key that isn't contained in the
1606  * schema for @settings or for the #GVariantType of @format to mismatch
1607  * the type given in the schema.
1608  *
1609  * Since: 2.26
1610  */
1611 void
1612 g_settings_get (GSettings   *settings,
1613                 const gchar *key,
1614                 const gchar *format,
1615                 ...)
1616 {
1617   GVariant *value;
1618   va_list ap;
1619
1620   value = g_settings_get_value (settings, key);
1621
1622   if (strchr (format, '&'))
1623     {
1624       g_critical ("%s: the format string may not contain '&' (key '%s' from schema '%s'). "
1625                   "This call will probably stop working with a future version of glib.",
1626                   G_STRFUNC, key, g_settings_schema_get_id (settings->priv->schema));
1627     }
1628
1629   va_start (ap, format);
1630   g_variant_get_va (value, format, NULL, &ap);
1631   va_end (ap);
1632
1633   g_variant_unref (value);
1634 }
1635
1636 /**
1637  * g_settings_set:
1638  * @settings: a #GSettings object
1639  * @key: the name of the key to set
1640  * @format: a #GVariant format string
1641  * @...: arguments as per @format
1642  *
1643  * Sets @key in @settings to @value.
1644  *
1645  * A convenience function that combines g_settings_set_value() with
1646  * g_variant_new().
1647  *
1648  * It is a programmer error to give a @key that isn't contained in the
1649  * schema for @settings or for the #GVariantType of @format to mismatch
1650  * the type given in the schema.
1651  *
1652  * Returns: %TRUE if setting the key succeeded,
1653  *     %FALSE if the key was not writable
1654  *
1655  * Since: 2.26
1656  */
1657 gboolean
1658 g_settings_set (GSettings   *settings,
1659                 const gchar *key,
1660                 const gchar *format,
1661                 ...)
1662 {
1663   GVariant *value;
1664   va_list ap;
1665
1666   va_start (ap, format);
1667   value = g_variant_new_va (format, NULL, &ap);
1668   va_end (ap);
1669
1670   return g_settings_set_value (settings, key, value);
1671 }
1672
1673 /**
1674  * g_settings_get_mapped:
1675  * @settings: a #GSettings object
1676  * @key: the key to get the value for
1677  * @mapping: (scope call): the function to map the value in the
1678  *           settings database to the value used by the application
1679  * @user_data: user data for @mapping
1680  *
1681  * Gets the value that is stored at @key in @settings, subject to
1682  * application-level validation/mapping.
1683  *
1684  * You should use this function when the application needs to perform
1685  * some processing on the value of the key (for example, parsing).  The
1686  * @mapping function performs that processing.  If the function
1687  * indicates that the processing was unsuccessful (due to a parse error,
1688  * for example) then the mapping is tried again with another value.
1689  *
1690  * This allows a robust 'fall back to defaults' behaviour to be
1691  * implemented somewhat automatically.
1692  *
1693  * The first value that is tried is the user's setting for the key.  If
1694  * the mapping function fails to map this value, other values may be
1695  * tried in an unspecified order (system or site defaults, translated
1696  * schema default values, untranslated schema default values, etc).
1697  *
1698  * If the mapping function fails for all possible values, one additional
1699  * attempt is made: the mapping function is called with a %NULL value.
1700  * If the mapping function still indicates failure at this point then
1701  * the application will be aborted.
1702  *
1703  * The result parameter for the @mapping function is pointed to a
1704  * #gpointer which is initially set to %NULL.  The same pointer is given
1705  * to each invocation of @mapping.  The final value of that #gpointer is
1706  * what is returned by this function.  %NULL is valid; it is returned
1707  * just as any other value would be.
1708  *
1709  * Returns: (transfer full): the result, which may be %NULL
1710  **/
1711 gpointer
1712 g_settings_get_mapped (GSettings           *settings,
1713                        const gchar         *key,
1714                        GSettingsGetMapping  mapping,
1715                        gpointer             user_data)
1716 {
1717   gpointer result = NULL;
1718   GSettingsSchemaKey skey;
1719   GVariant *value;
1720   gboolean okay;
1721
1722   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
1723   g_return_val_if_fail (key != NULL, NULL);
1724   g_return_val_if_fail (mapping != NULL, NULL);
1725
1726   g_settings_schema_key_init (&skey, settings->priv->schema, key);
1727
1728   if ((value = g_settings_read_from_backend (settings, &skey, FALSE, FALSE)))
1729     {
1730       okay = mapping (value, &result, user_data);
1731       g_variant_unref (value);
1732       if (okay) goto okay;
1733     }
1734
1735   if ((value = g_settings_schema_key_get_translated_default (&skey)))
1736     {
1737       okay = mapping (value, &result, user_data);
1738       g_variant_unref (value);
1739       if (okay) goto okay;
1740     }
1741
1742   if ((value = g_settings_schema_key_get_per_desktop_default (&skey)))
1743     {
1744       okay = mapping (value, &result, user_data);
1745       g_variant_unref (value);
1746       if (okay) goto okay;
1747     }
1748
1749   if (mapping (skey.default_value, &result, user_data))
1750     goto okay;
1751
1752   if (!mapping (NULL, &result, user_data))
1753     g_error ("The mapping function given to g_settings_get_mapped() for key "
1754              "'%s' in schema '%s' returned FALSE when given a NULL value.",
1755              key, g_settings_schema_get_id (settings->priv->schema));
1756
1757  okay:
1758   g_settings_schema_key_clear (&skey);
1759
1760   return result;
1761 }
1762
1763 /* Convenience API (get, set_string, int, double, boolean, strv) {{{1 */
1764 /**
1765  * g_settings_get_string:
1766  * @settings: a #GSettings object
1767  * @key: the key to get the value for
1768  *
1769  * Gets the value that is stored at @key in @settings.
1770  *
1771  * A convenience variant of g_settings_get() for strings.
1772  *
1773  * It is a programmer error to give a @key that isn't specified as
1774  * having a string type in the schema for @settings.
1775  *
1776  * Returns: a newly-allocated string
1777  *
1778  * Since: 2.26
1779  */
1780 gchar *
1781 g_settings_get_string (GSettings   *settings,
1782                        const gchar *key)
1783 {
1784   GVariant *value;
1785   gchar *result;
1786
1787   value = g_settings_get_value (settings, key);
1788   result = g_variant_dup_string (value, NULL);
1789   g_variant_unref (value);
1790
1791   return result;
1792 }
1793
1794 /**
1795  * g_settings_set_string:
1796  * @settings: a #GSettings object
1797  * @key: the name of the key to set
1798  * @value: the value to set it to
1799  *
1800  * Sets @key in @settings to @value.
1801  *
1802  * A convenience variant of g_settings_set() for strings.
1803  *
1804  * It is a programmer error to give a @key that isn't specified as
1805  * having a string type in the schema for @settings.
1806  *
1807  * Returns: %TRUE if setting the key succeeded,
1808  *     %FALSE if the key was not writable
1809  *
1810  * Since: 2.26
1811  */
1812 gboolean
1813 g_settings_set_string (GSettings   *settings,
1814                        const gchar *key,
1815                        const gchar *value)
1816 {
1817   return g_settings_set_value (settings, key, g_variant_new_string (value));
1818 }
1819
1820 /**
1821  * g_settings_get_int:
1822  * @settings: a #GSettings object
1823  * @key: the key to get the value for
1824  *
1825  * Gets the value that is stored at @key in @settings.
1826  *
1827  * A convenience variant of g_settings_get() for 32-bit integers.
1828  *
1829  * It is a programmer error to give a @key that isn't specified as
1830  * having a int32 type in the schema for @settings.
1831  *
1832  * Returns: an integer
1833  *
1834  * Since: 2.26
1835  */
1836 gint
1837 g_settings_get_int (GSettings   *settings,
1838                     const gchar *key)
1839 {
1840   GVariant *value;
1841   gint result;
1842
1843   value = g_settings_get_value (settings, key);
1844   result = g_variant_get_int32 (value);
1845   g_variant_unref (value);
1846
1847   return result;
1848 }
1849
1850 /**
1851  * g_settings_set_int:
1852  * @settings: a #GSettings object
1853  * @key: the name of the key to set
1854  * @value: the value to set it to
1855  *
1856  * Sets @key in @settings to @value.
1857  *
1858  * A convenience variant of g_settings_set() for 32-bit integers.
1859  *
1860  * It is a programmer error to give a @key that isn't specified as
1861  * having a int32 type in the schema for @settings.
1862  *
1863  * Returns: %TRUE if setting the key succeeded,
1864  *     %FALSE if the key was not writable
1865  *
1866  * Since: 2.26
1867  */
1868 gboolean
1869 g_settings_set_int (GSettings   *settings,
1870                     const gchar *key,
1871                     gint         value)
1872 {
1873   return g_settings_set_value (settings, key, g_variant_new_int32 (value));
1874 }
1875
1876 /**
1877  * g_settings_get_int64:
1878  * @settings: a #GSettings object
1879  * @key: the key to get the value for
1880  *
1881  * Gets the value that is stored at @key in @settings.
1882  *
1883  * A convenience variant of g_settings_get() for 64-bit integers.
1884  *
1885  * It is a programmer error to give a @key that isn't specified as
1886  * having a int64 type in the schema for @settings.
1887  *
1888  * Returns: a 64-bit integer
1889  *
1890  * Since: 2.50
1891  */
1892 gint64
1893 g_settings_get_int64 (GSettings   *settings,
1894                       const gchar *key)
1895 {
1896   GVariant *value;
1897   gint64 result;
1898
1899   value = g_settings_get_value (settings, key);
1900   result = g_variant_get_int64 (value);
1901   g_variant_unref (value);
1902
1903   return result;
1904 }
1905
1906 /**
1907  * g_settings_set_int64:
1908  * @settings: a #GSettings object
1909  * @key: the name of the key to set
1910  * @value: the value to set it to
1911  *
1912  * Sets @key in @settings to @value.
1913  *
1914  * A convenience variant of g_settings_set() for 64-bit integers.
1915  *
1916  * It is a programmer error to give a @key that isn't specified as
1917  * having a int64 type in the schema for @settings.
1918  *
1919  * Returns: %TRUE if setting the key succeeded,
1920  *     %FALSE if the key was not writable
1921  *
1922  * Since: 2.50
1923  */
1924 gboolean
1925 g_settings_set_int64 (GSettings   *settings,
1926                       const gchar *key,
1927                       gint64       value)
1928 {
1929   return g_settings_set_value (settings, key, g_variant_new_int64 (value));
1930 }
1931
1932 /**
1933  * g_settings_get_uint:
1934  * @settings: a #GSettings object
1935  * @key: the key to get the value for
1936  *
1937  * Gets the value that is stored at @key in @settings.
1938  *
1939  * A convenience variant of g_settings_get() for 32-bit unsigned
1940  * integers.
1941  *
1942  * It is a programmer error to give a @key that isn't specified as
1943  * having a uint32 type in the schema for @settings.
1944  *
1945  * Returns: an unsigned integer
1946  *
1947  * Since: 2.30
1948  */
1949 guint
1950 g_settings_get_uint (GSettings   *settings,
1951                      const gchar *key)
1952 {
1953   GVariant *value;
1954   guint result;
1955
1956   value = g_settings_get_value (settings, key);
1957   result = g_variant_get_uint32 (value);
1958   g_variant_unref (value);
1959
1960   return result;
1961 }
1962
1963 /**
1964  * g_settings_set_uint:
1965  * @settings: a #GSettings object
1966  * @key: the name of the key to set
1967  * @value: the value to set it to
1968  *
1969  * Sets @key in @settings to @value.
1970  *
1971  * A convenience variant of g_settings_set() for 32-bit unsigned
1972  * integers.
1973  *
1974  * It is a programmer error to give a @key that isn't specified as
1975  * having a uint32 type in the schema for @settings.
1976  *
1977  * Returns: %TRUE if setting the key succeeded,
1978  *     %FALSE if the key was not writable
1979  *
1980  * Since: 2.30
1981  */
1982 gboolean
1983 g_settings_set_uint (GSettings   *settings,
1984                      const gchar *key,
1985                      guint        value)
1986 {
1987   return g_settings_set_value (settings, key, g_variant_new_uint32 (value));
1988 }
1989
1990 /**
1991  * g_settings_get_uint64:
1992  * @settings: a #GSettings object
1993  * @key: the key to get the value for
1994  *
1995  * Gets the value that is stored at @key in @settings.
1996  *
1997  * A convenience variant of g_settings_get() for 64-bit unsigned
1998  * integers.
1999  *
2000  * It is a programmer error to give a @key that isn't specified as
2001  * having a uint64 type in the schema for @settings.
2002  *
2003  * Returns: a 64-bit unsigned integer
2004  *
2005  * Since: 2.50
2006  */
2007 guint64
2008 g_settings_get_uint64 (GSettings   *settings,
2009                        const gchar *key)
2010 {
2011   GVariant *value;
2012   guint64 result;
2013
2014   value = g_settings_get_value (settings, key);
2015   result = g_variant_get_uint64 (value);
2016   g_variant_unref (value);
2017
2018   return result;
2019 }
2020
2021 /**
2022  * g_settings_set_uint64:
2023  * @settings: a #GSettings object
2024  * @key: the name of the key to set
2025  * @value: the value to set it to
2026  *
2027  * Sets @key in @settings to @value.
2028  *
2029  * A convenience variant of g_settings_set() for 64-bit unsigned
2030  * integers.
2031  *
2032  * It is a programmer error to give a @key that isn't specified as
2033  * having a uint64 type in the schema for @settings.
2034  *
2035  * Returns: %TRUE if setting the key succeeded,
2036  *     %FALSE if the key was not writable
2037  *
2038  * Since: 2.50
2039  */
2040 gboolean
2041 g_settings_set_uint64 (GSettings   *settings,
2042                        const gchar *key,
2043                        guint64      value)
2044 {
2045   return g_settings_set_value (settings, key, g_variant_new_uint64 (value));
2046 }
2047
2048 /**
2049  * g_settings_get_double:
2050  * @settings: a #GSettings object
2051  * @key: the key to get the value for
2052  *
2053  * Gets the value that is stored at @key in @settings.
2054  *
2055  * A convenience variant of g_settings_get() for doubles.
2056  *
2057  * It is a programmer error to give a @key that isn't specified as
2058  * having a 'double' type in the schema for @settings.
2059  *
2060  * Returns: a double
2061  *
2062  * Since: 2.26
2063  */
2064 gdouble
2065 g_settings_get_double (GSettings   *settings,
2066                        const gchar *key)
2067 {
2068   GVariant *value;
2069   gdouble result;
2070
2071   value = g_settings_get_value (settings, key);
2072   result = g_variant_get_double (value);
2073   g_variant_unref (value);
2074
2075   return result;
2076 }
2077
2078 /**
2079  * g_settings_set_double:
2080  * @settings: a #GSettings object
2081  * @key: the name of the key to set
2082  * @value: the value to set it to
2083  *
2084  * Sets @key in @settings to @value.
2085  *
2086  * A convenience variant of g_settings_set() for doubles.
2087  *
2088  * It is a programmer error to give a @key that isn't specified as
2089  * having a 'double' type in the schema for @settings.
2090  *
2091  * Returns: %TRUE if setting the key succeeded,
2092  *     %FALSE if the key was not writable
2093  *
2094  * Since: 2.26
2095  */
2096 gboolean
2097 g_settings_set_double (GSettings   *settings,
2098                        const gchar *key,
2099                        gdouble      value)
2100 {
2101   return g_settings_set_value (settings, key, g_variant_new_double (value));
2102 }
2103
2104 /**
2105  * g_settings_get_boolean:
2106  * @settings: a #GSettings object
2107  * @key: the key to get the value for
2108  *
2109  * Gets the value that is stored at @key in @settings.
2110  *
2111  * A convenience variant of g_settings_get() for booleans.
2112  *
2113  * It is a programmer error to give a @key that isn't specified as
2114  * having a boolean type in the schema for @settings.
2115  *
2116  * Returns: a boolean
2117  *
2118  * Since: 2.26
2119  */
2120 gboolean
2121 g_settings_get_boolean (GSettings  *settings,
2122                        const gchar *key)
2123 {
2124   GVariant *value;
2125   gboolean result;
2126
2127   value = g_settings_get_value (settings, key);
2128   result = g_variant_get_boolean (value);
2129   g_variant_unref (value);
2130
2131   return result;
2132 }
2133
2134 /**
2135  * g_settings_set_boolean:
2136  * @settings: a #GSettings object
2137  * @key: the name of the key to set
2138  * @value: the value to set it to
2139  *
2140  * Sets @key in @settings to @value.
2141  *
2142  * A convenience variant of g_settings_set() for booleans.
2143  *
2144  * It is a programmer error to give a @key that isn't specified as
2145  * having a boolean type in the schema for @settings.
2146  *
2147  * Returns: %TRUE if setting the key succeeded,
2148  *     %FALSE if the key was not writable
2149  *
2150  * Since: 2.26
2151  */
2152 gboolean
2153 g_settings_set_boolean (GSettings  *settings,
2154                        const gchar *key,
2155                        gboolean     value)
2156 {
2157   return g_settings_set_value (settings, key, g_variant_new_boolean (value));
2158 }
2159
2160 /**
2161  * g_settings_get_strv:
2162  * @settings: a #GSettings object
2163  * @key: the key to get the value for
2164  *
2165  * A convenience variant of g_settings_get() for string arrays.
2166  *
2167  * It is a programmer error to give a @key that isn't specified as
2168  * having an array of strings type in the schema for @settings.
2169  *
2170  * Returns: (array zero-terminated=1) (transfer full): a
2171  * newly-allocated, %NULL-terminated array of strings, the value that
2172  * is stored at @key in @settings.
2173  *
2174  * Since: 2.26
2175  */
2176 gchar **
2177 g_settings_get_strv (GSettings   *settings,
2178                      const gchar *key)
2179 {
2180   GVariant *value;
2181   gchar **result;
2182
2183   value = g_settings_get_value (settings, key);
2184   result = g_variant_dup_strv (value, NULL);
2185   g_variant_unref (value);
2186
2187   return result;
2188 }
2189
2190 /**
2191  * g_settings_set_strv:
2192  * @settings: a #GSettings object
2193  * @key: the name of the key to set
2194  * @value: (nullable) (array zero-terminated=1): the value to set it to, or %NULL
2195  *
2196  * Sets @key in @settings to @value.
2197  *
2198  * A convenience variant of g_settings_set() for string arrays.  If
2199  * @value is %NULL, then @key is set to be the empty array.
2200  *
2201  * It is a programmer error to give a @key that isn't specified as
2202  * having an array of strings type in the schema for @settings.
2203  *
2204  * Returns: %TRUE if setting the key succeeded,
2205  *     %FALSE if the key was not writable
2206  *
2207  * Since: 2.26
2208  */
2209 gboolean
2210 g_settings_set_strv (GSettings           *settings,
2211                      const gchar         *key,
2212                      const gchar * const *value)
2213 {
2214   GVariant *array;
2215
2216   if (value != NULL)
2217     array = g_variant_new_strv (value, -1);
2218   else
2219     array = g_variant_new_strv (NULL, 0);
2220
2221   return g_settings_set_value (settings, key, array);
2222 }
2223
2224 /* Delayed apply (delay, apply, revert, get_has_unapplied) {{{1 */
2225 /**
2226  * g_settings_delay:
2227  * @settings: a #GSettings object
2228  *
2229  * Changes the #GSettings object into 'delay-apply' mode. In this
2230  * mode, changes to @settings are not immediately propagated to the
2231  * backend, but kept locally until g_settings_apply() is called.
2232  *
2233  * Since: 2.26
2234  */
2235 void
2236 g_settings_delay (GSettings *settings)
2237 {
2238   g_return_if_fail (G_IS_SETTINGS (settings));
2239
2240   if (settings->priv->delayed)
2241     return;
2242
2243   settings->priv->delayed =
2244     g_delayed_settings_backend_new (settings->priv->backend,
2245                                     settings,
2246                                     settings->priv->main_context);
2247   g_settings_backend_unwatch (settings->priv->backend, G_OBJECT (settings));
2248   g_object_unref (settings->priv->backend);
2249
2250   settings->priv->backend = G_SETTINGS_BACKEND (settings->priv->delayed);
2251   g_settings_backend_watch (settings->priv->backend,
2252                             &listener_vtable, G_OBJECT (settings),
2253                             settings->priv->main_context);
2254
2255   g_object_notify (G_OBJECT (settings), "delay-apply");
2256 }
2257
2258 /**
2259  * g_settings_apply:
2260  * @settings: a #GSettings instance
2261  *
2262  * Applies any changes that have been made to the settings.  This
2263  * function does nothing unless @settings is in 'delay-apply' mode;
2264  * see g_settings_delay().  In the normal case settings are always
2265  * applied immediately.
2266  **/
2267 void
2268 g_settings_apply (GSettings *settings)
2269 {
2270   if (settings->priv->delayed)
2271     {
2272       GDelayedSettingsBackend *delayed;
2273
2274       delayed = G_DELAYED_SETTINGS_BACKEND (settings->priv->backend);
2275       g_delayed_settings_backend_apply (delayed);
2276     }
2277 }
2278
2279 /**
2280  * g_settings_revert:
2281  * @settings: a #GSettings instance
2282  *
2283  * Reverts all non-applied changes to the settings.  This function
2284  * does nothing unless @settings is in 'delay-apply' mode; see
2285  * g_settings_delay().  In the normal case settings are always applied
2286  * immediately.
2287  *
2288  * Change notifications will be emitted for affected keys.
2289  **/
2290 void
2291 g_settings_revert (GSettings *settings)
2292 {
2293   if (settings->priv->delayed)
2294     {
2295       GDelayedSettingsBackend *delayed;
2296
2297       delayed = G_DELAYED_SETTINGS_BACKEND (settings->priv->backend);
2298       g_delayed_settings_backend_revert (delayed);
2299     }
2300 }
2301
2302 /**
2303  * g_settings_get_has_unapplied:
2304  * @settings: a #GSettings object
2305  *
2306  * Returns whether the #GSettings object has any unapplied
2307  * changes.  This can only be the case if it is in 'delayed-apply' mode.
2308  *
2309  * Returns: %TRUE if @settings has unapplied changes
2310  *
2311  * Since: 2.26
2312  */
2313 gboolean
2314 g_settings_get_has_unapplied (GSettings *settings)
2315 {
2316   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
2317
2318   return settings->priv->delayed &&
2319          g_delayed_settings_backend_get_has_unapplied (
2320            G_DELAYED_SETTINGS_BACKEND (settings->priv->backend));
2321 }
2322
2323 /* Extra API (reset, sync, get_child, is_writable, list_*, ranges) {{{1 */
2324 /**
2325  * g_settings_reset:
2326  * @settings: a #GSettings object
2327  * @key: the name of a key
2328  *
2329  * Resets @key to its default value.
2330  *
2331  * This call resets the key, as much as possible, to its default value.
2332  * That might the value specified in the schema or the one set by the
2333  * administrator.
2334  **/
2335 void
2336 g_settings_reset (GSettings *settings,
2337                   const gchar *key)
2338 {
2339   gchar *path;
2340
2341   g_return_if_fail (G_IS_SETTINGS (settings));
2342   g_return_if_fail (key != NULL);
2343
2344   path = g_strconcat (settings->priv->path, key, NULL);
2345   g_settings_backend_reset (settings->priv->backend, path, NULL);
2346   g_free (path);
2347 }
2348
2349 /**
2350  * g_settings_sync:
2351  *
2352  * Ensures that all pending operations are complete for the default backend.
2353  *
2354  * Writes made to a #GSettings are handled asynchronously.  For this
2355  * reason, it is very unlikely that the changes have it to disk by the
2356  * time g_settings_set() returns.
2357  *
2358  * This call will block until all of the writes have made it to the
2359  * backend.  Since the mainloop is not running, no change notifications
2360  * will be dispatched during this call (but some may be queued by the
2361  * time the call is done).
2362  **/
2363 void
2364 g_settings_sync (void)
2365 {
2366   g_settings_backend_sync_default ();
2367 }
2368
2369 /**
2370  * g_settings_is_writable:
2371  * @settings: a #GSettings object
2372  * @name: the name of a key
2373  *
2374  * Finds out if a key can be written or not
2375  *
2376  * Returns: %TRUE if the key @name is writable
2377  *
2378  * Since: 2.26
2379  */
2380 gboolean
2381 g_settings_is_writable (GSettings   *settings,
2382                         const gchar *name)
2383 {
2384   gboolean writable;
2385   gchar *path;
2386
2387   g_return_val_if_fail (G_IS_SETTINGS (settings), FALSE);
2388
2389   path = g_strconcat (settings->priv->path, name, NULL);
2390   writable = g_settings_backend_get_writable (settings->priv->backend, path);
2391   g_free (path);
2392
2393   return writable;
2394 }
2395
2396 /**
2397  * g_settings_get_child:
2398  * @settings: a #GSettings object
2399  * @name: the name of the child schema
2400  *
2401  * Creates a child settings object which has a base path of
2402  * `base-path/@name`, where `base-path` is the base path of
2403  * @settings.
2404  *
2405  * The schema for the child settings object must have been declared
2406  * in the schema of @settings using a <child> element.
2407  *
2408  * Returns: (transfer full): a 'child' settings object
2409  *
2410  * Since: 2.26
2411  */
2412 GSettings *
2413 g_settings_get_child (GSettings   *settings,
2414                       const gchar *name)
2415 {
2416   const gchar *child_schema;
2417   gchar *child_path;
2418   gchar *child_name;
2419   GSettings *child;
2420
2421   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
2422
2423   child_name = g_strconcat (name, "/", NULL);
2424   child_schema = g_settings_schema_get_string (settings->priv->schema,
2425                                                child_name);
2426   if (child_schema == NULL)
2427     g_error ("Schema '%s' has no child '%s'",
2428              g_settings_schema_get_id (settings->priv->schema), name);
2429
2430   child_path = g_strconcat (settings->priv->path, child_name, NULL);
2431   child = g_object_new (G_TYPE_SETTINGS,
2432                         "backend", settings->priv->backend,
2433                         "schema-id", child_schema,
2434                         "path", child_path,
2435                         NULL);
2436   g_free (child_path);
2437   g_free (child_name);
2438
2439   return child;
2440 }
2441
2442 /**
2443  * g_settings_list_keys:
2444  * @settings: a #GSettings object
2445  *
2446  * Introspects the list of keys on @settings.
2447  *
2448  * You should probably not be calling this function from "normal" code
2449  * (since you should already know what keys are in your schema).  This
2450  * function is intended for introspection reasons.
2451  *
2452  * You should free the return value with g_strfreev() when you are done
2453  * with it.
2454  *
2455  * Returns: (transfer full) (element-type utf8): a list of the keys on @settings
2456  */
2457 gchar **
2458 g_settings_list_keys (GSettings *settings)
2459 {
2460   return g_settings_schema_list_keys (settings->priv->schema);
2461 }
2462
2463 /**
2464  * g_settings_list_children:
2465  * @settings: a #GSettings object
2466  *
2467  * Gets the list of children on @settings.
2468  *
2469  * The list is exactly the list of strings for which it is not an error
2470  * to call g_settings_get_child().
2471  *
2472  * For GSettings objects that are lists, this value can change at any
2473  * time. Note that there is a race condition here: you may
2474  * request a child after listing it only for it to have been destroyed
2475  * in the meantime.  For this reason, g_settings_get_child() may return
2476  * %NULL even for a child that was listed by this function.
2477  *
2478  * For GSettings objects that are not lists, you should probably not be
2479  * calling this function from "normal" code (since you should already
2480  * know what children are in your schema).  This function may still be
2481  * useful there for introspection reasons, however.
2482  *
2483  * You should free the return value with g_strfreev() when you are done
2484  * with it.
2485  *
2486  * Returns: (transfer full) (element-type utf8): a list of the children on @settings
2487  */
2488 gchar **
2489 g_settings_list_children (GSettings *settings)
2490 {
2491   return g_settings_schema_list_children (settings->priv->schema);
2492 }
2493
2494 /**
2495  * g_settings_get_range:
2496  * @settings: a #GSettings
2497  * @key: the key to query the range of
2498  *
2499  * Queries the range of a key.
2500  *
2501  * Since: 2.28
2502  *
2503  * Deprecated:2.40:Use g_settings_schema_key_get_range() instead.
2504  **/
2505 GVariant *
2506 g_settings_get_range (GSettings   *settings,
2507                       const gchar *key)
2508 {
2509   GSettingsSchemaKey skey;
2510   GVariant *range;
2511
2512   g_settings_schema_key_init (&skey, settings->priv->schema, key);
2513   range = g_settings_schema_key_get_range (&skey);
2514   g_settings_schema_key_clear (&skey);
2515
2516   return range;
2517 }
2518
2519 /**
2520  * g_settings_range_check:
2521  * @settings: a #GSettings
2522  * @key: the key to check
2523  * @value: the value to check
2524  *
2525  * Checks if the given @value is of the correct type and within the
2526  * permitted range for @key.
2527  *
2528  * Returns: %TRUE if @value is valid for @key
2529  *
2530  * Since: 2.28
2531  *
2532  * Deprecated:2.40:Use g_settings_schema_key_range_check() instead.
2533  **/
2534 gboolean
2535 g_settings_range_check (GSettings   *settings,
2536                         const gchar *key,
2537                         GVariant    *value)
2538 {
2539   GSettingsSchemaKey skey;
2540   gboolean good;
2541
2542   g_settings_schema_key_init (&skey, settings->priv->schema, key);
2543   good = g_settings_schema_key_range_check (&skey, value);
2544   g_settings_schema_key_clear (&skey);
2545
2546   return good;
2547 }
2548
2549 /* Binding {{{1 */
2550 typedef struct
2551 {
2552   GSettingsSchemaKey key;
2553   GSettings *settings;
2554   GObject *object;
2555
2556   GSettingsBindGetMapping get_mapping;
2557   GSettingsBindSetMapping set_mapping;
2558   gpointer user_data;
2559   GDestroyNotify destroy;
2560
2561   guint writable_handler_id;
2562   guint property_handler_id;
2563   const GParamSpec *property;
2564   guint key_handler_id;
2565
2566   /* prevent recursion */
2567   gboolean running;
2568 } GSettingsBinding;
2569
2570 static void
2571 g_settings_binding_free (gpointer data)
2572 {
2573   GSettingsBinding *binding = data;
2574
2575   g_assert (!binding->running);
2576
2577   if (binding->writable_handler_id)
2578     g_signal_handler_disconnect (binding->settings,
2579                                  binding->writable_handler_id);
2580
2581   if (binding->key_handler_id)
2582     g_signal_handler_disconnect (binding->settings,
2583                                  binding->key_handler_id);
2584
2585   if (g_signal_handler_is_connected (binding->object,
2586                                      binding->property_handler_id))
2587   g_signal_handler_disconnect (binding->object,
2588                                binding->property_handler_id);
2589
2590   g_settings_schema_key_clear (&binding->key);
2591
2592   if (binding->destroy)
2593     binding->destroy (binding->user_data);
2594
2595   g_object_unref (binding->settings);
2596
2597   g_slice_free (GSettingsBinding, binding);
2598 }
2599
2600 static GQuark
2601 g_settings_binding_quark (const char *property)
2602 {
2603   GQuark quark;
2604   gchar *tmp;
2605
2606   tmp = g_strdup_printf ("gsettingsbinding-%s", property);
2607   quark = g_quark_from_string (tmp);
2608   g_free (tmp);
2609
2610   return quark;
2611 }
2612
2613 static void
2614 g_settings_binding_key_changed (GSettings   *settings,
2615                                 const gchar *key,
2616                                 gpointer     user_data)
2617 {
2618   GSettingsBinding *binding = user_data;
2619   GValue value = G_VALUE_INIT;
2620   GVariant *variant;
2621
2622   g_assert (settings == binding->settings);
2623   g_assert (key == binding->key.name);
2624
2625   if (binding->running)
2626     return;
2627
2628   binding->running = TRUE;
2629
2630   g_value_init (&value, binding->property->value_type);
2631
2632   variant = g_settings_read_from_backend (binding->settings, &binding->key, FALSE, FALSE);
2633   if (variant && !binding->get_mapping (&value, variant, binding->user_data))
2634     {
2635       /* silently ignore errors in the user's config database */
2636       g_variant_unref (variant);
2637       variant = NULL;
2638     }
2639
2640   if (variant == NULL)
2641     {
2642       variant = g_settings_schema_key_get_translated_default (&binding->key);
2643       if (variant &&
2644           !binding->get_mapping (&value, variant, binding->user_data))
2645         {
2646           /* flag translation errors with a warning */
2647           g_warning ("Translated default '%s' for key '%s' in schema '%s' "
2648                      "was rejected by the binding mapping function",
2649                      binding->key.unparsed, binding->key.name,
2650                      g_settings_schema_get_id (binding->key.schema));
2651           g_variant_unref (variant);
2652           variant = NULL;
2653         }
2654     }
2655
2656   if (variant == NULL)
2657     {
2658       variant = g_settings_schema_key_get_per_desktop_default (&binding->key);
2659       if (variant &&
2660           !binding->get_mapping (&value, variant, binding->user_data))
2661         {
2662           g_error ("Per-desktop default value for key '%s' in schema '%s' "
2663                    "was rejected by the binding mapping function.",
2664                    binding->key.name, g_settings_schema_get_id (binding->key.schema));
2665           g_variant_unref (variant);
2666           variant = NULL;
2667         }
2668     }
2669
2670   if (variant == NULL)
2671     {
2672       variant = g_variant_ref (binding->key.default_value);
2673       if (!binding->get_mapping (&value, variant, binding->user_data))
2674         g_error ("The schema default value for key '%s' in schema '%s' "
2675                  "was rejected by the binding mapping function.",
2676                  binding->key.name, g_settings_schema_get_id (binding->key.schema));
2677     }
2678
2679   g_object_set_property (binding->object, binding->property->name, &value);
2680   g_variant_unref (variant);
2681   g_value_unset (&value);
2682
2683   binding->running = FALSE;
2684 }
2685
2686 static void
2687 g_settings_binding_property_changed (GObject          *object,
2688                                      const GParamSpec *pspec,
2689                                      gpointer          user_data)
2690 {
2691   GSettingsBinding *binding = user_data;
2692   GValue value = G_VALUE_INIT;
2693   GVariant *variant;
2694   gboolean valid = TRUE;
2695
2696   g_assert (object == binding->object);
2697   g_assert (pspec == binding->property);
2698
2699   if (binding->running)
2700     return;
2701
2702   binding->running = TRUE;
2703
2704   g_value_init (&value, pspec->value_type);
2705   g_object_get_property (object, pspec->name, &value);
2706   if ((variant = binding->set_mapping (&value, binding->key.type,
2707                                        binding->user_data)))
2708     {
2709       g_variant_take_ref (variant);
2710
2711       if (!g_settings_schema_key_type_check (&binding->key, variant))
2712         {
2713           gchar *type_str;
2714           type_str = g_variant_type_dup_string (binding->key.type);
2715           g_critical ("binding mapping function for key '%s' returned "
2716                       "GVariant of type '%s' when type '%s' was requested",
2717                       binding->key.name, g_variant_get_type_string (variant),
2718                       type_str);
2719           g_free (type_str);
2720           valid = FALSE;
2721         }
2722
2723       if (valid && !g_settings_schema_key_range_check (&binding->key, variant))
2724         {
2725           gchar *variant_str;
2726           variant_str = g_variant_print (variant, TRUE);
2727           g_critical ("GObject property '%s' on a '%s' object is out of "
2728                       "schema-specified range for key '%s' of '%s': %s",
2729                       binding->property->name, g_type_name (binding->property->owner_type),
2730                       binding->key.name, g_settings_schema_get_id (binding->key.schema),
2731                       variant_str);
2732           g_free (variant_str);
2733           valid = FALSE;
2734         }
2735
2736       if (valid)
2737         {
2738           g_settings_write_to_backend (binding->settings, &binding->key, variant);
2739         }
2740       g_variant_unref (variant);
2741     }
2742   g_value_unset (&value);
2743
2744   binding->running = FALSE;
2745 }
2746
2747 static gboolean
2748 g_settings_bind_invert_boolean_get_mapping (GValue   *value,
2749                                             GVariant *variant,
2750                                             gpointer  user_data)
2751 {
2752   g_value_set_boolean (value, !g_variant_get_boolean (variant));
2753   return TRUE;
2754 }
2755
2756 static GVariant *
2757 g_settings_bind_invert_boolean_set_mapping (const GValue       *value,
2758                                             const GVariantType *expected_type,
2759                                             gpointer            user_data)
2760 {
2761   return g_variant_new_boolean (!g_value_get_boolean (value));
2762 }
2763
2764 /**
2765  * g_settings_bind:
2766  * @settings: a #GSettings object
2767  * @key: the key to bind
2768  * @object: (type GObject.Object): a #GObject
2769  * @property: the name of the property to bind
2770  * @flags: flags for the binding
2771  *
2772  * Create a binding between the @key in the @settings object
2773  * and the property @property of @object.
2774  *
2775  * The binding uses the default GIO mapping functions to map
2776  * between the settings and property values. These functions
2777  * handle booleans, numeric types and string types in a
2778  * straightforward way. Use g_settings_bind_with_mapping() if
2779  * you need a custom mapping, or map between types that are not
2780  * supported by the default mapping functions.
2781  *
2782  * Unless the @flags include %G_SETTINGS_BIND_NO_SENSITIVITY, this
2783  * function also establishes a binding between the writability of
2784  * @key and the "sensitive" property of @object (if @object has
2785  * a boolean property by that name). See g_settings_bind_writable()
2786  * for more details about writable bindings.
2787  *
2788  * Note that the lifecycle of the binding is tied to @object,
2789  * and that you can have only one binding per object property.
2790  * If you bind the same property twice on the same object, the second
2791  * binding overrides the first one.
2792  *
2793  * Since: 2.26
2794  */
2795 void
2796 g_settings_bind (GSettings          *settings,
2797                  const gchar        *key,
2798                  gpointer            object,
2799                  const gchar        *property,
2800                  GSettingsBindFlags  flags)
2801 {
2802   GSettingsBindGetMapping get_mapping = NULL;
2803   GSettingsBindSetMapping set_mapping = NULL;
2804
2805   if (flags & G_SETTINGS_BIND_INVERT_BOOLEAN)
2806     {
2807       get_mapping = g_settings_bind_invert_boolean_get_mapping;
2808       set_mapping = g_settings_bind_invert_boolean_set_mapping;
2809
2810       /* can't pass this flag to g_settings_bind_with_mapping() */
2811       flags &= ~G_SETTINGS_BIND_INVERT_BOOLEAN;
2812     }
2813
2814   g_settings_bind_with_mapping (settings, key, object, property, flags,
2815                                 get_mapping, set_mapping, NULL, NULL);
2816 }
2817
2818 /**
2819  * g_settings_bind_with_mapping: (skip)
2820  * @settings: a #GSettings object
2821  * @key: the key to bind
2822  * @object: (type GObject.Object): a #GObject
2823  * @property: the name of the property to bind
2824  * @flags: flags for the binding
2825  * @get_mapping: a function that gets called to convert values
2826  *     from @settings to @object, or %NULL to use the default GIO mapping
2827  * @set_mapping: a function that gets called to convert values
2828  *     from @object to @settings, or %NULL to use the default GIO mapping
2829  * @user_data: data that gets passed to @get_mapping and @set_mapping
2830  * @destroy: #GDestroyNotify function for @user_data
2831  *
2832  * Create a binding between the @key in the @settings object
2833  * and the property @property of @object.
2834  *
2835  * The binding uses the provided mapping functions to map between
2836  * settings and property values.
2837  *
2838  * Note that the lifecycle of the binding is tied to @object,
2839  * and that you can have only one binding per object property.
2840  * If you bind the same property twice on the same object, the second
2841  * binding overrides the first one.
2842  *
2843  * Since: 2.26
2844  */
2845 void
2846 g_settings_bind_with_mapping (GSettings               *settings,
2847                               const gchar             *key,
2848                               gpointer                 object,
2849                               const gchar             *property,
2850                               GSettingsBindFlags       flags,
2851                               GSettingsBindGetMapping  get_mapping,
2852                               GSettingsBindSetMapping  set_mapping,
2853                               gpointer                 user_data,
2854                               GDestroyNotify           destroy)
2855 {
2856   GSettingsBinding *binding;
2857   GObjectClass *objectclass;
2858   gchar *detailed_signal;
2859   GQuark binding_quark;
2860
2861   g_return_if_fail (G_IS_SETTINGS (settings));
2862   g_return_if_fail (key != NULL);
2863   g_return_if_fail (G_IS_OBJECT (object));
2864   g_return_if_fail (property != NULL);
2865   g_return_if_fail (~flags & G_SETTINGS_BIND_INVERT_BOOLEAN);
2866
2867   objectclass = G_OBJECT_GET_CLASS (object);
2868
2869   binding = g_slice_new0 (GSettingsBinding);
2870   g_settings_schema_key_init (&binding->key, settings->priv->schema, key);
2871   binding->settings = g_object_ref (settings);
2872   binding->object = object;
2873   binding->property = g_object_class_find_property (objectclass, property);
2874   binding->user_data = user_data;
2875   binding->destroy = destroy;
2876   binding->get_mapping = get_mapping ? get_mapping : g_settings_get_mapping;
2877   binding->set_mapping = set_mapping ? set_mapping : g_settings_set_mapping;
2878
2879   if (!(flags & (G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET)))
2880     flags |= G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET;
2881
2882   if (binding->property == NULL)
2883     {
2884       g_critical ("g_settings_bind: no property '%s' on class '%s'",
2885                   property, G_OBJECT_TYPE_NAME (object));
2886       return;
2887     }
2888
2889   if ((flags & G_SETTINGS_BIND_GET) &&
2890       (binding->property->flags & G_PARAM_WRITABLE) == 0)
2891     {
2892       g_critical ("g_settings_bind: property '%s' on class '%s' is not "
2893                   "writable", binding->property->name, G_OBJECT_TYPE_NAME (object));
2894       return;
2895     }
2896   if ((flags & G_SETTINGS_BIND_SET) &&
2897       (binding->property->flags & G_PARAM_READABLE) == 0)
2898     {
2899       g_critical ("g_settings_bind: property '%s' on class '%s' is not "
2900                   "readable", binding->property->name, G_OBJECT_TYPE_NAME (object));
2901       return;
2902     }
2903
2904   if (get_mapping == g_settings_bind_invert_boolean_get_mapping)
2905     {
2906       /* g_settings_bind_invert_boolean_get_mapping() is a private
2907        * function, so if we are here it means that g_settings_bind() was
2908        * called with G_SETTINGS_BIND_INVERT_BOOLEAN.
2909        *
2910        * Ensure that both sides are boolean.
2911        */
2912
2913       if (binding->property->value_type != G_TYPE_BOOLEAN)
2914         {
2915           g_critical ("g_settings_bind: G_SETTINGS_BIND_INVERT_BOOLEAN "
2916                       "was specified, but property '%s' on type '%s' has "
2917                       "type '%s'", binding->property->name, G_OBJECT_TYPE_NAME (object),
2918                       g_type_name ((binding->property->value_type)));
2919           return;
2920         }
2921
2922       if (!g_variant_type_equal (binding->key.type, G_VARIANT_TYPE_BOOLEAN))
2923         {
2924           gchar *type_string = g_variant_type_dup_string (binding->key.type);
2925           g_critical ("g_settings_bind: G_SETTINGS_BIND_INVERT_BOOLEAN "
2926                       "was specified, but key '%s' on schema '%s' has "
2927                       "type '%s'", key, g_settings_schema_get_id (settings->priv->schema),
2928                       type_string);
2929           g_free (type_string);
2930           return;
2931         }
2932
2933     }
2934
2935   else if (((get_mapping == NULL && (flags & G_SETTINGS_BIND_GET)) ||
2936             (set_mapping == NULL && (flags & G_SETTINGS_BIND_SET))) &&
2937            !g_settings_mapping_is_compatible (binding->property->value_type,
2938                                               binding->key.type))
2939     {
2940       gchar *type_string = g_variant_type_dup_string (binding->key.type);
2941       g_critical ("g_settings_bind: property '%s' on class '%s' has type "
2942                   "'%s' which is not compatible with type '%s' of key '%s' "
2943                   "on schema '%s'", binding->property->name, G_OBJECT_TYPE_NAME (object),
2944                   g_type_name (binding->property->value_type),
2945                   type_string, key,
2946                   g_settings_schema_get_id (settings->priv->schema));
2947       g_free (type_string);
2948       return;
2949     }
2950
2951   if ((flags & G_SETTINGS_BIND_SET) &&
2952       (~flags & G_SETTINGS_BIND_NO_SENSITIVITY))
2953     {
2954       GParamSpec *sensitive;
2955
2956       sensitive = g_object_class_find_property (objectclass, "sensitive");
2957
2958       if (sensitive && sensitive->value_type == G_TYPE_BOOLEAN &&
2959           (sensitive->flags & G_PARAM_WRITABLE))
2960         g_settings_bind_writable (settings, binding->key.name, object, "sensitive", FALSE);
2961     }
2962
2963   if (flags & G_SETTINGS_BIND_SET)
2964     {
2965       detailed_signal = g_strdup_printf ("notify::%s", binding->property->name);
2966       binding->property_handler_id =
2967         g_signal_connect (object, detailed_signal,
2968                           G_CALLBACK (g_settings_binding_property_changed),
2969                           binding);
2970       g_free (detailed_signal);
2971
2972       if (~flags & G_SETTINGS_BIND_GET)
2973         g_settings_binding_property_changed (object,
2974                                              binding->property,
2975                                              binding);
2976     }
2977
2978   if (flags & G_SETTINGS_BIND_GET)
2979     {
2980       if (~flags & G_SETTINGS_BIND_GET_NO_CHANGES)
2981         {
2982           detailed_signal = g_strdup_printf ("changed::%s", key);
2983           binding->key_handler_id =
2984             g_signal_connect (settings, detailed_signal,
2985                               G_CALLBACK (g_settings_binding_key_changed),
2986                               binding);
2987           g_free (detailed_signal);
2988         }
2989
2990       g_settings_binding_key_changed (settings, binding->key.name, binding);
2991     }
2992
2993   binding_quark = g_settings_binding_quark (binding->property->name);
2994   g_object_set_qdata_full (object, binding_quark,
2995                            binding, g_settings_binding_free);
2996 }
2997
2998 /* Writability binding {{{1 */
2999 typedef struct
3000 {
3001   GSettings *settings;
3002   gpointer object;
3003   const gchar *key;
3004   const gchar *property;
3005   gboolean inverted;
3006   gulong handler_id;
3007 } GSettingsWritableBinding;
3008
3009 static void
3010 g_settings_writable_binding_free (gpointer data)
3011 {
3012   GSettingsWritableBinding *binding = data;
3013
3014   g_signal_handler_disconnect (binding->settings, binding->handler_id);
3015   g_object_unref (binding->settings);
3016   g_slice_free (GSettingsWritableBinding, binding);
3017 }
3018
3019 static void
3020 g_settings_binding_writable_changed (GSettings   *settings,
3021                                      const gchar *key,
3022                                      gpointer     user_data)
3023 {
3024   GSettingsWritableBinding *binding = user_data;
3025   gboolean writable;
3026
3027   g_assert (settings == binding->settings);
3028   g_assert (key == binding->key);
3029
3030   writable = g_settings_is_writable (settings, key);
3031
3032   if (binding->inverted)
3033     writable = !writable;
3034
3035   g_object_set (binding->object, binding->property, writable, NULL);
3036 }
3037
3038 /**
3039  * g_settings_bind_writable:
3040  * @settings: a #GSettings object
3041  * @key: the key to bind
3042  * @object: (type GObject.Object):a #GObject
3043  * @property: the name of a boolean property to bind
3044  * @inverted: whether to 'invert' the value
3045  *
3046  * Create a binding between the writability of @key in the
3047  * @settings object and the property @property of @object.
3048  * The property must be boolean; "sensitive" or "visible"
3049  * properties of widgets are the most likely candidates.
3050  *
3051  * Writable bindings are always uni-directional; changes of the
3052  * writability of the setting will be propagated to the object
3053  * property, not the other way.
3054  *
3055  * When the @inverted argument is %TRUE, the binding inverts the
3056  * value as it passes from the setting to the object, i.e. @property
3057  * will be set to %TRUE if the key is not writable.
3058  *
3059  * Note that the lifecycle of the binding is tied to @object,
3060  * and that you can have only one binding per object property.
3061  * If you bind the same property twice on the same object, the second
3062  * binding overrides the first one.
3063  *
3064  * Since: 2.26
3065  */
3066 void
3067 g_settings_bind_writable (GSettings   *settings,
3068                           const gchar *key,
3069                           gpointer     object,
3070                           const gchar *property,
3071                           gboolean     inverted)
3072 {
3073   GSettingsWritableBinding *binding;
3074   gchar *detailed_signal;
3075   GParamSpec *pspec;
3076
3077   g_return_if_fail (G_IS_SETTINGS (settings));
3078
3079   pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (object), property);
3080   if (pspec == NULL)
3081     {
3082       g_critical ("g_settings_bind_writable: no property '%s' on class '%s'",
3083                   property, G_OBJECT_TYPE_NAME (object));
3084       return;
3085     }
3086   if ((pspec->flags & G_PARAM_WRITABLE) == 0)
3087     {
3088       g_critical ("g_settings_bind_writable: property '%s' on class '%s' is not writable",
3089                   property, G_OBJECT_TYPE_NAME (object));
3090       return;
3091     }
3092
3093   binding = g_slice_new (GSettingsWritableBinding);
3094   binding->settings = g_object_ref (settings);
3095   binding->object = object;
3096   binding->key = g_intern_string (key);
3097   binding->property = g_intern_string (property);
3098   binding->inverted = inverted;
3099
3100   detailed_signal = g_strdup_printf ("writable-changed::%s", key);
3101   binding->handler_id =
3102     g_signal_connect (settings, detailed_signal,
3103                       G_CALLBACK (g_settings_binding_writable_changed),
3104                       binding);
3105   g_free (detailed_signal);
3106
3107   g_object_set_qdata_full (object, g_settings_binding_quark (property),
3108                            binding, g_settings_writable_binding_free);
3109
3110   g_settings_binding_writable_changed (settings, binding->key, binding);
3111 }
3112
3113 /**
3114  * g_settings_unbind:
3115  * @object: (type GObject.Object): the object
3116  * @property: the property whose binding is removed
3117  *
3118  * Removes an existing binding for @property on @object.
3119  *
3120  * Note that bindings are automatically removed when the
3121  * object is finalized, so it is rarely necessary to call this
3122  * function.
3123  *
3124  * Since: 2.26
3125  */
3126 void
3127 g_settings_unbind (gpointer     object,
3128                    const gchar *property)
3129 {
3130   GQuark binding_quark;
3131
3132   binding_quark = g_settings_binding_quark (property);
3133   g_object_set_qdata (object, binding_quark, NULL);
3134 }
3135
3136 /* GAction {{{1 */
3137
3138 typedef struct
3139 {
3140   GObject parent_instance;
3141
3142   GSettingsSchemaKey key;
3143   GSettings *settings;
3144 } GSettingsAction;
3145
3146 typedef GObjectClass GSettingsActionClass;
3147
3148 static GType g_settings_action_get_type (void);
3149 static void g_settings_action_iface_init (GActionInterface *iface);
3150 G_DEFINE_TYPE_WITH_CODE (GSettingsAction, g_settings_action, G_TYPE_OBJECT,
3151                          G_IMPLEMENT_INTERFACE (G_TYPE_ACTION, g_settings_action_iface_init))
3152
3153 enum
3154 {
3155   ACTION_PROP_0,
3156   ACTION_PROP_NAME,
3157   ACTION_PROP_PARAMETER_TYPE,
3158   ACTION_PROP_ENABLED,
3159   ACTION_PROP_STATE_TYPE,
3160   ACTION_PROP_STATE
3161 };
3162
3163 static const gchar *
3164 g_settings_action_get_name (GAction *action)
3165 {
3166   GSettingsAction *gsa = (GSettingsAction *) action;
3167
3168   return gsa->key.name;
3169 }
3170
3171 static const GVariantType *
3172 g_settings_action_get_parameter_type (GAction *action)
3173 {
3174   GSettingsAction *gsa = (GSettingsAction *) action;
3175   const GVariantType *type;
3176
3177   type = g_variant_get_type (gsa->key.default_value);
3178   if (g_variant_type_equal (type, G_VARIANT_TYPE_BOOLEAN))
3179     type = NULL;
3180
3181   return type;
3182 }
3183
3184 static gboolean
3185 g_settings_action_get_enabled (GAction *action)
3186 {
3187   GSettingsAction *gsa = (GSettingsAction *) action;
3188
3189   return g_settings_is_writable (gsa->settings, gsa->key.name);
3190 }
3191
3192 static const GVariantType *
3193 g_settings_action_get_state_type (GAction *action)
3194 {
3195   GSettingsAction *gsa = (GSettingsAction *) action;
3196
3197   return g_variant_get_type (gsa->key.default_value);
3198 }
3199
3200 static GVariant *
3201 g_settings_action_get_state (GAction *action)
3202 {
3203   GSettingsAction *gsa = (GSettingsAction *) action;
3204   GVariant *value;
3205
3206   value = g_settings_read_from_backend (gsa->settings, &gsa->key, FALSE, FALSE);
3207
3208   if (value == NULL)
3209     value = g_settings_schema_key_get_translated_default (&gsa->key);
3210
3211   if (value == NULL)
3212     value = g_variant_ref (gsa->key.default_value);
3213
3214   return value;
3215 }
3216
3217 static GVariant *
3218 g_settings_action_get_state_hint (GAction *action)
3219 {
3220   GSettingsAction *gsa = (GSettingsAction *) action;
3221
3222   /* no point in reimplementing this... */
3223   return g_settings_schema_key_get_range (&gsa->key);
3224 }
3225
3226 static void
3227 g_settings_action_change_state (GAction  *action,
3228                                 GVariant *value)
3229 {
3230   GSettingsAction *gsa = (GSettingsAction *) action;
3231
3232   if (g_settings_schema_key_type_check (&gsa->key, value) && g_settings_schema_key_range_check (&gsa->key, value))
3233     g_settings_write_to_backend (gsa->settings, &gsa->key, value);
3234 }
3235
3236 static void
3237 g_settings_action_activate (GAction  *action,
3238                             GVariant *parameter)
3239 {
3240   GSettingsAction *gsa = (GSettingsAction *) action;
3241
3242   if (g_variant_is_of_type (gsa->key.default_value, G_VARIANT_TYPE_BOOLEAN))
3243     {
3244       GVariant *old;
3245
3246       if (parameter != NULL)
3247         return;
3248
3249       old = g_settings_action_get_state (action);
3250       parameter = g_variant_new_boolean (!g_variant_get_boolean (old));
3251       g_variant_unref (old);
3252     }
3253
3254   g_action_change_state (action, parameter);
3255 }
3256
3257 static void
3258 g_settings_action_get_property (GObject *object, guint prop_id,
3259                                 GValue *value, GParamSpec *pspec)
3260 {
3261   GAction *action = G_ACTION (object);
3262
3263   switch (prop_id)
3264     {
3265     case ACTION_PROP_NAME:
3266       g_value_set_string (value, g_settings_action_get_name (action));
3267       break;
3268
3269     case ACTION_PROP_PARAMETER_TYPE:
3270       g_value_set_boxed (value, g_settings_action_get_parameter_type (action));
3271       break;
3272
3273     case ACTION_PROP_ENABLED:
3274       g_value_set_boolean (value, g_settings_action_get_enabled (action));
3275       break;
3276
3277     case ACTION_PROP_STATE_TYPE:
3278       g_value_set_boxed (value, g_settings_action_get_state_type (action));
3279       break;
3280
3281     case ACTION_PROP_STATE:
3282       g_value_set_variant (value, g_settings_action_get_state (action));
3283       break;
3284
3285     default:
3286       g_assert_not_reached ();
3287     }
3288 }
3289
3290 static void
3291 g_settings_action_finalize (GObject *object)
3292 {
3293   GSettingsAction *gsa = (GSettingsAction *) object;
3294
3295   g_signal_handlers_disconnect_by_data (gsa->settings, gsa);
3296   g_object_unref (gsa->settings);
3297   g_settings_schema_key_clear (&gsa->key);
3298
3299   G_OBJECT_CLASS (g_settings_action_parent_class)
3300     ->finalize (object);
3301 }
3302
3303 static void
3304 g_settings_action_init (GSettingsAction *gsa)
3305 {
3306 }
3307
3308 static void
3309 g_settings_action_iface_init (GActionInterface *iface)
3310 {
3311   iface->get_name = g_settings_action_get_name;
3312   iface->get_parameter_type = g_settings_action_get_parameter_type;
3313   iface->get_enabled = g_settings_action_get_enabled;
3314   iface->get_state_type = g_settings_action_get_state_type;
3315   iface->get_state = g_settings_action_get_state;
3316   iface->get_state_hint = g_settings_action_get_state_hint;
3317   iface->change_state = g_settings_action_change_state;
3318   iface->activate = g_settings_action_activate;
3319 }
3320
3321 static void
3322 g_settings_action_class_init (GSettingsActionClass *class)
3323 {
3324   class->get_property = g_settings_action_get_property;
3325   class->finalize = g_settings_action_finalize;
3326
3327   g_object_class_override_property (class, ACTION_PROP_NAME, "name");
3328   g_object_class_override_property (class, ACTION_PROP_PARAMETER_TYPE, "parameter-type");
3329   g_object_class_override_property (class, ACTION_PROP_ENABLED, "enabled");
3330   g_object_class_override_property (class, ACTION_PROP_STATE_TYPE, "state-type");
3331   g_object_class_override_property (class, ACTION_PROP_STATE, "state");
3332 }
3333
3334 static void
3335 g_settings_action_changed (GSettings   *settings,
3336                            const gchar *key,
3337                            gpointer     user_data)
3338 {
3339   g_object_notify (user_data, "state");
3340 }
3341
3342 static void
3343 g_settings_action_enabled_changed (GSettings   *settings,
3344                                    const gchar *key,
3345                                    gpointer     user_data)
3346 {
3347   g_object_notify (user_data, "enabled");
3348 }
3349
3350 /**
3351  * g_settings_create_action:
3352  * @settings: a #GSettings
3353  * @key: the name of a key in @settings
3354  *
3355  * Creates a #GAction corresponding to a given #GSettings key.
3356  *
3357  * The action has the same name as the key.
3358  *
3359  * The value of the key becomes the state of the action and the action
3360  * is enabled when the key is writable.  Changing the state of the
3361  * action results in the key being written to.  Changes to the value or
3362  * writability of the key cause appropriate change notifications to be
3363  * emitted for the action.
3364  *
3365  * For boolean-valued keys, action activations take no parameter and
3366  * result in the toggling of the value.  For all other types,
3367  * activations take the new value for the key (which must have the
3368  * correct type).
3369  *
3370  * Returns: (transfer full): a new #GAction
3371  *
3372  * Since: 2.32
3373  **/
3374 GAction *
3375 g_settings_create_action (GSettings   *settings,
3376                           const gchar *key)
3377 {
3378   GSettingsAction *gsa;
3379   gchar *detailed_signal;
3380
3381   g_return_val_if_fail (G_IS_SETTINGS (settings), NULL);
3382   g_return_val_if_fail (key != NULL, NULL);
3383
3384   gsa = g_object_new (g_settings_action_get_type (), NULL);
3385   gsa->settings = g_object_ref (settings);
3386   g_settings_schema_key_init (&gsa->key, settings->priv->schema, key);
3387
3388   detailed_signal = g_strdup_printf ("changed::%s", key);
3389   g_signal_connect (settings, detailed_signal, G_CALLBACK (g_settings_action_changed), gsa);
3390   g_free (detailed_signal);
3391   detailed_signal = g_strdup_printf ("writable-changed::%s", key);
3392   g_signal_connect (settings, detailed_signal, G_CALLBACK (g_settings_action_enabled_changed), gsa);
3393   g_free (detailed_signal);
3394
3395   return G_ACTION (gsa);
3396 }
3397
3398 /* Epilogue {{{1 */
3399
3400 /* vim:set foldmethod=marker: */