X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/65bf2eef7ac487329a3af3cd1c06e7957afc3a6c..ea3d0f30b8e44952b1b9ac3e2f5b2a08cd65ca48:/Server/src/controlserver.cpp?ds=sidebyside diff --git a/Server/src/controlserver.cpp b/Server/src/controlserver.cpp index c9007c5..966e362 100644 --- a/Server/src/controlserver.cpp +++ b/Server/src/controlserver.cpp @@ -25,10 +25,89 @@ // $Id$ // -#include "controlserver.h" +#include "plaqui/server/controlserver.h" +#include "plaqui/server/command.h" +#include "plaqui/server/httperror.h" +#include "plaqui/server/httpresponse.h" +#ifdef DEBUG +# include "plaqui/server/string.h" +# include +#endif // DEBUG -using namespace Plaqui; +using namespace std; -//ControlServer::ControlServer(const iosockinet& socket) { -//} +namespace PlaQui { + +namespace Server { + +ControlServer::~ControlServer(void) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": destructor." << endl; +#endif // DEBUG +} + +ControlServer::ControlServer(const sockbuf::sockdesc& sd): + Connection(sd) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": sd = " << sd.sock << endl; +#endif // DEBUG +} + +void ControlServer::real_run(void) throw() { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": real_run()" << endl; +#endif // DEBUG + while (!stop()) { + Command command; + try { + socket >> command; + } catch (const ios::failure& e) { + // TODO poner buenos codigos de error. + signal_error().emit(200000, "Se desconectó."); + return; + } catch (const sockerr& e) { + signal_error().emit(e.serrno(), e.errstr()); + return; + // Si hay un error al parsear el comando, se envia una respuesta con el + // error. + } catch (const HTTPError& e) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << " : real_run() ERROR: status_code = " + << e.code << " | reason = " << HTTPMessage::reason(e.code) + << " | desc = " << e.what() << endl; +#endif // DEBUG + socket << HTTPResponse(e) << flush; + continue; + } +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << " : real_run() Despachando comando: target = " + << command.get_target() << " | command = " << command.get_command() + << " | args = [" << String::join(command.get_args(), ", ") << "]" + << endl; +#endif // DEBUG + // Manda el comando. + command_received(command); + } +} + +void ControlServer::send(const Response& response) { + socket << response << flush; +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": send() Enviado!" << endl; +#endif // DEBUG +} + +ControlServer::SignalCommandReceived& ControlServer::signal_command_received(void) { + return command_received; +} + +} // namespace Server + +} // namespace PlaQui