+// 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 <socket++/sockinet.h>
+#include <iostream>
+#include <sstream>
+#include <exception>
+#include <vector>
+
+using namespace std;
+using namespace PlaQui::Server;
+
+ControlClient* client = NULL;
+
+void on_finished(void) {
+ client = NULL;
+}
+
+void on_connected(void) {
+ cout << " Conectado! :-)" << endl;
+}
+
+void on_ok_received(void) {
+ cout << " Respuesta recibida: OK! :-D" << 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];
+ }
+ unsigned port = 7522;
+ if (argc > 2) {
+ // Obtengo puerto.
+ stringstream str(argv[2]);
+ str >> port;
+ }
+
+ // Inicializa threads.
+ Glib::thread_init();
+
+ try {
+ // Corre el cliente.
+ client = new ControlClient(host, port);
+ 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->run();
+ char buf[BUFSIZ];
+ while (client && cin.getline(buf, BUFSIZ)) {
+ 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() + 1);
+ cmd.set_args(v);
+ client->send(cmd);
+ break;
+ }
+ }
+ } catch (const char* e) {
+ cerr << "Error: " << e << endl;
+ } catch (exception& e) {
+ cerr << "Error: " << e.what() << endl;
+ } catch (...) {
+ cerr << "Error desconocido!" << endl;
+ }
+
+ return 0;
+}