]> saetta.ns0.it Git - solipa/organigramma/commitdiff
Aggiunta la funzione Organigramma::init. develop
authorAndrea Zagli <azagli@libero.it>
Sun, 3 Dec 2017 09:55:16 +0000 (10:55 +0100)
committerAndrea Zagli <azagli@libero.it>
Sun, 3 Dec 2017 09:55:16 +0000 (10:55 +0100)
src/commons.c
src/commons.h
src/main.c

index c25c29f847363045915044d8503d55d9a575c623..b52cc52813655d619e582058bf3c15f4f89bee24 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2015-2017 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
        #include <config.h>
 #endif
 
-#include <gtk/gtk.h>
+#include "commons.h"
 
 #ifdef G_OS_WIN32
 #include <windows.h>
 #endif
 
+
 #ifdef G_OS_WIN32
 static HMODULE hmodule;
 
@@ -52,3 +53,128 @@ organigramma_get_module_handle ()
        return (gpointer)hmodule;
 }
 #endif
+
+OrganigrammaCommons
+*organigramma_init (ZakConfi *confi, const gchar *prefix)
+{
+       gchar *_prefix;
+
+       GError *error;
+       gchar *str;
+
+       GdaConnection *gdacon;
+
+       OrganigrammaCommons *commons;
+
+       if (prefix != NULL)
+               {
+                       _prefix = g_strdup (prefix);
+               }
+       else
+               {
+                       _prefix = g_strdup ("");
+               }
+
+               /* inizializzazione commons */
+       commons = g_new0 (OrganigrammaCommons, 1);
+
+       commons->territorio_commons = territorio_init (confi, "TERRITORIO_");
+
+#ifdef G_OS_WIN32
+
+       gchar *moddir;
+       gchar *p;
+
+       moddir = g_win32_get_package_installation_directory_of_module (NULL);
+
+       p = strrchr (moddir, G_DIR_SEPARATOR);
+       if (p != NULL
+           && (g_ascii_strcasecmp (p + 1, "src") == 0
+           || g_ascii_strcasecmp (p + 1, ".libs") == 0))
+               {
+                       commons->guidir = g_strdup (GUIDIR);
+                       commons->formdir = g_strdup (FORMDIR);
+               }
+       else
+               {
+#undef GUIDIR
+#undef FORMDIR
+
+                       commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
+                       commons->formdir = g_build_filename (moddir, "share", PACKAGE, "form", NULL);
+               }
+
+#else
+
+       commons->guidir = g_strdup (GUIDIR);
+       commons->formdir = g_strdup (FORMDIR);
+
+#endif
+
+       commons->guifile = g_build_filename (commons->guidir, "organigramma.gui", NULL);
+
+       /* leggo i parametri per libzakautho */
+       str = zak_confi_path_get_value (confi, g_strdup_printf ("%sZAKAUTHO/cnc_string", _prefix));
+       if (str == NULL)
+               {
+                       g_warning ("Impossibile leggere la stringa di connessione per libzakautho dal file di configurazione.");
+                       return NULL;
+               }
+
+       error = NULL;
+       gdacon = gda_connection_open_from_string (NULL, str, NULL, 0, &error);
+       if (gdacon == NULL)
+               {
+                       g_warning ("Impossibile creare la connessione al db per libzakautho: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
+                       return NULL;
+               }
+
+       commons->autoz = zak_autho_new ();
+       if (commons->autoz == NULL)
+               {
+                       g_warning ("Impossibile creare l'oggetto per libzakautho.");
+                       return NULL;
+               }
+       if (!zak_autho_load_from_db (commons->autoz, gdacon, NULL, TRUE))
+               {
+                       g_warning ("Impossibile caricare la configurazione per libzakautho dal db.");
+                       return NULL;
+               }
+
+       /* inizializzo solipa */
+       commons->solipa = solipa_new ();
+
+       /* leggo la stringa di connessione al db */
+       str = zak_confi_path_get_value (confi, g_strdup_printf ("%sDB/cnc_string", _prefix));
+       if (str == NULL)
+               {
+                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione.");
+               }
+
+       commons->gdaex = gdaex_new_from_string (str);
+       if (commons->gdaex == NULL)
+               {
+                       g_error ("Errore nella connessione al database: %s", str);
+               }
+
+       /* leggo la stringa di connessione al db nativa di postgres */
+       str = zak_confi_path_get_value (confi, g_strdup_printf ("%sDB/pg_cnc_string", _prefix));
+       if (str == NULL)
+               {
+                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione.");
+               }
+
+       commons->pgcon = PQconnectdb (str);
+       if (commons->pgcon == NULL
+           || PQstatus (commons->pgcon) == CONNECTION_BAD)
+               {
+                       g_error ("Errore nella connessione al database: %s", str);
+               }
+
+       /* gtkbuilder */
+       commons->gtkbuilder = gtk_builder_new ();
+
+       g_free (_prefix);
+
+       return commons;
+}
index 36cefc9c27fe603f6c59860483f9212a8e0a533e..55ba826981277864c1c9f862d51b4cb8d645d98a 100644 (file)
 #ifndef __ORGANIGRAMMA_COMMONS_H__
 #define __ORGANIGRAMMA_COMMONS_H__
 
+#include <gtk/gtk.h>
+
 #ifdef G_OS_WIN32
 #include <windows.h>
 #endif
 
 #include <libpq-fe.h>
 
-#include <gtk/gtk.h>
-
 #include <libgdaex/libgdaex.h>
+#include <libzakconfi/libzakconfi.h>
 #include <libzakautho/autho.h>
 #include <libzakautho/role_interface.h>
 #include <libsolipa/libsolipa.h>
@@ -66,4 +67,7 @@ gpointer organigramma_get_module_handle (void);
 #endif
 
 
+OrganigrammaCommons *organigramma_init (ZakConfi *confi, const gchar *prefix);
+
+
 #endif /* __ORGANIGRAMMA_COMMONS_H__ */
index 483156c3e572130f34e5d854d9c5ed29b3c5d0bf..9638ec858c71f4e5981965705a4ecac2c2669ea7 100644 (file)
@@ -249,19 +249,11 @@ main (int argc, char *argv[])
 
        ZakConfi *confi;
 
-       GdaConnection *gdacon;
-
        ZakAuthe *aute;
-       gchar **aute_params;
-       gsize n_aute_params;
        GSList *sl_aute_params;
 
        gchar *utente;
 
-       gchar *cnc_string;
-
-       gint i;
-
        gtk_init (&argc, &argv);
 
        gda_init ();
@@ -305,74 +297,11 @@ main (int argc, char *argv[])
                                }
                }
 
-       /* inizializzazione commons */
-       commons = g_new0 (OrganigrammaCommons, 1);
-       commons->utente = utente;
+       commons = organigramma_init (confi, NULL);
 
-       commons->territorio_commons = territorio_init (confi, "TERRITORIO_");
+       commons->utente = utente;
        commons->territorio_commons->utente = utente;
 
-#ifdef G_OS_WIN32
-
-       gchar *moddir;
-       gchar *p;
-
-       moddir = g_win32_get_package_installation_directory_of_module (NULL);
-
-       p = strrchr (moddir, G_DIR_SEPARATOR);
-       if (p != NULL
-           && (g_ascii_strcasecmp (p + 1, "src") == 0
-           || g_ascii_strcasecmp (p + 1, ".libs") == 0))
-               {
-                       commons->guidir = g_strdup (GUIDIR);
-                       commons->formdir = g_strdup (FORMDIR);
-               }
-       else
-               {
-#undef GUIDIR
-#undef FORMDIR
-
-                       commons->guidir = g_build_filename (moddir, "share", PACKAGE, "gui", NULL);
-                       commons->formdir = g_build_filename (moddir, "share", PACKAGE, "form", NULL);
-               }
-
-#else
-
-       commons->guidir = g_strdup (GUIDIR);
-       commons->formdir = g_strdup (FORMDIR);
-
-#endif
-
-       commons->guifile = g_build_filename (commons->guidir, "organigramma.gui", NULL);
-
-       /* leggo i parametri per libzakautho */
-       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.");
-                       return 0;
-               }
-
-       error = NULL;
-       gdacon = gda_connection_open_from_string (NULL, cnc_string, NULL, 0, &error);
-       if (gdacon == NULL)
-               {
-                       g_warning ("Impossibile creare la connessione al db per libzakautho: %s.\n", error != NULL && error->message != NULL ? error->message : "nessun dettaglio");
-                       return 0;
-               }
-
-       commons->autoz = zak_autho_new ();
-       if (commons->autoz == NULL)
-               {
-                       g_warning ("Impossibile creare l'oggetto per libzakautho.");
-                       return 0;
-               }
-       if (!zak_autho_load_from_db (commons->autoz, gdacon, NULL, TRUE))
-               {
-                       g_warning ("Impossibile caricare la configurazione per libzakautho dal db.");
-                       return 0;
-               }
-
        commons->role_utente = zak_autho_get_role_from_id (commons->autoz, commons->utente);
        if (commons->role_utente == NULL)
                {
@@ -387,36 +316,6 @@ main (int argc, char *argv[])
                        return 0;
                }
 
-       /* inizializzo solipa */
-       commons->solipa = solipa_new ();
-
-       /* leggo la stringa di connessione al db */
-       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.");
-               }
-
-       commons->gdaex = gdaex_new_from_string (cnc_string);
-       if (commons->gdaex == NULL)
-               {
-                       g_error ("Errore nella connessione al database: %s", cnc_string);
-               }
-
-       /* leggo la stringa di connessione al db nativa di postgres */
-       cnc_string = zak_confi_path_get_value (confi, "DB/pg_cnc_string");
-       if (cnc_string == NULL)
-               {
-                       g_error ("Impossibile leggere la stringa di connessione dal file di configurazione.");
-               }
-
-       commons->pgcon = PQconnectdb (cnc_string);
-       if (commons->pgcon == NULL
-           || PQstatus (commons->pgcon) == CONNECTION_BAD)
-               {
-                       g_error ("Errore nella connessione al database: %s", cnc_string);
-               }
-
        commons->territorio_commons->role_utente = zak_autho_get_role_from_id (commons->territorio_commons->autoz, commons->territorio_commons->utente);
        if (commons->territorio_commons->role_utente == NULL)
                {
@@ -424,9 +323,6 @@ main (int argc, char *argv[])
                        return 0;
                }
 
-       /* gtkbuilder */
-       commons->gtkbuilder = gtk_builder_new ();
-
        error = NULL;
        gtk_builder_add_objects_from_file (commons->gtkbuilder, commons->guifile,
                                           g_strsplit_set ("w_main", "|", -1),