*
* Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
*
- * This file is part of libaudit.
+ * This file is part of libzak_audit.
*
* 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
#include <string.h>
-#include "libaudit.h"
+#include "libzakaudit.h"
typedef struct
{
GList *tables;
} Datasource;
-static void audit_class_init (AuditClass *klass);
-static void audit_init (Audit *audit);
+static void zak_audit_class_init (ZakAuditClass *klass);
+static void zak_audit_init (ZakAudit *zak_audit);
-static Audit *audit_new_ (void);
-static gboolean load_fields (Audit *audit,
+static ZakAudit *zak_audit_new_ (void);
+static gboolean load_fields (ZakAudit *zak_audit,
Datasource *datasource,
Table *table);
-static gboolean load_tables (Audit *audit,
+static gboolean load_tables (ZakAudit *zak_audit,
Datasource *datasource);
-static gboolean load_datasources (Audit *audit);
-static Field *get_field_from_name (Audit *audit,
+static gboolean load_datasources (ZakAudit *zak_audit);
+static Field *get_field_from_name (ZakAudit *zak_audit,
Table *table,
const char *field);
-static Table *get_table_from_name (Audit *audit,
+static Table *get_table_from_name (ZakAudit *zak_audit,
Datasource *datasource,
const char *table);
-static Datasource *get_datasource_from_name (Audit *audit,
+static Datasource *get_datasource_from_name (ZakAudit *zak_audit,
const char *datasource);
-static gboolean insert_value (Audit *audit,
+static gboolean insert_value (ZakAudit *zak_audit,
gint id_actions,
Table *table,
gchar *field_name,
static gchar *string_unquote (const gchar *value);
static void parse_cond (GdaSqlExpr *cond, gchar **str);
-static void audit_set_property (GObject *object,
+static void zak_audit_set_property (GObject *object,
guint property_id,
const GValue *value,
GParamSpec *pspec);
-static void audit_get_property (GObject *object,
+static void zak_audit_get_property (GObject *object,
guint property_id,
GValue *value,
GParamSpec *pspec);
-#define AUDIT_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_AUDIT, AuditPrivate))
+#define ZAK_AUDIT_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_ZAK_AUDIT, ZakAuditPrivate))
-typedef struct _AuditPrivate AuditPrivate;
-struct _AuditPrivate
+typedef struct _ZakAuditPrivate ZakAuditPrivate;
+struct _ZakAuditPrivate
{
GdaEx *gdaex;
GList *datasources;
};
/* PRIVATE */
-G_DEFINE_TYPE (Audit, audit, G_TYPE_OBJECT)
+G_DEFINE_TYPE (ZakAudit, zak_audit, G_TYPE_OBJECT)
static void
-audit_class_init (AuditClass *klass)
+zak_audit_class_init (ZakAuditClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
- g_type_class_add_private (object_class, sizeof (AuditPrivate));
+ g_type_class_add_private (object_class, sizeof (ZakAuditPrivate));
- object_class->set_property = audit_set_property;
- object_class->get_property = audit_get_property;
+ object_class->set_property = zak_audit_set_property;
+ object_class->get_property = zak_audit_get_property;
}
static void
-audit_init (Audit *audit)
+zak_audit_init (ZakAudit *zak_audit)
{
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
priv->datasources = NULL;
priv->fields_updated = NULL;
}
-static Audit
-*audit_new_ ()
+static ZakAudit
+*zak_audit_new_ ()
{
- Audit *audit;
+ ZakAudit *zak_audit;
- audit = AUDIT (g_object_new (audit_get_type (), NULL));
+ zak_audit = ZAK_AUDIT (g_object_new (zak_audit_get_type (), NULL));
- return audit;
+ return zak_audit;
}
static gboolean
-load_fields (Audit *audit,
+load_fields (ZakAudit *zak_audit,
Datasource *datasource,
Table *table)
{
Field *cam;
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
/* check if table exists */
dm_table = gdaex_query (datasource->gdaex,
}
static gboolean
-load_tables (Audit *audit,
+load_tables (ZakAudit *zak_audit,
Datasource *datasource)
{
GdaDataModel *dm;
gint rows, row;
Table *tab;
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
sql = g_strdup_printf ("SELECT id, name FROM tables"
" WHERE status <> 'D' AND id_datasources = %d",
tab->fields_sql = NULL;
tab->keys = NULL;
tab->keys_sql = NULL;
- if (!load_fields (audit, datasource, tab))
+ if (!load_fields (zak_audit, datasource, tab))
{
return FALSE;
}
}
static gboolean
-load_datasources (Audit *audit)
+load_datasources (ZakAudit *zak_audit)
{
GdaDataModel *dm;
gchar *sql;
gint rows, row;
Datasource *datas;
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
/* for each datasource on datasources table must be opened a connection */
dm = gdaex_query (priv->gdaex, "SELECT id, name, cnc_string"
/* for each datasource must be loaded tables and fields */
datas->tables = NULL;
- if (!load_tables (audit, datas))
+ if (!load_tables (zak_audit, datas))
{
return FALSE;
}
}
static Field
-*get_field_from_name (Audit *audit,
+*get_field_from_name (ZakAudit *zak_audit,
Table *table,
const char *field)
{
}
static Table
-*get_table_from_name (Audit *audit,
+*get_table_from_name (ZakAudit *zak_audit,
Datasource *datasource,
const char *table)
{
}
static Datasource
-*get_datasource_from_name (Audit *audit,
+*get_datasource_from_name (ZakAudit *zak_audit,
const char *datasource)
{
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
GList *f = g_list_first (priv->datasources);
}
static gboolean
-insert_value (Audit *audit,
+insert_value (ZakAudit *zak_audit,
gint id_actions,
Table *table,
gchar *field_name,
gchar *sql;
gchar *real_value;
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
- Field *field = get_field_from_name (audit, table, field_name);
+ 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.",
}
static void
-audit_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+zak_audit_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
{
- Audit *audit = AUDIT (object);
+ ZakAudit *zak_audit = ZAK_AUDIT (object);
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
switch (property_id)
{
}
static void
-audit_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+zak_audit_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
{
- Audit *audit = AUDIT (object);
+ ZakAudit *zak_audit = ZAK_AUDIT (object);
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
switch (property_id)
{
/* PUBLIC */
/**
- * audit_new:
+ * zak_audit_new:
* @gda_connection: a #GdaConnection object.
*
- * Returns: the newly #Audit object.
+ * Returns: the newly #ZakAudit object.
*/
-Audit
-*audit_new (GdaConnection *gda_connection)
+ZakAudit
+*zak_audit_new (GdaConnection *gda_connection)
{
- Audit *audit = audit_new_ ();
+ ZakAudit *zak_audit = zak_audit_new_ ();
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
priv->gdaex = gdaex_new_from_connection (gda_connection);
}
/* carico i datasource */
- if (!load_datasources (audit))
+ if (!load_datasources (zak_audit))
{
/* TODO */
g_message ("Error loading datasources.");
return NULL;
}
- return audit;
+ return zak_audit;
}
/**
- * audit_new_from_string:
+ * zak_audit_new_from_string:
* @cnc_string: the connection string to the datasource that contains library's tables.
*
- * Returns: the newly #Audit object.
+ * Returns: the newly #ZakAudit object.
*/
-Audit
-*audit_new_from_string (const gchar *cnc_string)
+ZakAudit
+*zak_audit_new_from_string (const gchar *cnc_string)
{
- Audit *audit = audit_new_ ();
+ ZakAudit *zak_audit = zak_audit_new_ ();
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
priv->gdaex = gdaex_new_from_string (cnc_string);
}
/* carico i datasource */
- if (!load_datasources (audit))
+ if (!load_datasources (zak_audit))
{
/* TODO */
g_message ("Error loading datasources.");
return NULL;
}
- return audit;
+ return zak_audit;
}
/**
- * audit_action:
- * @audit: an #Audit object.
+ * zak_audit_action:
+ * @zak_audit: an #ZakAudit object.
* @action: the action's type.
* @username: the username that make the action.
* @datasource_name: the datasource's name.
* Returns: #TRUE on success.
*/
gboolean
-audit_action (Audit *audit,
- enum AuditActions action,
+zak_audit_action (ZakAudit *zak_audit,
+ enum ZakAuditActions action,
const gchar *username,
const gchar *datasource_name,
const gchar *table_name,
if (g_strcmp0 (str, "") != 0)
{
- ret = audit_action_v (audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
+ ret = zak_audit_action_v (zak_audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
}
return ret;
}
/**
- * audit_action_v:
- * @audit: an #Audit object.
+ * zak_audit_action_v:
+ * @zak_audit: an #ZakAudit object.
* @action: the action's type.
* @username: the username that make the action.
* @datasource_name: the datasource's name.
* Returns: #TRUE on success.
*/
gboolean
-audit_action_v (Audit *audit,
- enum AuditActions action,
+zak_audit_action_v (ZakAudit *zak_audit,
+ enum ZakAuditActions action,
const gchar *username,
const gchar *datasource_name,
const gchar *table_name,
Datasource *datasource;
Table *table;
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
if (action < 1)
{
tm_ora = localtime (&t);
/* trovo il datasource */
- datasource = get_datasource_from_name (audit, datasource_name);
+ datasource = get_datasource_from_name (zak_audit, datasource_name);
if (datasource == NULL)
{
g_warning ("Unable to find the datasource \"%s\" on loaded datasources.",
}
/* find the table */
- table = get_table_from_name (audit, datasource, table_name);
+ table = get_table_from_name (zak_audit, datasource, table_name);
if (table == NULL)
{
g_warning ("Unable to find the table \"%s\" on loaded tables.",
}
/* saving the action */
- if (action != AUDIT_ACTION_BEFORE_UPDATE)
+ if (action != ZAK_AUDIT_ACTION_BEFORE_UPDATE)
{
/* TODO find the way to save more than 2 digits for the seconds */
sql = g_strdup_printf ("INSERT INTO actions"
/* fields */
switch (action)
{
- case AUDIT_ACTION_INSERT:
+ case ZAK_AUDIT_ACTION_INSERT:
sql = g_strdup_printf ("SELECT %s FROM %s",
table->keys_sql,
table->name);
{
/* find the field */
field_name = (gchar *)gda_data_model_get_column_title (dm, col);
- insert_value (audit, id, table, field_name,
+ insert_value (zak_audit, id, table, field_name,
gdaex_data_model_get_value_stringify_at (dm, 0, col));
}
break;
- case AUDIT_ACTION_BEFORE_UPDATE:
+ case ZAK_AUDIT_ACTION_BEFORE_UPDATE:
if (priv->fields_updated != NULL)
{
g_hash_table_destroy (priv->fields_updated);
}
break;
- case AUDIT_ACTION_AFTER_UPDATE:
+ case ZAK_AUDIT_ACTION_AFTER_UPDATE:
if (priv->fields_updated == NULL)
{
- g_warning ("You must call before an action of type AUDIT_ACTION_AFTER_UPDATE.");
+ g_warning ("You must call before an action of type ZAK_AUDIT_ACTION_AFTER_UPDATE.");
return FALSE;
}
value = (gchar *)g_hash_table_lookup (priv->fields_updated, (gconstpointer)field_name);
value_new = gdaex_data_model_get_value_stringify_at (dm, 0, col);
- if ((get_field_from_name (audit, table, (const gchar *)field_name))->is_key)
+ if ((get_field_from_name (zak_audit, table, (const gchar *)field_name))->is_key)
{
/* the key is always saved with old and new values */
- insert_value (audit, id, table, field_name, g_strconcat (value, "|", value_new, NULL));
+ insert_value (zak_audit, id, table, field_name, g_strconcat (value, "|", value_new, NULL));
}
else if (g_strcmp0 (value, value_new) != 0)
{
/* field changed: must be saved the old value */
- insert_value (audit, id, table, field_name, value);
+ insert_value (zak_audit, id, table, field_name, value);
}
}
priv->fields_updated = NULL;
break;
- case AUDIT_ACTION_DELETE:
+ case ZAK_AUDIT_ACTION_DELETE:
/* saving all fields */
sql = g_strdup_printf ("SELECT %s FROM %s",
table->fields_sql,
{
/* find the field */
field_name = (gchar *)gda_data_model_get_column_title (dm, col);
- insert_value (audit, id, table, field_name,
+ insert_value (zak_audit, id, table, field_name,
gdaex_data_model_get_value_stringify_at (dm, 0, col));
}
break;
}
/**
- * audit_action_from_gdastatement:
- * @audit: an #Audit object.
+ * zak_audit_action_from_gdastatement:
+ * @zak_audit: an #ZakAudit object.
* @action: the action's type.
* @username: the username that make the action.
* @datasource_name: the datasource's name.
* Returns: #TRUE on success.
*/
gboolean
-audit_action_from_gdastatement (Audit *audit,
- enum AuditActions action,
+zak_audit_action_from_gdastatement (ZakAudit *zak_audit,
+ enum ZakAuditActions action,
const gchar *username,
const gchar *datasource_name,
GdaStatement *gda_statement)
if (g_strcmp0 (str, "") != 0)
{
- ret = audit_action_v (audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
+ ret = zak_audit_action_v (zak_audit, action, username, datasource_name, table_name, (const gchar **)g_strsplit (str, "|", -1));
}
return ret;
}
/**
- * audit_destroy:
+ * zak_audit_destroy:
*
*/
void
-audit_destroy (Audit *audit)
+zak_audit_destroy (ZakAudit *zak_audit)
{
- AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
gdaex_free (priv->gdaex);
- g_free (audit);
+ g_free (zak_audit);
}
/**
- * audit_get_record_at:
- * @audit: an #Audit object.
+ * zak_audit_get_record_at:
+ * @zak_audit: an #ZakAudit object.
* @datasource:
* @table:
* @tm_time:
* Returns: the record with the specified key at the specified timestamp.
*/
gboolean
-audit_get_record_at (Audit *audit,
+zak_audit_get_record_at (ZakAudit *zak_audit,
const gchar *datasource_name,
const gchar *table_name,
struct tm *tm_time,
Datasource *datasource;
/* find the datasource */
- datasource = get_datasource_from_name (audit, datasource_name);
+ datasource = get_datasource_from_name (zak_audit, datasource_name);
if (datasource == NULL)
{
g_warning ("Unable to find the datasource \"%s\" on loaded datasources.",
#include <libgda/sql-parser/gda-sql-parser.h>
-#include <libaudit.h>
+#include <libzakaudit.h>
int
main (int argc, char *argv[])
{
GdaEx *gdaex;
- Audit *audit;
+ ZakAudit *audit;
GdaConnection *conn;
GdaSqlParser *parser;
g_type_init ();
- audit = audit_new_from_string ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=audit");
+ audit = zak_audit_new_from_string ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=audit");
if (audit == NULL)
{
gdaex_execute (gdaex, "DELETE FROM test1");
gdaex_execute (gdaex, "INSERT INTO test1 VALUES (1, 'Mary Red', 25, 1500.45)");
- audit_action (audit, AUDIT_ACTION_INSERT, "I", "audit_test1", "test1", "id", "1", NULL);
+ zak_audit_action (audit, ZAK_AUDIT_ACTION_INSERT, "I", "audit_test1", "test1", "id", "1", NULL);
- audit_action (audit, AUDIT_ACTION_BEFORE_UPDATE, "I", "audit_test1", "test1", "id", "1", NULL);
+ zak_audit_action (audit, ZAK_AUDIT_ACTION_BEFORE_UPDATE, "I", "audit_test1", "test1", "id", "1", NULL);
gdaex_execute (gdaex, "UPDATE test1 SET age=30 WHERE id = 1");
- audit_action (audit, AUDIT_ACTION_AFTER_UPDATE, "I", "audit_test1", "test1", "id", "1", NULL);
+ zak_audit_action (audit, ZAK_AUDIT_ACTION_AFTER_UPDATE, "I", "audit_test1", "test1", "id", "1", NULL);
stmt = gda_sql_parser_parse_string (parser, "INSERT INTO test1 (id, name, age, income) VALUES (2, 'Paul Green', 105, 35.33)", NULL, NULL);
if (stmt == NULL)
return 0;
}
gda_connection_statement_execute_non_select (conn, stmt, NULL, NULL, NULL);
- audit_action_from_gdastatement (audit, AUDIT_ACTION_INSERT, "I", "audit_test1", stmt);
+ zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_INSERT, "I", "audit_test1", stmt);
stmt = gda_sql_parser_parse_string (parser, "UPDATE test1 SET income=99999999.99 WHERE id = 2", NULL, NULL);
if (stmt == NULL)
g_warning ("GdaStatement NULL");
return 0;
}
- audit_action_from_gdastatement (audit, AUDIT_ACTION_BEFORE_UPDATE, "I", "audit_test1", stmt);
+ zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_BEFORE_UPDATE, "I", "audit_test1", stmt);
gda_connection_statement_execute_non_select (conn, stmt, NULL, NULL, NULL);
- audit_action_from_gdastatement (audit, AUDIT_ACTION_AFTER_UPDATE, "I", "audit_test1", stmt);
+ zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_AFTER_UPDATE, "I", "audit_test1", stmt);
stmt = gda_sql_parser_parse_string (parser, "DELETE FROM test1 WHERE id = 2", NULL, NULL);
g_warning ("GdaStatement NULL");
return 0;
}
- audit_action_from_gdastatement (audit, AUDIT_ACTION_DELETE, "I", "audit_test1", stmt);
+ zak_audit_action_from_gdastatement (audit, ZAK_AUDIT_ACTION_DELETE, "I", "audit_test1", stmt);
gda_connection_statement_execute_non_select (conn, stmt, NULL, NULL, NULL);
- audit_destroy (audit);
+ zak_audit_destroy (audit);
return 0;
}