]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Added function ZakConfi::set_config.
authorAndrea Zagli <azagli@libero.it>
Wed, 28 Sep 2016 16:20:23 +0000 (18:20 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 28 Sep 2016 16:20:23 +0000 (18:20 +0200)
.gitignore
plugins/db/plgdb.c
plugins/file/plgfile.c
src/confi.c
src/confipluggable.c
src/confipluggable.h
src/libzakconfi.h
tests/Makefile.am
tests/test_set_config.c [new file with mode: 0644]

index 81eacfaad5df1f87b80710241814b1e595656d02..99325c2089f8e9f55c596068f7ce186c4d4eefb3 100644 (file)
@@ -42,7 +42,6 @@ docs/reference/html/
 docs/reference/xml/
 libtool
 stamp-h1
-tests/test
 POTFILES
 mkinstalldirs
 stamp-it
@@ -52,6 +51,7 @@ Rules-quot
 tests/test
 tests/test_get_configs_list
 tests/test_add_config
+tests/test_set_config
 *.csv
 gtk-doc.m4
 *.gir
index a7d72a6fd010d5d27e80f7759e9016ec4f950982..706c239a1841acbaa10e3f46f5d51f7b6b43580e 100644 (file)
@@ -96,25 +96,9 @@ zak_confi_db_plugin_set_property (GObject      *object,
                                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:
@@ -550,6 +534,50 @@ static ZakConfiConfi
        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)
 {
@@ -931,6 +959,7 @@ zak_confi_pluggable_iface_init (ZakConfiPluggableInterface *iface)
        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;
index 79c85107271d12aafd19854f9d6242ce74cedd4b..4634fb9e87e32d7d7fbb0f6b74dbcfa5d0633554 100644 (file)
@@ -91,13 +91,9 @@ zak_confi_file_plugin_set_property (GObject      *object,
                                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:
@@ -425,6 +421,21 @@ static ZakConfiConfi
        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)
 {
@@ -595,6 +606,7 @@ zak_confi_pluggable_iface_init (ZakConfiPluggableInterface *iface)
        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;
index 79072535e7e69919b39607cd7b74ce380bceeff8..07213c079851970961daff242f77bf0b5fc94828 100644 (file)
@@ -397,6 +397,34 @@ zak_confi_set_root (ZakConfi *confi, const gchar *root)
        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.
index bb6b64468b22be2ff2ecb0e9e2cfc3c58f92da6a..d9792583ac0b80aa75d6377938f6b5187a1d6aa8 100644 (file)
@@ -61,7 +61,7 @@ zak_confi_pluggable_default_init (ZakConfiPluggableInterface *iface)
                                                                                  "Configuraton Name",
                                                                                  "The configuration name",
                                                                                  "",
-                                                                                 G_PARAM_READWRITE));
+                                                                                 G_PARAM_READABLE));
 
                        /**
                        * ZakConfiPluggable:description:
@@ -72,7 +72,7 @@ zak_confi_pluggable_default_init (ZakConfiPluggableInterface *iface)
                                                                                  "Configuraton Description",
                                                                                  "The configuration description",
                                                                                  "",
-                                                                                 G_PARAM_READWRITE));
+                                                                                 G_PARAM_READABLE));
 
                        /**
                        * ZakConfiPluggable:root:
@@ -192,7 +192,7 @@ GNode
 }
 
 /**
- * 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.
@@ -212,6 +212,27 @@ ZakConfiConfi
        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.
index 5b133415daceeeafa8a2982fc299f2e37bcfb716..2ccfa4f4d36f71a9a507773cf782461e16616aa6 100644 (file)
@@ -67,6 +67,9 @@ struct _ZakConfiPluggableInterface {
        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,
@@ -98,6 +101,9 @@ GNode *zak_confi_pluggable_get_tree (ZakConfiPluggable *pluggable);
 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,
index 0e7e97c82e0c956fef259793860bebe5a18d0cf8..96ec605d10b828ed983fab17551ddbbb83099cd7 100644 (file)
@@ -69,6 +69,10 @@ GNode *zak_confi_get_tree (ZakConfi *confi);
 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,
index 69ca77d7c34bdd65147f17eefb3d038d22eda3d7..d07a5016bff872027dc0320e27809fb1a42909e1 100644 (file)
@@ -11,6 +11,7 @@ LDADD = $(top_builddir)/src/libzakconfi.la
 
 noinst_PROGRAMS = test \
                   test_add_config \
-                  test_get_configs_list
+                  test_get_configs_list \
+                  test_set_config
 
 EXTRA_DIST = gir.py
diff --git a/tests/test_set_config.c b/tests/test_set_config.c
new file mode 100644 (file)
index 0000000..95b81ff
--- /dev/null
@@ -0,0 +1,50 @@
+/*
+ * 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;
+}