/*
* plgfile.c
- * This file is part of confi
+ * This file is part of lizakconfi
*
- * Copyright (C) 2014 Andrea Zagli
+ * Copyright (C) 2014-2016 Andrea Zagli
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published by
static void confi_pluggable_iface_init (ConfiPluggableInterface *iface);
-static gboolean confi_file_plugin_path_get_group_and_key (ConfiPluggable *pluggable, const gchar *path, gchar **group, gchar **key);
+gboolean confi_file_plugin_initialize (ConfiPluggable *pluggable, const gchar *cnc_string);
+
+static gboolean confi_file_plugin_path_get_group_and_key (const gchar *path, gchar **group, gchar **key);
static gchar *confi_file_plugin_path_get_value_from_file (ConfiPluggable *pluggable, const gchar *path);
static gchar *confi_file_plugin_path_get_value (ConfiPluggable *pluggable, const gchar *path);
static gboolean confi_file_plugin_path_set_value (ConfiPluggable *pluggable, const gchar *path, const gchar *value);
}
static gboolean
-confi_file_plugin_path_get_group_and_key (ConfiPluggable *pluggable, const gchar *path, gchar **group, gchar **key)
+confi_file_plugin_path_get_group_and_key (const gchar *path, gchar **group, gchar **key)
{
- gchar *path_;
- gchar **tokens;
-
- guint l;
- guint i;
- guint c;
+ gchar *last;
if (path == NULL) return FALSE;
+ if (path[strlen (path) - 1] == '/') return FALSE;
- path_ = g_strdup_printf ("%s/", path);
- tokens = g_strsplit (path_, "/", -1);
- if (tokens == NULL) return FALSE;
-
- l = g_strv_length (tokens);
- c = 1;
- for (i = 0; i < l; i++)
+ last = g_strrstr (path, "/");
+ if (last == NULL)
{
- if (g_strcmp0 (tokens[i], "") != 0)
- {
- if (c == 1)
- {
- *group = g_strdup (tokens[i]);
- g_strstrip (*group);
- c = 2;
- }
- else if (c == 2)
- {
- *key = g_strdup (tokens[i]);
- g_strstrip (*key);
- c = 3;
- }
- if (c > 2)
- {
- break;
- }
- }
+ return FALSE;
}
- g_strfreev (tokens);
- g_free (path_);
+
+ *group = g_strndup (path + (path[0] == '/' ? 1 : 0), strlen (path + (path[0] == '/' ? 1 : 0)) - strlen (last));
+ g_strstrip (*group);
+
+ *key = g_strdup (last + 1);
+ g_strstrip (*key);
return TRUE;
}
group = NULL;
key = NULL;
- if (!confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key))
+ if (!confi_file_plugin_path_get_group_and_key (path, &group, &key))
{
return NULL;
}
{
gboolean ret;
+ gchar *path_;
gchar *group;
gchar *key;
g_return_val_if_fail (value != NULL, FALSE);
+ path_ = confi_path_normalize (pluggable, path);
+ if (path_ == NULL)
+ {
+ return FALSE;
+ }
+
group = NULL;
key = NULL;
- if (!confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key))
+ if (!confi_file_plugin_path_get_group_and_key (path_, &group, &key))
{
return FALSE;
}
{
group = NULL;
key_ = NULL;
- if (confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key_))
+ if (confi_file_plugin_path_get_group_and_key (path, &group, &key_))
{
ck = g_new0 (ConfiKey, 1);
ck->key = g_strdup (key);
group = NULL;
key = NULL;
- if (confi_file_plugin_path_get_group_and_key (pluggable, path_, &group, &key))
+ if (confi_file_plugin_path_get_group_and_key (path_, &group, &key))
{
ck = g_new0 (ConfiKey, 1);
ck->key = g_strdup (key);
group = NULL;
key = NULL;
- if (confi_file_plugin_path_get_group_and_key (pluggable, path, &group, &key))
+ if (confi_file_plugin_path_get_group_and_key (path, &group, &key))
{
error = NULL;
ret = g_key_file_remove_key (priv->kfile, group, key, &error);
/*
- * Copyright (C) 2005-2014 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2016 Andrea Zagli <azagli@libero.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
g_node_traverse (tree, G_PRE_ORDER, G_TRAVERSE_ALL, -1, traverse_func, NULL);
g_printf ("\n");
- if (g_strcmp0 (peas_plugin_info_get_module_name (ppinfo), "file") == 0)
- {
- gchar *val = confi_path_get_value (confi, "FOLDER1/key1");
- g_printf ("Value from key \"FOLDER1/key1\"\n%s\n\n", val);
- confi_path_set_value (confi, "FOLDER1/key1", "new value programmatically setted");
- g_printf ("Value from key \"FOLDER1/key1\"\n%s\n\n", confi_path_get_value (confi, "FOLDER1/key1"));
- confi_path_set_value (confi, "FOLDER1/key1", val);
-
- confi_add_key (confi, "FOLDER2", "key999", NULL);
- confi_path_set_value (confi, "FOLDER2/key999", "value for key999, programmatically setted");
-
- ConfiKey *ck;
- ck = confi_path_get_confi_key (confi, "FOLDER1/key2");
- g_printf ("ConfiKey for FOLDER1/key2\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 \"FOLDER2\"\n");
- confi_set_root (confi, "FOLDER2");
- g_printf ("Value from key \"key2\" %s\n", confi_path_get_value (confi, "key2"));
- g_printf ("Value from key \"FOLDER2/key2\" (expected null) %s\n", confi_path_get_value (confi, "FOLDER2/key2"));
- }
- else
- {
- gchar *val = confi_path_get_value (confi, "folder/key1/key1_2");
- g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", val);
- confi_path_set_value (confi, "folder/key1/key1_2", "new value programmatically setted");
- 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);
-
- 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 \"folder/key2\"\n");
- confi_set_root (confi, "folder/key2");
- g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));
- g_printf ("Value from key \"folder/key1/key1_2\" (expected null) %s\n", confi_path_get_value (confi, "folder/key1/key1_2"));
- }
+ gchar *val = confi_path_get_value (confi, "folder/key1/key1_2");
+ g_printf ("Value from key \"folder/key1/key1_2\"\n%s\n\n", val);
+ confi_path_set_value (confi, "folder/key1/key1_2", "new value programmatically setted");
+ 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 ("Value from key \"folder/key1/key1_2\"\n%s\n\n", confi_path_get_value (confi, "folder/key1/key1_2"));
+
+ 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 \"folder/key2\"\n");
+ confi_set_root (confi, "folder/key2");
+ g_printf ("Value from key \"key2-1\" %s\n", confi_path_get_value (confi, "key2-1"));
+ g_printf ("Value from key \"folder/key1/key1_2\" (expected null) %s\n", confi_path_get_value (confi, "folder/key1/key1_2"));
confi_destroy (confi);