add backend setup APIs
[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   list = g_new (gchar *, g_tree_nnodes (tree) + 1);
449   state.items = list;
450
451   g_tree_foreach (tree, tree_get_keys, &state);
452   g_return_if_fail (list + g_tree_nnodes (tree) == state.items);
453   *state.items = NULL;
454
455   while (state.items-- != list)
456     *state.items += state.prefix_len;
457
458   for (watch = backend->priv->watches; watch; watch = watch->next)
459     watch->keys_changed (backend, state.prefix,
460                          (const gchar * const *) list,
461                          origin_tag, watch->user_data);
462
463   g_free (list);
464   g_free (state.prefix);
465 }
466
467 /*< private >
468  * g_settings_backend_read:
469  * @backend: a #GSettingsBackend implementation
470  * @key: the key to read
471  * @expected_type: a #GVariantType hint
472  * @returns: the value that was read, or %NULL
473  *
474  * Reads a key. This call will never block.
475  *
476  * If the key exists, the value associated with it will be returned.
477  * If the key does not exist, %NULL will be returned.
478  *
479  * If @expected_type is given, it serves as a type hint to the backend.
480  * If you expect a key of a certain type then you should give
481  * @expected_type to increase your chances of getting it.  Some backends
482  * may ignore this argument and return values of a different type; it is
483  * mostly used by backends that don't store strong type information.
484  */
485 GVariant *
486 g_settings_backend_read (GSettingsBackend   *backend,
487                          const gchar        *key,
488                          const GVariantType *expected_type)
489 {
490   return G_SETTINGS_BACKEND_GET_CLASS (backend)
491     ->read (backend, key, expected_type);
492 }
493
494 /*< private >
495  * g_settings_backend_write:
496  * @backend: a #GSettingsBackend implementation
497  * @key: the name of the key
498  * @value: a #GVariant value to write to this key
499  * @origin_tag: the origin tag
500  * @returns: %TRUE if the write succeeded, %FALSE if the key was not writable
501  *
502  * Writes exactly one key.
503  *
504  * This call does not fail.  During this call a
505  * #GSettingsBackend::changed signal will be emitted if the value of the
506  * key has changed.  The updated key value will be visible to any signal
507  * callbacks.
508  *
509  * One possible method that an implementation might deal with failures is
510  * to emit a second "changed" signal (either during this call, or later)
511  * to indicate that the affected keys have suddenly "changed back" to their
512  * old values.
513  */
514 gboolean
515 g_settings_backend_write (GSettingsBackend *backend,
516                           const gchar      *key,
517                           GVariant         *value,
518                           gpointer          origin_tag)
519 {
520   return G_SETTINGS_BACKEND_GET_CLASS (backend)
521     ->write (backend, key, value, origin_tag);
522 }
523
524 /*< private >
525  * g_settings_backend_write_keys:
526  * @backend: a #GSettingsBackend implementation
527  * @values: a #GTree containing key-value pairs to write
528  * @origin_tag: the origin tag
529  *
530  * Writes one or more keys.  This call will never block.
531  *
532  * The key of each item in the tree is the key name to write to and the
533  * value is a #GVariant to write.  The proper type of #GTree for this
534  * call can be created with g_settings_backend_create_tree().  This call
535  * might take a reference to the tree; you must not modified the #GTree
536  * after passing it to this call.
537  *
538  * This call does not fail.  During this call a #GSettingsBackend::changed
539  * signal will be emitted if any keys have been changed.  The new values of
540  * all updated keys will be visible to any signal callbacks.
541  *
542  * One possible method that an implementation might deal with failures is
543  * to emit a second "changed" signal (either during this call, or later)
544  * to indicate that the affected keys have suddenly "changed back" to their
545  * old values.
546  */
547 gboolean
548 g_settings_backend_write_keys (GSettingsBackend *backend,
549                                GTree            *tree,
550                                gpointer          origin_tag)
551 {
552   return G_SETTINGS_BACKEND_GET_CLASS (backend)
553     ->write_keys (backend, tree, origin_tag);
554 }
555
556 /*< private >
557  * g_settings_backend_reset:
558  * @backend: a #GSettingsBackend implementation
559  * @key: the name of a key
560  * @origin_tag: the origin tag
561  *
562  * "Resets" the named key to its "default" value (ie: after system-wide
563  * defaults, mandatory keys, etc. have been taken into account) or possibly
564  * unsets it.
565  */
566 void
567 g_settings_backend_reset (GSettingsBackend *backend,
568                           const gchar      *key,
569                           gpointer          origin_tag)
570 {
571   G_SETTINGS_BACKEND_GET_CLASS (backend)
572     ->reset (backend, key, origin_tag);
573 }
574
575 /*< private >
576  * g_settings_backend_reset_path:
577  * @backend: a #GSettingsBackend implementation
578  * @name: the name of a key or path
579  * @origin_tag: the origin tag
580  *
581  * "Resets" the named path.  This means that every key under the path is
582  * reset.
583  */
584 void
585 g_settings_backend_reset_path (GSettingsBackend *backend,
586                                const gchar      *path,
587                                gpointer          origin_tag)
588 {
589   G_SETTINGS_BACKEND_GET_CLASS (backend)
590     ->reset_path (backend, path, origin_tag);
591 }
592
593 /*< private >
594  * g_settings_backend_get_writable:
595  * @backend: a #GSettingsBackend implementation
596  * @key: the name of a key
597  * @returns: %TRUE if the key is writable
598  *
599  * Finds out if a key is available for writing to.  This is the
600  * interface through which 'lockdown' is implemented.  Locked down
601  * keys will have %FALSE returned by this call.
602  *
603  * You should not write to locked-down keys, but if you do, the
604  * implementation will deal with it.
605  */
606 gboolean
607 g_settings_backend_get_writable (GSettingsBackend *backend,
608                                  const gchar      *key)
609 {
610   return G_SETTINGS_BACKEND_GET_CLASS (backend)
611     ->get_writable (backend, key);
612 }
613
614 /*< private >
615  * g_settings_backend_unsubscribe:
616  * @backend: a #GSettingsBackend
617  * @name: a key or path to subscribe to
618  *
619  * Reverses the effect of a previous call to
620  * g_settings_backend_subscribe().
621  */
622 void
623 g_settings_backend_unsubscribe (GSettingsBackend *backend,
624                                 const char       *name)
625 {
626   G_SETTINGS_BACKEND_GET_CLASS (backend)
627     ->unsubscribe (backend, name);
628 }
629
630 /*< private >
631  * g_settings_backend_subscribe:
632  * @backend: a #GSettingsBackend
633  * @name: a key or path to subscribe to
634  *
635  * Requests that change signals be emitted for events on @name.
636  */
637 void
638 g_settings_backend_subscribe (GSettingsBackend *backend,
639                               const gchar      *name)
640 {
641   G_SETTINGS_BACKEND_GET_CLASS (backend)
642     ->subscribe (backend, name);
643 }
644
645 static void
646 g_settings_backend_set_property (GObject         *object,
647                                  guint            prop_id,
648                                  const GValue    *value,
649                                  GParamSpec      *pspec)
650 {
651   GSettingsBackend *backend = G_SETTINGS_BACKEND (object);
652
653   switch (prop_id)
654     {
655     case PROP_CONTEXT:
656       backend->priv->context = g_value_dup_string (value);
657       break;
658
659     default:
660       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
661       break;
662     }
663 }
664
665 static void
666 g_settings_backend_get_property (GObject    *object,
667                                  guint       prop_id,
668                                  GValue     *value,
669                                  GParamSpec *pspec)
670 {
671   GSettingsBackend *backend = G_SETTINGS_BACKEND (object);
672
673   switch (prop_id)
674     {
675     case PROP_CONTEXT:
676       g_value_set_string (value, backend->priv->context);
677       break;
678
679     default:
680       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
681       break;
682     }
683 }
684
685 static void
686 g_settings_backend_finalize (GObject *object)
687 {
688   GSettingsBackend *backend = G_SETTINGS_BACKEND (object);
689
690   g_free (backend->priv->context);
691
692   G_OBJECT_CLASS (g_settings_backend_parent_class)->finalize (object);
693 }
694
695 static void
696 ignore_subscription (GSettingsBackend *backend,
697                      const gchar      *key)
698 {
699 }
700
701 static void
702 g_settings_backend_init (GSettingsBackend *backend)
703 {
704   backend->priv = G_TYPE_INSTANCE_GET_PRIVATE (backend,
705                                                G_TYPE_SETTINGS_BACKEND,
706                                                GSettingsBackendPrivate);
707 }
708
709 static void
710 g_settings_backend_class_init (GSettingsBackendClass *class)
711 {
712   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
713
714   class->subscribe = ignore_subscription;
715   class->unsubscribe = ignore_subscription;
716
717   gobject_class->get_property = g_settings_backend_get_property;
718   gobject_class->set_property = g_settings_backend_set_property;
719   gobject_class->finalize = g_settings_backend_finalize;
720
721   g_type_class_add_private (class, sizeof (GSettingsBackendPrivate));
722
723   /**
724    * GSettingsBackend:context:
725    *
726    * The "context" property gives a hint to the backend as to
727    * what storage to use. It is up to the implementation to make
728    * use of this information.
729    *
730    * E.g. DConf supports "user", "system", "defaults" and "login"
731    * contexts.
732    *
733    * If your backend supports different contexts, you should also
734    * provide an implementation of the supports_context() class
735    * function in #GSettingsBackendClass.
736    */
737   g_object_class_install_property (gobject_class, PROP_CONTEXT,
738     g_param_spec_string ("context", P_("Context"),
739                          P_("An identifier to decide which storage to use"),
740                          "", G_PARAM_READWRITE |
741                          G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
742
743 }
744
745 /*< private >
746  * g_settings_backend_create_tree:
747  * @returns: a new #GTree
748  *
749  * This is a convenience function for creating a tree that is compatible
750  * with g_settings_backend_write().  It merely calls g_tree_new_full()
751  * with strcmp(), g_free() and g_variant_unref().
752  */
753 GTree *
754 g_settings_backend_create_tree (void)
755 {
756   return g_tree_new_full ((GCompareDataFunc) strcmp, NULL,
757                           g_free, (GDestroyNotify) g_variant_unref);
758 }
759
760
761 static gpointer
762 get_default_backend (const gchar *context)
763 {
764   GIOExtension *extension = NULL;
765   GIOExtensionPoint *point;
766   GList *extensions;
767   const gchar *env;
768   GType type;
769
770   _g_io_modules_ensure_loaded ();
771
772   point = g_io_extension_point_lookup (G_SETTINGS_BACKEND_EXTENSION_POINT_NAME);
773
774   if ((env = getenv ("GSETTINGS_BACKEND")))
775     {
776       extension = g_io_extension_point_get_extension_by_name (point, env);
777
778       if (extension == NULL)
779         g_warning ("Can't find GSettings backend '%s' given in "
780                    "GSETTINGS_BACKEND environment variable", env);
781     }
782
783   if (extension == NULL)
784     {
785       extensions = g_io_extension_point_get_extensions (point);
786
787       if (extensions == NULL)
788         g_error ("No GSettingsBackend implementations exist.");
789
790       extension = extensions->data;
791     }
792
793   if (context[0] != '\0') /* (context != "") */
794     {
795       GSettingsBackendClass *backend_class;
796       GTypeClass *class;
797
798       class = g_io_extension_ref_class (extension);
799       backend_class = G_SETTINGS_BACKEND_CLASS (class);
800
801       if (backend_class->supports_context == NULL ||
802           !backend_class->supports_context (context))
803         {
804           g_type_class_unref (class);
805           return NULL;
806         }
807
808       g_type_class_unref (class);
809     }
810
811   type = g_io_extension_get_type (extension);
812
813   return g_object_new (type, "context", context, NULL);
814 }
815
816 static GHashTable *g_settings_backends;
817
818 /*< private >
819  * g_settings_backend_get_with_context:
820  * @context: a context that might be used by the backend to determine
821  *     which storage to use, or %NULL to use the default storage
822  * @returns: the default #GSettingsBackend
823  *
824  * Returns the default #GSettingsBackend. It is possible to override
825  * the default by setting the <envar>GSETTINGS_BACKEND</envar>
826  * environment variable to the name of a settings backend.
827  *
828  * The @context parameter can be used to indicate that a different
829  * than the default storage is desired. E.g. the DConf backend lets
830  * you use "user", "system", "defaults" and "login" as contexts.
831  *
832  * If @context is not supported by the implementation, this function
833  * returns an instance of the #GSettingsMemoryBackend.
834  * See g_settings_backend_supports_context(),
835  *
836  * The user does not own the return value and it must not be freed.
837  */
838 GSettingsBackend *
839 g_settings_backend_get_with_context (const gchar *context)
840 {
841   GSettingsBackend *backend;
842
843   g_return_val_if_fail (context != NULL, NULL);
844
845   _g_io_modules_ensure_extension_points_registered ();
846
847   if (g_settings_backends == NULL)
848     g_settings_backends = g_hash_table_new (g_str_hash, g_str_equal);
849
850   backend = g_hash_table_lookup (g_settings_backends, context);
851
852   if (!backend)
853     {
854       backend = get_default_backend (context);
855
856       if (!backend)
857         backend = g_null_settings_backend_new ();
858
859       g_hash_table_insert (g_settings_backends, g_strdup (context), backend);
860     }
861
862   return g_object_ref (backend);
863 }
864
865 /*< private >
866  * g_settings_backend_supports_context:
867  * @context: a context string that might be passed to
868  *     g_settings_backend_new_with_context()
869  * @returns: #TRUE if @context is supported
870  *
871  * Determines if the given context is supported by the default
872  * GSettingsBackend implementation.
873  */
874 gboolean
875 g_settings_backend_supports_context (const gchar *context)
876 {
877   GSettingsBackend *backend;
878
879   g_return_val_if_fail (context != NULL, FALSE);
880
881   backend = get_default_backend (context);
882
883   if (backend)
884     {
885       g_object_unref (backend);
886       return TRUE;
887     }
888
889   return FALSE;
890 }
891
892 /**
893  * g_settings_backend_setup:
894  * @context: a context string (not %NULL or "")
895  * @backend: a #GSettingsBackend
896  *
897  * Sets up @backend for use with #GSettings.
898  *
899  * If you create a #GSettings with its context property set to @context
900  * then it will use the backend given to this function.  See
901  * g_settings_new_with_context().
902  *
903  * The backend must be set up before any settings objects are created
904  * for the named context.
905  *
906  * It is not possible to specify a backend for the default context.
907  *
908  * This function takes a reference on @backend and never releases it.
909  **/
910 void
911 g_settings_backend_setup (const gchar      *context,
912                           GSettingsBackend *backend)
913 {
914   g_return_if_fail (context[0] != '\0');
915
916   if (g_settings_backends == NULL)
917     g_settings_backends = g_hash_table_new (g_str_hash, g_str_equal);
918
919   if (g_hash_table_lookup (g_settings_backends, context))
920     g_error ("A GSettingsBackend already exists for context '%s'", context);
921
922   g_hash_table_insert (g_settings_backends,
923                        g_strdup (context),
924                        g_object_ref (backend));
925 }
926
927 #define __G_SETTINGS_BACKEND_C__
928 #include "gioaliasdef.c"