return ck;
}
+static ConfiKey
+*confi_db_plugin_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path)
+{
+ GdaDataModel *dm;
+ gchar *path_;
+ ConfiKey *ck;
+
+ ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ path_ = confi_path_normalize (pluggable, path);
+ if (path_ == NULL)
+ {
+ return NULL;
+ }
+
+ dm = confi_db_plugin_path_get_data_model (pluggable, path_);
+ if (dm == NULL || gda_data_model_get_n_rows (dm) <= 0)
+ {
+ if (dm != NULL)
+ {
+ g_object_unref (dm);
+ }
+ return NULL;
+ }
+
+ ck = g_new0 (ConfiKey, 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->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)
+ {
+ g_object_unref (dm);
+ }
+
+ return ck;
+}
+
static void
confi_db_plugin_class_init (ConfiDBPluginClass *klass)
{
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->path_get_confi_key = confi_db_plugin_path_get_confi_key;
}
static void
return iface->add_key (pluggable, parent, key, value);
}
+
+/**
+ * confi_pluggable_path_get_confi_key:
+ * @pluggable: a #ConfiPluggable object.
+ * @path: the key's path to get.
+ *
+ * Returns: (transfer full): a #ConfiKey from @path
+ */
+ConfiKey
+*confi_pluggable_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path)
+{
+ ConfiPluggableInterface *iface;
+
+ g_return_val_if_fail (CONFI_IS_PLUGGABLE (pluggable), FALSE);
+
+ iface = CONFI_PLUGGABLE_GET_IFACE (pluggable);
+ g_return_val_if_fail (iface->path_get_confi_key != NULL, FALSE);
+
+ return iface->path_get_confi_key (pluggable, path);
+}
const gchar *value);
GNode *(*get_tree) (ConfiPluggable *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);
};
/*
const gchar *parent,
const gchar *key,
const gchar *value);
+ConfiKey *confi_pluggable_path_get_confi_key (ConfiPluggable *pluggable, const gchar *path);
G_END_DECLS
ConfiKey
*confi_path_get_confi_key (Confi *confi, const gchar *path)
{
- GdaDataModel *dm;
- gchar *path_;
ConfiKey *ck;
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
- //path_ = path_normalize (confi, path);
- if (path_ == NULL)
- {
- return NULL;
- }
-
- //dm = path_get_data_model (confi, path_);
- if (dm == NULL || gda_data_model_get_n_rows (dm) <= 0)
+ if (priv->pluggable == NULL)
{
- if (dm != NULL)
- {
- g_object_unref (dm);
- }
- return NULL;
+ g_warning ("Not initialized.");
+ ck = NULL;
}
-
- ck = (ConfiKey *)g_malloc0 (sizeof (ConfiKey));
- 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->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)
+ else
{
- g_object_unref (dm);
+ ck = confi_pluggable_path_get_confi_key (priv->pluggable, path);
}
return ck;
confi_add_key (confi, "folder/key2", "key2-2", NULL);
confi_path_set_value (confi, "folder/key2/key2-2", "value for key2-2, programmatically setted");
+ ConfiKey *ck;
+ ck = confi_path_get_confi_key (confi, "folder/key2/key2-2");
+ g_printf ("ConfiKey for folder/key2/key2-2\n");
+ g_printf ("Path: %s\n", ck->path);
+ g_printf ("Key: %s\n", ck->key);
+ g_printf ("Description: %s\n", ck->description);
+ g_printf ("Value: %s\n", ck->value);
+ g_printf ("\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"));*/