]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/tests/server_test.cpp
se borran las lineas al eliminar un item, esto no esta totalmente testeado
[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 <iostream>
33 #include <exception>
34
35 using namespace std;
36 using namespace PlaQui::Server;
37
38 int main(int argc, char* argv[]) {
39
40         // Termina con mas informacion si hay una excepcion no manejada.
41         set_terminate (__gnu_cxx::__verbose_terminate_handler);
42
43         // Bienvenida.
44         cout << "PlaQui Server. Modo de uso: " << endl;
45         cout << "\t" << argv[0] << " [planta] [puerto]" << endl;
46
47         // Acepta argumentos.
48         string filename = "prueba.xml";
49         Connection::Port port = 7522;
50         if (argc > 1) {
51                 // Obtengo nombre del archivo de la planta.
52                 filename = argv[1];
53                 // Si tiene 2 parámetros.
54                 if (argc > 2) {
55                         // Obtengo puerto.
56                         to(argv[2], port);
57                 }
58         }
59
60         // Inicializa threads.
61         Glib::thread_init();
62
63         try {
64                 // Corre el server.
65                 Server server(filename, port);
66                 server.run(false);
67         } catch (const sockerr& e) {
68                 cerr << "Socket Error: " << e.operation() << " | serrno = "
69                         << e.serrno() << " | errstr = " << e.errstr() << endl;
70                 if (e.io()) {
71                         cerr << "Es: non-blocking and interrupt io recoverable error."
72                                 << endl;
73                 } else if (e.arg()) {
74                         cerr <<  "Es: incorrect argument supplied. recoverable error."
75                                 << endl;
76                 } else if (e.op()) {
77                         cerr << "Es: operational error. recovery difficult." << endl;
78                 } else if (e.conn()) {
79                         cerr << "Es: connection error." << endl;
80                 } else if (e.addr()) {
81                         cerr << "Es: address error." << endl;
82                 } else if (e.benign()) {
83                         cerr << "Es: recoverable read/write error like EINTR etc." << endl;
84                 }
85         } catch (const exception& e) {
86                 cerr << "Error: " << e.what() << endl;
87         } catch (const char* e) {
88                 cerr << "Error: " << e << endl;
89         } catch (...) {
90                 cerr << "Error desconocido!" << endl;
91         }
92
93         return 0;
94 }