[gsettings] Add g_return_*_if_fail() guards in GSettingsBackend
[platform/upstream/glib.git] / gio / gsettingsbackend.c
1 /*
2  * Copyright © 2009, 2010 Codethink Limited
3  * Copyright © 2010 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the licence, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Authors: Ryan Lortie <desrt@desrt.ca>
21  *          Matthias Clasen <mclasen@redhat.com>
22  */
23
24 #include "config.h"
25
26 #include "gsettingsbackendinternal.h"
27 #include "gnullsettingsbackend.h"
28 #include "giomodule-priv.h"
29 #include "gio-marshal.h"
30
31 #include <string.h>
32 #include <stdlib.h>
33 #include <glib.h>
34 #include <glibintl.h>
35
36 #include "gioalias.h"
37
38 G_DEFINE_ABSTRACT_TYPE (GSettingsBackend, g_settings_backend, G_TYPE_OBJECT)
39
40 typedef struct _GSettingsBackendWatch GSettingsBackendWatch;
41
42 struct _GSettingsBackendPrivate
43 {
44   GSettingsBackendWatch *watches;
45   gchar *context;
46 };
47
48 enum
49 {
50   PROP_0,
51   PROP_CONTEXT
52 };
53
54 /**
55  * SECTION:gsettingsbackend
56  * @title: GSettingsBackend
57  * @short_description: an interface for settings backend implementations
58  * @include: gio/gsettingsbackend.h
59  * @see_also: #GSettings, #GIOExtensionPoint
60  *
61  * The #GSettingsBackend interface defines a generic interface for
62  * non-strictly-typed data that is stored in a hierarchy. To implement
63  * an alternative storage backend for #GSettings, you need to implement
64  * the #GSettingsBackend interface and then make it implement the
65  * extension point #G_SETTINGS_BACKEND_EXTENSION_POINT_NAME.
66  *
67  * The interface defines methods for reading and writing values, a
68  * method for determining if writing of certain values will fail
69  * (lockdown) and a change notification mechanism.
70  *
71  * The semantics of the interface are very precisely defined and
72  * implementations must carefully adhere to the expectations of
73  * callers that are documented on each of the interface methods.
74  *
75  * Some of the GSettingsBackend functions accept or return a #GTree.
76  * These trees always have strings as keys and #GVariant as values.
77  * g_settings_backend_create_tree() is a convenience function to create
78  * suitable trees.
79  *
80  * <note><para>
81  * The #GSettingsBackend API is exported to allow third-party
82  * implementations, but does not carry the same stability guarantees
83  * as the public GIO API. For this reason, you have to define the
84  * C preprocessor symbol #G_SETTINGS_ENABLE_BACKEND before including
85  * <filename>gio/gsettingsbackend.h</filename>
86  * </para></note>
87  **/
88
89 struct _GSettingsBackendWatch
90 {
91   GSettingsBackendChangedFunc              changed;
92   GSettingsBackendPathChangedFunc          path_changed;
93   GSettingsBackendKeysChangedFunc          keys_changed;
94   GSettingsBackendWritableChangedFunc      writable_changed;
95   GSettingsBackendPathWritableChangedFunc  path_writable_changed;
96   gpointer                                 user_data;
97
98   GSettingsBackendWatch                   *next;
99 };
100
101 void
102 g_settings_backend_watch (GSettingsBackend                        *backend,
103                           GSettingsBackendChangedFunc              changed,
104                           GSettingsBackendPathChangedFunc          path_changed,
105                           GSettingsBackendKeysChangedFunc          keys_changed,
106                           GSettingsBackendWritableChangedFunc      writable_changed,
107                           GSettingsBackendPathWritableChangedFunc  path_writable_changed,
108                           gpointer                                 user_data)
109 {
110   GSettingsBackendWatch *watch;
111
112   watch = g_slice_new (GSettingsBackendWatch);
113   watch->changed = changed;
114   watch->path_changed = path_changed;
115   watch->keys_changed = keys_changed;
116   watch->writable_changed = writable_changed;
117   watch->path_writable_changed = path_writable_changed;
118   watch->user_data = user_data;
119
120   watch->next = backend->priv->watches;
121   backend->priv->watches = watch;
122 }
123
124 void
125 g_settings_backend_unwatch (GSettingsBackend *backend,
126                             gpointer          user_data)
127 {
128   GSettingsBackendWatch **ptr;
129
130   for (ptr = &backend->priv->watches; *ptr; ptr = &(*ptr)->next)
131     if ((*ptr)->user_data == user_data)
132       {
133         GSettingsBackendWatch *tmp = *ptr;
134
135         *ptr = tmp->next;
136         g_slice_free (GSettingsBackendWatch, tmp);
137
138         return;
139       }
140
141   g_assert_not_reached ();
142 }
143
144 static gboolean
145 is_key (const gchar *key)
146 {
147   gint length;
148   gint i;
149
150   g_return_val_if_fail (key != NULL, FALSE);
151   g_return_val_if_fail (key[0] == '/', FALSE);
152
153   for (i = 1; key[i]; i++)
154     g_return_val_if_fail (key[i] != '/' || key[i + 1] != '/', FALSE);
155
156   length = i;
157
158   g_return_val_if_fail (key[length - 1] != '/', FALSE);
159
160   return TRUE;
161 }
162
163 static gboolean
164 is_path (const gchar *path)
165 {
166   gint length;
167   gint i;
168
169   g_return_val_if_fail (path != NULL, FALSE);
170   g_return_val_if_fail (path[0] == '/', FALSE);
171
172   for (i = 1; path[i]; i++)
173     g_return_val_if_fail (path[i] != '/' || path[i + 1] != '/', FALSE);
174
175   length = i;
176
177   g_return_val_if_fail (path[length - 1] == '/', FALSE);
178
179   return TRUE;
180 }
181
182 /**
183  * g_settings_backend_changed:
184  * @backend: a #GSettingsBackend implementation
185  * @key: the name of the key
186  * @origin_tag: the origin tag
187  *
188  * Signals that a single key has possibly changed.  Backend
189  * implementations should call this if a key has possibly changed its
190  * value.
191  *
192  * @key must be a valid key (ie: starting with a slash, not containing
193  * '//', and not ending with a slash).
194  *
195  * The implementation must call this function during any call to
196  * g_settings_backend_write(), before the call returns (except in the
197  * case that no keys are actually changed and it cares to detect this
198  * fact).  It may not rely on the existence of a mainloop for
199  * dispatching the signal later.
200  *
201  * The implementation may call this function at any other time it likes
202  * in response to other events (such as changes occuring outside of the
203  * program).  These calls may originate from a mainloop or may originate
204  * in response to any other action (including from calls to
205  * g_settings_backend_write()).
206  *
207  * In the case that this call is in response to a call to
208  * g_settings_backend_write() then @origin_tag must be set to the same
209  * value that was passed to that call.
210  *
211  * Since: 2.26
212  **/
213 void
214 g_settings_backend_changed (GSettingsBackend *backend,
215                             const gchar      *key,
216                             gpointer          origin_tag)
217 {
218   GSettingsBackendWatch *watch;
219
220   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
221   g_return_if_fail (is_key (key));
222
223   for (watch = backend->priv->watches; watch; watch = watch->next)
224     watch->changed (backend, key, origin_tag, watch->user_data);
225 }
226
227 /**
228  * g_settings_backend_keys_changed:
229  * @backend: a #GSettingsBackend implementation
230  * @path: the path containing the changes
231  * @items: the %NULL-terminated list of changed keys
232  * @origin_tag: the origin tag
233  *
234  * Signals that a list of keys have possibly changed.  Backend
235  * implementations should call this if keys have possibly changed their
236  * values.
237  *
238  * @path must be a valid path (ie: starting and ending with a slash and
239  * not containing '//').  Each string in @items must form a valid key
240  * name when @path is prefixed to it (ie: each item must not start or
241  * end with '/' and must not contain '//').
242  *
243  * The meaning of this signal is that any of the key names resulting
244  * from the contatenation of @path with each item in @items may have
245  * changed.
246  *
247  * The same rules for when notifications must occur apply as per
248  * g_settings_backend_changed().  These two calls can be used
249  * interchangeably if exactly one item has changed (although in that
250  * case g_settings_backend_changed() is definitely preferred).
251  *
252  * For efficiency reasons, the implementation should strive for @path to
253  * be as long as possible (ie: the longest common prefix of all of the
254  * keys that were changed) but this is not strictly required.
255  *
256  * Since: 2.26
257  */
258 void
259 g_settings_backend_keys_changed (GSettingsBackend    *backend,
260                                  const gchar         *path,
261                                  gchar const * const *items,
262                                  gpointer             origin_tag)
263 {
264   GSettingsBackendWatch *watch;
265
266   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
267   g_return_if_fail (path[0] == '\0' || is_path (path));
268   g_return_if_fail (items != NULL);
269
270   for (watch = backend->priv->watches; watch; watch = watch->next)
271     watch->keys_changed (backend, path, items, origin_tag, watch->user_data);
272 }
273
274 /**
275  * g_settings_backend_path_changed:
276  * @backend: a #GSettingsBackend implementation
277  * @path: the path containing the changes
278  * @origin_tag: the origin tag
279  *
280  * Signals that all keys below a given path may have possibly changed.
281  * Backend implementations should call this if an entire path of keys
282  * have possibly changed their values.
283  *
284  * @path must be a valid path (ie: starting and ending with a slash and
285  * not containing '//').
286  *
287  * The meaning of this signal is that any of the key which has a name
288  * starting with @path may have changed.
289  *
290  * The same rules for when notifications must occur apply as per
291  * g_settings_backend_changed().  This call might be an appropriate
292  * reasponse to a 'reset' call but implementations are also free to
293  * explicitly list the keys that were affected by that call if they can
294  * easily do so.
295  *
296  * For efficiency reasons, the implementation should strive for @path to
297  * be as long as possible (ie: the longest common prefix of all of the
298  * keys that were changed) but this is not strictly required.  As an
299  * example, if this function is called with the path of "/" then every
300  * single key in the application will be notified of a possible change.
301  *
302  * Since: 2.26
303  */
304 void
305 g_settings_backend_path_changed (GSettingsBackend *backend,
306                                  const gchar      *path,
307                                  gpointer          origin_tag)
308 {
309   GSettingsBackendWatch *watch;
310
311   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
312   g_return_if_fail (is_path (path));
313
314   for (watch = backend->priv->watches; watch; watch = watch->next)
315     watch->path_changed (backend, path, origin_tag, watch->user_data);
316 }
317
318 /**
319  * g_settings_backend_writable_changed:
320  * @backend: a #GSettingsBackend implementation
321  * @key: the name of the key
322  *
323  * Signals that the writability of a single key has possibly changed.
324  *
325  * Since GSettings performs no locking operations for itself, this call
326  * will always be made in response to external events.
327  *
328  * Since: 2.26
329  **/
330 void
331 g_settings_backend_writable_changed (GSettingsBackend *backend,
332                                      const gchar      *key)
333 {
334   GSettingsBackendWatch *watch;
335
336   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
337   g_return_if_fail (is_key (key));
338
339   for (watch = backend->priv->watches; watch; watch = watch->next)
340     watch->writable_changed (backend, key, watch->user_data);
341 }
342
343 /**
344  * g_settings_backend_path_writable_changed:
345  * @backend: a #GSettingsBackend implementation
346  * @path: the name of the path
347  *
348  * Signals that the writability of all keys below a given path may have
349  * changed.
350  *
351  * Since GSettings performs no locking operations for itself, this call
352  * will always be made in response to external events.
353  *
354  * Since: 2.26
355  **/
356 void
357 g_settings_backend_path_writable_changed (GSettingsBackend *backend,
358                                           const gchar      *path)
359 {
360   GSettingsBackendWatch *watch;
361
362   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
363   g_return_if_fail (is_path (path));
364
365   for (watch = backend->priv->watches; watch; watch = watch->next)
366     watch->path_writable_changed (backend, path, watch->user_data);
367 }
368
369 typedef struct
370 {
371   gint prefix_len;
372   gchar *prefix;
373   gchar **items;
374 } GetKeysState;
375
376 static gboolean
377 tree_get_keys (gpointer key,
378                gpointer value,
379                gpointer user_data)
380 {
381   GetKeysState *state = user_data;
382   const gchar *skey = key;
383   gint i;
384
385   g_return_val_if_fail (is_key (key), TRUE);
386
387   /* calculate longest common prefix */
388   if (state->prefix == NULL)
389     {
390       gchar *last_byte;
391
392       /* first key?  just take the prefix up to the last '/' */
393       state->prefix = g_strdup (skey);
394       last_byte = strrchr (state->prefix, '/') + 1;
395       state->prefix_len = last_byte - state->prefix;
396       *last_byte = '\0';
397     }
398   else
399     {
400       /* find the first character that does not match.  we will
401        * definitely find one because the prefix ends in '/' and the key
402        * does not.  also: no two keys in the tree are the same.
403        */
404       for (i = 0; state->prefix[i] == skey[i]; i++);
405
406       /* check if we need to shorten the prefix */
407       if (state->prefix[i] != '\0')
408         {
409           /* find the nearest '/', terminate after it */
410           while (state->prefix[i - 1] != '/')
411             i--;
412
413           state->prefix[i] = '\0';
414           state->prefix_len = i;
415         }
416     }
417
418
419   /* save the entire item into the array.
420    * the prefixes will be removed later.
421    */
422   *state->items++ = key;
423
424   return FALSE;
425 }
426
427 /**
428  * g_settings_backend_changed_tree:
429  * @backend: a #GSettingsBackend implementation
430  * @tree: a #GTree containing the changes
431  * @origin_tag: the origin tag
432  *
433  * This call is a convenience wrapper.  It gets the list of changes from
434  * @tree, computes the longest common prefix and calls
435  * g_settings_backend_changed().
436  *
437  * Since: 2.26
438  **/
439 void
440 g_settings_backend_changed_tree (GSettingsBackend *backend,
441                                  GTree            *tree,
442                                  gpointer          origin_tag)
443 {
444   GSettingsBackendWatch *watch;
445   GetKeysState state = { 0, };
446   gchar **list;
447
448   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
449
450   list = g_new (gchar *, g_tree_nnodes (tree) + 1);
451   state.items = list;
452
453   g_tree_foreach (tree, tree_get_keys, &state);
454   g_return_if_fail (list + g_tree_nnodes (tree) == state.items);
455   *state.items = NULL;
456
457   while (state.items-- != list)
458     *state.items += state.prefix_len;
459
460   for (watch = backend->priv->watches; watch; watch = watch->next)
461     watch->keys_changed (backend, state.prefix,
462                          (const gchar * const *) list,
463                          origin_tag, watch->user_data);
464
465   g_free (list);
466   g_free (state.prefix);
467 }
468
469 /*< private >
470  * g_settings_backend_read:
471  * @backend: a #GSettingsBackend implementation
472  * @key: the key to read
473  * @expected_type: a #GVariantType hint
474  * @returns: the value that was read, or %NULL
475  *
476  * Reads a key. This call will never block.
477  *
478  * If the key exists, the value associated with it will be returned.
479  * If the key does not exist, %NULL will be returned.
480  *
481  * If @expected_type is given, it serves as a type hint to the backend.
482  * If you expect a key of a certain type then you should give
483  * @expected_type to increase your chances of getting it.  Some backends
484  * may ignore this argument and return values of a different type; it is
485  * mostly used by backends that don't store strong type information.
486  */
487 GVariant *
488 g_settings_backend_read (GSettingsBackend   *backend,
489                          const gchar        *key,
490                          const GVariantType *expected_type)
491 {
492   return G_SETTINGS_BACKEND_GET_CLASS (backend)
493     ->read (backend, key, expected_type);
494 }
495
496 /*< private >
497  * g_settings_backend_write:
498  * @backend: a #GSettingsBackend implementation
499  * @key: the name of the key
500  * @value: a #GVariant value to write to this key
501  * @origin_tag: the origin tag
502  * @returns: %TRUE if the write succeeded, %FALSE if the key was not writable
503  *
504  * Writes exactly one key.
505  *
506  * This call does not fail.  During this call a
507  * #GSettingsBackend::changed signal will be emitted if the value of the
508  * key has changed.  The updated key value will be visible to any signal
509  * callbacks.
510  *
511  * One possible method that an implementation might deal with failures is
512  * to emit a second "changed" signal (either during this call, or later)
513  * to indicate that the affected keys have suddenly "changed back" to their
514  * old values.
515  */
516 gboolean
517 g_settings_backend_write (GSettingsBackend *backend,
518                           const gchar      *key,
519                           GVariant         *value,
520                           gpointer          origin_tag)
521 {
522   return G_SETTINGS_BACKEND_GET_CLASS (backend)
523     ->write (backend, key, value, origin_tag);
524 }
525
526 /*< private >
527  * g_settings_backend_write_keys:
528  * @backend: a #GSettingsBackend implementation
529  * @values: a #GTree containing key-value pairs to write
530  * @origin_tag: the origin tag
531  *
532  * Writes one or more keys.  This call will never block.
533  *
534  * The key of each item in the tree is the key name to write to and the
535  * value is a #GVariant to write.  The proper type of #GTree for this
536  * call can be created with g_settings_backend_create_tree().  This call
537  * might take a reference to the tree; you must not modified the #GTree
538  * after passing it to this call.
539  *
540  * This call does not fail.  During this call a #GSettingsBackend::changed
541  * signal will be emitted if any keys have been changed.  The new values of
542  * all updated keys will be visible to any signal callbacks.
543  *
544  * One possible method that an implementation might deal with failures is
545  * to emit a second "changed" signal (either during this call, or later)
546  * to indicate that the affected keys have suddenly "changed back" to their
547  * old values.
548  */
549 gboolean
550 g_settings_backend_write_keys (GSettingsBackend *backend,
551                                GTree            *tree,
552                                gpointer          origin_tag)
553 {
554   return G_SETTINGS_BACKEND_GET_CLASS (backend)
555     ->write_keys (backend, tree, origin_tag);
556 }
557
558 /*< private >
559  * g_settings_backend_reset:
560  * @backend: a #GSettingsBackend implementation
561  * @key: the name of a key
562  * @origin_tag: the origin tag
563  *
564  * "Resets" the named key to its "default" value (ie: after system-wide
565  * defaults, mandatory keys, etc. have been taken into account) or possibly
566  * unsets it.
567  */
568 void
569 g_settings_backend_reset (GSettingsBackend *backend,
570                           const gchar      *key,
571                           gpointer          origin_tag)
572 {
573   G_SETTINGS_BACKEND_GET_CLASS (backend)
574     ->reset (backend, key, origin_tag);
575 }
576
577 /*< private >
578  * g_settings_backend_reset_path:
579  * @backend: a #GSettingsBackend implementation
580  * @name: the name of a key or path
581  * @origin_tag: the origin tag
582  *
583  * "Resets" the named path.  This means that every key under the path is
584  * reset.
585  */
586 void
587 g_settings_backend_reset_path (GSettingsBackend *backend,
588                                const gchar      *path,
589                                gpointer          origin_tag)
590 {
591   G_SETTINGS_BACKEND_GET_CLASS (backend)
592     ->reset_path (backend, path, origin_tag);
593 }
594
595 /*< private >
596  * g_settings_backend_get_writable:
597  * @backend: a #GSettingsBackend implementation
598  * @key: the name of a key
599  * @returns: %TRUE if the key is writable
600  *
601  * Finds out if a key is available for writing to.  This is the
602  * interface through which 'lockdown' is implemented.  Locked down
603  * keys will have %FALSE returned by this call.
604  *
605  * You should not write to locked-down keys, but if you do, the
606  * implementation will deal with it.
607  */
608 gboolean
609 g_settings_backend_get_writable (GSettingsBackend *backend,
610                                  const gchar      *key)
611 {
612   return G_SETTINGS_BACKEND_GET_CLASS (backend)
613     ->get_writable (backend, key);
614 }
615
616 /*< private >
617  * g_settings_backend_unsubscribe:
618  * @backend: a #GSettingsBackend
619  * @name: a key or path to subscribe to
620  *
621  * Reverses the effect of a previous call to
622  * g_settings_backend_subscribe().
623  */
624 void
625 g_settings_backend_unsubscribe (GSettingsBackend *backend,
626                                 const char       *name)
627 {
628   G_SETTINGS_BACKEND_GET_CLASS (backend)
629     ->unsubscribe (backend, name);
630 }
631
632 /*< private >
633  * g_settings_backend_subscribe:
634  * @backend: a #GSettingsBackend
635  * @name: a key or path to subscribe to
636  *
637  * Requests that change signals be emitted for events on @name.
638  */
639 void
640 g_settings_backend_subscribe (GSettingsBackend *backend,
641                               const gchar      *name)
642 {
643   G_SETTINGS_BACKEND_GET_CLASS (backend)
644     ->subscribe (backend, name);
645 }
646
647 static void
648 g_settings_backend_set_property (GObject         *object,
649                                  guint            prop_id,
650                                  const GValue    *value,
651                                  GParamSpec      *pspec)
652 {
653   GSettingsBackend *backend = G_SETTINGS_BACKEND (object);
654
655   switch (prop_id)
656     {
657     case PROP_CONTEXT:
658       backend->priv->context = g_value_dup_string (value);
659       break;
660
661     default:
662       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
663       break;
664     }
665 }
666
667 static void
668 g_settings_backend_get_property (GObject    *object,
669                                  guint       prop_id,
670                                  GValue     *value,
671                                  GParamSpec *pspec)
672 {
673   GSettingsBackend *backend = G_SETTINGS_BACKEND (object);
674
675   switch (prop_id)
676     {
677     case PROP_CONTEXT:
678       g_value_set_string (value, backend->priv->context);
679       break;
680
681     default:
682       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
683       break;
684     }
685 }
686
687 static void
688 g_settings_backend_finalize (GObject *object)
689 {
690   GSettingsBackend *backend = G_SETTINGS_BACKEND (object);
691
692   g_free (backend->priv->context);
693
694   G_OBJECT_CLASS (g_settings_backend_parent_class)->finalize (object);
695 }
696
697 static void
698 ignore_subscription (GSettingsBackend *backend,
699                      const gchar      *key)
700 {
701 }
702
703 static void
704 g_settings_backend_init (GSettingsBackend *backend)
705 {
706   backend->priv = G_TYPE_INSTANCE_GET_PRIVATE (backend,
707                                                G_TYPE_SETTINGS_BACKEND,
708                                                GSettingsBackendPrivate);
709 }
710
711 static void
712 g_settings_backend_class_init (GSettingsBackendClass *class)
713 {
714   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
715
716   class->subscribe = ignore_subscription;
717   class->unsubscribe = ignore_subscription;
718
719   gobject_class->get_property = g_settings_backend_get_property;
720   gobject_class->set_property = g_settings_backend_set_property;
721   gobject_class->finalize = g_settings_backend_finalize;
722
723   g_type_class_add_private (class, sizeof (GSettingsBackendPrivate));
724
725   /**
726    * GSettingsBackend:context:
727    *
728    * The "context" property gives a hint to the backend as to
729    * what storage to use. It is up to the implementation to make
730    * use of this information.
731    *
732    * E.g. DConf supports "user", "system", "defaults" and "login"
733    * contexts.
734    *
735    * If your backend supports different contexts, you should also
736    * provide an implementation of the supports_context() class
737    * function in #GSettingsBackendClass.
738    */
739   g_object_class_install_property (gobject_class, PROP_CONTEXT,
740     g_param_spec_string ("context", P_("Context"),
741                          P_("An identifier to decide which storage to use"),
742                          "", G_PARAM_READWRITE |
743                          G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
744
745 }
746
747 /*< private >
748  * g_settings_backend_create_tree:
749  * @returns: a new #GTree
750  *
751  * This is a convenience function for creating a tree that is compatible
752  * with g_settings_backend_write().  It merely calls g_tree_new_full()
753  * with strcmp(), g_free() and g_variant_unref().
754  */
755 GTree *
756 g_settings_backend_create_tree (void)
757 {
758   return g_tree_new_full ((GCompareDataFunc) strcmp, NULL,
759                           g_free, (GDestroyNotify) g_variant_unref);
760 }
761
762
763 static gpointer
764 get_default_backend (const gchar *context)
765 {
766   GIOExtension *extension = NULL;
767   GIOExtensionPoint *point;
768   GList *extensions;
769   const gchar *env;
770   GType type;
771
772   _g_io_modules_ensure_loaded ();
773
774   point = g_io_extension_point_lookup (G_SETTINGS_BACKEND_EXTENSION_POINT_NAME);
775
776   if ((env = getenv ("GSETTINGS_BACKEND")))
777     {
778       extension = g_io_extension_point_get_extension_by_name (point, env);
779
780       if (extension == NULL)
781         g_warning ("Can't find GSettings backend '%s' given in "
782                    "GSETTINGS_BACKEND environment variable", env);
783     }
784
785   if (extension == NULL)
786     {
787       extensions = g_io_extension_point_get_extensions (point);
788
789       if (extensions == NULL)
790         g_error ("No GSettingsBackend implementations exist.");
791
792       extension = extensions->data;
793     }
794
795   if (context[0] != '\0') /* (context != "") */
796     {
797       GSettingsBackendClass *backend_class;
798       GTypeClass *class;
799
800       class = g_io_extension_ref_class (extension);
801       backend_class = G_SETTINGS_BACKEND_CLASS (class);
802
803       if (backend_class->supports_context == NULL ||
804           !backend_class->supports_context (context))
805         {
806           g_type_class_unref (class);
807           return NULL;
808         }
809
810       g_type_class_unref (class);
811     }
812
813   type = g_io_extension_get_type (extension);
814
815   return g_object_new (type, "context", context, NULL);
816 }
817
818 static GHashTable *g_settings_backends;
819
820 /*< private >
821  * g_settings_backend_get_with_context:
822  * @context: a context that might be used by the backend to determine
823  *     which storage to use, or %NULL to use the default storage
824  * @returns: the default #GSettingsBackend
825  *
826  * Returns the default #GSettingsBackend. It is possible to override
827  * the default by setting the <envar>GSETTINGS_BACKEND</envar>
828  * environment variable to the name of a settings backend.
829  *
830  * The @context parameter can be used to indicate that a different
831  * than the default storage is desired. E.g. the DConf backend lets
832  * you use "user", "system", "defaults" and "login" as contexts.
833  *
834  * If @context is not supported by the implementation, this function
835  * returns an instance of the #GSettingsMemoryBackend.
836  * See g_settings_backend_supports_context(),
837  *
838  * The user does not own the return value and it must not be freed.
839  */
840 GSettingsBackend *
841 g_settings_backend_get_with_context (const gchar *context)
842 {
843   GSettingsBackend *backend;
844
845   g_return_val_if_fail (context != NULL, NULL);
846
847   _g_io_modules_ensure_extension_points_registered ();
848
849   if (g_settings_backends == NULL)
850     g_settings_backends = g_hash_table_new (g_str_hash, g_str_equal);
851
852   backend = g_hash_table_lookup (g_settings_backends, context);
853
854   if (!backend)
855     {
856       backend = get_default_backend (context);
857
858       if (!backend)
859         backend = g_null_settings_backend_new ();
860
861       g_hash_table_insert (g_settings_backends, g_strdup (context), backend);
862     }
863
864   return g_object_ref (backend);
865 }
866
867 /*< private >
868  * g_settings_backend_supports_context:
869  * @context: a context string that might be passed to
870  *     g_settings_backend_new_with_context()
871  * @returns: #TRUE if @context is supported
872  *
873  * Determines if the given context is supported by the default
874  * GSettingsBackend implementation.
875  */
876 gboolean
877 g_settings_backend_supports_context (const gchar *context)
878 {
879   GSettingsBackend *backend;
880
881   g_return_val_if_fail (context != NULL, FALSE);
882
883   backend = get_default_backend (context);
884
885   if (backend)
886     {
887       g_object_unref (backend);
888       return TRUE;
889     }
890
891   return FALSE;
892 }
893
894 /**
895  * g_settings_backend_setup:
896  * @context: a context string (not %NULL or "")
897  * @backend: a #GSettingsBackend
898  *
899  * Sets up @backend for use with #GSettings.
900  *
901  * If you create a #GSettings with its context property set to @context
902  * then it will use the backend given to this function.  See
903  * g_settings_new_with_context().
904  *
905  * The backend must be set up before any settings objects are created
906  * for the named context.
907  *
908  * It is not possible to specify a backend for the default context.
909  *
910  * This function takes a reference on @backend and never releases it.
911  *
912  * Since: 2.26
913  **/
914 void
915 g_settings_backend_setup (const gchar      *context,
916                           GSettingsBackend *backend)
917 {
918   g_return_if_fail (context[0] != '\0');
919   g_return_if_fail (G_IS_SETTINGS_BACKEND (backend));
920
921   if (g_settings_backends == NULL)
922     g_settings_backends = g_hash_table_new (g_str_hash, g_str_equal);
923
924   if (g_hash_table_lookup (g_settings_backends, context))
925     g_error ("A GSettingsBackend already exists for context '%s'", context);
926
927   g_hash_table_insert (g_settings_backends,
928                        g_strdup (context),
929                        g_object_ref (backend));
930 }
931
932 #define __G_SETTINGS_BACKEND_C__
933 #include "gioaliasdef.c"