summaryrefslogtreecommitdiff
path: root/common/gdm-settings-utils.c
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccann@src.gnome.org>2007-05-31 17:39:19 +0000
committerWilliam Jon McCann <mccann@src.gnome.org>2007-05-31 17:39:19 +0000
commite1a7b7cac426f81ea2ab60263907bd92032f1068 (patch)
treee56e4d76b7a386da0a4a4b7f3117bbf51f2b7873 /common/gdm-settings-utils.c
parent7baf40f65e52c651aab4d2c7214672f24195a649 (diff)
downloadgdm-e1a7b7cac426f81ea2ab60263907bd92032f1068.tar.gz
Land the first shot at the new settings framework
svn path=/branches/mccann-gobject/; revision=4946
Diffstat (limited to 'common/gdm-settings-utils.c')
-rw-r--r--common/gdm-settings-utils.c285
1 files changed, 285 insertions, 0 deletions
diff --git a/common/gdm-settings-utils.c b/common/gdm-settings-utils.c
new file mode 100644
index 00000000..65e979e7
--- /dev/null
+++ b/common/gdm-settings-utils.c
@@ -0,0 +1,285 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+#include "config.h"
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <fcntl.h>
+#include <unistd.h>
+#include <string.h>
+#include <signal.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <errno.h>
+
+#include <glib.h>
+#include <glib/gi18n.h>
+#include <glib/gstdio.h>
+#include <glib-object.h>
+
+#include "gdm-settings-utils.h"
+
+struct _GdmSettingsEntry
+{
+ char *key;
+ char *signature;
+ char *default_value;
+ GSList *notifiers;
+};
+
+GdmSettingsEntry *
+gdm_settings_entry_new (void)
+{
+ GdmSettingsEntry *entry = NULL;
+
+ entry = g_new0 (GdmSettingsEntry, 1);
+ entry->key = NULL;
+ entry->signature = NULL;
+ entry->notifiers = NULL;
+ entry->default_value = NULL;
+
+ return entry;
+}
+
+const char *
+gdm_settings_entry_get_key (GdmSettingsEntry *entry)
+{
+ return entry->key;
+}
+
+const char *
+gdm_settings_entry_get_signature (GdmSettingsEntry *entry)
+{
+ return entry->signature;
+}
+
+const char *
+gdm_settings_entry_get_default_value (GdmSettingsEntry *entry)
+{
+ return entry->default_value;
+}
+
+void
+gdm_settings_entry_free (GdmSettingsEntry *entry)
+{
+ g_free (entry->key);
+ g_free (entry->signature);
+ g_free (entry->default_value);
+ g_slist_free (entry->notifiers);
+ g_free (entry);
+}
+
+typedef struct {
+ GSList *list;
+ GdmSettingsEntry *entry;
+ gboolean in_key;
+ gboolean in_signature;
+ gboolean in_default;
+} ParserInfo;
+
+static void
+start_element_cb (GMarkupParseContext *ctx,
+ const char *element_name,
+ const char **attribute_names,
+ const char **attribute_values,
+ gpointer user_data,
+ GError **error)
+{
+ ParserInfo *info;
+
+ info = (ParserInfo *) user_data;
+
+ /*g_debug ("parsing start: '%s'", element_name);*/
+
+ if (strcmp (element_name, "schema") == 0) {
+ info->entry = gdm_settings_entry_new ();
+ } else if (strcmp (element_name, "key") == 0) {
+ info->in_key = TRUE;
+ } else if (strcmp (element_name, "signature") == 0) {
+ info->in_signature = TRUE;
+ } else if (strcmp (element_name, "default") == 0) {
+ info->in_default = TRUE;
+ }
+}
+
+static void
+add_schema_entry (ParserInfo *info)
+{
+ g_debug ("Inserting entry %s", info->entry->key);
+
+ info->list = g_slist_prepend (info->list, info->entry);
+}
+
+static void
+end_element_cb (GMarkupParseContext *ctx,
+ const char *element_name,
+ gpointer user_data,
+ GError **error)
+{
+ ParserInfo *info;
+
+ info = (ParserInfo *) user_data;
+
+ /*g_debug ("parsing end: '%s'", element_name);*/
+
+ if (strcmp (element_name, "schema") == 0) {
+ add_schema_entry (info);
+ } else if (strcmp (element_name, "key") == 0) {
+ info->in_key = FALSE;
+ } else if (strcmp (element_name, "signature") == 0) {
+ info->in_signature = FALSE;
+ } else if (strcmp (element_name, "default") == 0) {
+ info->in_default = FALSE;
+ }
+}
+
+static void
+text_cb (GMarkupParseContext *ctx,
+ const char *text,
+ gsize text_len,
+ gpointer user_data,
+ GError **error)
+{
+ ParserInfo *info;
+ char *t;
+
+ info = (ParserInfo *) user_data;
+
+ t = g_strndup (text, text_len);
+
+ if (info->in_key) {
+ info->entry->key = g_strdup (t);
+ } else if (info->in_signature) {
+ info->entry->signature = g_strdup (t);
+ } else if (info->in_default) {
+ info->entry->default_value = g_strdup (t);
+ }
+
+ g_free (t);
+
+}
+
+static void
+error_cb (GMarkupParseContext *ctx,
+ GError *error,
+ gpointer user_data)
+{
+}
+
+static GMarkupParser parser = {
+ start_element_cb,
+ end_element_cb,
+ text_cb,
+ NULL,
+ error_cb
+};
+
+gboolean
+gdm_settings_parse_schemas (const char *file,
+ const char *root,
+ GSList **schemas)
+{
+ GMarkupParseContext *ctx;
+ ParserInfo *info;
+ char *contents;
+ gsize len;
+ GError *error;
+
+ g_return_val_if_fail (file != NULL, FALSE);
+ g_return_val_if_fail (root != NULL, FALSE);
+
+ g_assert (schemas != NULL);
+
+ error = NULL;
+ if (! g_file_get_contents (file, &contents, &len, &error)) {
+ g_warning ("Unable to read schemas file: %s", error->message);
+ g_error_free (error);
+ return FALSE;
+ }
+
+ info = g_new0 (ParserInfo, 1);
+ ctx = g_markup_parse_context_new (&parser, 0, info, NULL);
+ g_markup_parse_context_parse (ctx, contents, len, NULL);
+
+ *schemas = info->list;
+
+ g_free (info);
+
+ return TRUE;
+}
+
+/* adapted from GKeyFile */
+gboolean
+gdm_settings_parse_value_as_boolean (const char *value,
+ gboolean *bool)
+{
+ if (strcmp (value, "true") == 0 || strcmp (value, "1") == 0) {
+ *bool = TRUE;
+ return TRUE;
+ } else if (strcmp (value, "false") == 0 || strcmp (value, "0") == 0) {
+ *bool = FALSE;
+ return TRUE;
+ } else {
+ return FALSE;
+ }
+}
+
+gboolean
+gdm_settings_parse_value_as_integer (const char *value,
+ int *intval)
+{
+ char *end_of_valid_int;
+ glong long_value;
+ gint int_value;
+
+ errno = 0;
+ long_value = strtol (value, &end_of_valid_int, 10);
+
+ if (*value == '\0' || *end_of_valid_int != '\0') {
+ return FALSE;
+ }
+
+ int_value = long_value;
+ if (int_value != long_value || errno == ERANGE) {
+ return FALSE;
+ }
+
+ *intval = int_value;
+
+ return TRUE;
+}
+
+gboolean
+gdm_settings_parse_value_as_double (const char *value,
+ gdouble *doubleval)
+{
+ char *end_of_valid_d;
+ gdouble double_value = 0;
+
+ double_value = g_ascii_strtod (value, &end_of_valid_d);
+
+ if (*end_of_valid_d != '\0' || end_of_valid_d == value) {
+ return FALSE;
+ }
+
+ *doubleval = double_value;
+ return TRUE;
+}