2 * Copyright © 2010 Codethink Limited
4 * SPDX-License-Identifier: LGPL-2.1-or-later
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 * Author: Ryan Lortie <desrt@desrt.ca>
24 #include "gsettingsbackendinternal.h"
25 #include "giomodule-priv.h"
26 #include "gsimplepermission.h"
29 #define G_TYPE_NULL_SETTINGS_BACKEND (g_null_settings_backend_get_type ())
30 #define G_NULL_SETTINGS_BACKEND(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
31 G_TYPE_NULL_SETTINGS_BACKEND, \
32 GNullSettingsBackend))
35 typedef GSettingsBackendClass GNullSettingsBackendClass;
36 typedef GSettingsBackend GNullSettingsBackend;
38 G_DEFINE_TYPE_WITH_CODE (GNullSettingsBackend,
39 g_null_settings_backend,
40 G_TYPE_SETTINGS_BACKEND,
41 _g_io_modules_ensure_extension_points_registered ();
42 g_io_extension_point_implement (G_SETTINGS_BACKEND_EXTENSION_POINT_NAME,
43 g_define_type_id, "null", 10))
46 g_null_settings_backend_read (GSettingsBackend *backend,
48 const GVariantType *expected_type,
49 gboolean default_value)
55 g_null_settings_backend_write (GSettingsBackend *backend,
61 g_variant_unref (g_variant_ref_sink (value));
66 g_null_settings_backend_write_one (gpointer key,
71 g_variant_unref (g_variant_ref_sink (value));
76 g_null_settings_backend_write_tree (GSettingsBackend *backend,
80 g_tree_foreach (tree, g_null_settings_backend_write_one, backend);
85 g_null_settings_backend_reset (GSettingsBackend *backend,
92 g_null_settings_backend_get_writable (GSettingsBackend *backend,
99 g_null_settings_backend_get_permission (GSettingsBackend *backend,
102 return g_simple_permission_new (FALSE);
106 g_null_settings_backend_init (GNullSettingsBackend *memory)
111 g_null_settings_backend_class_init (GNullSettingsBackendClass *class)
113 GSettingsBackendClass *backend_class = G_SETTINGS_BACKEND_CLASS (class);
115 backend_class->read = g_null_settings_backend_read;
116 backend_class->write = g_null_settings_backend_write;
117 backend_class->write_tree = g_null_settings_backend_write_tree;
118 backend_class->reset = g_null_settings_backend_reset;
119 backend_class->get_writable = g_null_settings_backend_get_writable;
120 backend_class->get_permission = g_null_settings_backend_get_permission;
124 * g_null_settings_backend_new:
127 * Creates a readonly #GSettingsBackend.
129 * This backend does not allow changes to settings, so all settings
130 * will always have their default values.
132 * Returns: (transfer full): a newly created #GSettingsBackend
137 g_null_settings_backend_new (void)
139 return g_object_new (G_TYPE_NULL_SETTINGS_BACKEND, NULL);