-// vim: set noexpandtab tabstop=4 shiftwidth=4:
-//----------------------------------------------------------------------------
-// PlaQui
-//----------------------------------------------------------------------------
-// This file is part of PlaQui.
-//
-// PlaQui is free software; you can redistribute it and/or modify it under the
-// terms of the GNU General Public License as published by the Free Software
-// Foundation; either version 2 of the License, or (at your option) any later
-// version.
-//
-// PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-// details.
-//
-// You should have received a copy of the GNU General Public License along
-// with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
-// Place, Suite 330, Boston, MA 02111-1307 USA
-//----------------------------------------------------------------------------
-// Creado: jue nov 13 00:53:38 ART 2003
-// Autores: Leandro Lucarella <llucare@fi.uba.ar>
-//----------------------------------------------------------------------------
-//
-// $Id$
-//
-
-#include "plaqui/server/controlclient.h"
-#include "plaqui/server/string.h"
-#include <iostream>
-#include <exception>
-#include <vector>
-
-using namespace std;
-using namespace PlaQui::Server;
-
-ControlClient* client = NULL;
-
-void on_error(const Runnable::Error& code, const string& desc) {
- cerr << "--------------------------------------------------------" << endl;
- cerr << "Error en el cliente:" << endl;
- cerr << "Código: " << code << endl;
- cerr << "Descripción: " << desc << endl;
- cerr << "--------------------------------------------------------" << endl;
-}
-
-void on_finished(void) {
- client = NULL;
-}
-
-void on_connected(void) {
- cout << " Conectado! :-)" << endl;
-}
-
-void on_ok_received(const string& body) {
- cout << " Respuesta recibida: OK! :-D" << endl;
- cout << " Body: " << body << endl;
-}
-
-void on_frame_received(const string& frame) {
- cout << " Frame recibido! :-D" << endl;
- cout << frame << endl;
-}
-
-void on_error_received(unsigned code) {
- cout << " Respuesta recibida: Error nro " << code << "! :-(" << endl;
-}
-
-int main(int argc, char* argv[]) {
-
- // Termina con mas informacion si hay una excepcion no manejada.
- set_terminate (__gnu_cxx::__verbose_terminate_handler);
-
- // Mensaje de bienvenida.
- cout << "Client test. Modo de uso: " << endl;
- cout << "\t" << argv[0] << " [host] [port]" << endl;
- cout << "Luego se envian comandos con el siguiente formato:" << endl;
- cout << "\t <destino> <comando> [<arg 1>] [<arg 2>] [...] [<arg N>]" << endl;
-
- // Parámetros.
- string host = "localhost";
- if (argc > 1) {
- // Obtengo host.
- host = argv[1];
- }
- // Obtengo puerto.
- Connection::Port port = 7522;
- if (argc > 2) {
- to(argv[2], port);
- }
-
- // Inicializa threads.
- Glib::thread_init();
-
- try {
- // Corre el cliente.
- client = new ControlClient(host, port);
- client->signal_error().connect(SigC::slot(on_error));
- client->signal_finished().connect(SigC::slot(on_finished));
- client->signal_connected().connect(SigC::slot(on_connected));
- client->signal_ok_received().connect(SigC::slot(on_ok_received));
- client->signal_error_received().connect(SigC::slot(on_error_received));
- client->signal_frame_received().connect(SigC::slot(on_frame_received));
- client->run();
- char buf[BUFSIZ];
- while (cin.getline(buf, BUFSIZ)) {
- if (!client) {
- break;
- }
- vector<string> v = String(buf).split(' ');
- switch (v.size()) {
- case 0:
- client->send(Command());
- break;
- case 1:
- client->send(Command(v[0]));
- break;
- case 2:
- client->send(Command(v[0], v[1]));
- break;
- default:
- Command cmd(v[0], v[1]);
- v.erase(v.begin(), v.begin() + 2);
- cmd.set_args(v);
- client->send(cmd);
- break;
- }
- }
- } catch (const sockerr& e) {
- cerr << "Socket Error: " << e.operation() << " | serrno = "
- << e.serrno() << " | errstr = " << e.errstr() << endl;
- if (e.io()) {
- cerr << "Es: non-blocking and interrupt io recoverable error."
- << endl;
- } else if (e.arg()) {
- cerr << "Es: incorrect argument supplied. recoverable error."
- << endl;
- } else if (e.op()) {
- cerr << "Es: operational error. recovery difficult." << endl;
- } else if (e.conn()) {
- cerr << "Es: connection error." << endl;
- } else if (e.addr()) {
- cerr << "Es: address error." << endl;
- } else if (e.benign()) {
- cerr << "Es: recoverable read/write error like EINTR etc." << endl;
- }
- } catch (const exception& e) {
- cerr << "Error: " << e.what() << endl;
- } catch (const char* e) {
- cerr << "Error: " << e << endl;
- } catch (...) {
- cerr << "Error desconocido!" << endl;
- }
-
- return 0;
-}