]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Implemented Confi::add_key in db plugin.
authorAndrea Zagli <azagli@libero.it>
Wed, 17 Dec 2014 10:51:10 +0000 (11:51 +0100)
committerAndrea Zagli <azagli@libero.it>
Wed, 17 Dec 2014 10:51:10 +0000 (11:51 +0100)
plugins/db/plgdb.c
src/Makefile.am
src/commons.h [new file with mode: 0644]
src/confipluggable.c
src/confipluggable.h
src/libconfi.c
src/libconfi.h
tests/test.c

index 982681b9fd03d8bb1c3fbea952a3337b62bf214e..e9d4279191c594ffafbdb63d2b2966a59791136b 100644 (file)
@@ -221,6 +221,11 @@ confi_db_plugin_initialize (ConfiPluggable *pluggable, const gchar *cnc_string)
        g_string_free (gstr_cnc_string, TRUE);
        g_strfreev (strs);
 
+       if (priv->name == NULL)
+               {
+                       priv->name = g_strdup ("Default");
+               }
+
        priv->gdaex = gdaex_new_from_string (priv->cnc_string);
        priv->chrquot = gdaex_get_chr_quoting (priv->gdaex);
 
@@ -505,6 +510,133 @@ GNode
        return node;
 }
 
+static ConfiKey
+*confi_db_plugin_add_key (ConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value)
+{
+       ConfiKey *ck;
+       GdaDataModel *dmParent;
+
+       gchar *sql;
+       gint id;
+       GdaDataModel *dm;
+
+       ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+       gint id_parent;
+       gchar *parent_;
+       gchar *key_;
+
+       gchar *path;
+
+       ck = NULL;
+       if (parent == NULL)
+               {
+                       id_parent = 0;
+               }
+       else
+               {
+                       parent_ = g_strstrip (g_strdup (parent));
+                       if (strcmp (parent_, "") == 0)
+                               {
+                                       id_parent = 0;
+                               }
+                       else
+                               {
+                                       dmParent = confi_db_plugin_path_get_data_model (pluggable, confi_path_normalize (pluggable, parent_));
+                                       if (dmParent == NULL)
+                                               {
+                                                       id_parent = -1;
+                                               }
+                                       else
+                                               {
+                                                       id_parent = gdaex_data_model_get_field_value_integer_at (dmParent, 0, "id");
+                                               }
+                               }
+               }
+
+       if (id_parent > -1)
+               {
+                       id = 0;
+
+                       /* find new id */
+                       sql = g_strdup_printf ("SELECT MAX(id) FROM %cvalues%c "
+                                              "WHERE id_configs = %d ",
+                                              priv->chrquot, priv->chrquot,
+                                              priv->id_config);
+                       dm = gdaex_query (priv->gdaex, sql);
+                       g_free (sql);
+                       if (dm != NULL)
+                               {
+                                       id = gdaex_data_model_get_value_integer_at (dm, 0, 0);
+                                       g_object_unref (dm);
+                               }
+                       id++;
+
+                       key_ = g_strstrip (g_strdup (key));
+
+                       sql = g_strdup_printf ("INSERT INTO %cvalues%c "
+                                              "(id_configs, id, id_parent, %ckey%c, value) "
+                                              "VALUES (%d, %d, %d, '%s', '%s')",
+                                              priv->chrquot, priv->chrquot,
+                                              priv->chrquot, priv->chrquot,
+                                              priv->id_config,
+                                              id,
+                                              id_parent,
+                                              gdaex_strescape (key_, NULL),
+                                              "");
+                       if (gdaex_execute (priv->gdaex, sql) == -1)
+                               {
+                                       /* TO DO */
+                                       g_free (sql);
+                                       return NULL;
+                               }
+                       g_free (sql);
+
+                       ck = g_new0 (ConfiKey, 1);
+                       ck->id_config = priv->id_config;
+                       ck->id = id;
+                       ck->id_parent = id_parent;
+                       ck->key = g_strdup (key_);
+                       ck->value = g_strdup ("");
+                       ck->description = g_strdup ("");
+                       if (id_parent == 0)
+                               {
+                                       ck->path = g_strdup ("");
+                               }
+                       else
+                               {
+                                       ck->path = g_strdup (parent_);
+                               }
+
+                       g_free (key_);
+               }
+       g_free (parent_);
+
+       if (ck != NULL)
+               {
+                       if (ck->id_parent != 0)
+                               {
+                                       path = g_strconcat (ck->path, "/", key, NULL);
+                               }
+                       else
+                               {
+                                       path = g_strdup (ck->key);
+                               }
+
+                       if (!confi_db_plugin_path_set_value (pluggable, path, value))
+                               {
+                                       ck = NULL;
+                               }
+                       else
+                               {
+                                       ck->value = g_strdup (value);
+                               }
+                       g_free (path);
+               }
+
+       return ck;
+}
+
 static void
 confi_db_plugin_class_init (ConfiDBPluginClass *klass)
 {
@@ -530,6 +662,7 @@ confi_pluggable_iface_init (ConfiPluggableInterface *iface)
        iface->path_get_value = confi_db_plugin_path_get_value;
        iface->path_set_value = confi_db_plugin_path_set_value;
        iface->get_tree = confi_db_plugin_get_tree;
+       iface->add_key = confi_db_plugin_add_key;
 }
 
 static void
index f5f3da48abc220ac7f013cb793727f9bb55b8222..8e41a49c18655bf31f1bba86e89b0179ef8c19e4 100644 (file)
@@ -11,7 +11,8 @@ libconfi_la_SOURCES = libconfi.c \
 
 libconfi_la_LDFLAGS = -no-undefined
 
-include_HEADERS = libconfi.h \
+include_HEADERS = commons.h \
+                  libconfi.h \
                   confipluggable.h
 
 libconfi_includedir = $(includedir)/libconfi
diff --git a/src/commons.h b/src/commons.h
new file mode 100644 (file)
index 0000000..38ebe18
--- /dev/null
@@ -0,0 +1,64 @@
+/*
+ *  Copyright (C) 2014 Andrea Zagli <azagli@libero.it>
+ *
+ *  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.
+ */
+
+#ifndef __LIBCONFI_COMMONS_H__
+#define __LIBCONFI_COMMONS_H__
+
+#include <glib-object.h>
+
+
+G_BEGIN_DECLS
+
+
+#define CONFI_TYPE_CONFI (confi_confi_get_type ())
+
+GType confi_confi_get_type ();
+
+typedef struct _ConfiConfi ConfiConfi;
+struct _ConfiConfi
+       {
+               gchar *name;
+               gchar *description;
+       };
+
+ConfiConfi *confi_confi_copy (ConfiConfi *confi);
+void confi_confi_free (ConfiConfi *confi);
+
+#define CONFI_TYPE_KEY (confi_key_get_type ())
+
+GType confi_key_get_type ();
+
+typedef struct _ConfiKey ConfiKey;
+struct _ConfiKey
+       {
+               gint id_config;
+               gint id;
+               gint id_parent;
+               gchar *key;
+               gchar *value;
+               gchar *description;
+               gchar *path;
+       };
+
+ConfiKey *confi_key_copy (ConfiKey *key);
+void confi_key_free (ConfiKey *key);
+
+
+G_END_DECLS
+
+#endif /* __LIBCONFI_COMMONS_H__ */
index ba45eb88205ff6ca849d1509dc798ac1a4f278e1..3ca096e6b07ac649b8dc091e211c24d96a139c73 100644 (file)
@@ -173,7 +173,7 @@ confi_pluggable_path_set_value (ConfiPluggable *pluggable, const gchar *path, co
 }
 
 /**
- * confi_get_tree:
+ * confi_pluggable_get_tree:
  * @pluggable: a #ConfiPluggable object.
  *
  * Returns: a #GNode with the entire tree of configurations.
@@ -190,3 +190,25 @@ GNode
 
        return iface->get_tree (pluggable);
 }
+
+/**
+ * confi_pluggable_add_key:
+ * @pluggable: a #ConfiPluggable object.
+ * @parent: the path where add the key.
+ * @key: the key's name.
+ * @value: the key's value.
+ *
+ * Returns: a #ConfigKey struct filled with data from the key just added.
+ */
+ConfiKey
+*confi_pluggable_add_key (ConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value)
+{
+       ConfiPluggableInterface *iface;
+
+       g_return_val_if_fail (CONFI_IS_PLUGGABLE (pluggable), FALSE);
+
+       iface = CONFI_PLUGGABLE_GET_IFACE (pluggable);
+       g_return_val_if_fail (iface->add_key != NULL, FALSE);
+
+       return iface->add_key (pluggable, parent, key, value);
+}
index f7773f1b6fa7ea848b99df2d3533d120a394e024..eeb2ef93e613645420db3fdc3368803ce95648b5 100644 (file)
@@ -24,6 +24,8 @@
 
 #include <glib-object.h>
 
+#include "commons.h"
+
 G_BEGIN_DECLS
 
 /*
@@ -62,6 +64,7 @@ struct _ConfiPluggableInterface {
                                       const gchar *path,
                                       const gchar *value);
        GNode *(*get_tree) (ConfiPluggable *pluggable);
+       ConfiKey *(*add_key) (ConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value);
 };
 
 /*
@@ -69,15 +72,21 @@ struct _ConfiPluggableInterface {
  */
 GType confi_pluggable_get_type (void) G_GNUC_CONST;
 
-gboolean confi_pluggable_initialize (ConfiPluggable *pluggable, const gchar *cnc_string);
+gboolean confi_pluggable_initialize (ConfiPluggable *pluggable,
+                                     const gchar *cnc_string);
 
 GList *confi_pluggable_get_configs_list (ConfiPluggable *pluggable,
                                          const gchar *filter);
-gchar *confi_pluggable_path_get_value (ConfiPluggable *pluggable, const gchar *path);
+gchar *confi_pluggable_path_get_value (ConfiPluggable *pluggable,
+                                       const gchar *path);
 gboolean confi_pluggable_path_set_value (ConfiPluggable *pluggable,
                                const gchar *path,
                                const gchar *value);
 GNode *confi_pluggable_get_tree (ConfiPluggable *pluggable);
+ConfiKey *confi_pluggable_add_key (ConfiPluggable *pluggable,
+                                   const gchar *parent,
+                                   const gchar *key,
+                                   const gchar *value);
 
 
 G_END_DECLS
index 18233d243cf15bda9d1ee7ad4a191907de7646c1..9f6110f3f00ec653c08f8ffd7097f8272aebb6db 100644 (file)
@@ -321,142 +321,25 @@ gchar
  * @confi: a #Confi object.
  * @parent: the path where add the key.
  * @key: the key's name.
+ * @value: the key's value.
  *
  * Returns: a #ConfigKey struct filled with data from the key just added.
  */
 ConfiKey
-*confi_add_key (Confi *confi, const gchar *parent, const gchar *key)
+*confi_add_key (Confi *confi, const gchar *parent, const gchar *key, const gchar *value)
 {
-       ConfiKey *ck = NULL;
-       GdaDataModel *dmParent;
+       ConfiKey *ck;
 
        ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
 
-       gint id_parent;
-       gchar *parent_;
-       gchar *key_;
-
-       if (parent == NULL)
+       if (priv->pluggable == NULL)
                {
-                       id_parent = 0;
+                       g_warning ("Not initialized.");
+                       ck = NULL;
                }
        else
                {
-                       parent_ = g_strstrip (g_strdup (parent));
-                       if (strcmp (parent_, "") == 0)
-                               {
-                                       id_parent = 0;
-                               }
-                       else
-                               {
-                                       //dmParent = path_get_data_model (confi, path_normalize (confi, parent_));
-                                       if (dmParent == NULL)
-                                               {
-                                                       id_parent = -1;
-                                               }
-                                       else
-                                               {
-                                                       id_parent = gdaex_data_model_get_field_value_integer_at (dmParent, 0, "id");
-                                               }
-                               }
-               }
-
-       if (id_parent > -1)
-               {
-                       gchar *sql;
-                       gint id = 0;
-                       GdaDataModel *dm;
-
-                       /* find new id */
-                       sql = g_strdup_printf ("SELECT MAX(id) FROM %cvalues%c "
-                                              "WHERE id_configs = %d ",
-                                              priv->chrquot, priv->chrquot,
-                                              priv->id_config);
-                       dm = gdaex_query (priv->gdaex, sql);
-                       if (dm != NULL)
-                               {
-                                       id = gdaex_data_model_get_value_integer_at (dm, 0, 0);
-                                       g_object_unref (dm);
-                               }
-                       id++;
-
-                       key_ = g_strstrip (g_strdup (key));
-
-                       sql = g_strdup_printf ("INSERT INTO %cvalues%c "
-                                              "(id_configs, id, id_parent, %ckey%c, value) "
-                                              "VALUES (%d, %d, %d, '%s', '%s')",
-                                              priv->chrquot, priv->chrquot,
-                                              priv->chrquot, priv->chrquot,
-                                              priv->id_config,
-                                              id,
-                                              id_parent,
-                                              gdaex_strescape (key_, NULL),
-                                              "");
-                       if (gdaex_execute (priv->gdaex, sql) == -1)
-                               {
-                                       /* TO DO */
-                                       return NULL;
-                               }
-
-                       ck = g_new0 (ConfiKey, 1);
-                       ck->id_config = priv->id_config;
-                       ck->id = id;
-                       ck->id_parent = id_parent;
-                       ck->key = g_strdup (key_);
-                       ck->value = g_strdup ("");
-                       ck->description = g_strdup ("");
-                       if (id_parent == 0)
-                               {
-                                       ck->path = g_strdup ("");
-                               }
-                       else
-                               {
-                                       ck->path = g_strdup (parent_);
-                               }
-
-                       g_free (key_);
-               }
-       g_free (parent_);
-
-       return ck;
-}
-
-/**
- * confi_add_key_with_value:
- * @confi: a #Confi object.
- * @parent: the path where add the key.
- * @key: the key's name.
- * @value: the key's value.
- *
- * Returns: a #ConfigKey struct filled with data from the key just added.
- */
-ConfiKey
-*confi_add_key_with_value (Confi *confi, const gchar *parent, const gchar *key, const gchar *value)
-{
-       gchar *path;
-
-       ConfiKey *ck = confi_add_key (confi, parent, key);
-
-       if (ck != NULL)
-               {
-                       if (ck->id_parent != 0)
-                               {
-                                       path = g_strconcat (ck->path, "/", key, NULL);
-                               }
-                       else
-                               {
-                                       path = g_strdup (ck->key);
-                               }
-
-                       if (!confi_path_set_value (confi, path, value))
-                               {
-                                       ck = NULL;
-                               }
-                       else
-                               {
-                                       ck->value = g_strdup (value);
-                               }
-                       g_free (path);
+                       ck = confi_pluggable_add_key (priv->pluggable, parent, key, value);
                }
 
        return ck;
index a59a7d984b6ecc9b495476f8e3aaff095984d53e..d5798b587b5c593475ff371b413bf3a4daf30706 100644 (file)
 
 #include <glib-object.h>
 
-
-G_BEGIN_DECLS
-
-
+#include "commons.h"
 #include "confipluggable.h"
 
 
-#define CONFI_TYPE_CONFI (confi_confi_get_type ())
-
-GType confi_confi_get_type ();
-
-typedef struct _ConfiConfi ConfiConfi;
-struct _ConfiConfi
-       {
-               gchar *name;
-               gchar *description;
-       };
-
-ConfiConfi *confi_confi_copy (ConfiConfi *confi);
-void confi_confi_free (ConfiConfi *confi);
-
-#define CONFI_TYPE_KEY (confi_key_get_type ())
-
-GType confi_key_get_type ();
-
-typedef struct _ConfiKey ConfiKey;
-struct _ConfiKey
-       {
-               gint id_config;
-               gint id;
-               gint id_parent;
-               gchar *key;
-               gchar *value;
-               gchar *description;
-               gchar *path;
-       };
-
-ConfiKey *confi_key_copy (ConfiKey *key);
-void confi_key_free (ConfiKey *key);
+G_BEGIN_DECLS
 
 
 #define TYPE_CONFI                 (confi_get_type ())
@@ -96,11 +62,8 @@ gchar *confi_normalize_root (const gchar *root);
 
 ConfiKey *confi_add_key (Confi *confi,
                          const gchar *parent,
-                         const gchar *key);
-ConfiKey *confi_add_key_with_value (Confi *confi,
-                                    const gchar *parent,
-                                    const gchar *key,
-                                    const gchar *value);
+                         const gchar *key,
+                         const gchar *value);
 
 gboolean confi_key_set_key (Confi *confi,
                             ConfiKey *ck);
index 9bd2d046d56efd4eb841ade26c28e321d385cc46..29c7d16069f9521787e0b75e73ca514f19cf9599 100644 (file)
@@ -82,6 +82,9 @@ main (int argc, char **argv)
        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");
+
        /*g_printf ("Setting root \"key2\"\n");
        confi_set_root (confi, "key2");
        g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));*/