]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/main.cpp
Capturo las seniales ANSI C SIGINT, SIGTERM y SIGQUIT para que el server salga
[z.facultad/75.42/plaqui.git] / Server / src / main.cpp
1 // vim: set noexpandtab tabstop=4 shiftwidth=4:
2 //----------------------------------------------------------------------------
3 //                                  PlaQui
4 //----------------------------------------------------------------------------
5 // This file is part of PlaQui.
6 //
7 // PlaQui is free software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the Free Software
9 // Foundation; either version 2 of the License, or (at your option) any later
10 // version.
11 //
12 // PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
13 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 // details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
19 // Place, Suite 330, Boston, MA  02111-1307  USA
20 //----------------------------------------------------------------------------
21 // Creado:  Sat Oct 18 18:18:36 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
24 //
25 // $Id$
26 //
27
28 #include "plaqui/server/connection.h"
29 #include "plaqui/server/server.h"
30 #include "plaqui/server/string.h"
31 #include <socket++/sockinet.h>
32 #include <glibmm/timer.h>
33 #include <iostream>
34 #include <exception>
35 #include <csignal>
36
37 using namespace std;
38 using namespace PlaQui::Server;
39
40 Server* server = NULL;
41
42 void on_error(const Runnable::Error& code, const string& desc) {
43         cerr << "--------------------------------------------------------" << endl;
44         cerr << "Error en el servidor:" << endl;
45         cerr << "Código: " << code << endl;
46         cerr << "Descripción: " << desc << endl;
47         cerr << "--------------------------------------------------------" << endl;
48 }
49
50 void on_finished(void) {
51         cerr << "Murió el servidor!" << endl;
52         server = NULL;
53 }
54
55 void on_signal(int signal) {
56         switch (signal) {
57                 case SIGINT:
58                 case SIGTERM:
59                 case SIGQUIT:
60                         if (server) {
61                                 server->finish();
62                         }
63                         break;
64         }
65 }
66
67 int main(int argc, char* argv[]) {
68
69         // Termina con mas informacion si hay una excepcion no manejada.
70         set_terminate(__gnu_cxx::__verbose_terminate_handler);
71
72         // Bienvenida.
73         cout << "PlaQui Server. Modo de uso: " << endl;
74         cout << "\t" << argv[0] << " [planta] [puerto]" << endl;
75
76         // Acepta argumentos.
77         string filename = "prueba.xml";
78         Connection::Port port = 7522;
79         if (argc > 1) {
80                 // Obtengo nombre del archivo de la planta.
81                 filename = argv[1];
82                 // Si tiene 2 parámetros.
83                 if (argc > 2) {
84                         // Obtengo puerto.
85                         to(argv[2], port);
86                 }
87         }
88
89         // Inicializa threads.
90         Glib::thread_init();
91
92         // Pone un manejador de señales para salir limpiamente del programa.
93         signal(SIGINT, on_signal);
94         signal(SIGTERM, on_signal);
95         signal(SIGQUIT, on_signal);
96
97         try {
98                 // Crea el server (empieza a escuchar).
99                 server = new Server(filename, port);
100         } catch (const sockerr& e) {
101                 cerr << "Socket Error: " << e.operation() << " | serrno = "
102                         << e.serrno() << " | errstr = " << e.errstr() << endl;
103                 if (e.serrno() == 98) {
104                         cerr << "No se puede usar el puerto " << port << " porque ya está "
105                                 "siendo utilizado por otro programa." << endl;
106                 }
107                 if (e.io()) {
108                         cerr << "Es: non-blocking and interrupt io recoverable error."
109                                 << endl;
110                 } else if (e.arg()) {
111                         cerr <<  "Es: incorrect argument supplied. recoverable error."
112                                 << endl;
113                 } else if (e.op()) {
114                         cerr << "Es: operational error. recovery difficult." << endl;
115                 } else if (e.conn()) {
116                         cerr << "Es: connection error." << endl;
117                 } else if (e.addr()) {
118                         cerr << "Es: address error." << endl;
119                 } else if (e.benign()) {
120                         cerr << "Es: recoverable read/write error like EINTR etc." << endl;
121                 }
122                 return e.serrno();
123         } catch (const exception& e) {
124                 cerr << "Error: " << e.what() << endl;
125                 return 1;
126         } catch (const char* e) {
127                 cerr << "Error: " << e << endl;
128                 return 2;
129         } catch (...) {
130                 cerr << "Error desconocido!" << endl;
131                 return 3;
132         }
133
134         // Conecto señal para atender errores.
135         server->signal_error().connect(SigC::slot(on_error));
136
137         // Conecto señal para atender la finalización del server.
138         server->signal_finished().connect(SigC::slot(on_finished));
139
140         // Corre el server.
141         server->run();
142
143         // Espera a que el server se muera.
144         while (server) {
145                 //cerr << "-----------------\n\nAHHHHHHH\n\n----------------" << endl;
146                 Glib::usleep(100000); // 0,1 segundos
147         }
148         // Espera un segundo más por las dudas, para asegurarse de que terminó.
149         Glib::usleep(1000000); // 1 segundo
150
151         // Como no detachee el server, lo tengo que eliminar a mano.
152         //delete server;
153
154         return 0;
155 }
156