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)
{
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;
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)
{
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;
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.
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);
};
/*
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);
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;
}