#include <gtk/gtk.h>
+#include <libzakconfi/libzakconfi.h>
#include <libgdaex/libgdaex.h>
#include <libzakauthe/libzakauthe.h>
#include <libzakautho/autho.h>
static TerritorioCommons *commons;
-static GKeyFile *config;
-
static GtkWidget *w;
static GtkWidget *vbx_body;
static GtkWidget *vbx_body_child;
{
GError *error;
+ ZakConfi *confi;
+
GdaConnection *gdacon;
ZakAuthe *zak_authe;
g_error ("Occorre passare a riga di comando il file di configurazione.");
}
- error = NULL;
- config = g_key_file_new ();
- if (!g_key_file_load_from_file (config, argv[1], G_KEY_FILE_NONE, &error))
+ /* utilizzo di libzakconfi */
+ confi = zak_confi_new (argv[1]);
+ if (confi == NULL)
{
- g_error ("Impossibile caricare il file di configurazione specificato: %s.", argv[1]);
- }
-
- /* leggo i parametri per l'zak_authe */
- error = NULL;
- zak_authe_params = g_key_file_get_keys (config, "AUTE", &n_zak_authe_params, &error);
- if (zak_authe_params == NULL)
- {
- g_error ("Impossibile leggere la configurazione per il sistema di zak_authe.");
+ g_error ("Impossibile caricare la configurazione specificata: %s", argv[1]);
+ return 0;
}
+ /* leggo i parametri per l'autenticazione */
sl_zak_authe_params = NULL;
- for (i = 0; i < n_zak_authe_params; i++)
- {
- error = NULL;
- sl_zak_authe_params = g_slist_append (sl_zak_authe_params, g_key_file_get_string (config, "AUTE", zak_authe_params[i], &error));
- }
-
- g_strfreev (zak_authe_params);
+ sl_zak_authe_params = g_slist_append (sl_zak_authe_params, "{libzakconfi}");
+ sl_zak_authe_params = g_slist_append (sl_zak_authe_params, confi);
- /* zak_authenticazione */
+ /* autenticazione */
zak_authe = zak_authe_new ();
zak_authe_set_config (zak_authe, sl_zak_authe_params);
/* leggo i parametri per libzakautho */
error = NULL;
- cnc_string = g_key_file_get_value (config, "AUTOZ", "cnc_string", &error);
+ cnc_string = zak_confi_path_get_value (confi, "ZAKAUTHO/cnc_string");
if (cnc_string == NULL)
{
g_warning ("Impossibile leggere la stringa di connessione per libzakautho dal file di configurazione: %s.",
commons->autoz = zak_autho_new ();
if (commons->autoz == NULL)
{
- g_warning ("Impossibile creare l'oggetto per libzak_autho.");
+ g_warning ("Impossibile creare l'oggetto per libzakautho.");
return 0;
}
if (!zak_autho_load_from_db_with_monitor (commons->autoz, gdacon, NULL, TRUE))
/* leggo la stringa di connessione al db */
error = NULL;
- cnc_string = g_key_file_get_value (config, "DB", "cnc_string", &error);
+ cnc_string = zak_confi_path_get_value (confi, "DB/cnc_string");
if (cnc_string == NULL)
{
g_error ("Impossibile leggere la stringa di connessione dal file di configurazione: %s.",