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 "plaqui/server/string.h"
31 #include <socket++/sockinet.h>
32 #include <glibmm/timer.h>
37 using namespace PlaQui::Server;
39 Server* server = NULL;
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;
49 void on_finished(void) {
50 cerr << "Murió el servidor!" << endl;
54 int main(int argc, char* argv[]) {
56 // Termina con mas informacion si hay una excepcion no manejada.
57 set_terminate(__gnu_cxx::__verbose_terminate_handler);
60 cout << "PlaQui Server. Modo de uso: " << endl;
61 cout << "\t" << argv[0] << " [planta] [puerto]" << endl;
64 string filename = "prueba.xml";
65 Connection::Port port = 7522;
67 // Obtengo nombre del archivo de la planta.
69 // Si tiene 2 parámetros.
76 // Inicializa threads.
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;
90 cerr << "Es: non-blocking and interrupt io recoverable error."
93 cerr << "Es: incorrect argument supplied. recoverable error."
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;
105 } catch (const exception& e) {
106 cerr << "Error: " << e.what() << endl;
108 } catch (const char* e) {
109 cerr << "Error: " << e << endl;
112 cerr << "Error desconocido!" << endl;
116 // Conecto señal para atender errores.
117 server->signal_error().connect(SigC::slot(on_error));
119 // Conecto señal para atender la finalización del server.
120 server->signal_finished().connect(SigC::slot(on_finished));
125 // Espera a que el server se muera.
127 //cerr << "-----------------\n\nAHHHHHHH\n\n----------------" << endl;
128 Glib::usleep(100000); // 0,1 segundos
130 // Espera un segundo más por las dudas, para asegurarse de que terminó.
131 Glib::usleep(1000000); // 1 segundo
133 // Como no detachee el server, lo tengo que eliminar a mano.