GNode *newNode;
ZakConfiKey *ck = g_new0 (ZakConfiKey, 1);
- ck->id_config = priv->id_config;
- ck->id = gdaex_data_model_get_field_value_integer_at (dm, i, "id");
- ck->id_parent = gdaex_data_model_get_field_value_integer_at (dm, i, "id_parent");
+ ck->config = g_strdup (priv->name);
ck->key = g_strdup (gdaex_data_model_get_field_value_stringify_at (dm, i, "key"));
ck->value = g_strdup (gdaex_data_model_get_field_value_stringify_at (dm, i, "value"));
ck->description = g_strdup (gdaex_data_model_get_field_value_stringify_at (dm, i, "description"));
newNode = g_node_append_data (parentNode, ck);
- zak_confi_db_plugin_get_children (pluggable, newNode, ck->id, g_strconcat (path, (g_strcmp0 (path, "") == 0 ? "" : "/"), ck->key, NULL));
+ zak_confi_db_plugin_get_children (pluggable,
+ newNode,
+ gdaex_data_model_get_field_value_integer_at (dm, i, "id"),
+ g_strconcat (path, (g_strcmp0 (path, "") == 0 ? "" : "/"), ck->key, NULL));
}
g_object_unref (dm);
}
gchar *where;
guint row;
- guint id;
guint rows;
ZakConfiDBPluginPrivate *priv = ZAK_CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
ZakConfiKey *ck = g_new0 (ZakConfiKey, 1);
- ck->id_config = priv->id_config;
- ck->id = 0;
- ck->id_parent = 0;
+ ck->config = g_strdup (priv->name);
ck->path = "";
- ck->description = "";
ck->key = g_strdup ("/");
ck->value = "";
+ ck->description = "";
node = g_node_new (ck);
sql = g_strdup_printf ("SELECT id"
" FROM %cvalues%c"
" WHERE id_configs = %d"
- " AND name = '%s'",
+ " AND key = '%s'",
priv->chrquot, priv->chrquot,
priv->id_config,
gdaex_strescape (key_, NULL));
g_free (sql);
if (dm != NULL && gda_data_model_get_n_rows (dm) > 0)
{
- g_free (sql);
id = gdaex_data_model_get_value_integer_at (dm, 0, 0);
g_object_unref (dm);
}
else
{
- g_free (sql);
id = 0;
/* find new id */
}
ck = g_new0 (ZakConfiKey, 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 ("");
+ ck->config = g_strdup (priv->name);
if (id_parent == 0)
{
ck->path = g_strdup ("");
{
ck->path = g_strdup (parent_);
}
+ ck->key = g_strdup (key_);
+ ck->value = g_strdup ("");
+ ck->description = g_strdup ("");
g_free (key_);
}
if (ck != NULL)
{
- if (ck->id_parent != 0)
+ if (g_strcmp0 (ck->path, "") != 0)
{
path = g_strconcat (ck->path, "/", key, NULL);
}
" value = '%s',"
" description = '%s'"
" WHERE id_configs = %d"
- " AND id = %d",
+ " AND id = (SELECT id FROM %cconfigs%c WHERE name = '%s')",
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);
+ priv->chrquot, priv->chrquot,
+ ck->config);
ret = (gdaex_execute (priv->gdaex, sql) >= 0);
g_free (sql);
}
ck = g_new0 (ZakConfiKey, 1);
- ck->id_config = gdaex_data_model_get_field_value_integer_at (dm, 0, "id_configs");
- ck->id = gdaex_data_model_get_field_value_integer_at (dm, 0, "id");
- ck->id_parent = gdaex_data_model_get_field_value_integer_at (dm, 0, "id_parent");
+ ck->config = g_strdup (priv->name);
+ ck->path = g_strdup (path_);
ck->key = gdaex_data_model_get_field_value_stringify_at (dm, 0, "key");
ck->value = gdaex_data_model_get_field_value_stringify_at (dm, 0, "value");
ck->description = gdaex_data_model_get_field_value_stringify_at (dm, 0, "description");
- ck->path = g_strdup (path_);
if (dm != NULL)
{
static gboolean
zak_confi_db_plugin_remove_path_traverse_func (GNode *node, gpointer data)
{
+ GdaDataModel *dm;
+ ZakConfiPluggable* pluggable;
+
+ pluggable = (ZakConfiPluggable *)data;
ZakConfiKey *ck = (ZakConfiKey *)node->data;
- if (ck->id != 0)
+ if (g_strcmp0 (ck->value, "") != 0)
{
- zak_confi_db_plugin_delete_id_from_db_values ((ZakConfiPluggable *)data, ck->id);
+ dm = zak_confi_db_plugin_path_get_data_model (pluggable, g_strdup_printf ("%s/%s", ck->path, ck->key));
+ zak_confi_db_plugin_delete_id_from_db_values (pluggable, gdaex_data_model_get_field_value_integer_at (dm, 0, "id"));
}
return FALSE;
ZakConfiKey *ck = g_new0 (ZakConfiKey, 1);
+ ck->config = "Default";
ck->path = "";
- ck->description = "";
ck->key = g_strdup ("/");
ck->value = "";
+ ck->description = "";
node = g_node_new (ck);
if (zak_confi_file_plugin_path_get_group_and_key (path, &group, &key_))
{
ck = g_new0 (ZakConfiKey, 1);
+ ck->config = "Default";
+ ck->path = g_strdup (path);
ck->key = g_strdup (key);
ck->value = zak_confi_file_plugin_path_get_value (pluggable, path);
ck->description = g_key_file_get_comment (priv->kfile, group, key, NULL);;
- ck->path = g_strdup (path);
g_free (group);
g_free (key_);
if (zak_confi_file_plugin_path_get_group_and_key (path_, &group, &key))
{
ck = g_new0 (ZakConfiKey, 1);
+ ck->config = "Default";
+ ck->path = g_strdup (group);
ck->key = g_strdup (key);
ck->value = zak_confi_file_plugin_path_get_value (pluggable, path_);
ck->description = g_key_file_get_comment (priv->kfile, group, key, NULL);
- ck->path = g_strdup (group);
g_free (group);
g_free (key);