2 * Copyright © 2009, 2010 Codethink Limited
3 * Copyright © 2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the licence, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Authors: Ryan Lortie <desrt@desrt.ca>
19 * Matthias Clasen <mclasen@redhat.com>
24 #include "gsettingsbackendinternal.h"
25 #include "gsimplepermission.h"
26 #include "giomodule-priv.h"
34 typedef struct _GSettingsBackendClosure GSettingsBackendClosure
;
35 typedef struct _GSettingsBackendWatch GSettingsBackendWatch
;
37 struct _GSettingsBackendPrivate
39 GSettingsBackendWatch
*watches
;
43 G_DEFINE_ABSTRACT_TYPE_WITH_PRIVATE (GSettingsBackend
, g_settings_backend
, G_TYPE_OBJECT
)
45 /* For g_settings_backend_sync_default(), we only want to actually do
46 * the sync if the backend already exists. This avoids us creating an
47 * entire GSettingsBackend in order to call a do-nothing sync()
48 * operation on it. This variable lets us avoid that.
50 static gboolean g_settings_has_backend
;
53 * SECTION:gsettingsbackend
54 * @title: GSettingsBackend
55 * @short_description: Interface for settings backend implementations
56 * @include: gio/gsettingsbackend.h
57 * @see_also: #GSettings, #GIOExtensionPoint
59 * The #GSettingsBackend interface defines a generic interface for
60 * non-strictly-typed data that is stored in a hierarchy. To implement
61 * an alternative storage backend for #GSettings, you need to implement
62 * the #GSettingsBackend interface and then make it implement the
63 * extension point #G_SETTINGS_BACKEND_EXTENSION_POINT_NAME.
65 * The interface defines methods for reading and writing values, a
66 * method for determining if writing of certain values will fail
67 * (lockdown) and a change notification mechanism.
69 * The semantics of the interface are very precisely defined and
70 * implementations must carefully adhere to the expectations of
71 * callers that are documented on each of the interface methods.
73 * Some of the GSettingsBackend functions accept or return a #GTree.
74 * These trees always have strings as keys and #GVariant as values.
75 * g_settings_backend_create_tree() is a convenience function to create
78 * The GSettingsBackend API is exported to allow third-party
79 * implementations, but does not carry the same stability guarantees
80 * as the public GIO API. For this reason, you have to define the
81 * C preprocessor symbol %G_SETTINGS_ENABLE_BACKEND before including
82 * `gio/gsettingsbackend.h`.
86 is_key (const gchar
*key
)
91 g_return_val_if_fail (key
!= NULL
, FALSE
);
92 g_return_val_if_fail (key
[0] == '/', FALSE
);
94 for (i
= 1; key
[i
]; i
++)
95 g_return_val_if_fail (key
[i
] != '/' || key
[i
+ 1] != '/', FALSE
);
99 g_return_val_if_fail (key
[length
- 1] != '/', FALSE
);
105 is_path (const gchar
*path
)
110 g_return_val_if_fail (path
!= NULL
, FALSE
);
111 g_return_val_if_fail (path
[0] == '/', FALSE
);
113 for (i
= 1; path
[i
]; i
++)
114 g_return_val_if_fail (path
[i
] != '/' || path
[i
+ 1] != '/', FALSE
);
118 g_return_val_if_fail (path
[length
- 1] == '/', FALSE
);
123 struct _GSettingsBackendWatch
126 const GSettingsListenerVTable
*vtable
;
127 GMainContext
*context
;
128 GSettingsBackendWatch
*next
;
131 struct _GSettingsBackendClosure
133 void (*function
) (GObject
*target
,
134 GSettingsBackend
*backend
,
139 GMainContext
*context
;
141 GSettingsBackend
*backend
;
148 g_settings_backend_watch_weak_notify (gpointer data
,
149 GObject
*where_the_object_was
)
151 GSettingsBackend
*backend
= data
;
152 GSettingsBackendWatch
**ptr
;
154 /* search and remove */
155 g_mutex_lock (&backend
->priv
->lock
);
156 for (ptr
= &backend
->priv
->watches
; *ptr
; ptr
= &(*ptr
)->next
)
157 if ((*ptr
)->target
== where_the_object_was
)
159 GSettingsBackendWatch
*tmp
= *ptr
;
162 g_slice_free (GSettingsBackendWatch
, tmp
);
164 g_mutex_unlock (&backend
->priv
->lock
);
168 /* we didn't find it. that shouldn't happen. */
169 g_assert_not_reached ();
173 * g_settings_backend_watch:
174 * @backend: a #GSettingsBackend
175 * @target: the GObject (typically GSettings instance) to call back to
176 * @context: (nullable): a #GMainContext, or %NULL
179 * Registers a new watch on a #GSettingsBackend.
181 * note: %NULL @context does not mean "default main context" but rather,
182 * "it is okay to dispatch in any context". If the default main context
183 * is specifically desired then it must be given.
185 * note also: if you want to get meaningful values for the @origin_tag
186 * that appears as an argument to some of the callbacks, you *must* have
187 * @context as %NULL. Otherwise, you are subject to cross-thread
188 * dispatching and whatever owned @origin_tag at the time that the event
189 * occurred may no longer own it. This is a problem if you consider that
190 * you may now be the new owner of that address and mistakenly think
191 * that the event in question originated from yourself.
193 * tl;dr: If you give a non-%NULL @context then you must ignore the
194 * value of @origin_tag given to any callbacks.
197 g_settings_backend_watch (GSettingsBackend
*backend
,
198 const GSettingsListenerVTable
*vtable
,
200 GMainContext
*context
)
202 GSettingsBackendWatch
*watch
;
204 /* For purposes of discussion, we assume that our target is a
205 * GSettings instance.
207 * Our strategy to defend against the final reference dropping on the
208 * GSettings object in a thread other than the one that is doing the
209 * dispatching is as follows:
211 * 1) hold a GObject reference on the GSettings during an outstanding
212 * dispatch. This ensures that the delivery is always possible.
214 * 2) hold a weak reference on the GSettings at other times. This
215 * allows us to receive early notification of pending destruction
216 * of the object. At this point, it is still safe to obtain a
217 * reference on the GObject to keep it alive, so #1 will work up
218 * to that point. After that point, we'll have been able to drop
219 * the watch from the list.
221 * Note, in particular, that it's not possible to simply have an
222 * "unwatch" function that gets called from the finalize function of
223 * the GSettings instance because, by that point it is no longer
224 * possible to keep the object alive using g_object_ref() and we would
225 * have no way of knowing this.
227 * Note also that we do not need to hold a reference on the main
228 * context here since the GSettings instance does that for us and we
229 * will receive the weak notify long before it is dropped. We don't
230 * even need to hold it during dispatches because our reference on the
231 * GSettings will prevent the finalize from running and dropping the
232 * ref on the context.
234 * All access to the list holds a mutex. We have some strategies to
235 * avoid some of the pain that would be associated with that.
238 watch
= g_slice_new (GSettingsBackendWatch
);
239 watch
->context
= context
;
240 watch
->vtable
= vtable
;
241 watch
->target
= target
;
242 g_object_weak_ref (target
, g_settings_backend_watch_weak_notify
, backend
);
244 /* linked list prepend */
245 g_mutex_lock (&backend
->priv
->lock
);
246 watch
->next
= backend
->priv
->watches
;
247 backend
->priv
->watches
= watch
;
248 g_mutex_unlock (&backend
->priv
->lock
);
252 g_settings_backend_unwatch (GSettingsBackend
*backend
,
255 /* Our caller surely owns a reference on 'target', so the order of
256 * these two calls is unimportant.
258 g_object_weak_unref (target
, g_settings_backend_watch_weak_notify
, backend
);
259 g_settings_backend_watch_weak_notify (backend
, target
);
263 g_settings_backend_invoke_closure (gpointer user_data
)
265 GSettingsBackendClosure
*closure
= user_data
;
267 closure
->function (closure
->target
, closure
->backend
, closure
->name
,
268 closure
->origin_tag
, closure
->names
);
270 g_object_unref (closure
->backend
);
271 g_object_unref (closure
->target
);
272 g_strfreev (closure
->names
);
273 g_free (closure
->name
);
275 g_slice_free (GSettingsBackendClosure
, closure
);
281 g_settings_backend_dispatch_signal (GSettingsBackend
*backend
,
282 gsize function_offset
,
285 const gchar
* const *names
)
287 GSettingsBackendWatch
*watch
;
288 GSList
*closures
= NULL
;
290 /* We're in a little bit of a tricky situation here. We need to hold
291 * a lock while traversing the list, but we don't want to hold the
292 * lock while calling back into user code.
294 * We work around this by creating a bunch of GSettingsBackendClosure
295 * objects while holding the lock and dispatching them after. We
296 * never touch the list without holding the lock.
298 g_mutex_lock (&backend
->priv
->lock
);
299 for (watch
= backend
->priv
->watches
; watch
; watch
= watch
->next
)
301 GSettingsBackendClosure
*closure
;
303 closure
= g_slice_new (GSettingsBackendClosure
);
304 closure
->context
= watch
->context
;
305 closure
->backend
= g_object_ref (backend
);
306 closure
->target
= g_object_ref (watch
->target
);
307 closure
->function
= G_STRUCT_MEMBER (void *, watch
->vtable
,
309 closure
->name
= g_strdup (name
);
310 closure
->origin_tag
= origin_tag
;
311 closure
->names
= g_strdupv ((gchar
**) names
);
313 closures
= g_slist_prepend (closures
, closure
);
315 g_mutex_unlock (&backend
->priv
->lock
);
319 GSettingsBackendClosure
*closure
= closures
->data
;
321 if (closure
->context
)
322 g_main_context_invoke (closure
->context
,
323 g_settings_backend_invoke_closure
,
326 g_settings_backend_invoke_closure (closure
);
328 closures
= g_slist_delete_link (closures
, closures
);
333 * g_settings_backend_changed:
334 * @backend: a #GSettingsBackend implementation
335 * @key: the name of the key
336 * @origin_tag: the origin tag
338 * Signals that a single key has possibly changed. Backend
339 * implementations should call this if a key has possibly changed its
342 * @key must be a valid key (ie starting with a slash, not containing
343 * '//', and not ending with a slash).
345 * The implementation must call this function during any call to
346 * g_settings_backend_write(), before the call returns (except in the
347 * case that no keys are actually changed and it cares to detect this
348 * fact). It may not rely on the existence of a mainloop for
349 * dispatching the signal later.
351 * The implementation may call this function at any other time it likes
352 * in response to other events (such as changes occurring outside of the
353 * program). These calls may originate from a mainloop or may originate
354 * in response to any other action (including from calls to
355 * g_settings_backend_write()).
357 * In the case that this call is in response to a call to
358 * g_settings_backend_write() then @origin_tag must be set to the same
359 * value that was passed to that call.
364 g_settings_backend_changed (GSettingsBackend
*backend
,
368 g_return_if_fail (G_IS_SETTINGS_BACKEND (backend
));
369 g_return_if_fail (is_key (key
));
371 g_settings_backend_dispatch_signal (backend
,
372 G_STRUCT_OFFSET (GSettingsListenerVTable
,
374 key
, origin_tag
, NULL
);
378 * g_settings_backend_keys_changed:
379 * @backend: a #GSettingsBackend implementation
380 * @path: the path containing the changes
381 * @items: (array zero-terminated=1): the %NULL-terminated list of changed keys
382 * @origin_tag: the origin tag
384 * Signals that a list of keys have possibly changed. Backend
385 * implementations should call this if keys have possibly changed their
388 * @path must be a valid path (ie starting and ending with a slash and
389 * not containing '//'). Each string in @items must form a valid key
390 * name when @path is prefixed to it (ie: each item must not start or
391 * end with '/' and must not contain '//').
393 * The meaning of this signal is that any of the key names resulting
394 * from the contatenation of @path with each item in @items may have
397 * The same rules for when notifications must occur apply as per
398 * g_settings_backend_changed(). These two calls can be used
399 * interchangeably if exactly one item has changed (although in that
400 * case g_settings_backend_changed() is definitely preferred).
402 * For efficiency reasons, the implementation should strive for @path to
403 * be as long as possible (ie: the longest common prefix of all of the
404 * keys that were changed) but this is not strictly required.
409 g_settings_backend_keys_changed (GSettingsBackend
*backend
,
411 gchar
const * const *items
,
414 g_return_if_fail (G_IS_SETTINGS_BACKEND (backend
));
415 g_return_if_fail (is_path (path
));
417 /* XXX: should do stricter checking (ie: inspect each item) */
418 g_return_if_fail (items
!= NULL
);
420 g_settings_backend_dispatch_signal (backend
,
421 G_STRUCT_OFFSET (GSettingsListenerVTable
,
423 path
, origin_tag
, items
);
427 * g_settings_backend_path_changed:
428 * @backend: a #GSettingsBackend implementation
429 * @path: the path containing the changes
430 * @origin_tag: the origin tag
432 * Signals that all keys below a given path may have possibly changed.
433 * Backend implementations should call this if an entire path of keys
434 * have possibly changed their values.
436 * @path must be a valid path (ie starting and ending with a slash and
437 * not containing '//').
439 * The meaning of this signal is that any of the key which has a name
440 * starting with @path may have changed.
442 * The same rules for when notifications must occur apply as per
443 * g_settings_backend_changed(). This call might be an appropriate
444 * reasponse to a 'reset' call but implementations are also free to
445 * explicitly list the keys that were affected by that call if they can
448 * For efficiency reasons, the implementation should strive for @path to
449 * be as long as possible (ie: the longest common prefix of all of the
450 * keys that were changed) but this is not strictly required. As an
451 * example, if this function is called with the path of "/" then every
452 * single key in the application will be notified of a possible change.
457 g_settings_backend_path_changed (GSettingsBackend
*backend
,
461 g_return_if_fail (G_IS_SETTINGS_BACKEND (backend
));
462 g_return_if_fail (is_path (path
));
464 g_settings_backend_dispatch_signal (backend
,
465 G_STRUCT_OFFSET (GSettingsListenerVTable
,
467 path
, origin_tag
, NULL
);
471 * g_settings_backend_writable_changed:
472 * @backend: a #GSettingsBackend implementation
473 * @key: the name of the key
475 * Signals that the writability of a single key has possibly changed.
477 * Since GSettings performs no locking operations for itself, this call
478 * will always be made in response to external events.
483 g_settings_backend_writable_changed (GSettingsBackend
*backend
,
486 g_return_if_fail (G_IS_SETTINGS_BACKEND (backend
));
487 g_return_if_fail (is_key (key
));
489 g_settings_backend_dispatch_signal (backend
,
490 G_STRUCT_OFFSET (GSettingsListenerVTable
,
496 * g_settings_backend_path_writable_changed:
497 * @backend: a #GSettingsBackend implementation
498 * @path: the name of the path
500 * Signals that the writability of all keys below a given path may have
503 * Since GSettings performs no locking operations for itself, this call
504 * will always be made in response to external events.
509 g_settings_backend_path_writable_changed (GSettingsBackend
*backend
,
512 g_return_if_fail (G_IS_SETTINGS_BACKEND (backend
));
513 g_return_if_fail (is_path (path
));
515 g_settings_backend_dispatch_signal (backend
,
516 G_STRUCT_OFFSET (GSettingsListenerVTable
,
517 path_writable_changed
),
530 g_settings_backend_flatten_one (gpointer key
,
534 FlattenState
*state
= user_data
;
535 const gchar
*skey
= key
;
538 g_return_val_if_fail (is_key (key
), TRUE
);
540 /* calculate longest common prefix */
541 if (state
->prefix
== NULL
)
545 /* first key? just take the prefix up to the last '/' */
546 state
->prefix
= g_strdup (skey
);
547 last_byte
= strrchr (state
->prefix
, '/') + 1;
548 state
->prefix_len
= last_byte
- state
->prefix
;
553 /* find the first character that does not match. we will
554 * definitely find one because the prefix ends in '/' and the key
555 * does not. also: no two keys in the tree are the same.
557 for (i
= 0; state
->prefix
[i
] == skey
[i
]; i
++);
559 /* check if we need to shorten the prefix */
560 if (state
->prefix
[i
] != '\0')
562 /* find the nearest '/', terminate after it */
563 while (state
->prefix
[i
- 1] != '/')
566 state
->prefix
[i
] = '\0';
567 state
->prefix_len
= i
;
572 /* save the entire item into the array.
573 * the prefixes will be removed later.
575 *state
->keys
++ = key
;
578 *state
->values
++ = value
;
584 * g_settings_backend_flatten_tree:
585 * @tree: a #GTree containing the changes
586 * @path: (out): the location to save the path
587 * @keys: (out) (transfer container) (array zero-terminated=1): the
588 * location to save the relative keys
589 * @values: (out) (optional) (transfer container) (array zero-terminated=1):
590 * the location to save the values, or %NULL
592 * Calculate the longest common prefix of all keys in a tree and write
593 * out an array of the key names relative to that prefix and,
594 * optionally, the value to store at each of those keys.
596 * You must free the value returned in @path, @keys and @values using
597 * g_free(). You should not attempt to free or unref the contents of
603 g_settings_backend_flatten_tree (GTree
*tree
,
608 FlattenState state
= { 0, };
611 nnodes
= g_tree_nnodes (tree
);
613 *keys
= state
.keys
= g_new (const gchar
*, nnodes
+ 1);
614 state
.keys
[nnodes
] = NULL
;
618 *values
= state
.values
= g_new (GVariant
*, nnodes
+ 1);
619 state
.values
[nnodes
] = NULL
;
622 g_tree_foreach (tree
, g_settings_backend_flatten_one
, &state
);
623 g_return_if_fail (*keys
+ nnodes
== state
.keys
);
625 *path
= state
.prefix
;
627 *--state
.keys
+= state
.prefix_len
;
631 * g_settings_backend_changed_tree:
632 * @backend: a #GSettingsBackend implementation
633 * @tree: a #GTree containing the changes
634 * @origin_tag: the origin tag
636 * This call is a convenience wrapper. It gets the list of changes from
637 * @tree, computes the longest common prefix and calls
638 * g_settings_backend_changed().
643 g_settings_backend_changed_tree (GSettingsBackend
*backend
,
650 g_return_if_fail (G_IS_SETTINGS_BACKEND (backend
));
652 g_settings_backend_flatten_tree (tree
, &path
, &keys
, NULL
);
659 g_print ("changed_tree(): prefix %s\n", path
);
660 for (i
= 0; keys
[i
]; i
++)
661 g_print (" %s\n", keys
[i
]);
666 g_settings_backend_keys_changed (backend
, path
, keys
, origin_tag
);
672 * g_settings_backend_read:
673 * @backend: a #GSettingsBackend implementation
674 * @key: the key to read
675 * @expected_type: a #GVariantType
676 * @default_value: if the default value should be returned
678 * Reads a key. This call will never block.
680 * If the key exists, the value associated with it will be returned.
681 * If the key does not exist, %NULL will be returned.
683 * The returned value will be of the type given in @expected_type. If
684 * the backend stored a value of a different type then %NULL will be
687 * If @default_value is %TRUE then this gets the default value from the
688 * backend (ie: the one that the backend would contain if
689 * g_settings_reset() were called).
691 * Returns: the value that was read, or %NULL
694 g_settings_backend_read (GSettingsBackend
*backend
,
696 const GVariantType
*expected_type
,
697 gboolean default_value
)
701 value
= G_SETTINGS_BACKEND_GET_CLASS (backend
)
702 ->read (backend
, key
, expected_type
, default_value
);
705 value
= g_variant_take_ref (value
);
707 if G_UNLIKELY (value
&& !g_variant_is_of_type (value
, expected_type
))
709 g_variant_unref (value
);
717 * g_settings_backend_read_user_value:
718 * @backend: a #GSettingsBackend implementation
719 * @key: the key to read
720 * @expected_type: a #GVariantType
722 * Reads the 'user value' of a key.
724 * This is the value of the key that the user has control over and has
725 * set for themselves. Put another way: if the user did not set the
726 * value for themselves, then this will return %NULL (even if the
727 * sysadmin has provided a default value).
729 * Returns: the value that was read, or %NULL
732 g_settings_backend_read_user_value (GSettingsBackend
*backend
,
734 const GVariantType
*expected_type
)
738 value
= G_SETTINGS_BACKEND_GET_CLASS (backend
)
739 ->read_user_value (backend
, key
, expected_type
);
742 value
= g_variant_take_ref (value
);
744 if G_UNLIKELY (value
&& !g_variant_is_of_type (value
, expected_type
))
746 g_variant_unref (value
);
754 * g_settings_backend_write:
755 * @backend: a #GSettingsBackend implementation
756 * @key: the name of the key
757 * @value: a #GVariant value to write to this key
758 * @origin_tag: the origin tag
760 * Writes exactly one key.
762 * This call does not fail. During this call a
763 * #GSettingsBackend::changed signal will be emitted if the value of the
764 * key has changed. The updated key value will be visible to any signal
767 * One possible method that an implementation might deal with failures is
768 * to emit a second "changed" signal (either during this call, or later)
769 * to indicate that the affected keys have suddenly "changed back" to their
772 * Returns: %TRUE if the write succeeded, %FALSE if the key was not writable
775 g_settings_backend_write (GSettingsBackend
*backend
,
782 g_variant_ref_sink (value
);
783 success
= G_SETTINGS_BACKEND_GET_CLASS (backend
)
784 ->write (backend
, key
, value
, origin_tag
);
785 g_variant_unref (value
);
791 * g_settings_backend_write_tree:
792 * @backend: a #GSettingsBackend implementation
793 * @tree: a #GTree containing key-value pairs to write
794 * @origin_tag: the origin tag
796 * Writes one or more keys. This call will never block.
798 * The key of each item in the tree is the key name to write to and the
799 * value is a #GVariant to write. The proper type of #GTree for this
800 * call can be created with g_settings_backend_create_tree(). This call
801 * might take a reference to the tree; you must not modified the #GTree
802 * after passing it to this call.
804 * This call does not fail. During this call a #GSettingsBackend::changed
805 * signal will be emitted if any keys have been changed. The new values of
806 * all updated keys will be visible to any signal callbacks.
808 * One possible method that an implementation might deal with failures is
809 * to emit a second "changed" signal (either during this call, or later)
810 * to indicate that the affected keys have suddenly "changed back" to their
814 g_settings_backend_write_tree (GSettingsBackend
*backend
,
818 return G_SETTINGS_BACKEND_GET_CLASS (backend
)
819 ->write_tree (backend
, tree
, origin_tag
);
823 * g_settings_backend_reset:
824 * @backend: a #GSettingsBackend implementation
825 * @key: the name of a key
826 * @origin_tag: the origin tag
828 * "Resets" the named key to its "default" value (ie: after system-wide
829 * defaults, mandatory keys, etc. have been taken into account) or possibly
833 g_settings_backend_reset (GSettingsBackend
*backend
,
837 G_SETTINGS_BACKEND_GET_CLASS (backend
)
838 ->reset (backend
, key
, origin_tag
);
842 * g_settings_backend_get_writable:
843 * @backend: a #GSettingsBackend implementation
844 * @key: the name of a key
846 * Finds out if a key is available for writing to. This is the
847 * interface through which 'lockdown' is implemented. Locked down
848 * keys will have %FALSE returned by this call.
850 * You should not write to locked-down keys, but if you do, the
851 * implementation will deal with it.
853 * Returns: %TRUE if the key is writable
856 g_settings_backend_get_writable (GSettingsBackend
*backend
,
859 return G_SETTINGS_BACKEND_GET_CLASS (backend
)
860 ->get_writable (backend
, key
);
864 * g_settings_backend_unsubscribe:
865 * @backend: a #GSettingsBackend
866 * @name: a key or path to subscribe to
868 * Reverses the effect of a previous call to
869 * g_settings_backend_subscribe().
872 g_settings_backend_unsubscribe (GSettingsBackend
*backend
,
875 G_SETTINGS_BACKEND_GET_CLASS (backend
)
876 ->unsubscribe (backend
, name
);
880 * g_settings_backend_subscribe:
881 * @backend: a #GSettingsBackend
882 * @name: a key or path to subscribe to
884 * Requests that change signals be emitted for events on @name.
887 g_settings_backend_subscribe (GSettingsBackend
*backend
,
890 G_SETTINGS_BACKEND_GET_CLASS (backend
)
891 ->subscribe (backend
, name
);
895 g_settings_backend_finalize (GObject
*object
)
897 GSettingsBackend
*backend
= G_SETTINGS_BACKEND (object
);
899 g_mutex_clear (&backend
->priv
->lock
);
901 G_OBJECT_CLASS (g_settings_backend_parent_class
)
906 ignore_subscription (GSettingsBackend
*backend
,
912 g_settings_backend_real_read_user_value (GSettingsBackend
*backend
,
914 const GVariantType
*expected_type
)
916 return g_settings_backend_read (backend
, key
, expected_type
, FALSE
);
920 g_settings_backend_init (GSettingsBackend
*backend
)
922 backend
->priv
= g_settings_backend_get_instance_private (backend
);
923 g_mutex_init (&backend
->priv
->lock
);
927 g_settings_backend_class_init (GSettingsBackendClass
*class)
929 GObjectClass
*gobject_class
= G_OBJECT_CLASS (class);
931 class->subscribe
= ignore_subscription
;
932 class->unsubscribe
= ignore_subscription
;
934 class->read_user_value
= g_settings_backend_real_read_user_value
;
936 gobject_class
->finalize
= g_settings_backend_finalize
;
940 g_settings_backend_variant_unref0 (gpointer data
)
943 g_variant_unref (data
);
947 * g_settings_backend_create_tree:
949 * This is a convenience function for creating a tree that is compatible
950 * with g_settings_backend_write(). It merely calls g_tree_new_full()
951 * with strcmp(), g_free() and g_variant_unref().
953 * Returns: a new #GTree
956 g_settings_backend_create_tree (void)
958 return g_tree_new_full ((GCompareDataFunc
) strcmp
, NULL
,
959 g_free
, g_settings_backend_variant_unref0
);
963 g_settings_backend_verify (gpointer impl
)
965 GSettingsBackend
*backend
= impl
;
967 if (strcmp (G_OBJECT_TYPE_NAME (backend
), "GMemorySettingsBackend") == 0 &&
968 g_strcmp0 (g_getenv ("GSETTINGS_BACKEND"), "memory") != 0)
970 g_message ("Using the 'memory' GSettings backend. Your settings "
971 "will not be saved or shared with other applications.");
974 g_settings_has_backend
= TRUE
;
979 * g_settings_backend_get_default:
981 * Returns the default #GSettingsBackend. It is possible to override
982 * the default by setting the `GSETTINGS_BACKEND` environment variable
983 * to the name of a settings backend.
985 * The user gets a reference to the backend.
987 * Returns: (transfer full): the default #GSettingsBackend
992 g_settings_backend_get_default (void)
994 GSettingsBackend
*backend
;
996 backend
= _g_io_module_get_default (G_SETTINGS_BACKEND_EXTENSION_POINT_NAME
,
998 g_settings_backend_verify
);
999 return g_object_ref (backend
);
1003 * g_settings_backend_get_permission:
1004 * @backend: a #GSettingsBackend
1007 * Gets the permission object associated with writing to keys below
1008 * @path on @backend.
1010 * If this is not implemented in the backend, then a %TRUE
1011 * #GSimplePermission is returned.
1013 * Returns: a non-%NULL #GPermission. Free with g_object_unref()
1016 g_settings_backend_get_permission (GSettingsBackend
*backend
,
1019 GSettingsBackendClass
*class = G_SETTINGS_BACKEND_GET_CLASS (backend
);
1021 if (class->get_permission
)
1022 return class->get_permission (backend
, path
);
1024 return g_simple_permission_new (TRUE
);
1028 * g_settings_backend_sync_default:
1030 * Syncs the default backend.
1033 g_settings_backend_sync_default (void)
1035 if (g_settings_has_backend
)
1037 GSettingsBackendClass
*class;
1038 GSettingsBackend
*backend
;
1040 backend
= g_settings_backend_get_default ();
1041 class = G_SETTINGS_BACKEND_GET_CLASS (backend
);
1044 class->sync (backend
);