2010-04-13 15:41:43 -04:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Codethink Limited
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the licence, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2010-04-13 23:51:29 -04:00
|
|
|
#include <glib.h>
|
|
|
|
#include <glibintl.h>
|
2010-04-13 15:41:43 -04:00
|
|
|
|
|
|
|
#include "gsettingsschema.h"
|
|
|
|
|
|
|
|
#include "gvdb/gvdb-reader.h"
|
|
|
|
|
2010-04-13 23:51:29 -04:00
|
|
|
/**
|
|
|
|
* SECTION:gsettingsschema
|
|
|
|
* @short_description: schema information for settings
|
|
|
|
*
|
|
|
|
* The #GSettingsSchema class provides schema information (i.e. types,
|
|
|
|
* default values and descriptions) for keys in settings.
|
2010-04-14 00:22:50 -04:00
|
|
|
*
|
|
|
|
* Schema information is required to use #GSettings.
|
|
|
|
*
|
|
|
|
* The source format for GSettings schemas is an XML format that can
|
|
|
|
* be described with the following DTD:
|
|
|
|
* |[<![CDATA[
|
|
|
|
* <!ELEMENT schemalist (schema*) >
|
|
|
|
* <!ATTLIST schemalist gettext-domain #IMPLIED >
|
|
|
|
*
|
|
|
|
* <!ELEMENT schema (key*) >
|
|
|
|
* <!ATTLIST schema id #REQUIRED
|
|
|
|
* path #IMPLIED
|
|
|
|
* gettext-domain #IMPLIED >
|
|
|
|
*
|
2010-04-14 11:48:36 -04:00
|
|
|
* <!ELEMENT key (default|summary?|description?|range?|choices?) >
|
2010-04-14 00:22:50 -04:00
|
|
|
* <!ATTLIST key name #REQUIRED
|
|
|
|
* type #REQUIRED >
|
|
|
|
*
|
|
|
|
* <!ELEMENT default (#PCDATA) >
|
|
|
|
* <!ATTLIST default l10n #IMPLIED >
|
|
|
|
*
|
|
|
|
* <!ELEMENT summary (#PCDATA) >
|
|
|
|
* <!ELEMENT description (#PCDATA) >
|
|
|
|
*
|
2010-04-14 11:48:36 -04:00
|
|
|
* <!ELEMENT range (min,max) >
|
2010-04-14 00:22:50 -04:00
|
|
|
* <!ELEMENT min (#PCDATA) >
|
|
|
|
* <!ELEMENT max (#PCDATA) >
|
2010-04-14 11:48:36 -04:00
|
|
|
*
|
|
|
|
* <!ELEMENT choices (choice+) >
|
|
|
|
* <!ELEMENT choice (alias?) >
|
|
|
|
* <!ATTLIST choice value #REQUIRED >
|
|
|
|
* <!ELEMENT choice (alias?) >
|
|
|
|
* <!ELEMENT alias EMPTY >
|
|
|
|
* <!ATTLIST alias value #REQUIRED >
|
2010-04-14 00:22:50 -04:00
|
|
|
* ]]>
|
|
|
|
* ]|
|
2010-04-13 23:51:29 -04:00
|
|
|
*/
|
|
|
|
|
2010-04-13 15:41:43 -04:00
|
|
|
G_DEFINE_TYPE (GSettingsSchema, g_settings_schema, G_TYPE_OBJECT)
|
|
|
|
|
|
|
|
struct _GSettingsSchemaPrivate
|
|
|
|
{
|
|
|
|
GvdbTable *table;
|
|
|
|
gchar *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static GSList *schema_sources;
|
|
|
|
|
|
|
|
static void
|
|
|
|
initialise_schema_sources (void)
|
|
|
|
{
|
2010-04-13 22:01:37 -04:00
|
|
|
static gsize initialised;
|
2010-04-13 15:41:43 -04:00
|
|
|
|
|
|
|
if G_UNLIKELY (g_once_init_enter (&initialised))
|
|
|
|
{
|
|
|
|
const gchar * const *dir;
|
2010-04-14 13:25:47 -04:00
|
|
|
const gchar *path;
|
2010-04-13 15:41:43 -04:00
|
|
|
|
|
|
|
for (dir = g_get_system_data_dirs (); *dir; dir++)
|
|
|
|
{
|
|
|
|
gchar *filename;
|
2010-04-14 11:48:36 -04:00
|
|
|
GvdbTable *table;
|
2010-04-13 15:41:43 -04:00
|
|
|
|
2010-04-14 12:39:08 -04:00
|
|
|
filename = g_build_filename (*dir, "glib-2.0/schemas", "gschemas.compiled", NULL);
|
2010-04-13 23:51:29 -04:00
|
|
|
table = gvdb_table_new (filename, TRUE, NULL);
|
2010-04-13 15:41:43 -04:00
|
|
|
|
2010-04-13 23:51:29 -04:00
|
|
|
if (table != NULL)
|
|
|
|
schema_sources = g_slist_prepend (schema_sources, table);
|
2010-04-13 15:41:43 -04:00
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
|
2010-04-14 11:48:36 -04:00
|
|
|
if ((path = g_getenv ("GSETTINGS_SCHEMA_DIR")) != NULL)
|
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
GvdbTable *table;
|
|
|
|
|
2010-04-14 12:39:08 -04:00
|
|
|
filename = g_build_filename (path, "gschemas.compiled", NULL);
|
2010-04-14 11:48:36 -04:00
|
|
|
table = gvdb_table_new (filename, TRUE, NULL);
|
|
|
|
|
|
|
|
if (table != NULL)
|
|
|
|
schema_sources = g_slist_prepend (schema_sources, table);
|
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
|
2010-04-13 15:41:43 -04:00
|
|
|
schema_sources = g_slist_reverse (schema_sources);
|
|
|
|
|
|
|
|
g_once_init_leave (&initialised, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_settings_schema_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GSettingsSchema *schema = G_SETTINGS_SCHEMA (object);
|
|
|
|
|
|
|
|
gvdb_table_unref (schema->priv->table);
|
|
|
|
g_free (schema->priv->name);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (g_settings_schema_parent_class)
|
|
|
|
->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_settings_schema_init (GSettingsSchema *schema)
|
|
|
|
{
|
|
|
|
schema->priv = G_TYPE_INSTANCE_GET_PRIVATE (schema, G_TYPE_SETTINGS_SCHEMA,
|
|
|
|
GSettingsSchemaPrivate);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
g_settings_schema_class_init (GSettingsSchemaClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
|
|
|
|
|
|
|
object_class->finalize = g_settings_schema_finalize;
|
|
|
|
|
|
|
|
g_type_class_add_private (class, sizeof (GSettingsSchemaPrivate));
|
|
|
|
}
|
|
|
|
|
2010-04-13 23:51:29 -04:00
|
|
|
/**
|
|
|
|
* g_settings_schema_new:
|
|
|
|
* @name: the name of the schema
|
|
|
|
* @returns: a newly created #GSettingsSchema object
|
|
|
|
*
|
|
|
|
* Creates a new #GSettingsSchema object for the schema
|
|
|
|
* with the specified name. A settings schema with this name
|
|
|
|
* must have been installed, see gschema-compile.
|
|
|
|
*
|
|
|
|
* Since: 2.26
|
|
|
|
*/
|
2010-04-13 15:41:43 -04:00
|
|
|
GSettingsSchema *
|
|
|
|
g_settings_schema_new (const gchar *name)
|
|
|
|
{
|
2010-04-13 16:46:40 -04:00
|
|
|
GSettingsSchema *schema;
|
2010-04-13 15:41:43 -04:00
|
|
|
GvdbTable *table = NULL;
|
|
|
|
GSList *source;
|
|
|
|
|
|
|
|
initialise_schema_sources ();
|
|
|
|
|
|
|
|
for (source = schema_sources; source; source = source->next)
|
|
|
|
{
|
|
|
|
GvdbTable *file = source->data;
|
|
|
|
|
|
|
|
if ((table = gvdb_table_get_table (file, name)))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-04-13 16:46:40 -04:00
|
|
|
if (table == NULL)
|
|
|
|
g_error ("Settings schema '%s' is not installed\n", name);
|
|
|
|
|
|
|
|
schema = g_object_new (G_TYPE_SETTINGS_SCHEMA, NULL);
|
|
|
|
schema->priv->name = g_strdup (name);
|
|
|
|
schema->priv->table = table;
|
2010-04-13 23:51:29 -04:00
|
|
|
|
2010-04-13 15:41:43 -04:00
|
|
|
return schema;
|
|
|
|
}
|
|
|
|
|
2010-04-13 23:51:29 -04:00
|
|
|
/**
|
|
|
|
* g_settings_schema_get_value:
|
|
|
|
* @schema: a #GSettingsSchema oject
|
|
|
|
* @key: the key to get the value for
|
|
|
|
* @options: return location for options, or %NULL
|
|
|
|
* @returns: a #GVariant holding the default value for @key, or %NULL
|
|
|
|
*
|
|
|
|
* Gets the default value that is defined for @key
|
|
|
|
* in @schema. If @options is not %NULL, then it will be set either
|
|
|
|
* to %NULL in the case of no options or a #GVariant containing a
|
|
|
|
* dictionary mapping strings to variants.
|
|
|
|
*
|
|
|
|
* You should call g_variant_unref() on the returned value when
|
|
|
|
* it is no longer needed.
|
|
|
|
*
|
|
|
|
* Since: 2.26
|
|
|
|
*/
|
2010-04-13 15:41:43 -04:00
|
|
|
GVariant *
|
|
|
|
g_settings_schema_get_value (GSettingsSchema *schema,
|
|
|
|
const gchar *key,
|
|
|
|
GVariant **options)
|
|
|
|
{
|
|
|
|
return gvdb_table_get_value (schema->priv->table, key, options);
|
|
|
|
}
|
2010-04-13 16:46:40 -04:00
|
|
|
|
2010-04-13 23:51:29 -04:00
|
|
|
/**
|
|
|
|
* g_settings_schema_get_path:
|
|
|
|
* @schema: a #GSettingsSchema object
|
|
|
|
* @returns: the path of the schema, or %NULL
|
|
|
|
*
|
|
|
|
* Returns the prefix which is prepended to keys described in the schema
|
|
|
|
* when storing them in a #GSettingsBackend. Some schemas can be stored
|
|
|
|
* at different prefixes, in which case this function will return %NULL.
|
|
|
|
*
|
|
|
|
* Since: 2.26
|
|
|
|
*/
|
2010-04-13 16:46:40 -04:00
|
|
|
const gchar *
|
|
|
|
g_settings_schema_get_path (GSettingsSchema *schema)
|
|
|
|
{
|
|
|
|
const gchar *result;
|
|
|
|
GVariant *value;
|
|
|
|
|
|
|
|
value = gvdb_table_get_value (schema->priv->table, ".path", NULL);
|
|
|
|
|
|
|
|
if (value && g_variant_is_of_type (value, G_VARIANT_TYPE_STRING))
|
|
|
|
{
|
|
|
|
result = g_variant_get_string (value, NULL);
|
|
|
|
g_variant_unref (value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
result = NULL;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2010-04-14 17:59:52 -04:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
g_settings_schema_has_key (GSettingsSchema *schema,
|
|
|
|
const gchar *key)
|
|
|
|
{
|
|
|
|
/* XXX vuntz wants a commit now :) */
|
|
|
|
return TRUE;
|
|
|
|
}
|