static GdaDataModel *confi_db_plugin_path_get_data_model (ConfiPluggable *pluggable, const gchar *path);
static gchar *confi_db_plugin_path_get_value_from_db (ConfiPluggable *pluggable, const gchar *path);
+static void confi_db_plugin_get_children (ConfiPluggable *pluggable, GNode *parentNode, gint idParent, gchar *path);
#define CONFI_DB_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), CONFI_TYPE_DB_PLUGIN, ConfiDBPluginPrivate))
return ret;
}
+static void
+confi_db_plugin_get_children (ConfiPluggable *pluggable, GNode *parentNode, gint idParent, gchar *path)
+{
+ gchar *sql;
+ GdaDataModel *dm;
+
+ ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ sql = g_strdup_printf ("SELECT * FROM %cvalues%c "
+ "WHERE id_configs = %d AND "
+ "id_parent = %d",
+ priv->chrquot, priv->chrquot,
+ priv->id_config,
+ idParent);
+
+ dm = gdaex_query (priv->gdaex, sql);
+ g_free (sql);
+ if (dm != NULL)
+ {
+ guint i;
+ guint rows;
+
+ rows = gda_data_model_get_n_rows (dm);
+ for (i = 0; i < rows; i++)
+ {
+ GNode *newNode;
+ ConfiKey *ck = g_new0 (ConfiKey, 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->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"));
+ ck->path = g_strdup (path);
+
+ newNode = g_node_append_data (parentNode, ck);
+
+ confi_db_plugin_get_children (pluggable, newNode, ck->id, g_strconcat (path, (g_strcmp0 (path, "") == 0 ? "" : "/"), ck->key, NULL));
+ }
+ g_object_unref (dm);
+ }
+}
+
static GList
*confi_db_plugin_get_configs_list (ConfiPluggable *pluggable,
const gchar *filter)
return ret;
}
-gboolean
+static gboolean
confi_db_plugin_path_set_value (ConfiPluggable *pluggable, const gchar *path, const gchar *value)
{
GdaDataModel *dm;
return ret;
}
+GNode
+*confi_db_plugin_get_tree (ConfiPluggable *pluggable)
+{
+ gchar *path;
+ GNode *node;
+
+ ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ path = g_strdup ("");
+
+ ConfiKey *ck = g_new0 (ConfiKey, 1);
+
+ ck->id_config = priv->id_config;
+ ck->id = 0;
+ ck->id_parent = 0;
+ ck->key = g_strdup ("/");
+
+ node = g_node_new (ck);
+
+ confi_db_plugin_get_children (pluggable, node, 0, path);
+
+ return node;
+}
+
static void
confi_db_plugin_class_init (ConfiDBPluginClass *klass)
{
iface->get_configs_list = confi_db_plugin_get_configs_list;
iface->path_get_value = confi_db_plugin_path_get_value;
iface->path_set_value = confi_db_plugin_path_set_value;
+ iface->get_tree = confi_db_plugin_get_tree;
}
static void
static ConfiPluggable *confi_get_confi_pluggable_from_cnc_string (const gchar *cnc_string);
-static void get_children (Confi *confi, GNode *parentNode, gint idParent, gchar *path);
static gboolean confi_delete_id_from_db_values (Confi *confi, gint id);
static gboolean confi_remove_path_traverse_func (GNode *node, gpointer data);
object_class->set_property = confi_set_property;
object_class->get_property = confi_get_property;
-
- g_object_class_install_property (object_class, PROP_ID_CONFIG,
- g_param_spec_int ("id_config",
- "Configuraton ID",
- "The configuration ID",
- 0, G_MAXINT, 0,
- G_PARAM_READABLE));
- g_object_class_install_property (object_class, PROP_NAME,
- g_param_spec_string ("name",
- "Configuraton Name",
- "The configuration name",
- "",
- G_PARAM_READWRITE));
- g_object_class_install_property (object_class, PROP_DESCRIPTION,
- g_param_spec_string ("description",
- "Configuraton Description",
- "The configuration description",
- "",
- G_PARAM_READWRITE));
- g_object_class_install_property (object_class, PROP_ROOT,
- g_param_spec_string ("root",
- "Configuraton Root",
- "The configuration root",
- "/",
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
}
static void
GNode
*confi_get_tree (Confi *confi)
{
- gchar *path = "";
- GNode *node;
-
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
- ConfiKey *ck = g_new0 (ConfiKey, 1);
-
- ck->id_config = priv->id_config;
- ck->id = 0;
- ck->id_parent = 0;
- ck->key = g_strdup ("/");
-
- node = g_node_new (ck);
-
- get_children (confi, node, 0, path);
-
- return node;
+ if (priv->pluggable != NULL)
+ {
+ return confi_pluggable_get_tree (priv->pluggable);
+ }
+ else
+ {
+ return NULL;
+ }
}
/**
}
/* PRIVATE */
-static void
-get_children (Confi *confi, GNode *parentNode, gint idParent, gchar *path)
-{
- gchar *sql;
- GdaDataModel *dm;
-
- ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
-
- sql = g_strdup_printf ("SELECT * FROM %cvalues%c "
- "WHERE id_configs = %d AND "
- "id_parent = %d",
- priv->chrquot, priv->chrquot,
- priv->id_config,
- idParent);
-
- dm = gdaex_query (priv->gdaex, sql);
- g_free (sql);
- if (dm != NULL)
- {
- guint i;
- guint rows;
-
- rows = gda_data_model_get_n_rows (dm);
- for (i = 0; i < rows; i++)
- {
- GNode *newNode;
- ConfiKey *ck = g_new0 (ConfiKey, 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->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"));
- ck->path = g_strdup (path);
-
- newNode = g_node_append_data (parentNode, ck);
-
- get_children (confi, newNode, ck->id, g_strconcat (path, (strcmp (path, "") == 0 ? "" : "/"), ck->key, NULL));
- }
- g_object_unref (dm);
- }
-}
-
static void
confi_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
switch (property_id)
{
- case PROP_NAME:
- priv->name = g_strdup (g_value_get_string (value));
- sql = g_strdup_printf ("UPDATE configs "
- "SET name = '%s' "
- "WHERE id = %d",
- gdaex_strescape (priv->name, NULL),
- priv->id_config);
- gdaex_execute (priv->gdaex, sql);
- g_free (sql);
- break;
-
- case PROP_DESCRIPTION:
- priv->description = g_strdup (g_value_get_string (value));
- sql = g_strdup_printf ("UPDATE configs "
- "SET description = '%s' "
- "WHERE id = %d",
- gdaex_strescape (priv->description, NULL),
- priv->id_config);
- gdaex_execute (priv->gdaex, sql);
- g_free (sql);
- break;
-
- case PROP_ROOT:
- priv->root = confi_normalize_root (g_value_get_string (value));
- break;
-
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
switch (property_id)
{
- case PROP_ID_CONFIG:
- g_value_set_int (value, priv->id_config);
- break;
-
- case PROP_NAME:
- g_value_set_string (value, priv->name);
- break;
-
- case PROP_DESCRIPTION:
- g_value_set_string (value, priv->description);
- break;
-
- case PROP_ROOT:
- g_value_set_string (value, priv->root);
- break;
-
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
break;
g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", confi_path_get_value (confi, "folder/key1/key1_2"));
confi_path_set_value (confi, "folder/key1/key1_2", val);
- /*g_printf ("Traversing the entire tree\n");
+ g_printf ("Traversing the entire tree\n");
tree = confi_get_tree (confi);
g_node_traverse (tree, G_PRE_ORDER, G_TRAVERSE_ALL, -1, traverse_func, NULL);
g_printf ("\n");
- g_printf ("Setting root \"key2\"\n");
+ /*g_printf ("Setting root \"key2\"\n");
confi_set_root (confi, "key2");
- g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));
+ g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));*/
- confi_destroy (confi);*/
+ confi_destroy (confi);
return 0;
}