]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Implemented Confi::key_set_key in plugins.
authorAndrea Zagli <azagli@libero.it>
Thu, 18 Dec 2014 15:36:05 +0000 (16:36 +0100)
committerAndrea Zagli <azagli@libero.it>
Thu, 18 Dec 2014 15:36:05 +0000 (16:36 +0100)
plugins/db/plgdb.c
plugins/file/plgfile.c
src/confipluggable.c
src/confipluggable.h
src/libconfi.c

index fcf953ab4c147009f7b8cb7147eb9b2e68d337c7..408219af73efc8727fb902d12882019213f5ea5b 100644 (file)
@@ -687,6 +687,35 @@ static ConfiKey
        return ck;
 }
 
+static gboolean
+confi_db_plugin_key_set_key (ConfiPluggable *pluggable,
+                             ConfiKey *ck)
+{
+       gboolean ret;
+       gchar *sql;
+
+       ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+       sql = g_strdup_printf ("UPDATE %cvalues%c"
+                              " SET %ckey%c = '%s',"
+                              " value = '%s',"
+                              " description = '%s'"
+                              " WHERE id_configs = %d"
+                              " AND id = %d",
+                              priv->chrquot, priv->chrquot,
+                              priv->chrquot, priv->chrquot,
+                              gdaex_strescape (ck->key, NULL),
+                              gdaex_strescape (ck->value, NULL),
+                              gdaex_strescape (ck->description, NULL),
+                              priv->id_config,
+                              ck->id);
+
+       ret = (gdaex_execute (priv->gdaex, sql) >= 0);
+       g_free (sql);
+
+       return ret;
+}
+
 static ConfiKey
 *confi_db_plugin_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path)
 {
@@ -871,6 +900,7 @@ confi_pluggable_iface_init (ConfiPluggableInterface *iface)
        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;
+       iface->key_set_key = confi_db_plugin_key_set_key;
        iface->path_get_confi_key = confi_db_plugin_path_get_confi_key;
        iface->remove_path = confi_db_plugin_remove_path;
        iface->remove = confi_db_plugin_remove;
index 4f35a80a4788dcf5c61053ed93f72a79acc3587c..91f4849325ddd06b96e34f28f8b30ef8abc86433 100644 (file)
@@ -469,6 +469,23 @@ static ConfiKey
        return ck;
 }
 
+static gboolean
+confi_file_plugin_key_set_key (ConfiPluggable *pluggable,
+                               ConfiKey *ck)
+{
+       gboolean ret;
+
+       gchar *path;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       path = g_strdup_printf ("%s/%s", ck->path, ck->key);
+       ret = confi_file_plugin_path_set_value (pluggable, path, ck->value);
+       g_free (path);
+
+       return ret;
+}
+
 static ConfiKey
 *confi_file_plugin_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path)
 {
@@ -586,6 +603,7 @@ confi_pluggable_iface_init (ConfiPluggableInterface *iface)
        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->key_set_key = confi_file_plugin_key_set_key;
        iface->path_get_confi_key = confi_file_plugin_path_get_confi_key;
        iface->remove_path = confi_file_plugin_remove_path;
        iface->remove = confi_file_plugin_remove;
index 78ebeb8732deb37645a693bce5cf4fdf1724f44a..5b7b51017b518fa1609afd1b6829c3d36fb58478 100644 (file)
@@ -213,6 +213,26 @@ ConfiKey
        return iface->add_key (pluggable, parent, key, value);
 }
 
+/**
+ * confi_pluggable_key_set_key:
+ * @pluggable: a #ConfiPluggable object.
+ * @ck: a #ConfiKey struct.
+ *
+ */
+gboolean
+confi_pluggable_key_set_key (ConfiPluggable *pluggable,
+                   ConfiKey *ck)
+{
+       ConfiPluggableInterface *iface;
+
+       g_return_val_if_fail (CONFI_IS_PLUGGABLE (pluggable), FALSE);
+
+       iface = CONFI_PLUGGABLE_GET_IFACE (pluggable);
+       g_return_val_if_fail (iface->key_set_key != NULL, FALSE);
+
+       return iface->key_set_key (pluggable, ck);
+}
+
 /**
  * confi_pluggable_path_get_confi_key:
  * @pluggable: a #ConfiPluggable object.
index 65a1571b6131c36dd65a306ebb18c3830150af57..a8c29472165f42bd95e175feeedfdd634b65afad 100644 (file)
@@ -61,13 +61,19 @@ struct _ConfiPluggableInterface {
                                    const gchar *filter);
        gchar *(*path_get_value) (ConfiPluggable *pluggable, const gchar *path);
        gboolean (*path_set_value) (ConfiPluggable *pluggable,
-                                      const gchar *path,
-                                      const gchar *value);
+                                   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);
+       ConfiKey *(*add_key) (ConfiPluggable *pluggable,
+                             const gchar *parent,
+                             const gchar *key,
+                             const gchar *value);
        ConfiKey *(*path_get_confi_key) (ConfiPluggable *pluggable, const gchar *path);
-       gboolean (*remove_path) (ConfiPluggable *pluggable, const gchar *path);
+       gboolean (*remove_path) (ConfiPluggable *pluggable,
+                                const gchar *path);
        gboolean (*remove) (ConfiPluggable *pluggable);
+       gboolean (*key_set_key) (ConfiPluggable *pluggable,
+                                ConfiKey *ck);
 };
 
 /*
@@ -90,6 +96,8 @@ ConfiKey *confi_pluggable_add_key (ConfiPluggable *pluggable,
                                    const gchar *parent,
                                    const gchar *key,
                                    const gchar *value);
+gboolean confi_pluggable_key_set_key (ConfiPluggable *pluggable,
+                   ConfiKey *ck);
 ConfiKey *confi_pluggable_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path);
 gboolean confi_pluggable_remove_path (ConfiPluggable *pluggable, const gchar *path);
 gboolean confi_pluggable_remove (ConfiPluggable *pluggable);
index e813a6214f9a5f983074ae1dc0e871ce55037977..71a7791a0c1b4db96065d3a5c5c67810a6f16411 100644 (file)
@@ -349,26 +349,18 @@ confi_key_set_key (Confi *confi,
                    ConfiKey *ck)
 {
        gboolean ret;
-       gchar *sql;
 
        ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
 
-       sql = g_strdup_printf ("UPDATE %cvalues%c"
-                              " SET %ckey%c = '%s',"
-                              " value = '%s',"
-                              " description = '%s'"
-                              " WHERE id_configs = %d"
-                              " AND id = %d",
-                              priv->chrquot, priv->chrquot,
-                              priv->chrquot, priv->chrquot,
-                              gdaex_strescape (ck->key, NULL),
-                              gdaex_strescape (ck->value, NULL),
-                              gdaex_strescape (ck->description, NULL),
-                              priv->id_config,
-                              ck->id);
-
-       ret = (gdaex_execute (priv->gdaex, sql) >= 0);
-       g_free (sql);
+       if (priv->pluggable == NULL)
+               {
+                       g_warning ("Not initialized.");
+                       ret = FALSE;
+               }
+       else
+               {
+                       ret = confi_pluggable_key_set_key (priv->pluggable, ck);
+               }
 
        return ret;
 }