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)
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
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)
{
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
/**
* confi_pluggable_remove_path:
- * @confi: a #Confi object.
+ * @pluggable: a #ConfiPluggable object.
* @path: the path to remove.
*
* Removes @path and every child key.
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);
+}
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);
};
/*
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
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;
g_free (priv->name);
g_free (priv->description);
g_free (priv->root);
+ g_object_unref (priv->pluggable);
}
/**