Table *table);
static gboolean load_tables (ZakAudit *zak_audit,
Datasource *datasource);
-static gboolean load_datasources (ZakAudit *zak_audit);
+static gboolean load_datasources (ZakAudit *zak_audit, va_list ap);
static Field *get_field_from_name (ZakAudit *zak_audit,
Table *table,
const char *field);
}
static gboolean
-load_datasources (ZakAudit *zak_audit)
+load_datasources (ZakAudit *zak_audit, va_list ap)
{
GdaDataModel *dm;
gchar *sql;
- gint rows, row;
+ gint rows;
+ gint row;
Datasource *datas;
+ GString *str_in;
+ char *datasource_name;
+
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
+ str_in = NULL;
+
+ datasource_name = va_arg (ap, char *);
+ if (datasource_name != NULL)
+ {
+ str_in = g_string_new ("");
+
+ while (datasource_name != NULL)
+ {
+ g_string_append_printf (str_in, ",'%s'", datasource_name);
+
+ datasource_name = va_arg (ap, gchar *);
+ }
+
+ g_string_erase (str_in, 0, 1);
+ g_string_prepend (str_in, " AND name IN (");
+ g_string_append (str_in, ")");
+ }
+
/* for each datasource on datasources table must be opened a connection */
- dm = gdaex_query (priv->gdaex, "SELECT id, name, cnc_string"
- " FROM datasources"
- " WHERE status <> 'D'");
+ sql = g_strdup_printf ("SELECT id, name, cnc_string"
+ " FROM datasources"
+ " WHERE status <> 'D'"
+ "%s",
+ str_in == NULL ? "" : str_in->str);
+ dm = gdaex_query (priv->gdaex, sql);
+ g_free (sql);
if (dm == NULL)
{
g_warning ("There are no datasources configured.");
return FALSE;
}
+ if (str_in != NULL)
+ {
+ g_string_free (str_in, TRUE);
+ }
+
rows = gda_data_model_get_n_rows (dm);
if (rows < 1)
{
}
/* PUBLIC */
-
/**
- * zak_audit_new:
+ * zak_audit_new_with_datasources:
* @gda_connection: a #GdaConnection object.
+ * @...: a #NULL terminated list of datasources to load.
*
* Returns: the newly #ZakAudit object.
*/
ZakAudit
-*zak_audit_new (GdaConnection *gda_connection)
+*zak_audit_new_with_datasources (GdaConnection *gda_connection, ...)
{
+ va_list ap;
+
ZakAudit *zak_audit = zak_audit_new_ ();
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
return NULL;
}
+ va_start (ap, gda_connection);
+
/* carico i datasource */
- if (!load_datasources (zak_audit))
+ if (!load_datasources (zak_audit, ap))
{
/* TODO */
g_warning ("Error loading datasources.");
return NULL;
}
+ va_end (ap);
+
return zak_audit;
}
/**
- * zak_audit_new_from_string:
+ * zak_audit_new_from_string_with_datasources:
* @cnc_string: the connection string to the datasource that contains library's tables.
+ * @...: a #NULL terminated list of datasources to load.
*
* Returns: the newly #ZakAudit object.
*/
ZakAudit
-*zak_audit_new_from_string (const gchar *cnc_string)
+*zak_audit_new_from_string_with_datasources (const gchar *cnc_string, ...)
{
+ va_list ap;
+
ZakAudit *zak_audit = zak_audit_new_ ();
ZakAuditPrivate *priv = ZAK_AUDIT_GET_PRIVATE (zak_audit);
return NULL;
}
+ va_start (ap, cnc_string);
+
/* carico i datasource */
- if (!load_datasources (zak_audit))
+ if (!load_datasources (zak_audit, ap))
{
/* TODO */
g_warning ("Error loading datasources.");
return NULL;
}
+ va_end (ap);
+
return zak_audit;
}
+/**
+ * zak_audit_new:
+ * @gda_connection: a #GdaConnection object.
+ *
+ * Returns: the newly #ZakAudit object.
+ */
+ZakAudit
+*zak_audit_new (GdaConnection *gda_connection)
+{
+ return zak_audit_new_with_datasources (gda_connection, NULL);
+}
+
+/**
+ * zak_audit_new_from_string:
+ * @cnc_string: the connection string to the datasource that contains library's tables.
+ *
+ * Returns: the newly #ZakAudit object.
+ */
+ZakAudit
+*zak_audit_new_from_string (const gchar *cnc_string)
+{
+ return zak_audit_new_from_string_with_datasources (cnc_string, NULL);
+}
+
/**
* zak_audit_action:
* @zak_audit: an #ZakAudit object.
/*
* test1.c
*
- * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2013 Andrea Zagli <azagli@libero.it>
*
* This file is part of libaudit.
*
#include <libzakaudit.h>
+static gchar *cnc_zakaudit;
+static gchar *cnc_db;
+
+static GOptionEntry entries[] =
+{
+ { "cnc_string_zakaudit", 0, 0, G_OPTION_ARG_STRING, &cnc_zakaudit, "Connection string to zakaudit database", NULL },
+ { "cnc_string_db", 0, 0, G_OPTION_ARG_STRING, &cnc_db, "Connection string to test database", NULL },
+ { NULL }
+};
+
int
main (int argc, char *argv[])
{
+ GError *error;
+
+ GOptionContext *ctx;
+
GdaEx *gdaex;
ZakAudit *audit;
GdaSqlParser *parser;
GdaStatement *stmt;
+ cnc_zakaudit = NULL;
+ cnc_db = NULL;
+
g_type_init ();
- audit = zak_audit_new_from_string ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=audit");
+ ctx = g_option_context_new ("");
+ g_option_context_add_main_entries (ctx, entries, "audit_test1");
+ if (!g_option_context_parse (ctx, &argc, &argv, &error))
+ {
+ g_warning ("Errore nell'analisi della riga comandi: %s.",
+ error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+ }
+
+ if (cnc_zakaudit == NULL)
+ {
+ g_message ("You must provide the connection string to zakaudit database.");
+ return 0;
+ }
+
+ if (cnc_db == NULL)
+ {
+ g_message ("You must provide the connection string to test database.");
+ return 0;
+ }
+
+ audit = zak_audit_new_from_string_with_datasources (cnc_zakaudit, "audit_test1", NULL);
if (audit == NULL)
{
return 0;
}
- gdaex = gdaex_new_from_string ("PostgreSQL://postgres:postgres@HOST=localhost;DB_NAME=audit");
+ gdaex = gdaex_new_from_string (cnc_db);
conn = (GdaConnection *)gdaex_get_gdaconnection (gdaex);
parser = gda_connection_create_parser (conn);
if (parser == NULL)