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

index 4c1c96fa867159be7c9fce4918cba1dbf4157afb..fcf953ab4c147009f7b8cb7147eb9b2e68d337c7 100644 (file)
@@ -812,6 +812,38 @@ confi_db_plugin_remove_path (ConfiPluggable *pluggable, const gchar *path)
        return ret;
 }
 
+static gboolean
+confi_db_plugin_remove (ConfiPluggable *pluggable)
+{
+       gboolean ret;
+       gchar *sql;
+
+       ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+       ret = TRUE;
+       sql = g_strdup_printf ("DELETE FROM %cvalues%c WHERE id_configs = %d",
+                           priv->chrquot,
+                           priv->chrquot,
+                           priv->id_config);
+       if (gdaex_execute (priv->gdaex, sql) == -1)
+               {
+                       g_free (sql);
+                       ret = FALSE;
+               }
+       else
+               {
+                       g_free (sql);
+                       sql = g_strdup_printf ("DELETE FROM configs WHERE id = %d",
+                                              priv->id_config);
+                       if (gdaex_execute (priv->gdaex, sql) == -1)
+                               {
+                                       ret = FALSE;
+                               }
+                       g_free (sql);
+               }
+
+       return ret;
+}
 
 static void
 confi_db_plugin_class_init (ConfiDBPluginClass *klass)
@@ -841,6 +873,7 @@ confi_pluggable_iface_init (ConfiPluggableInterface *iface)
        iface->add_key = confi_db_plugin_add_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;
 }
 
 static void
index 581745eacca2457c9e72111eba0857b5ae9467d4..4f35a80a4788dcf5c61053ed93f72a79acc3587c 100644 (file)
@@ -540,6 +540,26 @@ confi_file_plugin_remove_path (ConfiPluggable *pluggable, const gchar *path)
        return ret;
 }
 
+static gboolean
+confi_file_plugin_remove (ConfiPluggable *pluggable)
+{
+       gboolean ret;
+       GFile *gfile;
+
+       ConfiFilePluginPrivate *priv = CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+       ret = TRUE;
+
+       gfile = g_file_new_for_path (priv->cnc_string);
+       if (gfile != NULL)
+               {
+                       g_file_delete (gfile, NULL, NULL);
+               }
+       g_key_file_unref (priv->kfile);
+
+       return ret;
+}
+
 static void
 confi_file_plugin_class_init (ConfiFilePluginClass *klass)
 {
@@ -568,6 +588,7 @@ confi_pluggable_iface_init (ConfiPluggableInterface *iface)
        iface->add_key = confi_file_plugin_add_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;
 }
 
 static void
index e655a21d3272cb56a8a882d743f98ee1fa3c0ab7..78ebeb8732deb37645a693bce5cf4fdf1724f44a 100644 (file)
@@ -235,7 +235,7 @@ ConfiKey
 
 /**
  * confi_pluggable_remove_path:
- * @confi: a #Confi object.
+ * @pluggable: a #ConfiPluggable object.
  * @path: the path to remove.
  *
  * Removes @path and every child key.
@@ -252,3 +252,22 @@ confi_pluggable_remove_path (ConfiPluggable *pluggable, const gchar *path)
 
        return iface->remove_path (pluggable, path);
 }
+
+/**
+ * confi_pluggable_remove:
+ * @pluggable: a #ConfiPluggable object.
+ *
+ * Remove a configuration from databases and destroy the relative object.
+ */
+gboolean
+confi_pluggable_remove (ConfiPluggable *pluggable)
+{
+       ConfiPluggableInterface *iface;
+
+       g_return_val_if_fail (CONFI_IS_PLUGGABLE (pluggable), FALSE);
+
+       iface = CONFI_PLUGGABLE_GET_IFACE (pluggable);
+       g_return_val_if_fail (iface->remove != NULL, FALSE);
+
+       return iface->remove (pluggable);
+}
index 1b0b9e525507981faf61d05524ff655e9d549781..65a1571b6131c36dd65a306ebb18c3830150af57 100644 (file)
@@ -67,7 +67,7 @@ struct _ConfiPluggableInterface {
        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) (ConfiPluggable *pluggable);
 };
 
 /*
@@ -92,6 +92,7 @@ ConfiKey *confi_pluggable_add_key (ConfiPluggable *pluggable,
                                    const gchar *value);
 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);
 
 
 G_END_DECLS
index ca4118b1907f5e0d31999a009d33e3ad745abc29..e813a6214f9a5f983074ae1dc0e871ce55037977 100644 (file)
@@ -490,33 +490,22 @@ gboolean
 confi_remove (Confi *confi)
 {
        gboolean ret;
-       gchar *sql;
 
        ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
 
-       ret = TRUE;
-       sql = g_strdup_printf ("DELETE FROM %cvalues%c WHERE id_configs = %d",
-                           priv->chrquot,
-                           priv->chrquot,
-                           priv->id_config);
-       if (gdaex_execute (priv->gdaex, sql) == -1)
+       if (priv->pluggable == NULL)
                {
-                       g_free (sql);
+                       g_warning ("Not initialized.");
                        ret = FALSE;
                }
-       else 
+       else
                {
-                       g_free (sql);
-                       sql = g_strdup_printf ("DELETE FROM configs WHERE id = %d",
-                                              priv->id_config);
-                       if (gdaex_execute (priv->gdaex, sql) == -1)
-                               {
-                                       ret = FALSE;
-                               }
-                       else
-                               {
-                                       confi_destroy (confi);
-                               }
+                       ret = confi_pluggable_remove (priv->pluggable);
+               }
+
+       if (ret)
+               {
+                       confi_destroy (confi);
                }
 
        return ret;
@@ -536,6 +525,7 @@ confi_destroy (Confi *confi)
        g_free (priv->name);
        g_free (priv->description);
        g_free (priv->root);
+       g_object_unref (priv->pluggable);
 }
 
 /**