]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/tests/server_test.cpp
Se elimina el directorio tests del server del configure.in y Makefile.am para
[z.facultad/75.42/plaqui.git] / Server / tests / server_test.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.io()) {
86                         cerr << "Es: non-blocking and interrupt io recoverable error."
87                                 << endl;
88                 } else if (e.arg()) {
89                         cerr <<  "Es: incorrect argument supplied. recoverable error."
90                                 << endl;
91                 } else if (e.op()) {
92                         cerr << "Es: operational error. recovery difficult." << endl;
93                 } else if (e.conn()) {
94                         cerr << "Es: connection error." << endl;
95                 } else if (e.addr()) {
96                         cerr << "Es: address error." << endl;
97                 } else if (e.benign()) {
98                         cerr << "Es: recoverable read/write error like EINTR etc." << endl;
99                 }
100                 return e.serrno();
101         } catch (const exception& e) {
102                 cerr << "Error: " << e.what() << endl;
103                 return 1;
104         } catch (const char* e) {
105                 cerr << "Error: " << e << endl;
106                 return 2;
107         } catch (...) {
108                 cerr << "Error desconocido!" << endl;
109                 return 3;
110         }
111
112         // Conecto señal para atender errores.
113         server->signal_error().connect(SigC::slot(on_error));
114
115         // Corre el server.
116         server->run(false);
117
118         // Espera a que el server se muera.
119         while (server) {
120                 Glib::usleep(1000000);
121         }
122
123         // Como no detachee el server, lo tengo que eliminar a mano.
124         //delete server;
125
126         return 0;
127 }