*.exe
tests/test
tests/test_get_configs_list
+tests/test_add_config
*.csv
gtk-doc.m4
*.gir
return node;
}
+static ZakConfiConfi
+*zak_confi_db_plugin_add_config (ZakConfiPluggable *pluggable, const gchar *name, const gchar *description)
+{
+ ZakConfiConfi *cc;
+
+ gchar *sql;
+ gint id;
+
+ ZakConfiDBPluginPrivate *priv = ZAK_CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ cc = NULL;
+
+ id = gdaex_get_new_id (priv->gdaex, "configs", "id", NULL);
+
+ sql = g_strdup_printf ("INSERT INTO configs"
+ " VALUES (%d, '%s', '%s')",
+ id,
+ gdaex_strescape (name, NULL),
+ gdaex_strescape (description, NULL));
+ if (gdaex_execute (priv->gdaex, sql) > 0)
+ {
+ cc = g_new0 (ZakConfiConfi, 1);
+ cc->name = g_strdup (name);
+ cc->description = g_strdup (description);
+ }
+
+ g_free (sql);
+
+ return cc;
+}
+
static ZakConfiKey
*zak_confi_db_plugin_add_key (ZakConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value)
{
iface->path_get_value = zak_confi_db_plugin_path_get_value;
iface->path_set_value = zak_confi_db_plugin_path_set_value;
iface->get_tree = zak_confi_db_plugin_get_tree;
+ iface->add_config = zak_confi_db_plugin_add_config;
iface->add_key = zak_confi_db_plugin_add_key;
iface->key_set_key = zak_confi_db_plugin_key_set_key;
iface->path_get_confi_key = zak_confi_db_plugin_path_get_confi_key;
return node;
}
+static ZakConfiConfi
+*zak_confi_file_plugin_add_config (ZakConfiPluggable *pluggable, const gchar *name, const gchar *description)
+{
+ return NULL;
+}
+
static ZakConfiKey
*zak_confi_file_plugin_add_key (ZakConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value)
{
iface->path_get_value = zak_confi_file_plugin_path_get_value;
iface->path_set_value = zak_confi_file_plugin_path_set_value;
iface->get_tree = zak_confi_file_plugin_get_tree;
+ iface->add_config = zak_confi_file_plugin_add_config;
iface->add_key = zak_confi_file_plugin_add_key;
iface->key_set_key = zak_confi_file_plugin_key_set_key;
iface->path_get_confi_key = zak_confi_file_plugin_path_get_confi_key;
*/
GList
*zak_confi_get_configs_list (const gchar *cnc_string,
- const gchar *filter)
+ const gchar *filter)
{
ZakConfiPluggable *pluggable;
GList *lst;
- lst = NULL;
-
pluggable = zak_confi_get_confi_pluggable_from_cnc_string (cnc_string);
- if (pluggable != NULL)
+ if (pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ lst = NULL;
+ }
+ else
{
lst = zak_confi_pluggable_get_configs_list (pluggable, filter);
}
return lst;
}
+/**
+ * zak_confi_add_config:
+ * @cnc_string:
+ * @name:
+ * @description:
+ *
+ * Returns: a #ZakConfiConfi struct.
+ */
+ZakConfiConfi
+*zak_confi_add_config (const gchar *cnc_string,
+ const gchar *name,
+ const gchar *description)
+{
+ ZakConfiPluggable *pluggable;
+ ZakConfiConfi *cc;
+
+ pluggable = zak_confi_get_confi_pluggable_from_cnc_string (cnc_string);
+
+ if (pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ cc = NULL;
+ }
+ else
+ {
+ cc = zak_confi_pluggable_add_config (pluggable, name, description);
+ }
+
+ return cc;
+}
+
/**
* zak_confi_get_tree:
* @confi: a #ZakConfi object.
return iface->get_tree (pluggable);
}
+/**
+ * zak_confi_pluggable_add_confi:
+ * @pluggable: a #ZakConfiPluggable object.
+ * @name: the name of the config..
+ * @description: the config's description.
+ *
+ * Returns: a #ZakConfiConfi struct filled with data from the key just added.
+ */
+ZakConfiConfi
+*zak_confi_pluggable_add_config (ZakConfiPluggable *pluggable, const gchar *name, const gchar *description)
+{
+ ZakConfiPluggableInterface *iface;
+
+ g_return_val_if_fail (ZAK_CONFI_IS_PLUGGABLE (pluggable), FALSE);
+
+ iface = ZAK_CONFI_PLUGGABLE_GET_IFACE (pluggable);
+ g_return_val_if_fail (iface->add_config != NULL, FALSE);
+
+ return iface->add_config (pluggable, name, description);
+}
+
/**
* zak_confi_pluggable_add_key:
* @pluggable: a #ZakConfiPluggable object.
* @key: the key's name.
* @value: the key's value.
*
- * Returns: a #ZakConfigKey struct filled with data from the key just added.
+ * Returns: a #ZakConfiKey struct filled with data from the key just added.
*/
ZakConfiKey
*zak_confi_pluggable_add_key (ZakConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *value)
const gchar *path,
const gchar *value);
GNode *(*get_tree) (ZakConfiPluggable *pluggable);
+ ZakConfiConfi *(*add_config) (ZakConfiPluggable *pluggable,
+ const gchar *name,
+ const gchar *description);
ZakConfiKey *(*add_key) (ZakConfiPluggable *pluggable,
const gchar *parent,
const gchar *key,
const gchar *path,
const gchar *value);
GNode *zak_confi_pluggable_get_tree (ZakConfiPluggable *pluggable);
+ZakConfiConfi *zak_confi_pluggable_add_config (ZakConfiPluggable *pluggable,
+ const gchar *name,
+ const gchar *description);
ZakConfiKey *zak_confi_pluggable_add_key (ZakConfiPluggable *pluggable,
const gchar *parent,
const gchar *key,
PeasPluginInfo *zak_confi_get_plugin_info (ZakConfi *confi);
GList *zak_confi_get_configs_list (const gchar *cnc_string,
- const gchar *filter);
+ const gchar *filter);
+
+ZakConfiConfi *zak_confi_add_config (const gchar *cnc_string,
+ const gchar *name,
+ const gchar *description);
GNode *zak_confi_get_tree (ZakConfi *confi);
LDADD = $(top_builddir)/src/libzakconfi.la
noinst_PROGRAMS = test \
+ test_add_config \
test_get_configs_list
EXTRA_DIST = gir.py
--- /dev/null
+/*
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <glib/gprintf.h>
+#include <libpeas/peas.h>
+
+#include "libzakconfi.h"
+
+int
+main (int argc, char **argv)
+{
+ PeasEngine *engine;
+ PeasPluginInfo *ppinfo;
+
+ if (argc < 4)
+ {
+ g_error ("Usage: test_add_config <connection string> <config name> <config description>");
+ return 0;
+ }
+
+ engine = peas_engine_get_default ();
+ peas_engine_add_search_path (engine, "./plugins", NULL);
+
+ if (zak_confi_add_config (argv[1], argv[2], argv[3]) == NULL)
+ {
+ g_warning ("Config %s not created.", argv[1]);
+ }
+
+ return 0;
+}