]> saetta.ns0.it Git - zakaudit/libzakaudit/commitdiff
Changed value_string_unquote to string_unquote.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 24 Jun 2010 08:30:35 +0000 (10:30 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 24 Jun 2010 08:30:35 +0000 (10:30 +0200)
Bugfixes on get_*_from_name.

src/audit.c

index ff7bd530bf2a6a616677c3c1a4a9eb909d8269c9..01c002ccc3e6d4b6bc32b16a02dc0e27e20c4d96 100644 (file)
@@ -73,7 +73,7 @@ static gboolean insert_value (Audit *audit,
                               Table *table,
                               gchar *field_name,
                               gchar *value);
-static gchar *value_string_unquote (const gchar *value);
+static gchar *string_unquote (const gchar *value);
 static void parse_cond (GdaSqlExpr *cond, gchar **str);
 
 static void audit_set_property (GObject *object,
@@ -304,9 +304,13 @@ static Field
 {
        GList *c = g_list_first (table->fields);
 
+       gchar *real_field;
+
+       real_field = string_unquote (field);
+
        while (c != NULL)
                {
-                       if (g_strcmp0 (((Field *)c->data)->name, field) == 0)
+                       if (g_strcmp0 (((Field *)c->data)->name, real_field) == 0)
                                {
                                        return (Field *)c->data;
                                }
@@ -324,9 +328,13 @@ static Table
 {
        GList *t = g_list_first (datasource->tables);
 
+       gchar *real_table;
+
+       real_table = string_unquote (table);
+
        while (t != NULL)
                {
-                       if (g_strcmp0 (((Table *)t->data)->name, table) == 0)
+                       if (g_strcmp0 (((Table *)t->data)->name, real_table) == 0)
                                {
                                        return (Table *)t->data;
                                }
@@ -345,9 +353,13 @@ static Datasource
 
        GList *f = g_list_first (priv->datasources);
 
+       gchar *real_datasource;
+
+       real_datasource = string_unquote (datasource);
+
        while (f != NULL)
                {
-                       if (g_strcmp0 (((Datasource *)f->data)->name, datasource) == 0)
+                       if (g_strcmp0 (((Datasource *)f->data)->name, real_datasource) == 0)
                                {
                                        return (Datasource *)f->data;
                                }
@@ -394,7 +406,7 @@ insert_value (Audit *audit,
                                               " (id, id_actions, id_fields, value)"
                                               " VALUES (%d, %d, %d, '%s')",
                                               id_new, id_actions, field->id,
-                                              gdaex_strescape ((const gchar *)value_string_unquote (value), NULL));
+                                              gdaex_strescape ((const gchar *)string_unquote (value), NULL));
                        gdaex_execute (priv->gdaex, sql);
                }
 
@@ -429,19 +441,25 @@ parse_cond (GdaSqlExpr *cond, gchar **str)
 }
 
 static gchar
-*value_string_unquote (const gchar *value)
+*string_unquote (const gchar *str)
 {
        gchar *ret;
        guint l;
 
-       ret = g_strdup (value);
+       g_return_val_if_fail (str != NULL, NULL);
+
+       ret = g_strdup (str);
        l = strlen (ret);
 
        if (l > 0)
                {
-                       if (ret[0] == '\'' && ret[l - 1] == '\'')
+                       if (ret[0] == '"' || ret[0] == '\'')
+                               {
+                                       ret = g_strdup (ret + 1);
+                               }
+                       if (ret[strlen (ret) - 1] == '"' || ret[strlen (ret) - 1] == '\'')
                                {
-                                       ret = g_strndup (ret + 1, l - 2);
+                                       ret = g_strndup (ret, strlen (ret) - 1);
                                }
                }