2010-04-16 04:30:11 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2010 Codethink Limited
|
2011-11-15 09:00:16 +01:00
|
|
|
* Copyright © 2011 Canonical Limited
|
2010-04-16 04:30:11 +02:00
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
2011-11-13 21:41:01 +01:00
|
|
|
#include "gsettingsschema-internal.h"
|
2011-10-17 03:24:45 +02:00
|
|
|
#include "gsettings.h"
|
|
|
|
|
2010-04-16 04:30:11 +02:00
|
|
|
#include "gvdb/gvdb-reader.h"
|
2011-11-14 17:15:58 +01:00
|
|
|
#include "strinfo.c"
|
2010-04-16 04:30:11 +02:00
|
|
|
|
|
|
|
#include <glibintl.h>
|
2011-11-14 17:15:58 +01:00
|
|
|
#include <string.h>
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
struct _GSettingsSchema
|
2010-04-16 04:30:11 +02:00
|
|
|
{
|
|
|
|
const gchar *gettext_domain;
|
|
|
|
const gchar *path;
|
2010-04-17 05:20:48 +02:00
|
|
|
GQuark *items;
|
|
|
|
gint n_items;
|
2010-04-16 04:30:11 +02:00
|
|
|
GvdbTable *table;
|
2011-11-15 12:39:12 +01:00
|
|
|
gchar *id;
|
2011-11-13 21:38:31 +01:00
|
|
|
|
|
|
|
gint ref_count;
|
2010-04-16 04:30:11 +02:00
|
|
|
};
|
|
|
|
|
2011-11-15 08:24:48 +01:00
|
|
|
typedef struct _GSettingsSchemaSource GSettingsSchemaSource;
|
|
|
|
|
2011-11-15 13:28:28 +01:00
|
|
|
G_DEFINE_BOXED_TYPE (GSettingsSchemaSource, g_settings_schema_source, g_settings_schema_source_ref, g_settings_schema_source_unref)
|
|
|
|
G_DEFINE_BOXED_TYPE (GSettingsSchema, g_settings_schema, g_settings_schema_ref, g_settings_schema_unref)
|
|
|
|
|
2011-11-15 08:24:48 +01:00
|
|
|
struct _GSettingsSchemaSource
|
|
|
|
{
|
|
|
|
GSettingsSchemaSource *parent;
|
|
|
|
GvdbTable *table;
|
2011-11-15 08:31:20 +01:00
|
|
|
|
|
|
|
gint ref_count;
|
2011-11-15 08:24:48 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static GSettingsSchemaSource *schema_sources;
|
|
|
|
|
|
|
|
static void
|
|
|
|
prepend_schema_table (GvdbTable *table)
|
|
|
|
{
|
|
|
|
GSettingsSchemaSource *source;
|
|
|
|
|
2011-11-15 08:31:20 +01:00
|
|
|
/* we steal the reference from 'schema_sources' for our ->parent */
|
2011-11-15 08:24:48 +01:00
|
|
|
source = g_slice_new (GSettingsSchemaSource);
|
|
|
|
source->parent = schema_sources;
|
|
|
|
source->table = table;
|
2011-11-15 08:31:20 +01:00
|
|
|
source->ref_count = 1;
|
2011-11-15 08:24:48 +01:00
|
|
|
|
|
|
|
schema_sources = source;
|
|
|
|
}
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2011-11-15 08:31:20 +01:00
|
|
|
GSettingsSchemaSource *
|
|
|
|
g_settings_schema_source_ref (GSettingsSchemaSource *source)
|
|
|
|
{
|
|
|
|
g_atomic_int_inc (&source->ref_count);
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
g_settings_schema_source_unref (GSettingsSchemaSource *source)
|
|
|
|
{
|
|
|
|
if (g_atomic_int_dec_and_test (&source->ref_count))
|
|
|
|
{
|
|
|
|
if (source == schema_sources)
|
|
|
|
g_error ("g_settings_schema_source_unref() called too many times on the default schema source");
|
|
|
|
|
2011-11-16 11:38:04 +01:00
|
|
|
if (source->parent)
|
|
|
|
g_settings_schema_source_unref (source->parent);
|
2011-11-15 08:31:20 +01:00
|
|
|
gvdb_table_unref (source->table);
|
|
|
|
|
|
|
|
g_slice_free (GSettingsSchemaSource, source);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-16 11:37:30 +01:00
|
|
|
GSettingsSchemaSource *
|
2011-11-16 20:53:03 +01:00
|
|
|
g_settings_schema_source_new_from_directory (const gchar *directory,
|
|
|
|
GSettingsSchemaSource *parent,
|
2011-11-16 11:37:30 +01:00
|
|
|
gboolean trusted,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
GSettingsSchemaSource *source;
|
|
|
|
GvdbTable *table;
|
|
|
|
gchar *filename;
|
|
|
|
|
|
|
|
filename = g_build_filename (directory, "gschemas.compiled", NULL);
|
2011-11-16 20:51:27 +01:00
|
|
|
table = gvdb_table_new (filename, trusted, error);
|
2011-11-16 11:37:30 +01:00
|
|
|
g_free (filename);
|
|
|
|
|
|
|
|
if (table == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
source = g_slice_new (GSettingsSchemaSource);
|
|
|
|
source->parent = parent ? g_settings_schema_source_ref (parent) : NULL;
|
|
|
|
source->table = table;
|
|
|
|
source->ref_count = 1;
|
|
|
|
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
2010-04-16 04:30:11 +02:00
|
|
|
static void
|
|
|
|
initialise_schema_sources (void)
|
|
|
|
{
|
|
|
|
static gsize initialised;
|
|
|
|
|
2011-11-15 08:16:48 +01:00
|
|
|
/* need a separate variable because 'schema_sources' may legitimately
|
|
|
|
* be null if we have zero valid schema sources
|
|
|
|
*/
|
2010-04-16 04:30:11 +02:00
|
|
|
if G_UNLIKELY (g_once_init_enter (&initialised))
|
|
|
|
{
|
2011-11-15 08:16:48 +01:00
|
|
|
const gchar * const *dirs;
|
2010-04-16 04:30:11 +02:00
|
|
|
const gchar *path;
|
2011-11-15 08:16:48 +01:00
|
|
|
gint i;
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2011-11-15 08:16:48 +01:00
|
|
|
/* iterate in reverse: count up, then count down */
|
|
|
|
dirs = g_get_system_data_dirs ();
|
|
|
|
for (i = 0; dirs[i]; i++);
|
|
|
|
|
|
|
|
while (i--)
|
2010-04-16 04:30:11 +02:00
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
GvdbTable *table;
|
|
|
|
|
2011-11-15 08:16:48 +01:00
|
|
|
filename = g_build_filename (dirs[i], "glib-2.0", "schemas", "gschemas.compiled", NULL);
|
2010-04-16 04:30:11 +02:00
|
|
|
table = gvdb_table_new (filename, TRUE, NULL);
|
|
|
|
|
|
|
|
if (table != NULL)
|
2011-11-15 08:24:48 +01:00
|
|
|
prepend_schema_table (table);
|
2010-04-16 04:30:11 +02:00
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((path = g_getenv ("GSETTINGS_SCHEMA_DIR")) != NULL)
|
|
|
|
{
|
|
|
|
gchar *filename;
|
|
|
|
GvdbTable *table;
|
|
|
|
|
|
|
|
filename = g_build_filename (path, "gschemas.compiled", NULL);
|
|
|
|
table = gvdb_table_new (filename, TRUE, NULL);
|
|
|
|
|
|
|
|
if (table != NULL)
|
2011-11-15 08:24:48 +01:00
|
|
|
prepend_schema_table (table);
|
2010-04-16 04:30:11 +02:00
|
|
|
|
|
|
|
g_free (filename);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_once_init_leave (&initialised, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-15 08:47:56 +01:00
|
|
|
GSettingsSchemaSource *
|
|
|
|
g_settings_schema_source_get_default (void)
|
|
|
|
{
|
|
|
|
initialise_schema_sources ();
|
|
|
|
|
|
|
|
return schema_sources;
|
|
|
|
}
|
|
|
|
|
|
|
|
GSettingsSchema *
|
|
|
|
g_settings_schema_source_lookup (GSettingsSchemaSource *source,
|
2011-11-15 12:39:12 +01:00
|
|
|
const gchar *schema_id,
|
2011-11-15 08:47:56 +01:00
|
|
|
gboolean recursive)
|
|
|
|
{
|
|
|
|
GSettingsSchema *schema;
|
|
|
|
GvdbTable *table;
|
|
|
|
|
|
|
|
g_return_val_if_fail (source != NULL, NULL);
|
2011-11-15 12:39:12 +01:00
|
|
|
g_return_val_if_fail (schema_id != NULL, NULL);
|
2011-11-15 08:47:56 +01:00
|
|
|
|
2011-11-15 12:39:12 +01:00
|
|
|
table = gvdb_table_get_table (source->table, schema_id);
|
2011-11-15 08:47:56 +01:00
|
|
|
|
|
|
|
if (table == NULL && recursive)
|
|
|
|
for (source = source->parent; source; source = source->parent)
|
2011-11-15 12:39:12 +01:00
|
|
|
if ((table = gvdb_table_get_table (source->table, schema_id)))
|
2011-11-15 08:47:56 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (table == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
schema = g_slice_new0 (GSettingsSchema);
|
|
|
|
schema->ref_count = 1;
|
2011-11-15 12:39:12 +01:00
|
|
|
schema->id = g_strdup (schema_id);
|
2011-11-15 08:47:56 +01:00
|
|
|
schema->table = table;
|
|
|
|
schema->path = g_settings_schema_get_string (schema, ".path");
|
|
|
|
schema->gettext_domain = g_settings_schema_get_string (schema, ".gettext-domain");
|
|
|
|
|
|
|
|
if (schema->gettext_domain)
|
|
|
|
bind_textdomain_codeset (schema->gettext_domain, "UTF-8");
|
|
|
|
|
|
|
|
return schema;
|
|
|
|
}
|
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
static gboolean
|
|
|
|
steal_item (gpointer key,
|
|
|
|
gpointer value,
|
|
|
|
gpointer user_data)
|
2010-06-24 18:25:48 +02:00
|
|
|
{
|
|
|
|
gchar ***ptr = user_data;
|
|
|
|
|
|
|
|
*(*ptr)++ = (gchar *) key;
|
2010-10-03 04:42:02 +02:00
|
|
|
|
|
|
|
return TRUE;
|
2010-06-24 18:25:48 +02:00
|
|
|
}
|
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
static const gchar * const *non_relocatable_schema_list;
|
|
|
|
static const gchar * const *relocatable_schema_list;
|
|
|
|
static gsize schema_lists_initialised;
|
2010-06-24 18:25:48 +02:00
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
static void
|
|
|
|
ensure_schema_lists (void)
|
|
|
|
{
|
|
|
|
if (g_once_init_enter (&schema_lists_initialised))
|
2010-06-24 18:25:48 +02:00
|
|
|
{
|
2011-11-15 08:24:48 +01:00
|
|
|
GSettingsSchemaSource *source;
|
2010-10-03 04:42:02 +02:00
|
|
|
GHashTable *single, *reloc;
|
|
|
|
const gchar **ptr;
|
2010-06-24 18:25:48 +02:00
|
|
|
gchar **list;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
initialise_schema_sources ();
|
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
/* We use hash tables to avoid duplicate listings for schemas that
|
|
|
|
* appear in more than one file.
|
|
|
|
*/
|
|
|
|
single = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
|
|
|
reloc = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
|
2010-06-24 18:25:48 +02:00
|
|
|
|
2011-11-15 08:24:48 +01:00
|
|
|
for (source = schema_sources; source; source = source->parent)
|
2010-06-24 18:25:48 +02:00
|
|
|
{
|
2011-11-15 08:24:48 +01:00
|
|
|
list = gvdb_table_list (source->table, "");
|
2010-06-24 18:25:48 +02:00
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
g_assert (list != NULL);
|
2010-06-24 18:25:48 +02:00
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
for (i = 0; list[i]; i++)
|
|
|
|
{
|
|
|
|
if (!g_hash_table_lookup (single, list[i]) &&
|
|
|
|
!g_hash_table_lookup (reloc, list[i]))
|
|
|
|
{
|
|
|
|
GvdbTable *table;
|
|
|
|
|
2011-11-15 08:24:48 +01:00
|
|
|
table = gvdb_table_get_table (source->table, list[i]);
|
2010-10-03 04:42:02 +02:00
|
|
|
g_assert (table != NULL);
|
|
|
|
|
|
|
|
if (gvdb_table_has_value (table, ".path"))
|
|
|
|
g_hash_table_insert (single, g_strdup (list[i]), NULL);
|
|
|
|
else
|
|
|
|
g_hash_table_insert (reloc, g_strdup (list[i]), NULL);
|
2010-11-29 15:29:12 +01:00
|
|
|
|
|
|
|
gvdb_table_unref (table);
|
2010-10-03 04:42:02 +02:00
|
|
|
}
|
2010-06-24 18:25:48 +02:00
|
|
|
}
|
2010-10-03 04:42:02 +02:00
|
|
|
|
|
|
|
g_strfreev (list);
|
2010-06-24 18:25:48 +02:00
|
|
|
}
|
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
ptr = g_new (const gchar *, g_hash_table_size (single) + 1);
|
|
|
|
non_relocatable_schema_list = ptr;
|
|
|
|
g_hash_table_foreach_steal (single, steal_item, &ptr);
|
|
|
|
g_hash_table_unref (single);
|
2010-06-24 18:25:48 +02:00
|
|
|
*ptr = NULL;
|
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
ptr = g_new (const gchar *, g_hash_table_size (reloc) + 1);
|
|
|
|
relocatable_schema_list = ptr;
|
|
|
|
g_hash_table_foreach_steal (reloc, steal_item, &ptr);
|
|
|
|
g_hash_table_unref (reloc);
|
|
|
|
*ptr = NULL;
|
2010-06-24 18:25:48 +02:00
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
g_once_init_leave (&schema_lists_initialised, TRUE);
|
2010-06-24 18:25:48 +02:00
|
|
|
}
|
2010-10-03 04:42:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_settings_list_schemas:
|
|
|
|
*
|
|
|
|
* Gets a list of the #GSettings schemas installed on the system. The
|
|
|
|
* returned list is exactly the list of schemas for which you may call
|
|
|
|
* g_settings_new() without adverse effects.
|
|
|
|
*
|
|
|
|
* This function does not list the schemas that do not provide their own
|
|
|
|
* paths (ie: schemas for which you must use
|
|
|
|
* g_settings_new_with_path()). See
|
|
|
|
* g_settings_list_relocatable_schemas() for that.
|
|
|
|
*
|
|
|
|
* Returns: (element-type utf8) (transfer none): a list of #GSettings
|
|
|
|
* schemas that are available. The list must not be modified or
|
|
|
|
* freed.
|
2010-10-03 04:46:53 +02:00
|
|
|
*
|
|
|
|
* Since: 2.26
|
2010-10-03 04:42:02 +02:00
|
|
|
**/
|
|
|
|
const gchar * const *
|
|
|
|
g_settings_list_schemas (void)
|
|
|
|
{
|
|
|
|
ensure_schema_lists ();
|
|
|
|
|
|
|
|
return non_relocatable_schema_list;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_settings_list_relocatable_schemas:
|
|
|
|
*
|
|
|
|
* Gets a list of the relocatable #GSettings schemas installed on the
|
|
|
|
* system. These are schemas that do not provide their own path. It is
|
|
|
|
* usual to instantiate these schemas directly, but if you want to you
|
|
|
|
* can use g_settings_new_with_path() to specify the path.
|
|
|
|
*
|
|
|
|
* The output of this function, tTaken together with the output of
|
|
|
|
* g_settings_list_schemas() represents the complete list of all
|
|
|
|
* installed schemas.
|
|
|
|
*
|
|
|
|
* Returns: (element-type utf8) (transfer none): a list of relocatable
|
|
|
|
* #GSettings schemas that are available. The list must not be
|
|
|
|
* modified or freed.
|
2010-10-03 04:46:53 +02:00
|
|
|
*
|
|
|
|
* Since: 2.28
|
2010-10-03 04:42:02 +02:00
|
|
|
**/
|
|
|
|
const gchar * const *
|
|
|
|
g_settings_list_relocatable_schemas (void)
|
|
|
|
{
|
|
|
|
ensure_schema_lists ();
|
2010-06-24 18:25:48 +02:00
|
|
|
|
2010-10-03 04:42:02 +02:00
|
|
|
return relocatable_schema_list;
|
2010-06-24 18:25:48 +02:00
|
|
|
}
|
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
GSettingsSchema *
|
|
|
|
g_settings_schema_ref (GSettingsSchema *schema)
|
2010-04-16 04:30:11 +02:00
|
|
|
{
|
2011-11-13 21:38:31 +01:00
|
|
|
g_atomic_int_inc (&schema->ref_count);
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
return schema;
|
2010-04-16 04:30:11 +02:00
|
|
|
}
|
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
void
|
|
|
|
g_settings_schema_unref (GSettingsSchema *schema)
|
2010-04-16 04:30:11 +02:00
|
|
|
{
|
2011-11-13 21:38:31 +01:00
|
|
|
if (g_atomic_int_dec_and_test (&schema->ref_count))
|
|
|
|
{
|
|
|
|
gvdb_table_unref (schema->table);
|
|
|
|
g_free (schema->items);
|
2011-11-15 12:39:12 +01:00
|
|
|
g_free (schema->id);
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
g_slice_free (GSettingsSchema, schema);
|
|
|
|
}
|
2010-04-16 04:30:11 +02:00
|
|
|
}
|
|
|
|
|
2010-06-10 19:49:57 +02:00
|
|
|
const gchar *
|
2010-04-16 04:30:11 +02:00
|
|
|
g_settings_schema_get_string (GSettingsSchema *schema,
|
|
|
|
const gchar *key)
|
|
|
|
{
|
|
|
|
const gchar *result = NULL;
|
|
|
|
GVariant *value;
|
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
if ((value = gvdb_table_get_raw_value (schema->table, key)))
|
2010-04-16 04:30:11 +02:00
|
|
|
{
|
|
|
|
result = g_variant_get_string (value, NULL);
|
|
|
|
g_variant_unref (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-06-14 23:29:41 +02:00
|
|
|
GVariantIter *
|
|
|
|
g_settings_schema_get_value (GSettingsSchema *schema,
|
|
|
|
const gchar *key)
|
2010-04-16 04:30:11 +02:00
|
|
|
{
|
2010-06-14 23:29:41 +02:00
|
|
|
GVariantIter *iter;
|
|
|
|
GVariant *value;
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
value = gvdb_table_get_raw_value (schema->table, key);
|
2010-04-16 04:30:11 +02:00
|
|
|
|
2010-06-14 23:29:41 +02:00
|
|
|
if G_UNLIKELY (value == NULL)
|
2011-11-15 12:39:12 +01:00
|
|
|
g_error ("Settings schema '%s' does not contain a key named '%s'", schema->id, key);
|
2010-06-14 23:29:41 +02:00
|
|
|
|
|
|
|
iter = g_variant_iter_new (value);
|
|
|
|
g_variant_unref (value);
|
2010-06-10 19:49:57 +02:00
|
|
|
|
2010-06-14 23:29:41 +02:00
|
|
|
return iter;
|
2010-04-16 04:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const gchar *
|
|
|
|
g_settings_schema_get_path (GSettingsSchema *schema)
|
|
|
|
{
|
2011-11-13 21:38:31 +01:00
|
|
|
return schema->path;
|
2010-04-16 04:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const gchar *
|
|
|
|
g_settings_schema_get_gettext_domain (GSettingsSchema *schema)
|
|
|
|
{
|
2011-11-13 21:38:31 +01:00
|
|
|
return schema->gettext_domain;
|
2010-04-16 04:30:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
g_settings_schema_has_key (GSettingsSchema *schema,
|
|
|
|
const gchar *key)
|
|
|
|
{
|
2011-11-13 21:38:31 +01:00
|
|
|
return gvdb_table_has_value (schema->table, key);
|
2010-04-16 04:30:11 +02:00
|
|
|
}
|
2010-04-17 05:20:48 +02:00
|
|
|
|
|
|
|
const GQuark *
|
|
|
|
g_settings_schema_list (GSettingsSchema *schema,
|
|
|
|
gint *n_items)
|
|
|
|
{
|
|
|
|
gint i, j;
|
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
if (schema->items == NULL)
|
2010-04-17 05:20:48 +02:00
|
|
|
{
|
|
|
|
gchar **list;
|
|
|
|
gint len;
|
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
list = gvdb_table_list (schema->table, "");
|
2011-09-26 17:21:55 +02:00
|
|
|
len = list ? g_strv_length (list) : 0;
|
2010-04-17 05:20:48 +02:00
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
schema->items = g_new (GQuark, len);
|
2010-04-17 05:20:48 +02:00
|
|
|
j = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < len; i++)
|
|
|
|
if (list[i][0] != '.')
|
2011-11-13 21:38:31 +01:00
|
|
|
schema->items[j++] = g_quark_from_string (list[i]);
|
|
|
|
schema->n_items = j;
|
2010-04-17 05:20:48 +02:00
|
|
|
|
|
|
|
g_strfreev (list);
|
|
|
|
}
|
|
|
|
|
2011-11-13 21:38:31 +01:00
|
|
|
*n_items = schema->n_items;
|
|
|
|
return schema->items;
|
2010-04-17 05:20:48 +02:00
|
|
|
}
|
2011-11-14 17:02:04 +01:00
|
|
|
|
|
|
|
const gchar *
|
2011-11-15 12:39:12 +01:00
|
|
|
g_settings_schema_get_id (GSettingsSchema *schema)
|
2011-11-14 17:02:04 +01:00
|
|
|
{
|
2011-11-15 12:39:12 +01:00
|
|
|
return schema->id;
|
2011-11-14 17:02:04 +01:00
|
|
|
}
|
2011-11-14 17:15:58 +01:00
|
|
|
|
|
|
|
static inline void
|
|
|
|
endian_fixup (GVariant **value)
|
|
|
|
{
|
|
|
|
#if G_BYTE_ORDER == G_BIG_ENDIAN
|
|
|
|
GVariant *tmp;
|
|
|
|
|
|
|
|
tmp = g_variant_byteswap (*value);
|
|
|
|
g_variant_unref (*value);
|
|
|
|
*value = tmp;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
g_settings_schema_key_init (GSettingsSchemaKey *key,
|
|
|
|
GSettingsSchema *schema,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
GVariantIter *iter;
|
|
|
|
GVariant *data;
|
|
|
|
guchar code;
|
|
|
|
|
|
|
|
memset (key, 0, sizeof *key);
|
|
|
|
|
|
|
|
iter = g_settings_schema_get_value (schema, name);
|
|
|
|
|
|
|
|
key->schema = g_settings_schema_ref (schema);
|
|
|
|
key->default_value = g_variant_iter_next_value (iter);
|
|
|
|
endian_fixup (&key->default_value);
|
|
|
|
key->type = g_variant_get_type (key->default_value);
|
|
|
|
key->name = g_intern_string (name);
|
|
|
|
|
|
|
|
while (g_variant_iter_next (iter, "(y*)", &code, &data))
|
|
|
|
{
|
|
|
|
switch (code)
|
|
|
|
{
|
|
|
|
case 'l':
|
|
|
|
/* translation requested */
|
|
|
|
g_variant_get (data, "(y&s)", &key->lc_char, &key->unparsed);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'e':
|
|
|
|
/* enumerated types... */
|
|
|
|
key->is_enum = TRUE;
|
|
|
|
goto choice;
|
|
|
|
|
|
|
|
case 'f':
|
|
|
|
/* flags... */
|
|
|
|
key->is_flags = TRUE;
|
|
|
|
goto choice;
|
|
|
|
|
|
|
|
choice: case 'c':
|
|
|
|
/* ..., choices, aliases */
|
|
|
|
key->strinfo = g_variant_get_fixed_array (data, &key->strinfo_length, sizeof (guint32));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
g_variant_get (data, "(**)", &key->minimum, &key->maximum);
|
|
|
|
endian_fixup (&key->minimum);
|
|
|
|
endian_fixup (&key->maximum);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
g_warning ("unknown schema extension '%c'", code);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_variant_unref (data);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_variant_iter_free (iter);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
g_settings_schema_key_clear (GSettingsSchemaKey *key)
|
|
|
|
{
|
|
|
|
if (key->minimum)
|
|
|
|
g_variant_unref (key->minimum);
|
|
|
|
|
|
|
|
if (key->maximum)
|
|
|
|
g_variant_unref (key->maximum);
|
|
|
|
|
|
|
|
g_variant_unref (key->default_value);
|
|
|
|
|
|
|
|
g_settings_schema_unref (key->schema);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
g_settings_schema_key_type_check (GSettingsSchemaKey *key,
|
|
|
|
GVariant *value)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (value != NULL, FALSE);
|
|
|
|
|
|
|
|
return g_variant_is_of_type (value, key->type);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
g_settings_schema_key_range_check (GSettingsSchemaKey *key,
|
|
|
|
GVariant *value)
|
|
|
|
{
|
|
|
|
if (key->minimum == NULL && key->strinfo == NULL)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (g_variant_is_container (value))
|
|
|
|
{
|
|
|
|
gboolean ok = TRUE;
|
|
|
|
GVariantIter iter;
|
|
|
|
GVariant *child;
|
|
|
|
|
|
|
|
g_variant_iter_init (&iter, value);
|
|
|
|
while (ok && (child = g_variant_iter_next_value (&iter)))
|
|
|
|
{
|
|
|
|
ok = g_settings_schema_key_range_check (key, child);
|
|
|
|
g_variant_unref (child);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key->minimum)
|
|
|
|
{
|
|
|
|
return g_variant_compare (key->minimum, value) <= 0 &&
|
|
|
|
g_variant_compare (value, key->maximum) <= 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return strinfo_is_string_valid (key->strinfo, key->strinfo_length,
|
|
|
|
g_variant_get_string (value, NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
GVariant *
|
|
|
|
g_settings_schema_key_range_fixup (GSettingsSchemaKey *key,
|
|
|
|
GVariant *value)
|
|
|
|
{
|
|
|
|
const gchar *target;
|
|
|
|
|
|
|
|
if (g_settings_schema_key_range_check (key, value))
|
|
|
|
return g_variant_ref (value);
|
|
|
|
|
|
|
|
if (key->strinfo == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (g_variant_is_container (value))
|
|
|
|
{
|
|
|
|
GVariantBuilder builder;
|
|
|
|
GVariantIter iter;
|
|
|
|
GVariant *child;
|
|
|
|
|
|
|
|
g_variant_iter_init (&iter, value);
|
|
|
|
g_variant_builder_init (&builder, g_variant_get_type (value));
|
|
|
|
|
|
|
|
while ((child = g_variant_iter_next_value (&iter)))
|
|
|
|
{
|
|
|
|
GVariant *fixed;
|
|
|
|
|
|
|
|
fixed = g_settings_schema_key_range_fixup (key, child);
|
|
|
|
g_variant_unref (child);
|
|
|
|
|
|
|
|
if (fixed == NULL)
|
|
|
|
{
|
|
|
|
g_variant_builder_clear (&builder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_variant_builder_add_value (&builder, fixed);
|
|
|
|
g_variant_unref (fixed);
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_variant_ref_sink (g_variant_builder_end (&builder));
|
|
|
|
}
|
|
|
|
|
|
|
|
target = strinfo_string_from_alias (key->strinfo, key->strinfo_length,
|
|
|
|
g_variant_get_string (value, NULL));
|
|
|
|
return target ? g_variant_ref_sink (g_variant_new_string (target)) : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GVariant *
|
|
|
|
g_settings_schema_key_get_translated_default (GSettingsSchemaKey *key)
|
|
|
|
{
|
|
|
|
const gchar *translated;
|
|
|
|
GError *error = NULL;
|
|
|
|
const gchar *domain;
|
|
|
|
GVariant *value;
|
|
|
|
|
|
|
|
domain = g_settings_schema_get_gettext_domain (key->schema);
|
|
|
|
|
|
|
|
if (key->lc_char == '\0')
|
|
|
|
/* translation not requested for this key */
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (key->lc_char == 't')
|
|
|
|
translated = g_dcgettext (domain, key->unparsed, LC_TIME);
|
|
|
|
else
|
|
|
|
translated = g_dgettext (domain, key->unparsed);
|
|
|
|
|
|
|
|
if (translated == key->unparsed)
|
|
|
|
/* the default value was not translated */
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* try to parse the translation of the unparsed default */
|
|
|
|
value = g_variant_parse (key->type, translated, NULL, NULL, &error);
|
|
|
|
|
|
|
|
if (value == NULL)
|
|
|
|
{
|
|
|
|
g_warning ("Failed to parse translated string `%s' for "
|
|
|
|
"key `%s' in schema `%s': %s", key->unparsed, key->name,
|
2011-11-15 12:39:12 +01:00
|
|
|
g_settings_schema_get_id (key->schema), error->message);
|
2011-11-14 17:15:58 +01:00
|
|
|
g_warning ("Using untranslated default instead.");
|
|
|
|
g_error_free (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (!g_settings_schema_key_range_check (key, value))
|
|
|
|
{
|
|
|
|
g_warning ("Translated default `%s' for key `%s' in schema `%s' "
|
|
|
|
"is outside of valid range", key->unparsed, key->name,
|
2011-11-15 12:39:12 +01:00
|
|
|
g_settings_schema_get_id (key->schema));
|
2011-11-14 17:15:58 +01:00
|
|
|
g_variant_unref (value);
|
|
|
|
value = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
g_settings_schema_key_to_enum (GSettingsSchemaKey *key,
|
|
|
|
GVariant *value)
|
|
|
|
{
|
|
|
|
gboolean it_worked;
|
|
|
|
guint result;
|
|
|
|
|
|
|
|
it_worked = strinfo_enum_from_string (key->strinfo, key->strinfo_length,
|
|
|
|
g_variant_get_string (value, NULL),
|
|
|
|
&result);
|
|
|
|
|
|
|
|
/* 'value' can only come from the backend after being filtered for validity,
|
|
|
|
* from the translation after being filtered for validity, or from the schema
|
|
|
|
* itself (which the schema compiler checks for validity). If this assertion
|
|
|
|
* fails then it's really a bug in GSettings or the schema compiler...
|
|
|
|
*/
|
|
|
|
g_assert (it_worked);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
GVariant *
|
|
|
|
g_settings_schema_key_from_enum (GSettingsSchemaKey *key,
|
|
|
|
gint value)
|
|
|
|
{
|
|
|
|
const gchar *string;
|
|
|
|
|
|
|
|
string = strinfo_string_from_enum (key->strinfo, key->strinfo_length, value);
|
|
|
|
|
|
|
|
if (string == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return g_variant_new_string (string);
|
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
g_settings_schema_key_to_flags (GSettingsSchemaKey *key,
|
|
|
|
GVariant *value)
|
|
|
|
{
|
|
|
|
GVariantIter iter;
|
|
|
|
const gchar *flag;
|
|
|
|
guint result;
|
|
|
|
|
|
|
|
result = 0;
|
|
|
|
g_variant_iter_init (&iter, value);
|
|
|
|
while (g_variant_iter_next (&iter, "&s", &flag))
|
|
|
|
{
|
|
|
|
gboolean it_worked;
|
|
|
|
guint flag_value;
|
|
|
|
|
|
|
|
it_worked = strinfo_enum_from_string (key->strinfo, key->strinfo_length, flag, &flag_value);
|
|
|
|
/* as in g_settings_to_enum() */
|
|
|
|
g_assert (it_worked);
|
|
|
|
|
|
|
|
result |= flag_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
GVariant *
|
|
|
|
g_settings_schema_key_from_flags (GSettingsSchemaKey *key,
|
|
|
|
guint value)
|
|
|
|
{
|
|
|
|
GVariantBuilder builder;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_variant_builder_init (&builder, G_VARIANT_TYPE ("as"));
|
|
|
|
|
|
|
|
for (i = 0; i < 32; i++)
|
|
|
|
if (value & (1u << i))
|
|
|
|
{
|
|
|
|
const gchar *string;
|
|
|
|
|
|
|
|
string = strinfo_string_from_enum (key->strinfo, key->strinfo_length, 1u << i);
|
|
|
|
|
|
|
|
if (string == NULL)
|
|
|
|
{
|
|
|
|
g_variant_builder_clear (&builder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_variant_builder_add (&builder, "s", string);
|
|
|
|
}
|
|
|
|
|
|
|
|
return g_variant_builder_end (&builder);
|
|
|
|
}
|