summaryrefslogtreecommitdiff
path: root/src/up-config.c
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2011-03-14 11:01:12 +0000
committerRichard Hughes <richard@hughsie.com>2011-03-14 11:01:12 +0000
commitb0bbb29df1363e4c7c51564506b45b42bf71137c (patch)
tree72ac863af4385796aec52b31eb05078692f7018b /src/up-config.c
parent6e8794ac6d2603cda9f2544bb7c9dde7033c9e92 (diff)
downloadupower-b0bbb29df1363e4c7c51564506b45b42bf71137c.tar.gz
Add a config option 'EnableWattsUpPro' to disable the Watts Up Pro device
Annoyingly, the device used in the Watts Up Pro device seems to be a generic USB->serial adaptor, which means it doesn't have a unique vendor and product ID. If we try to probe for the WUP device, we can actually upset other devices that are not expecing to be probed. This fixes #33846 although we actually still need to be more strict in detecting a true WUP device.
Diffstat (limited to 'src/up-config.c')
-rw-r--r--src/up-config.c120
1 files changed, 120 insertions, 0 deletions
diff --git a/src/up-config.c b/src/up-config.c
new file mode 100644
index 0000000..1d92f07
--- /dev/null
+++ b/src/up-config.c
@@ -0,0 +1,120 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2011 Richard Hughes <richard@hughsie.com>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include "config.h"
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+#include "up-config.h"
+
+static void up_config_finalize (GObject *object);
+
+#define UP_CONFIG_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), UP_TYPE_CONFIG, UpConfigPrivate))
+
+/**
+ * UpConfigPrivate:
+ *
+ * Private #UpConfig data
+ **/
+struct _UpConfigPrivate
+{
+ GKeyFile *keyfile;
+};
+
+G_DEFINE_TYPE (UpConfig, up_config, G_TYPE_OBJECT)
+
+static gpointer up_config_object = NULL;
+
+/**
+ * up_config_get_boolean:
+ **/
+gboolean
+up_config_get_boolean (UpConfig *config, const gchar *key)
+{
+ return g_key_file_get_boolean (config->priv->keyfile,
+ "UPower", key, NULL);
+}
+
+/**
+ * up_config_class_init:
+ **/
+static void
+up_config_class_init (UpConfigClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ object_class->finalize = up_config_finalize;
+ g_type_class_add_private (klass, sizeof (UpConfigPrivate));
+}
+
+/**
+ * up_config_init:
+ **/
+static void
+up_config_init (UpConfig *config)
+{
+ gboolean ret;
+ GError *error = NULL;
+
+ config->priv = UP_CONFIG_GET_PRIVATE (config);
+ config->priv->keyfile = g_key_file_new ();
+
+ /* load */
+ ret = g_key_file_load_from_file (config->priv->keyfile,
+ PACKAGE_SYSCONF_DIR "/UPower/UPower.conf",
+ G_KEY_FILE_NONE,
+ &error);
+ if (!ret) {
+ g_warning ("failed to load config file: %s",
+ error->message);
+ g_error_free (error);
+ }
+}
+
+/**
+ * up_config_finalize:
+ **/
+static void
+up_config_finalize (GObject *object)
+{
+ UpConfig *config = UP_CONFIG (object);
+ UpConfigPrivate *priv = config->priv;
+
+ g_key_file_free (priv->keyfile);
+
+ G_OBJECT_CLASS (up_config_parent_class)->finalize (object);
+}
+
+/**
+ * up_config_new:
+ **/
+UpConfig *
+up_config_new (void)
+{
+ if (up_config_object != NULL) {
+ g_object_ref (up_config_object);
+ } else {
+ up_config_object = g_object_new (UP_TYPE_CONFIG, NULL);
+ g_object_add_weak_pointer (up_config_object, &up_config_object);
+ }
+ return UP_CONFIG (up_config_object);
+}
+