#include "libconfi.h"
+
+ConfiKey
+*confi_key_copy (ConfiKey *key)
+{
+ ConfiKey *b;
+
+ b = g_slice_new (ConfiKey);
+ b->id_config = key->id_config;
+ b->id = key->id;
+ b->id_parent = key->id_parent;
+ b->key = g_strdup (key->key);
+ b->value = g_strdup (key->value);
+ b->description = g_strdup (key->description);
+ b->path = g_strdup (key->path);
+
+ return b;
+}
+
+void
+confi_key_free (ConfiKey *key)
+{
+ g_free (key->key);
+ g_free (key->value);
+ g_free (key->description);
+ g_free (key->path);
+ g_slice_free (ConfiKey, key);
+}
+
+G_DEFINE_BOXED_TYPE (ConfiKey, confi_key, confi_key_copy, confi_key_free)
+
+
enum
{
PROP_0,
{
GdaEx *gdaex;
gint id_config;
- gchar *name,
- *description,
- *root;
+ gchar *name;
+ gchar *description;
+ gchar *root;
GHashTable *values;
gchar chrquot;
* confi_get_configs_list:
* @cnc_string: the connection string to use to connect to database that
* contains configuration.
- * @filter:
+ * @filter: (nullable):
*
* Returns: (element-type Confi) (transfer container): a #GList of #Confi. If there's no configurations, returns a valid
* #GList but with a unique NULL element.
const gchar *filter)
{
GList *lst = NULL;
- gchar *sql, *where = "";
+ gchar *sql;
+ gchar *where = "";
GdaEx *gdaex = gdaex_new_from_string (cnc_string);
* confi_get_tree:
* @confi: a #Confi object.
*
+ * Returns: a #GNode.
*/
GNode
*confi_get_tree (Confi *confi)
gchar
*confi_path_get_value (Confi *confi, const gchar *path)
{
- gchar *ret = NULL,
- *path_;
+ gchar *ret;
+ gchar *path_;
gpointer *gp;
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
+ ret = NULL;
+
path_ = path_normalize (confi, path);
if (path_ == NULL)
{
* @confi: a #Confi object.
* @path: the key's path to get.
*
+ * Returns: (transfer full): a #ConfiKey from @path
*/
ConfiKey
*confi_path_get_confi_key (Confi *confi, const gchar *path)
G_BEGIN_DECLS
+#define CONFI_TYPE_KEY (confi_key_get_type ())
+
+GType confi_key_get_type ();
+
+typedef struct _ConfiKey ConfiKey;
+struct _ConfiKey
+ {
+ gint id_config;
+ gint id;
+ gint id_parent;
+ gchar *key;
+ gchar *value;
+ gchar *description;
+ gchar *path;
+ };
+
+ConfiKey *confi_key_copy (ConfiKey *key);
+void confi_key_free (ConfiKey *key);
+
+
#define TYPE_CONFI (confi_get_type ())
#define CONFI(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_CONFI, Confi))
#define CONFI_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_CONFI, ConfiClass))
GObjectClass parent_class;
};
-typedef struct
- {
- gint id_config,
- id,
- id_parent;
- gchar *key,
- *value,
- *description,
- *path;
- } ConfiKey;
-
GType confi_get_type (void);
Confi *confi_new (const gchar *cnc_string,
#!/usr/bin/env python2\r
\r
+from gi.repository import GLib\r
from gi.repository import Confi\r
\r
# Create a new object\r
confi = Confi.Confi.new("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi", "Default", None, False)\r
\r
-value = confi.path_get_value ("folder/key1/key1_2");\r
+print("Properties of a Confi object: ")\r
+print(dir(confi.props))\r
\r
-print(value)
\ No newline at end of file
+value = confi.path_get_value ("folder/key1/key1_2")\r
+\r
+print("Value from key \"folder/key1/key1_2\": " + str(value))\r
+\r
+key = confi.path_get_confi_key ("folder/key1/key1_2")\r
+print("Path of confi key \"folder/key1/key1_2\": " + str(key.path))\r
+print("Value from confi key \"folder/key1/key1_2\": " + str(key.value))\r
+\r
+list = confi.get_configs_list ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=confi");\r
+print("The name of configuration 0: " + str(list[0].get_property("name")))\r
+\r
+confi.set_root ("key2")\r
+\r
+value = confi.path_get_value ("key2-1")\r
+\r
+print("Value from key \"key2-1\": " + str(value))\r
+\r
+confi.set_root ("/")\r
+confi.add_key ("folder", "key3");\r
+confi.add_key_with_value ("folder/key3", "key3-1", "value of key3-1 added programmatically")\r
+\r
+confi.set_root ("folder/key3")\r
+\r
+value = confi.path_get_value ("key3-1")\r
+\r
+print("Value from key \"key3-1\": " + str(value))\r