docs/reference/xml/
libtool
stamp-h1
-tests/test
POTFILES
mkinstalldirs
stamp-it
tests/test
tests/test_get_configs_list
tests/test_add_config
+tests/test_set_config
*.csv
gtk-doc.m4
*.gir
break;
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:
return cc;
}
+static gboolean
+zak_confi_db_plugin_set_config (ZakConfiPluggable *pluggable,
+ const gchar *name,
+ const gchar *description)
+{
+ gboolean ret;
+ gchar *sql;
+
+ ZakConfiDBPluginPrivate *priv = ZAK_CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ g_return_val_if_fail (name != NULL, FALSE);
+
+ ret = TRUE;
+
+ sql = g_strdup_printf ("UPDATE configs"
+ " SET name = '%s'"
+ " WHERE id = %d",
+ gdaex_strescape (name, NULL),
+ priv->id_config);
+ if (gdaex_execute (priv->gdaex, sql) < 1)
+ {
+ ret = FALSE;
+ }
+ g_free (sql);
+ priv->name = g_strdup (name);
+
+ if (description != NULL)
+ {
+ sql = g_strdup_printf ("UPDATE configs"
+ " SET description = '%s'"
+ " WHERE id = %d",
+ gdaex_strescape (description, NULL),
+ priv->id_config);
+ if (gdaex_execute (priv->gdaex, sql) < 1)
+ {
+ ret = FALSE;
+ }
+ g_free (sql);
+ priv->description = g_strdup (description);
+ }
+
+ return ret;
+}
+
static ZakConfiKey
*zak_confi_db_plugin_add_key (ZakConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *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->set_config = zak_confi_db_plugin_set_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;
break;
case PROP_NAME:
- priv->name = g_strdup (g_value_get_string (value));
- zak_confi_file_plugin_path_set_value ((ZakConfiPluggable *)plugin, "/CONFI/name", priv->name);
break;
case PROP_DESCRIPTION:
- priv->description = g_strdup (g_value_get_string (value));
- zak_confi_file_plugin_path_set_value ((ZakConfiPluggable *)plugin, "/CONFI/description", priv->description);
break;
case PROP_ROOT:
return NULL;
}
+static gboolean
+zak_confi_file_plugin_set_config (ZakConfiPluggable *pluggable, const gchar *name, const gchar *description)
+{
+ ZakConfiFilePluginPrivate *priv = ZAK_CONFI_FILE_PLUGIN_GET_PRIVATE (pluggable);
+
+ priv->name = g_strdup (name);
+ zak_confi_file_plugin_path_set_value (pluggable, "/CONFI/name", priv->name);
+
+ if (description != NULL)
+ {
+ priv->description = g_strdup (description);
+ zak_confi_file_plugin_path_set_value (pluggable, "/CONFI/description", priv->description);
+ }
+}
+
static ZakConfiKey
*zak_confi_file_plugin_add_key (ZakConfiPluggable *pluggable, const gchar *parent, const gchar *key, const gchar *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->set_config = zak_confi_file_plugin_set_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;
return ret;
}
+/**
+ * zak_confi_set_config:
+ * @confi: a #ZakConfi object.
+ * @name:
+ * @description:
+ *
+ * Returns:
+ */
+gboolean
+zak_confi_set_config (ZakConfi *confi,
+ const gchar *name,
+ const gchar *description)
+{
+ ZakConfiPrivate *priv = ZAK_CONFI_GET_PRIVATE (confi);
+
+ if (priv->pluggable == NULL)
+ {
+ g_warning ("Not initialized.");
+ return FALSE;
+ }
+ else
+ {
+ return zak_confi_pluggable_set_config (priv->pluggable,
+ name,
+ description);
+ }
+}
+
/**
* zak_confi_add_key:
* @confi: a #ZakConfi object.
"Configuraton Name",
"The configuration name",
"",
- G_PARAM_READWRITE));
+ G_PARAM_READABLE));
/**
* ZakConfiPluggable:description:
"Configuraton Description",
"The configuration description",
"",
- G_PARAM_READWRITE));
+ G_PARAM_READABLE));
/**
* ZakConfiPluggable:root:
}
/**
- * zak_confi_pluggable_add_confi:
+ * zak_confi_pluggable_add_config:
* @pluggable: a #ZakConfiPluggable object.
* @name: the name of the config..
* @description: the config's description.
return iface->add_config (pluggable, name, description);
}
+/**
+ * zak_confi_pluggable_set_config:
+ * @pluggable: a #ZakConfiPluggable object.
+ * @name: the name of the config..
+ * @description: the config's description.
+ *
+ * Returns:
+ */
+gboolean
+zak_confi_pluggable_set_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->set_config != NULL, FALSE);
+
+ return iface->set_config (pluggable, name, description);
+}
+
/**
* zak_confi_pluggable_add_key:
* @pluggable: a #ZakConfiPluggable object.
ZakConfiConfi *(*add_config) (ZakConfiPluggable *pluggable,
const gchar *name,
const gchar *description);
+ gboolean (*set_config) (ZakConfiPluggable *pluggable,
+ const gchar *name,
+ const gchar *description);
ZakConfiKey *(*add_key) (ZakConfiPluggable *pluggable,
const gchar *parent,
const gchar *key,
ZakConfiConfi *zak_confi_pluggable_add_config (ZakConfiPluggable *pluggable,
const gchar *name,
const gchar *description);
+gboolean zak_confi_pluggable_set_config (ZakConfiPluggable *pluggable,
+ const gchar *name,
+ const gchar *description);
ZakConfiKey *zak_confi_pluggable_add_key (ZakConfiPluggable *pluggable,
const gchar *parent,
const gchar *key,
gchar *zak_confi_normalize_root (const gchar *root);
gboolean zak_confi_set_root (ZakConfi *confi, const gchar *root);
+gboolean zak_confi_set_config (ZakConfi *confi,
+ const gchar *name,
+ const gchar *description);
+
ZakConfiKey *zak_confi_add_key (ZakConfi *confi,
const gchar *parent,
const gchar *key,
noinst_PROGRAMS = test \
test_add_config \
- test_get_configs_list
+ test_get_configs_list \
+ test_set_config
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;
+
+ ZakConfi *confi;
+
+ if (argc < 4)
+ {
+ g_error ("Usage: test_set_config <connection string> <config name> <config description>");
+ return 0;
+ }
+
+ engine = peas_engine_get_default ();
+ peas_engine_add_search_path (engine, "./plugins", NULL);
+
+ confi = zak_confi_new (argv[1]);
+
+ if (confi == NULL
+ || !zak_confi_set_config (confi, argv[2], argv[3]))
+ {
+ g_warning ("Config %s not setted.", argv[1]);
+ }
+
+ return 0;
+}