/*
* audit.c
*
- * Copyright (C) 2005-2018 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2019 Andrea Zagli <azagli@libero.it>
*
* This file is part of libzakaudit.
*
#include "libzakaudit.h"
+static guint debug;
+static gchar *log_file;
+
+static GOptionEntry entries[] =
+{
+ { "zakaudit-debug-level", 0, 0, G_OPTION_ARG_INT, &debug, "Sets the debug level", NULL },
+ { "zakaudit-log-file", 0, 0, G_OPTION_ARG_FILENAME, &log_file, "Path to file where to write debug info (or stdout or stderr)", NULL },
+ { NULL }
+};
+
enum
{
COL_CHANGES_ID,
gchar *guidir;
gchar *guifile;
GtkBuilder *gtkbuilder;
+
+ guint debug;
+ GFileOutputStream *log_file;
};
/* PRIVATE */
priv->datasources = NULL;
priv->records_updated = NULL;
priv->fields_updated = NULL;
+ priv->debug = 0;
+ priv->log_file = 0;
}
static ZakAudit
switch (action)
{
case ZAK_AUDIT_ACTION_INSERT:
+ if (priv->debug > 0)
+ {
+ g_message (_("Action_v INSERT"));
+ }
+
sql = g_strdup_printf ("SELECT %s FROM %s",
table->keys_sql,
table->name);
}
sql = g_strconcat (sql, sql_where, NULL);
+
+ if (priv->debug > 0)
+ {
+ g_message (_("Sql: %s"), sql);
+ }
+
dm = gdaex_query (datasource->gdaex, sql);
g_free (sql);
g_free (sql_where);
- if (dm == NULL) return FALSE;
+ if (dm == NULL)
+ {
+ if (priv->debug > 0)
+ {
+ g_message (_("No record found"));
+ }
+ return FALSE;
+ }
if (gda_data_model_get_n_rows (dm) == 0 ||
gda_data_model_get_n_rows (dm) > 1)
{
+ if (priv->debug > 0)
+ {
+ g_message (_("None or more than one record found."));
+ }
return FALSE;
}
break;
case ZAK_AUDIT_ACTION_BEFORE_UPDATE:
+ if (priv->debug > 0)
+ {
+ g_message (_("Action_v UPDATE"));
+ }
+
if (priv->fields_updated != NULL)
{
g_hash_table_destroy (priv->fields_updated);
sql_where = g_strconcat (sql_where, " AND ", field_name, " = ", value, "", NULL);
}
sql = g_strconcat (sql, sql_where, NULL);
+
+ if (priv->debug > 0)
+ {
+ g_message (_("Sql: %s"), sql);
+ }
+
dm = gdaex_query (datasource->gdaex, sql);
g_free (sql);
g_free (sql_where);
- if (dm == NULL) return FALSE;
+ if (dm == NULL)
+ {
+ if (priv->debug > 0)
+ {
+ g_message (_("No record found"));
+ }
+ return FALSE;
+ }
if (gda_data_model_get_n_rows (dm) == 0 ||
gda_data_model_get_n_rows (dm) > 1)
{
+ if (priv->debug > 0)
+ {
+ g_message (_("None or more than one record found."));
+ }
return FALSE;
}
break;
case ZAK_AUDIT_ACTION_AFTER_UPDATE:
+ if (priv->debug > 0)
+ {
+ g_message (_("Action_v AFTER_UPDATE"));
+ }
+
if (priv->fields_updated == NULL)
{
g_warning (_("You must call before an action of type ZAK_AUDIT_ACTION_AFTER_UPDATE."));
sql_where = g_strconcat (sql_where, " AND ", field_name, " = ", value, "", NULL);
}
sql = g_strconcat (sql, sql_where, NULL);
+
+ if (priv->debug > 0)
+ {
+ g_message (_("Sql: %s"), sql);
+ }
+
dm = gdaex_query (datasource->gdaex, sql);
g_free (sql);
g_free (sql_where);
- if (dm == NULL) return FALSE;
+ if (dm == NULL)
+ {
+ if (priv->debug > 0)
+ {
+ g_message (_("No record found"));
+ }
+ return FALSE;
+ }
if (gda_data_model_get_n_rows (dm) == 0 ||
gda_data_model_get_n_rows (dm) > 1)
{
+ if (priv->debug > 0)
+ {
+ g_message (_("None or more than one record found."));
+ }
return FALSE;
}
break;
case ZAK_AUDIT_ACTION_DELETE:
+ if (priv->debug > 0)
+ {
+ g_message (_("Action_v DELETE"));
+ }
+
/* saving all fields */
sql = g_strdup_printf ("SELECT %s FROM %s",
table->fields_sql,
sql_where = g_strconcat (sql_where, " AND ", field_name, " = ", value, "", NULL);
}
sql = g_strconcat (sql, sql_where, NULL);
+
+ if (priv->debug > 0)
+ {
+ g_message (_("Sql: %s"), sql);
+ }
+
dm = gdaex_query (datasource->gdaex, sql);
g_free (sql);
g_free (sql_where);
- if (dm == NULL) return FALSE;
+ if (dm == NULL)
+ {
+ if (priv->debug > 0)
+ {
+ g_message (_("No record found"));
+ }
+ return FALSE;
+ }
if (gda_data_model_get_n_rows (dm) == 0 ||
gda_data_model_get_n_rows (dm) > 1)
{
+ if (priv->debug > 0)
+ {
+ g_message (_("None or more than one record found."));
+ }
return FALSE;
}
gchar **values;
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
+
ret = FALSE;
str = g_string_new ("");
values = g_slist_next (values);
}
+ if (priv->debug > 0)
+ {
+ g_message (_("Action from GdaStatement: INSERT"));
+ }
+
break;
}
g_string_printf (str, "%s", strtmp);
g_free (strtmp);
+ if (priv->debug > 0)
+ {
+ g_message (_("Action from GdaStatemente: UPDATE"));
+ }
+
break;
}
g_string_printf (str, "%s", strtmp);
g_free (strtmp);
+ if (priv->debug > 0)
+ {
+ g_message (_("Action from GdaStatement: DELETE"));
+ }
+
break;
}
return TRUE;
}
+
+static void
+zak_audit_log_handler (const gchar *log_domain,
+ GLogLevelFlags log_level,
+ const gchar *message,
+ gpointer user_data)
+{
+ GError *error;
+
+ gchar *msg;
+
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE ((GdaEx *)user_data);
+
+ msg = g_strdup_printf ("%s **: %s\n\n", log_domain, message);
+
+ if (g_output_stream_write (G_OUTPUT_STREAM (priv->log_file),
+ msg, strlen (msg), NULL, &error) < 0)
+ {
+ g_warning (_("Error on writing on log file: %s"),
+ error != NULL && error->message != NULL ? error->message : _("no details."));
+ }
+}
+
+static gboolean
+zak_audit_post_parse_options (GOptionContext *context,
+ GOptionGroup *group,
+ gpointer user_data,
+ GError **error)
+{
+ ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE ((GdaEx *)user_data);
+
+ GError *my_error;
+
+ priv->debug = debug;
+ if (log_file == NULL)
+ {
+ priv->log_file = 0;
+ }
+ else if (priv->debug > 0)
+ {
+ gchar *filename = g_strstrip (g_strdup (log_file));
+ if (g_ascii_strncasecmp (filename, "stdout", 6) == 0
+ || g_ascii_strncasecmp (filename, "stderr", 6) == 0)
+ {
+ }
+ else
+ {
+ my_error = NULL;
+ priv->log_file = g_file_replace (g_file_new_for_path (filename),
+ NULL, FALSE, G_FILE_CREATE_NONE, NULL, &my_error);
+ if (priv->log_file == NULL)
+ {
+ g_warning (_("Error on opening log file: %s"),
+ my_error != NULL && my_error->message != NULL ? my_error->message : _("no details."));
+ }
+ else
+ {
+ /* set handler */
+ g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL
+ | G_LOG_FLAG_RECURSION, zak_audit_log_handler, user_data);
+ }
+ }
+ }
+
+ return TRUE;
+}
+
+/**
+ * zak_audit_get_option_group:
+ * #zak_audit: a #ZakAudit object.
+ *
+ * Returns: the #GOptionGroup.
+ */
+GOptionGroup
+*zak_audit_get_option_group (ZakAudit *zak_audit)
+{
+ GOptionGroup *ret;
+
+ ret = g_option_group_new ("zakaudit", "ZakAudit", "ZakAudit", (gpointer)zak_audit, g_free);
+ if (ret != NULL)
+ {
+ g_option_group_add_entries (ret, entries);
+ g_option_group_set_parse_hooks (ret, NULL, zak_audit_post_parse_options);
+ }
+
+ return ret;
+}