1 // vim: set noexpandtab tabstop=4 shiftwidth=4:
2 //----------------------------------------------------------------------------
4 //----------------------------------------------------------------------------
5 // This file is part of PlaQui.
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
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
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 //----------------------------------------------------------------------------
28 #include "plaqui/server/connection.h"
29 #include "plaqui/server/server.h"
30 #include <socket++/sockinet.h>
36 using namespace PlaQui::Server;
38 int main(int argc, char* argv[]) {
40 // Termina con mas informacion si hay una excepcion no manejada.
41 set_terminate (__gnu_cxx::__verbose_terminate_handler);
44 cout << "PlaQui Server. Modo de uso: " << endl;
45 cout << "\t" << argv[0] << " [planta] [puerto]" << endl;
48 string filename = "prueba.xml";
49 Connection::Port port = 7522;
51 // Obtengo nombre del archivo de la planta.
53 // Si tiene 2 parámetros.
56 stringstream ss(argv[1]);
61 // Inicializa threads.
66 Server server(filename, port);
68 } catch (const sockerr& e) {
69 cerr << "Socket Error: " << e.operation() << " | serrno = "
70 << e.serrno() << " | errstr = " << e.errstr() << endl;
72 cerr << "Es: non-blocking and interrupt io recoverable error."
75 cerr << "Es: incorrect argument supplied. recoverable error."
78 cerr << "Es: operational error. recovery difficult." << endl;
79 } else if (e.conn()) {
80 cerr << "Es: connection error." << endl;
81 } else if (e.addr()) {
82 cerr << "Es: address error." << endl;
83 } else if (e.benign()) {
84 cerr << "Es: recoverable read/write error like EINTR etc." << endl;
86 } catch (const exception& e) {
87 cerr << "Error: " << e.what() << endl;
88 } catch (const char* e) {
89 cerr << "Error: " << e << endl;
91 cerr << "Error desconocido!" << endl;