#include "plgdb.h"
-static void confi_pluggable_iface_init (ConfiPluggableInterface *iface);
+static void confi_pluggable_iface_init (ConfiPluggableInterface *iface);
+
+static GdaDataModel *confi_db_plugin_path_get_data_model (ConfiPluggable *pluggable, const gchar *path);
+static gchar *confi_db_plugin_path_get_value_from_db (ConfiPluggable *pluggable, const gchar *path);
#define CONFI_DB_PLUGIN_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), CONFI_TYPE_DB_PLUGIN, ConfiDBPluginPrivate))
gchar *name;
gchar *description;
gchar *root;
- GHashTable *values;
gchar chrquot;
};
const GValue *value,
GParamSpec *pspec)
{
+ gchar *sql;
+
ConfiDBPlugin *plugin = CONFI_DB_PLUGIN (object);
ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (plugin);
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:
+ priv->root = confi_normalize_root (g_value_get_string (value));
break;
default:
static void
confi_db_plugin_init (ConfiDBPlugin *plugin)
{
+ ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (plugin);
+
+ priv->cnc_string = NULL;
+ priv->gdaex = NULL;
+ priv->name = NULL;
+ priv->description = NULL;
}
static void
guint i;
guint l;
+ gchar *sql;
+ GdaDataModel *dm;
+
strs = g_strsplit (cnc_string, ";", -1);
gstr_cnc_string = g_string_new ("");
g_strfreev (strs);
priv->gdaex = gdaex_new_from_string (priv->cnc_string);
+ priv->chrquot = gdaex_get_chr_quoting (priv->gdaex);
+
+ /* check if config exists */
+ sql = g_strdup_printf ("SELECT id, name"
+ " FROM configs"
+ " WHERE name = '%s'",
+ gdaex_strescape (priv->name, NULL));
+ dm = gdaex_query (priv->gdaex, sql);
+ g_free (sql);
+ if (dm != NULL || gda_data_model_get_n_rows (dm) > 0)
+ {
+ priv->id_config = gdaex_data_model_get_value_integer_at (dm, 0, 0);
+ }
+ if (dm != NULL)
+ {
+ g_object_unref (dm);
+ }
- return (priv->gdaex != NULL ? TRUE : FALSE);
+ return (priv->gdaex != NULL && priv->name != NULL ? TRUE : FALSE);
+}
+
+static GdaDataModel
+*confi_db_plugin_path_get_data_model (ConfiPluggable *pluggable, const gchar *path)
+{
+ gchar **tokens;
+ gchar *sql;
+ gchar *token;
+ guint i;
+ guint id_parent;
+ GdaDataModel *dm;
+
+ ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ if (path == NULL) return NULL;
+
+ dm = NULL;
+
+ tokens = g_strsplit (path, "/", 0);
+ if (tokens == NULL) return NULL;
+
+ i = 0;
+ id_parent = 0;
+ while (tokens[i] != NULL)
+ {
+ token = g_strstrip (g_strdup (tokens[i]));
+ if (strcmp (token, "") != 0)
+ {
+ sql = g_strdup_printf ("SELECT * "
+ "FROM %cvalues%c "
+ "WHERE id_configs = %d "
+ "AND id_parent = %d "
+ "AND %ckey%c = '%s'",
+ priv->chrquot, priv->chrquot,
+ priv->id_config,
+ id_parent,
+ priv->chrquot, priv->chrquot,
+ gdaex_strescape (token, NULL));
+ dm = gdaex_query (priv->gdaex, sql);
+ g_free (sql);
+ if (dm == NULL || gda_data_model_get_n_rows (dm) != 1)
+ {
+ /* TO DO */
+ g_warning ("Unable to find key «%s».", token);
+ if (dm != NULL)
+ {
+ g_object_unref (dm);
+ dm = NULL;
+ }
+ break;
+ }
+ id_parent = gdaex_data_model_get_field_value_integer_at (dm, 0, "id");
+ }
+
+ i++;
+ }
+
+ return dm;
+}
+
+static gchar
+*confi_db_plugin_path_get_value_from_db (ConfiPluggable *pluggable, const gchar *path)
+{
+ gchar *ret;
+ GdaDataModel *dm;
+
+ ret = NULL;
+
+ dm = confi_db_plugin_path_get_data_model (pluggable, path);
+ if (dm != NULL)
+ {
+ ret = gdaex_data_model_get_field_value_stringify_at (dm, 0, "value");
+ g_object_unref (dm);
+ }
+
+ return ret;
}
static GList
{
GList *lst;
+ GdaDataModel *dmConfigs;
+
gchar *sql;
- gchar *where = "";
+ gchar *where;
+
+ guint row;
+ guint id;
+ guint rows;
ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
{
where = g_strdup_printf (" WHERE name LIKE '%s'", filter);
}
+ else
+ {
+ where = g_strdup ("");
+ }
sql = g_strdup_printf ("SELECT * FROM configs%s", where);
+ g_free (where);
- GdaDataModel *dmConfigs = gdaex_query (priv->gdaex, sql);
+ dmConfigs = gdaex_query (priv->gdaex, sql);
+ g_free (sql);
if (dmConfigs != NULL)
{
- guint row;
- guint id;
- guint rows;
-
rows = gda_data_model_get_n_rows (dmConfigs);
if (rows > 0)
{
return lst;
}
+static gchar
+*confi_db_plugin_path_get_value (ConfiPluggable *pluggable, const gchar *path)
+{
+ gchar *ret;
+ gchar *path_;
+
+ ConfiDBPluginPrivate *priv = CONFI_DB_PLUGIN_GET_PRIVATE (pluggable);
+
+ ret = NULL;
+
+ path_ = confi_path_normalize (pluggable, path);
+ if (path_ == NULL)
+ {
+ return NULL;
+ }
+
+ ret = confi_db_plugin_path_get_value_from_db (pluggable, path_);
+
+ return ret;
+}
+
static void
confi_db_plugin_class_init (ConfiDBPluginClass *klass)
{
{
iface->initialize = confi_db_plugin_initialize;
iface->get_configs_list = confi_db_plugin_get_configs_list;
+ iface->path_get_value = confi_db_plugin_path_get_value;
}
static void
#include <libpeas/peas.h>
#include "libconfi.h"
-#include "confipluggable.h"
ConfiConfi
static ConfiPluggable *confi_get_confi_pluggable_from_cnc_string (const gchar *cnc_string);
-static gchar *path_normalize (Confi *confi, const gchar *path);
-static GdaDataModel *path_get_data_model (Confi *confi, const gchar *path);
-static gchar *path_get_value_from_db (Confi *confi, const gchar *path);
static void get_children (Confi *confi, GNode *parentNode, gint idParent, gchar *path);
static gboolean confi_delete_id_from_db_values (Confi *confi, gint id);
static gboolean confi_remove_path_traverse_func (GNode *node, gpointer data);
gchar chrquot;
- PeasPluginInfo *ppinfo;
ConfiPluggable *pluggable;
};
static void
confi_init (Confi *confi)
{
+ ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
+
+ priv->pluggable = NULL;
}
static ConfiPluggable
}
/**
- * confi_set_root:
+ * confi_normalize_set_root:
* @confi: a #Confi object.
* @root: the root.
*
+ * Returns: a correct value for root property.
*/
-gboolean
-confi_set_root (Confi *confi, const gchar *root)
+gchar
+*confi_normalize_root (const gchar *root)
{
- ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
-
- gchar *root_;
+ GString *root_;
+ gchar *strret;
if (root == NULL)
{
- root_ = g_strdup ("/");
+ root_ = g_string_new ("/");
}
else
{
- root_ = g_strstrip (g_strdup (root));
- if (strcmp (root_, "") == 0)
+ root_ = g_string_new (root);
+ g_strstrip (root_->str);
+ if (g_strcmp0 (root_->str, "") == 0)
{
- root_ = g_strdup ("/");
+ g_string_printf (root_, "/");
}
else
{
- if (root_[0] != '/')
+ if (root_->str[0] != '/')
{
- root_ = g_strconcat ("/", root_, NULL);
+ g_string_prepend (root_, "/");
}
- if (root_[strlen (root_) - 1] != '/')
+ if (root_->str[root_->len - 1] != '/')
{
- root_ = g_strconcat (root_, "/", NULL);
+ g_string_append (root_, "/");
}
}
}
- priv->root = root_;
+ strret = g_strdup (root_->str);
+ g_string_free (root_, TRUE);
- return TRUE;
+ return strret;
}
/**
}
else
{
- dmParent = path_get_data_model (confi, path_normalize (confi, parent_));
+ //dmParent = path_get_data_model (confi, path_normalize (confi, parent_));
if (dmParent == NULL)
{
id_parent = -1;
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
- dm = path_get_data_model (confi, path_normalize (confi, path));
+ //dm = path_get_data_model (confi, path_normalize (confi, path));
if (dm != NULL && gda_data_model_get_n_rows (dm) > 0)
{
*confi_path_get_value (Confi *confi, const gchar *path)
{
gchar *ret;
- gchar *path_;
- gpointer *gp;
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
- ret = NULL;
-
- path_ = path_normalize (confi, path);
- if (path_ == NULL)
+ if (priv->pluggable == NULL)
{
- return NULL;
- }
-
- gp = g_hash_table_lookup (priv->values, (gconstpointer)path_);
-
- if (gp == NULL)
- {
- /* load value from db if path exists */
- ret = path_get_value_from_db (confi, path_);
-
- if (ret != NULL)
- {
- /* and insert it on values */
- g_hash_table_insert (priv->values, (gpointer)path_, (gpointer)ret);
- }
- else
- {
- /* TO DO */
- }
+ g_warning ("Not initialized.");
+ ret = NULL;
}
else
{
- ret = g_strdup ((gchar *)gp);
+ ret = confi_pluggable_path_get_value (priv->pluggable, path);
}
return ret;
gboolean
confi_path_set_value (Confi *confi, const gchar *path, const gchar *value)
{
+ GdaDataModel *dm;
gchar *sql;
gboolean ret;
- GdaDataModel *dm = path_get_data_model (confi, path_normalize (confi, path));
+ //dm = path_get_data_model (confi, path_normalize (confi, path));
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
gboolean
confi_path_move (Confi *confi, const gchar *path, const gchar *parent)
{
+ GdaDataModel *dmPath;
+ GdaDataModel *dmParent;
+
gboolean ret;
gchar *sql;
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
- GdaDataModel *dmPath = path_get_data_model (confi, path_normalize (confi, path));
+ //dmPath = path_get_data_model (confi, path_normalize (confi, path));
if (dmPath == NULL) return FALSE;
- GdaDataModel *dmParent = path_get_data_model (confi, path_normalize (confi, parent));
+ //dmParent = path_get_data_model (confi, path_normalize (confi, parent));
if (dmParent == NULL) return FALSE;
ret = TRUE;
ConfiKey
*confi_path_get_confi_key (Confi *confi, const gchar *path)
{
+ GdaDataModel *dm;
gchar *path_;
ConfiKey *ck;
ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
- path_ = path_normalize (confi, path);
+ //path_ = path_normalize (confi, path);
if (path_ == NULL)
{
return NULL;
}
- GdaDataModel *dm = path_get_data_model (confi, path_);
+ //dm = path_get_data_model (confi, path_);
if (dm == NULL || gda_data_model_get_n_rows (dm) <= 0)
{
if (dm != NULL)
g_free (priv->root);
}
-/* PRIVATE */
-static gchar
-*path_normalize (Confi *confi, const gchar *path)
+/**
+ * confi_path_normalize:
+ * @pluggable: a #ConfiPluggable object.
+ *
+ * Returns: a normalize path (with root).
+ */
+gchar
+*confi_path_normalize (ConfiPluggable *pluggable, const gchar *path)
{
GString *ret;
gchar *strret;
guint lead;
- ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
+ gchar *root;
if (path == NULL)
{
{
g_string_erase (ret, 0, lead++);
}
- g_string_prepend (ret, priv->root);
+
+ g_object_get (pluggable, "root", &root, NULL);
+ g_string_prepend (ret, root);
strret = g_strdup (ret->str);
g_string_free (ret, TRUE);
return strret;
}
-static GdaDataModel
-*path_get_data_model (Confi *confi, const gchar *path)
-{
- gchar **tokens;
- gchar *sql;
- gchar *token;
- guint i;
- guint id_parent;
- GdaDataModel *dm = NULL;
-
- ConfiPrivate *priv = CONFI_GET_PRIVATE (confi);
-
- if (path == NULL) return NULL;
-
- tokens = g_strsplit (path, "/", 0);
- if (tokens == NULL) return NULL;
-
- i = 0;
- id_parent = 0;
- while (tokens[i] != NULL)
- {
- token = g_strstrip (g_strdup (tokens[i]));
- if (strcmp (token, "") != 0)
- {
- sql = g_strdup_printf ("SELECT * "
- "FROM %cvalues%c "
- "WHERE id_configs = %d "
- "AND id_parent = %d "
- "AND %ckey%c = '%s'",
- priv->chrquot, priv->chrquot,
- priv->id_config,
- id_parent,
- priv->chrquot, priv->chrquot,
- gdaex_strescape (token, NULL));
- dm = gdaex_query (priv->gdaex, sql);
- g_free (sql);
- if (dm == NULL || gda_data_model_get_n_rows (dm) != 1)
- {
- /* TO DO */
- g_warning ("Unable to find key «%s».", token);
- if (dm != NULL)
- {
- g_object_unref (dm);
- dm = NULL;
- }
- break;
- }
- id_parent = gdaex_data_model_get_field_value_integer_at (dm, 0, "id");
- }
-
- i++;
- }
-
- return dm;
-}
-
-static gchar
-*path_get_value_from_db (Confi *confi, const gchar *path)
-{
- gchar *ret;
- GdaDataModel *dm;
-
- ret = NULL;
-
- dm = path_get_data_model (confi, path);
- if (dm != NULL)
- {
- ret = gdaex_data_model_get_field_value_stringify_at (dm, 0, "value");
- g_object_unref (dm);
- }
-
- return ret;
-}
-
+/* PRIVATE */
static void
get_children (Confi *confi, GNode *parentNode, gint idParent, gchar *path)
{
break;
case PROP_ROOT:
- confi_set_root (confi, g_value_get_string (value));
+ priv->root = confi_normalize_root (g_value_get_string (value));
break;
default: