]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Implemented plugin that read config from file.
authorAndrea Zagli <azagli@libero.it>
Thu, 18 Dec 2014 12:38:11 +0000 (13:38 +0100)
committerAndrea Zagli <azagli@libero.it>
Thu, 18 Dec 2014 12:38:11 +0000 (13:38 +0100)
plugins/db/db.plugin
plugins/db/plgdb.c
plugins/file/Makefile.am
plugins/file/file.plugin [new file with mode: 0644]
plugins/file/plgfile.c [new file with mode: 0644]
plugins/file/plgfile.h [new file with mode: 0644]
src/Makefile.am
tests/conf.conf [new file with mode: 0644]
tests/test.c

index c3c42eca4ba9a8416cde91580bcd327472741716..59d990863801bcb6b3d51bca9a47f99d26dc7dc9 100644 (file)
@@ -1,7 +1,7 @@
 [Plugin]
 Module=db
 Name=DB
-Description=Inserts a box containing "Hello World" in every windows.
+Description=Read configuration from a database, based on libgda (via libgdaex).
 Authors=Andrea Zagli <azagli@libero.it>
 Copyright=Copyright © 2014 Andrea Zagli
 Website=http://saetta.ns0.it/
index 4776f04990b4f9f7a1bdd3d9b416b4bc0f2c3b5c..ac29aa45bb0eda4eea1137ce1cacd8dee12b087b 100644 (file)
@@ -191,7 +191,11 @@ confi_db_plugin_initialize (ConfiPluggable *pluggable, const gchar *cnc_string)
        gchar *sql;
        GdaDataModel *dm;
 
-       strs = g_strsplit (cnc_string, ";", -1);
+       gchar *cnc_string_;
+
+       cnc_string_ = g_strdup_printf ("%s;", cnc_string);
+       strs = g_strsplit (cnc_string_, ";", -1);
+       g_free (cnc_string_);
 
        gstr_cnc_string = g_string_new ("");
 
@@ -501,7 +505,10 @@ GNode
        ck->id_config = priv->id_config;
        ck->id = 0;
        ck->id_parent = 0;
+       ck->path = "";
+       ck->description = "";
        ck->key = g_strdup ("/");
+       ck->value = "";
 
        node = g_node_new (ck);
 
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..bae778ff31378e8de7f54e4bf7ff15c3db0ef1eb 100644 (file)
@@ -0,0 +1,18 @@
+pluginsdir = $(libdir)/$(PACKAGE)/plugins
+
+AM_CPPFLAGS = \
+       -I$(top_srcdir) \
+       $(LIBCONFI_CFLAGS)
+
+plugins_LTLIBRARIES = libfile.la
+
+libfile_la_SOURCES = \
+       plgfile.h \
+       plgfile.c
+
+libfile_la_LDFLAGS = $(PLUGIN_LIBTOOL_FLAGS)
+libfile_la_LIBADD = \
+       $(top_builddir)/src/libconfi.la \
+       $(LIBCONFI_LIBS)
+
+plugins_DATA = file.plugin
diff --git a/plugins/file/file.plugin b/plugins/file/file.plugin
new file mode 100644 (file)
index 0000000..48c82de
--- /dev/null
@@ -0,0 +1,8 @@
+[Plugin]
+Module=file
+Name=File
+Description=Read configuration from a ini file.
+Authors=Andrea Zagli <azagli@libero.it>
+Copyright=Copyright © 2014 Andrea Zagli
+Website=http://saetta.ns0.it/
+Help=http://saetta.ns0.it/
diff --git a/plugins/file/plgfile.c b/plugins/file/plgfile.c
new file mode 100644 (file)
index 0000000..b3181eb
--- /dev/null
@@ -0,0 +1,553 @@
+/*
+ * plgfile.c
+ * This file is part of confi
+ *
+ * Copyright (C) 2014 Andrea Zagli
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU Library 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 Library General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Library 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <string.h>
+
+#include <glib.h>
+#include <glib-object.h>
+#include <gmodule.h>
+
+#include <libpeas/peas.h>
+
+#include "../../src/libconfi.h"
+#include "../../src/confipluggable.h"
+
+#include "plgfile.h"
+
+static void confi_pluggable_iface_init (ConfiPluggableInterface *iface);
+
+static gboolean confi_file_plugin_path_get_group_and_key (ConfiPluggable *pluggable, const gchar *path, gchar **group, gchar **key);
+static gchar *confi_file_plugin_path_get_value_from_file (ConfiPluggable *pluggable, const gchar *path);
+static gchar *confi_file_plugin_path_get_value (ConfiPluggable *pluggable, const gchar *path);
+static gboolean confi_file_plugin_path_set_value (ConfiPluggable *pluggable, const gchar *path, const gchar *value);
+static void confi_file_plugin_get_children (ConfiPluggable *pluggable, GNode *parentNode);
+
+#define CONFI_FILE_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), CONFI_TYPE_FILE_PLUGIN, ConfiFilePluginPrivate))
+
+typedef struct _ConfiFilePluginPrivate ConfiFilePluginPrivate;
+struct _ConfiFilePluginPrivate
+       {
+               gchar *cnc_string;
+
+               GKeyFile *kfile;
+
+               gchar *name;
+               gchar *description;
+               gchar *root;
+       };
+
+G_DEFINE_DYNAMIC_TYPE_EXTENDED (ConfiFilePlugin,
+                                confi_file_plugin,
+                                PEAS_TYPE_EXTENSION_BASE,
+                                0,
+                                G_IMPLEMENT_INTERFACE_DYNAMIC (CONFI_TYPE_PLUGGABLE,
+                                                               confi_pluggable_iface_init))
+
+enum {
+       PROP_0,
+       PROP_CNC_STRING,
+       PROP_NAME,
+       PROP_DESCRIPTION,
+       PROP_ROOT
+};
+
+static void
+confi_file_plugin_set_property (GObject      *object,
+                              guint         prop_id,
+                              const GValue *value,
+                              GParamSpec   *pspec)
+{
+       ConfiFilePlugin *plugin = CONFI_FILE_PLUGIN (object);
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (plugin);
+
+       switch (prop_id)
+               {
+                       case PROP_CNC_STRING:
+                               confi_file_plugin_initialize ((ConfiPluggable *)plugin, g_value_get_string (value));
+                               break;
+
+                       case PROP_NAME:
+                               priv->name = g_strdup (g_value_get_string (value));
+                               confi_file_plugin_path_set_value ((ConfiPluggable *)plugin, "/CONFI/name", priv->name);
+                               break;
+
+                       case PROP_DESCRIPTION:
+                               priv->description = g_strdup (g_value_get_string (value));
+                               confi_file_plugin_path_set_value ((ConfiPluggable *)plugin, "/CONFI/description", priv->description);
+                               break;
+
+                       case PROP_ROOT:
+                               priv->root = confi_normalize_root (g_value_get_string (value));
+                               break;
+
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+                               break;
+               }
+}
+
+static void
+confi_file_plugin_get_property (GObject    *object,
+                              guint       prop_id,
+                              GValue     *value,
+                              GParamSpec *pspec)
+{
+       ConfiFilePlugin *plugin = CONFI_FILE_PLUGIN (object);
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (plugin);
+
+       switch (prop_id)
+               {
+                       case PROP_CNC_STRING:
+                               g_value_set_string (value, priv->cnc_string);
+                               break;
+
+                       case PROP_NAME:
+                               g_value_set_string (value, priv->name);
+                               break;
+
+                       case PROP_DESCRIPTION:
+                               g_value_set_string (value, priv->description);
+                               break;
+
+                       case PROP_ROOT:
+                               g_value_set_string (value, priv->root);
+                               break;
+
+                       default:
+                               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+                               break;
+               }
+}
+
+static void
+confi_file_plugin_init (ConfiFilePlugin *plugin)
+{
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (plugin);
+
+       priv->cnc_string = NULL;
+       priv->kfile = NULL;
+       priv->name = NULL;
+       priv->description = NULL;
+}
+
+static void
+confi_file_plugin_finalize (GObject *object)
+{
+       ConfiFilePlugin *plugin = CONFI_FILE_PLUGIN (object);
+
+       G_OBJECT_CLASS (confi_file_plugin_parent_class)->finalize (object);
+}
+
+gboolean
+confi_file_plugin_initialize (ConfiPluggable *pluggable, const gchar *cnc_string)
+{
+       gboolean ret;
+       GError *error;
+
+       ConfiFilePlugin *plugin = CONFI_FILE_PLUGIN (pluggable);
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (plugin);
+
+       priv->cnc_string = g_strdup (cnc_string);
+
+       priv->kfile = g_key_file_new ();
+       error = NULL;
+       if (g_key_file_load_from_file (priv->kfile, priv->cnc_string, G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS, &error)
+           && error == NULL)
+               {
+                       error = NULL;
+                       priv->name = g_key_file_get_value (priv->kfile, "CONFI", "name", &error);
+                       if (priv->name == NULL || error != NULL)
+                               {
+                                       priv->name = g_strdup ("Default");
+                               }
+                       priv->description = g_key_file_get_value (priv->kfile, "CONFI", "description", NULL);
+               }
+       else
+               {
+                       g_warning ("Error: %s", error != NULL && error->message != NULL ? error->message : "no details");
+                       g_key_file_free (priv->kfile);
+                       priv->kfile = NULL;
+                       ret = FALSE;
+               }
+
+       return ret;
+}
+
+static gboolean
+confi_file_plugin_path_get_group_and_key (ConfiPluggable *pluggable, const gchar *path, gchar **group, gchar **key)
+{
+       gchar *path_;
+       gchar **tokens;
+
+       guint l;
+       guint i;
+       guint c;
+
+       if (path == NULL) return FALSE;
+
+       path_ = g_strdup_printf ("%s/", path);
+       tokens = g_strsplit (path_, "/", -1);
+       if (tokens == NULL) return FALSE;
+
+       l = g_strv_length (tokens);
+       c = 1;
+       for (i = 0; i < l; i++)
+               {
+                       if (g_strcmp0 (tokens[i], "") != 0)
+                               {
+                                       if (c == 1)
+                                               {
+                                                       *group = g_strdup (tokens[i]);
+                                                       g_strstrip (*group);
+                                                       c = 2;
+                                               }
+                                       else if (c == 2)
+                                               {
+                                                       *key = g_strdup (tokens[i]);
+                                                       g_strstrip (*key);
+                                                       c = 3;
+                                               }
+                                       if (c > 2)
+                                               {
+                                                       break;
+                                               }
+                               }
+               }
+       g_strfreev (tokens);
+       g_free (path_);
+
+       return TRUE;
+}
+
+static gchar
+*confi_file_plugin_path_get_value_from_file (ConfiPluggable *pluggable, const gchar *path)
+{
+       gchar *ret;
+
+       gchar *group;
+       gchar *key;
+
+       GError *error;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       if (path == NULL) return NULL;
+
+       group = NULL;
+       key = NULL;
+       if (!confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key))
+               {
+                       return NULL;
+               }
+
+       error = NULL;
+       ret = g_key_file_get_value (priv->kfile, group, key, &error);
+       if (error != NULL)
+               {
+                       if (ret != NULL)
+                               {
+                                       g_free (ret);
+                               }
+                       ret = NULL;
+               }
+       g_free (group);
+       g_free (key);
+
+       return ret;
+}
+
+static void
+confi_file_plugin_get_children (ConfiPluggable *pluggable, GNode *parentNode)
+{
+       gchar **groups;
+       gchar **keys;
+       guint lg;
+       guint lk;
+       guint g;
+       guint k;
+
+       gchar *group;
+       gchar *key;
+
+       GError *error;
+
+       GNode *gNode;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       groups = g_key_file_get_groups (priv->kfile, &lg);
+
+       for (g = 0; g < lg; g++)
+               {
+                       ConfiKey *ck = g_new0 (ConfiKey, 1);
+
+                       ck->key = g_strdup (groups[g]);
+                       ck->value = "";
+                       ck->description = "";
+                       ck->path = "";
+
+                       gNode = g_node_append_data (parentNode, ck);
+
+                       error = NULL;
+                       keys = g_key_file_get_keys (priv->kfile, groups[g], &lk, &error);
+                       if (keys != NULL && error == NULL && lk > 0)
+                               {
+                                       for (k = 0; k < lk; k++)
+                                               {
+                                                       ConfiKey *ck = g_new0 (ConfiKey, 1);
+
+                                                       ck->key = g_strdup (keys[k]);
+                                                       ck->path = g_strdup (groups[g]);
+                                                       ck->value = confi_file_plugin_path_get_value (pluggable, g_strdup_printf ("%s/%s", groups[g], keys[k]));
+                                                       ck->description = g_key_file_get_comment (priv->kfile, groups[g], keys[k], NULL);
+
+                                                       g_node_append_data (gNode, ck);
+                                               }
+                               }
+
+                       if (keys != NULL)
+                               {
+                                       g_strfreev (keys);
+                               }
+               }
+
+       if (groups != NULL)
+               {
+                       g_strfreev (groups);
+               }
+}
+
+static GList
+*confi_file_plugin_get_configs_list (ConfiPluggable *pluggable,
+                                     const gchar *filter)
+{
+       GList *lst;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       lst = NULL;
+
+       ConfiConfi *confi;
+       confi = g_new0 (ConfiConfi, 1);
+       confi->name = g_strdup (priv->name);
+       confi->description = g_strdup (priv->description);
+       lst = g_list_append (lst, confi);
+
+       return lst;
+}
+
+static gchar
+*confi_file_plugin_path_get_value (ConfiPluggable *pluggable, const gchar *path)
+{
+       gchar *ret;
+       gchar *path_;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       ret = NULL;
+
+       path_ = confi_path_normalize (pluggable, path);
+       if (path_ == NULL)
+               {
+                       return NULL;
+               }
+
+       ret = confi_file_plugin_path_get_value_from_file (pluggable, path_);
+
+       return ret;
+}
+
+static gboolean
+confi_file_plugin_path_set_value (ConfiPluggable *pluggable, const gchar *path, const gchar *value)
+{
+       gboolean ret;
+
+       gchar *group;
+       gchar *key;
+
+       GError *error;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       g_return_val_if_fail (value != NULL, FALSE);
+
+       group = NULL;
+       key = NULL;
+       if (!confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key))
+               {
+                       return FALSE;
+               }
+
+       g_key_file_set_value (priv->kfile, group, key, value);
+       g_free (group);
+       g_free (key);
+
+       error = NULL;
+       ret = g_key_file_save_to_file (priv->kfile, priv->cnc_string, &error);
+       if (error != NULL)
+               {
+                       ret = FALSE;
+               }
+
+       return ret;
+}
+
+GNode
+*confi_file_plugin_get_tree (ConfiPluggable *pluggable)
+{
+       GNode *node;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       ConfiKey *ck = g_new0 (ConfiKey, 1);
+
+       ck->path = "";
+       ck->description = "";
+       ck->key = g_strdup ("/");
+       ck->value = "";
+
+       node = g_node_new (ck);
+
+       confi_file_plugin_get_children (pluggable, node);
+
+       return node;
+}
+
+static ConfiKey
+*confi_file_plugin_add_key (ConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value)
+{
+       ConfiKey *ck;
+       gchar *path;
+
+       gchar *group;
+       gchar *key_;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       ck = NULL;
+       path = g_strdup_printf ("%s/%s", parent, key);
+       if (confi_file_plugin_path_set_value (pluggable, path, value))
+               {
+                       group = NULL;
+                       key_ = NULL;
+                       if (confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key_))
+                               {
+                                       ck = g_new0 (ConfiKey, 1);
+                                       ck->key = g_strdup (key);
+                                       ck->value = confi_file_plugin_path_get_value (pluggable, path);
+                                       ck->description = g_key_file_get_comment (priv->kfile, group, key, NULL);;
+                                       ck->path = g_strdup (path);
+
+                                       g_free (group);
+                                       g_free (key_);
+                               }
+               }
+       g_free (path);
+
+       return ck;
+}
+
+static ConfiKey
+*confi_file_plugin_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path)
+{
+       gchar *path_;
+       ConfiKey *ck;
+
+       gchar *group;
+       gchar *key;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       path_ = confi_path_normalize (pluggable, path);
+       if (path_ == NULL)
+               {
+                       return NULL;
+               }
+
+       group = NULL;
+       key = NULL;
+       if (confi_file_plugin_path_get_group_and_key (pluggable, path_, &group, &key))
+               {
+                       ck = g_new0 (ConfiKey, 1);
+                       ck->key = g_strdup (key);
+                       ck->value = confi_file_plugin_path_get_value (pluggable, path_);
+                       ck->description = g_key_file_get_comment (priv->kfile, group, key, NULL);
+                       ck->path = g_strdup (group);
+
+                       g_free (group);
+                       g_free (key);
+               }
+       else
+               {
+                       ck = NULL;
+               }
+       g_free (path_);
+
+       return ck;
+}
+
+static void
+confi_file_plugin_class_init (ConfiFilePluginClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       g_type_class_add_private (object_class, sizeof (ConfiFilePluginPrivate));
+
+       object_class->set_property = confi_file_plugin_set_property;
+       object_class->get_property = confi_file_plugin_get_property;
+       object_class->finalize = confi_file_plugin_finalize;
+
+       g_object_class_override_property (object_class, PROP_CNC_STRING, "cnc_string");
+       g_object_class_override_property (object_class, PROP_NAME, "name");
+       g_object_class_override_property (object_class, PROP_DESCRIPTION, "description");
+       g_object_class_override_property (object_class, PROP_ROOT, "root");
+}
+
+static void
+confi_pluggable_iface_init (ConfiPluggableInterface *iface)
+{
+       iface->initialize = confi_file_plugin_initialize;
+       iface->get_configs_list = confi_file_plugin_get_configs_list;
+       iface->path_get_value = confi_file_plugin_path_get_value;
+       iface->path_set_value = confi_file_plugin_path_set_value;
+       iface->get_tree = confi_file_plugin_get_tree;
+       iface->add_key = confi_file_plugin_add_key;
+       iface->path_get_confi_key = confi_file_plugin_path_get_confi_key;
+}
+
+static void
+confi_file_plugin_class_finalize (ConfiFilePluginClass *klass)
+{
+}
+
+G_MODULE_EXPORT void
+peas_register_types (PeasObjectModule *module)
+{
+       confi_file_plugin_register_type (G_TYPE_MODULE (module));
+
+       peas_object_module_register_extension_type (module,
+                                                   CONFI_TYPE_PLUGGABLE,
+                                                   CONFI_TYPE_FILE_PLUGIN);
+}
diff --git a/plugins/file/plgfile.h b/plugins/file/plgfile.h
new file mode 100644 (file)
index 0000000..9ef071b
--- /dev/null
@@ -0,0 +1,52 @@
+/*
+ * plgfile.h
+ * This file is part of confi
+ *
+ * Copyright (C) 2014 Andrea Zagli
+ *
+ *  This program is free software; you can redistribute it and/or modify
+ *  it under the terms of the GNU Library 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 Library General Public License for more details.
+ *
+ *  You should have received a copy of the GNU Library 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.
+ */
+
+#ifndef __CONFI_FILE_PLUGIN_H__
+#define __CONFI_FILE_PLUGIN_H__
+
+#include <libpeas/peas.h>
+
+G_BEGIN_DECLS
+
+#define CONFI_TYPE_FILE_PLUGIN         (confi_file_plugin_get_type ())
+#define CONFI_FILE_PLUGIN(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), CONFI_TYPE_FILE_PLUGIN, ConfiFilePlugin))
+#define CONFI_FILE_PLUGIN_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), CONFI_TYPE_FILE_PLUGIN, ConfiFilePlugin))
+#define CONFI_IS_FILE_PLUGIN(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), CONFI_TYPE_FILE_PLUGIN))
+#define CONFI_IS_FILE_PLUGIN_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), CONFI_TYPE_FILE_PLUGIN))
+#define CONFI_FILE_PLUGIN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CONFI_TYPE_FILE_PLUGIN, ConfiFilePluginClass))
+
+typedef struct _ConfiFilePlugin       ConfiFilePlugin;
+typedef struct _ConfiFilePluginClass  ConfiFilePluginClass;
+
+struct _ConfiFilePlugin {
+       PeasExtensionBase parent_instance;
+};
+
+struct _ConfiFilePluginClass {
+       PeasExtensionBaseClass parent_class;
+};
+
+GType                 confi_file_plugin_get_type        (void) G_GNUC_CONST;
+G_MODULE_EXPORT void  peas_register_types                         (PeasObjectModule *module);
+
+G_END_DECLS
+
+#endif /* __CONFI_FILE_PLUGIN_H__ */
index b55f1d8385b0638d8809424b422328ed47a2add1..83ff6afbd7a733913a4fc7339bbdbbff122459f6 100644 (file)
@@ -38,7 +38,7 @@ if HAVE_INTROSPECTION
 introspection_sources = $(libconfi_la_SOURCES) $(libconfi_include_HEADERS)
 
 Confi-1.0.gir: libconfi.la
-Confi_1_0_gir_INCLUDES = Gda-5.0
+Confi_1_0_gir_INCLUDES = Gda-5.0 Peas-1.0
 Confi_1_0_gir_CFLAGS = $(AM_CPPFLAGS)
 Confi_1_0_gir_LIBS = libconfi.la
 Confi_1_0_gir_FILES = $(introspection_sources)
diff --git a/tests/conf.conf b/tests/conf.conf
new file mode 100644 (file)
index 0000000..7f8af97
--- /dev/null
@@ -0,0 +1,14 @@
+[CONFI]
+name=Default
+description=Default configuration from file
+
+[FOLDER1]
+key1=value key 1
+# comment to key2 of folder 1
+key2=value key 2
+
+[FOLDER2]
+# comment to key1 of folder 2
+key1=value key 1 folder 2
+key2=value key 2 folder 2
+key999=value for key999, programmatically setted
index 06c92587ffa45ab9b6d39204401683a53e55ca6b..850b4073a12af602a5665acbbee96b4c2408b052 100644 (file)
@@ -76,33 +76,61 @@ main (int argc, char **argv)
        g_printf ("Module name: %s\n", peas_plugin_info_get_module_name (ppinfo));
        g_printf ("\n");
 
-       gchar *val = confi_path_get_value (confi, "folder/key1/key1_2");
-       g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", val);
-       confi_path_set_value (confi, "folder/key1/key1_2", "new value programmatically setted");
-       g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", confi_path_get_value (confi, "folder/key1/key1_2"));
-       confi_path_set_value (confi, "folder/key1/key1_2", val);
-
        g_printf ("Traversing the entire tree\n");
        tree = confi_get_tree (confi);
        g_node_traverse (tree, G_PRE_ORDER, G_TRAVERSE_ALL, -1, traverse_func, NULL);
        g_printf ("\n");
 
-       confi_add_key (confi, "folder/key2", "key2-2", NULL);
-       confi_path_set_value (confi, "folder/key2/key2-2", "value for key2-2, programmatically setted");
-
-       ConfiKey *ck;
-       ck = confi_path_get_confi_key (confi, "folder/key2/key2-2");
-       g_printf ("ConfiKey for folder/key2/key2-2\n");
-       g_printf ("Path: %s\n", ck->path);
-       g_printf ("Key: %s\n", ck->key);
-       g_printf ("Description: %s\n", ck->description);
-       g_printf ("Value: %s\n", ck->value);
-       g_printf ("\n");
-
-       g_printf ("Setting root \"folder/key2\"\n");
-       confi_set_root (confi, "folder/key2");
-       g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));
-       g_printf ("Value from key \"folder/key1/key1_2\" (expected null) %s\n", confi_path_get_value (confi, "folder/key1/key1_2"));
+       if (g_strcmp0 (peas_plugin_info_get_module_name (ppinfo), "file") == 0)
+               {
+                       gchar *val = confi_path_get_value (confi, "FOLDER1/key1");
+                       g_printf ("Value from key \"FOLDER1/key1\"\n%s\n\n", val);
+                       confi_path_set_value (confi, "FOLDER1/key1", "new value programmatically setted");
+                       g_printf ("Value from key \"FOLDER1/key1\"\n%s\n\n", confi_path_get_value (confi, "FOLDER1/key1"));
+                       confi_path_set_value (confi, "FOLDER1/key1", val);
+
+                       confi_add_key (confi, "FOLDER2", "key999", NULL);
+                       confi_path_set_value (confi, "FOLDER2/key999", "value for key999, programmatically setted");
+
+                       ConfiKey *ck;
+                       ck = confi_path_get_confi_key (confi, "FOLDER1/key2");
+                       g_printf ("ConfiKey for FOLDER1/key2\n");
+                       g_printf ("Path: %s\n", ck->path);
+                       g_printf ("Key: %s\n", ck->key);
+                       g_printf ("Description: %s\n", ck->description);
+                       g_printf ("Value: %s\n", ck->value);
+                       g_printf ("\n");
+
+                       g_printf ("Setting root \"FOLDER2\"\n");
+                       confi_set_root (confi, "FOLDER2");
+                       g_printf ("Value from key \"key2\" %s\n", confi_path_get_value (confi, "key2"));
+                       g_printf ("Value from key \"FOLDER2/key2\" (expected null) %s\n", confi_path_get_value (confi, "FOLDER2/key2"));
+               }
+       else
+               {
+                       gchar *val = confi_path_get_value (confi, "folder/key1/key1_2");
+                       g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", val);
+                       confi_path_set_value (confi, "folder/key1/key1_2", "new value programmatically setted");
+                       g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", confi_path_get_value (confi, "folder/key1/key1_2"));
+                       confi_path_set_value (confi, "folder/key1/key1_2", val);
+
+                       confi_add_key (confi, "folder/key2", "key2-2", NULL);
+                       confi_path_set_value (confi, "folder/key2/key2-2", "value for key2-2, programmatically setted");
+
+                       ConfiKey *ck;
+                       ck = confi_path_get_confi_key (confi, "folder/key2/key2-2");
+                       g_printf ("ConfiKey for folder/key2/key2-2\n");
+                       g_printf ("Path: %s\n", ck->path);
+                       g_printf ("Key: %s\n", ck->key);
+                       g_printf ("Description: %s\n", ck->description);
+                       g_printf ("Value: %s\n", ck->value);
+                       g_printf ("\n");
+
+                       g_printf ("Setting root \"folder/key2\"\n");
+                       confi_set_root (confi, "folder/key2");
+                       g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));
+                       g_printf ("Value from key \"folder/key1/key1_2\" (expected null) %s\n", confi_path_get_value (confi, "folder/key1/key1_2"));
+               }
 
        confi_destroy (confi);