/*
* audit.c
*
- * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2011 Andrea Zagli <azagli@libero.it>
*
* This file is part of libzak_audit.
*
gchar *sql;
gint rows, row;
- Field *cam;
+ Field *field;
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
/* check if table exists */
- dm_table = gdaex_query (datasource->gdaex,
- g_strdup_printf ("SELECT * FROM %s", table->name));
+ sql = g_strdup_printf ("SELECT * FROM %s", table->name);
+ dm_table = gdaex_query (datasource->gdaex, sql);
+ g_free (sql);
if (dm_table == NULL)
{
g_warning ("The table «%s» doesn't exist on db.", table->name);
" WHERE status <> 'D' AND id_tables = %d",
table->id);
dm = gdaex_query (priv->gdaex, sql);
-
+ g_free (sql);
if (dm == NULL)
{
- g_warning ("For table \"%s\" fields have not been configured.",
+ g_warning ("For table «%s» fields have not been configured.",
table->name);
return FALSE;
}
rows = gda_data_model_get_n_rows (dm);
if (rows == 0)
{
- g_warning ("For table \"%s\" fields have not been configured.",
+ g_warning ("For table «%s» fields have not been configured.",
table->name);
+ g_object_unref (dm);
return FALSE;
}
for (row = 0; row < rows; row++)
{
- cam = (Field *)g_malloc (sizeof (Field));
+ field = g_new0 (Field, 1);
- cam->id = gdaex_data_model_get_field_value_integer_at (dm, row, "id");
- cam->name = gdaex_data_model_get_field_value_stringify_at (dm, row, "name");
- cam->is_key = gdaex_data_model_get_field_value_boolean_at (dm, row, "is_key");
+ field->id = gdaex_data_model_get_field_value_integer_at (dm, row, "id");
+ field->name = gdaex_data_model_get_field_value_stringify_at (dm, row, "name");
+ field->is_key = gdaex_data_model_get_field_value_boolean_at (dm, row, "is_key");
- if (gda_data_model_get_column_index (dm_table, cam->name) < 0)
+ if (gda_data_model_get_column_index (dm_table, field->name) < 0)
{
g_warning ("The field «%s» doesn't exists on table «%s».",
- cam->name, table->name);
+ field->name, table->name);
+ g_object_unref (dm);
return FALSE;
}
- table->fields = g_list_append (table->fields, (gpointer)cam);
+ table->fields = g_list_append (table->fields, (gpointer)field);
table->fields_sql = g_strconcat (table->fields_sql == NULL ? "" :
g_strconcat (table->fields_sql, ", ", NULL),
- cam->name, NULL);
- if (cam->is_key)
+ field->name, NULL);
+ if (field->is_key)
{
- table->keys = g_list_append (table->fields, (gpointer)cam);
+ table->keys = g_list_append (table->fields, (gpointer)field);
table->keys_sql = g_strconcat (table->keys_sql == NULL ? "" :
- g_strconcat (table->keys_sql, ", ", NULL),
- cam->name, NULL);
+ g_strconcat (table->keys_sql, ", ", NULL),
+ field->name, NULL);
}
}
+ g_object_unref (dm_table);
+ g_object_unref (dm);
+
if (table->keys == NULL)
{
g_warning ("No key's fields defined for table «%s».",
" WHERE status <> 'D' AND id_datasources = %d",
datasource->id);
dm = gdaex_query (priv->gdaex, sql);
-
+ g_free (sql);
if (dm == NULL)
{
- g_warning ("For datasource \"%d\" tables have not been configured.",
+ g_warning ("For datasource «%d» tables have not been configured.",
datasource->id);
return FALSE;
}
rows = gda_data_model_get_n_rows (dm);
- if (rows == 0)
+ if (rows < 1)
{
- g_warning ("For datasource \"%d\" tables have not been configured.",
+ g_warning ("For datasource «%d» tables have not been configured.",
datasource->id);
+ g_object_unref (dm);
return FALSE;
}
for (row = 0; row < rows; row++)
{
- tab = (Table *)g_malloc (sizeof (Table));
+ tab = g_new0 (Table, 1);
tab->id = gdaex_data_model_get_field_value_integer_at (dm, row, "id");
tab->name = gdaex_data_model_get_field_value_stringify_at (dm, row, "name");
tab->keys_sql = NULL;
if (!load_fields (zak_audit, datasource, tab))
{
+ g_object_unref (dm);
return FALSE;
}
datasource->tables = g_list_append (datasource->tables, (gpointer)tab);
}
+ g_object_unref (dm);
return TRUE;
}
}
rows = gda_data_model_get_n_rows (dm);
- if (rows == 0)
+ if (rows < 1)
{
g_warning ("There are no datasources configured.");
+ g_object_unref (dm);
return FALSE;
}
for (row = 0; row < rows; row++)
{
- datas = (Datasource *)g_malloc (sizeof (Datasource));
+ datas = g_new0 (Datasource, 1);
datas->id = gdaex_data_model_get_field_value_integer_at (dm, row, "id");
datas->name = gdaex_data_model_get_field_value_stringify_at (dm, row, "name");
datas->tables = NULL;
if (!load_tables (zak_audit, datas))
{
+ g_object_unref (dm);
return FALSE;
}
}
+ g_object_unref (dm);
return TRUE;
}
Table *table,
const char *field)
{
+ Field *ret_field;
GList *c = g_list_first (table->fields);
gchar *real_field;
real_field = string_unquote (field);
+ ret_field = NULL;
while (c != NULL)
{
if (g_strcmp0 (((Field *)c->data)->name, real_field) == 0)
{
- return (Field *)c->data;
+ ret_field = (Field *)c->data;
+ break;
}
c = g_list_next (c);
}
+ g_free (real_field);
- return NULL;
+ return ret_field;
}
static Table
Datasource *datasource,
const char *table)
{
+ Table *ret_table;
GList *t = g_list_first (datasource->tables);
gchar *real_table;
real_table = string_unquote (table);
+ ret_table = NULL;
while (t != NULL)
{
if (g_strcmp0 (((Table *)t->data)->name, real_table) == 0)
{
- return (Table *)t->data;
+ ret_table = (Table *)t->data;
+ break;
}
t = g_list_next (t);
}
+ g_free (real_table);
- return NULL;
+ return ret_table;
}
static Datasource
*get_datasource_from_name (ZakAudit *zak_audit,
const char *datasource)
{
+ Datasource *ret_datasource;
+
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
GList *f = g_list_first (priv->datasources);
real_datasource = string_unquote (datasource);
+ ret_datasource = NULL;
while (f != NULL)
{
if (g_strcmp0 (((Datasource *)f->data)->name, real_datasource) == 0)
{
- return (Datasource *)f->data;
+ ret_datasource = (Datasource *)f->data;
}
f = g_list_next (f);
}
+ g_free (real_datasource);
- return NULL;
+ return ret_datasource;
}
static gboolean
Field *field = get_field_from_name (zak_audit, table, field_name);
if (field == NULL)
{
- g_warning ("Unable to find the field \"%s\" on loaded fields.",
+ g_warning ("Unable to find the field «%s» on loaded fields.",
field_name);
}
else
id_actions, field->id,
real_value);
gdaex_execute (priv->gdaex, sql);
+
+ g_free (sql);
+ g_free (real_value);
}
return TRUE;
GdaSqlExpr *op2 = (GdaSqlExpr *)cond->cond->operands->next->data;
*str = g_strconcat (*str, (g_strcmp0 (*str, "") != 0 ? "|" : ""),
- gda_value_stringify (op1->value),
- "|",
- gda_value_stringify (op2->value),
- NULL);
+ gda_value_stringify (op1->value),
+ "|",
+ gda_value_stringify (op2->value),
+ NULL);
}
else
{
zak_audit_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
ZakAudit *zak_audit = ZAK_AUDIT (object);
-
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
switch (property_id)
zak_audit_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
{
ZakAudit *zak_audit = ZAK_AUDIT (object);
-
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
switch (property_id)
if (priv->gdaex == NULL)
{
/* TODO */
- g_message ("Error creating GdaEx object.");
+ g_warning ("Error creating GdaEx object.");
return NULL;
}
if (!load_datasources (zak_audit))
{
/* TODO */
- g_message ("Error loading datasources.");
+ g_warning ("Error loading datasources.");
return NULL;
}
if (priv->gdaex == NULL)
{
/* TODO */
- g_message ("Error creating GdaEx object.");
+ g_warning ("Error creating GdaEx object.");
return NULL;
}
if (!load_datasources (zak_audit))
{
/* TODO */
- g_message ("Error loading datasources.");
+ g_warning ("Error loading datasources.");
return NULL;
}
{
ret = zak_audit_action_v (zak_audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
}
+ g_free (str);
return ret;
}
datasource = get_datasource_from_name (zak_audit, datasource_name);
if (datasource == NULL)
{
- g_warning ("Unable to find the datasource \"%s\" on loaded datasources.",
+ g_warning ("Unable to find the datasource «%s» on loaded datasources.",
datasource_name);
return FALSE;
}
table = get_table_from_name (zak_audit, datasource, table_name);
if (table == NULL)
{
- g_warning ("Unable to find the table \"%s\" on loaded tables.",
+ g_warning ("Unable to find the table «%s» on loaded tables.",
table_name);
return FALSE;
}
tm_ora->tm_hour, tm_ora->tm_min, tm_ora->tm_sec,
table->id);
gdaex_execute (priv->gdaex, sql);
+ g_free (sql);
}
l = g_strv_length ((gchar **)fields_values);
sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
+ g_free (sql);
+ g_free (sql_where);
if (dm == NULL) return FALSE;
if (gda_data_model_get_n_rows (dm) == 0 ||
- gda_data_model_get_n_rows (dm) > 1) return FALSE;
+ gda_data_model_get_n_rows (dm) > 1)
+ {
+ return FALSE;
+ }
cols = gda_data_model_get_n_columns (dm);
for (col = 0; col < cols; col++)
}
sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
+ g_free (sql);
+ g_free (sql_where);
if (dm == NULL) return FALSE;
if (gda_data_model_get_n_rows (dm) == 0 ||
- gda_data_model_get_n_rows (dm) > 1) return FALSE;
+ gda_data_model_get_n_rows (dm) > 1)
+ {
+ return FALSE;
+ }
priv->fields_updated = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
cols = gda_data_model_get_n_columns (dm);
}
sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
+ g_free (sql);
+ g_free (sql_where);
if (dm == NULL) return FALSE;
if (gda_data_model_get_n_rows (dm) == 0 ||
- gda_data_model_get_n_rows (dm) > 1) return FALSE;
+ gda_data_model_get_n_rows (dm) > 1)
+ {
+ return FALSE;
+ }
cols = gda_data_model_get_n_columns (dm);
for (col = 0; col < cols; col++)
}
sql = g_strconcat (sql, sql_where, NULL);
dm = gdaex_query (datasource->gdaex, sql);
+ g_free (sql);
+ g_free (sql_where);
if (dm == NULL) return FALSE;
if (gda_data_model_get_n_rows (dm) == 0 ||
- gda_data_model_get_n_rows (dm) > 1) return FALSE;
+ gda_data_model_get_n_rows (dm) > 1)
+ {
+ return FALSE;
+ }
cols = gda_data_model_get_n_columns (dm);
for (col = 0; col < cols; col++)
datasource = get_datasource_from_name (zak_audit, datasource_name);
if (datasource == NULL)
{
- g_warning ("Unable to find the datasource \"%s\" on loaded datasources.",
+ g_warning ("Unable to find the datasource «%s» on loaded datasources.",
datasource_name);
return FALSE;
}