]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/main.cpp
Varios cambios:
[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
36 using namespace std;
37 using namespace PlaQui::Server;
38
39 Server* server = NULL;
40
41 void on_error(const Runnable::Error& code, const string& desc) {
42         cerr << "--------------------------------------------------------" << endl;
43         cerr << "Error en el servidor:" << endl;
44         cerr << "Código: " << code << endl;
45         cerr << "Descripción: " << desc << endl;
46         cerr << "--------------------------------------------------------" << endl;
47 }
48
49 void on_finished(void) {
50         cerr << "Murió el servidor!" << endl;
51         server = NULL;
52 }
53
54 int main(int argc, char* argv[]) {
55
56         // Termina con mas informacion si hay una excepcion no manejada.
57         set_terminate(__gnu_cxx::__verbose_terminate_handler);
58
59         // Bienvenida.
60         cout << "PlaQui Server. Modo de uso: " << endl;
61         cout << "\t" << argv[0] << " [planta] [puerto]" << endl;
62
63         // Acepta argumentos.
64         string filename = "prueba.xml";
65         Connection::Port port = 7522;
66         if (argc > 1) {
67                 // Obtengo nombre del archivo de la planta.
68                 filename = argv[1];
69                 // Si tiene 2 parámetros.
70                 if (argc > 2) {
71                         // Obtengo puerto.
72                         to(argv[2], port);
73                 }
74         }
75
76         // Inicializa threads.
77         Glib::thread_init();
78
79         try {
80                 // Crea el server (empieza a escuchar).
81                 server = new Server(filename, port);
82         } catch (const sockerr& e) {
83                 cerr << "Socket Error: " << e.operation() << " | serrno = "
84                         << e.serrno() << " | errstr = " << e.errstr() << endl;
85                 if (e.serrno() == 98) {
86                         cerr << "No se puede usar el puerto " << port << " porque ya está "
87                                 "siendo utilizado por otro programa." << endl;
88                 }
89                 if (e.io()) {
90                         cerr << "Es: non-blocking and interrupt io recoverable error."
91                                 << endl;
92                 } else if (e.arg()) {
93                         cerr <<  "Es: incorrect argument supplied. recoverable error."
94                                 << endl;
95                 } else if (e.op()) {
96                         cerr << "Es: operational error. recovery difficult." << endl;
97                 } else if (e.conn()) {
98                         cerr << "Es: connection error." << endl;
99                 } else if (e.addr()) {
100                         cerr << "Es: address error." << endl;
101                 } else if (e.benign()) {
102                         cerr << "Es: recoverable read/write error like EINTR etc." << endl;
103                 }
104                 return e.serrno();
105         } catch (const exception& e) {
106                 cerr << "Error: " << e.what() << endl;
107                 return 1;
108         } catch (const char* e) {
109                 cerr << "Error: " << e << endl;
110                 return 2;
111         } catch (...) {
112                 cerr << "Error desconocido!" << endl;
113                 return 3;
114         }
115
116         // Conecto señal para atender errores.
117         server->signal_error().connect(SigC::slot(on_error));
118
119         // Conecto señal para atender la finalización del server.
120         server->signal_finished().connect(SigC::slot(on_finished));
121
122         // Corre el server.
123         server->run();
124
125         // Espera a que el server se muera.
126         while (server) {
127                 //cerr << "-----------------\n\nAHHHHHHH\n\n----------------" << endl;
128                 Glib::usleep(100000); // 0,1 segundos
129         }
130         // Espera un segundo más por las dudas, para asegurarse de que terminó.
131         Glib::usleep(1000000); // 1 segundo
132
133         // Como no detachee el server, lo tengo que eliminar a mano.
134         //delete server;
135
136         return 0;
137 }
138