//
#include "plaqui/server/controlserver.h"
-#include "plaqui/server/httprequest.h"
-#include <cstring>
-#include <sstream>
+#include "plaqui/server/command.h"
+#include "plaqui/server/httperror.h"
+#include "plaqui/server/httpresponse.h"
+//#include <cstring>
+//#include <sstream>
#ifdef DEBUG
+# include "plaqui/server/string.h"
# include <iostream>
#endif // DEBUG
}
ControlServer::ControlServer(const sockbuf::sockdesc& sd):
- ServerConnection(sd) {
+ Connection(sd) {
#ifdef DEBUG
cerr << __FILE__ << ": sd = " << sd.sock << endl;
#endif // DEBUG
#endif // DEBUG
//char buf[BUFSIZ];
while (!stop) {
- HTTPRequest request;
+ Command command;
try {
- socket >> request;
- } catch (const char* e) {
- cerr << "Error: " << e << endl;
+ //Glib::Mutex::Lock lock(socket_mutex);
+ socket >> command;
+ // Si se cerró el socket.
+ } catch (const ios::failure& e) {
stop = true;
continue;
- } catch (string e) {
- cerr << "Error: " << e << endl;
- stop = true;
- continue;
- } catch (...) {
- cerr << "Error desconocido!" << endl;
- stop = true;
+ // Si hay un error al parsear el comando, se envia una respuesta con el
+ // error.
+ } catch (const HTTPError& e) {
+#ifdef DEBUG
+ cerr << __FILE__ << " : real_run() ERROR: status_code = "
+ << e.code << " | reason = " << HTTPMessage::reason(e.code)
+ << " | desc = " << e.what() << endl;
+#endif // DEBUG
+ //Glib::Mutex::Lock lock(socket_mutex);
+ socket << HTTPResponse(e) << flush;
continue;
}
// TODO agregar las verificaciones de abajo a HTTPRequest y padres.
+ // Actualizacion: Estoy usando trim() en casi todos lados, no debería
+ // ser necesario.
/*
// Primera línea no vacía (que debe ser el request).
bool is_first = true;
}
}
*/
- // TODO: Manda el comando.
- // Command command = parse_command(request.uri);
- //signal_command_received().emit(command);
#ifdef DEBUG
- cerr << "Request: " << request << endl;
- //for (HTTPRequest::const_iterator i = request.begin();
- // i != request.end(); i++) {
- // cerr << " " << i->first << ": " << i->second << endl;
- //}
+ cerr << __FILE__ << " : 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);
// FIXME - hacer respuesta XML.
// La respuesta hay que mandarla asincrónicamente porque no puedo
// responder hasta que la planta no se termine de actualizar, por
// ejemplo.
- stringstream response_xml;
- socket << "HTTP/1.0 200 OK" << endl;
+ //stringstream response_xml;
+ //socket << "HTTP/1.0 200 OK" << endl;
/*
Date: Sun, 19 Oct 2003 15:11:14 GMT
Server: Apache/1.3.28 (Debian GNU/Linux)
Last-Modified: Mon, 28 Apr 2003 07:50:08 GMT
Accept-Ranges: bytes
*/
+/*
socket << "Content-Type: text/html; charset=iso-8859-1" << endl;
response_xml << "<html>" << endl;
response_xml << " <head>" << endl;
- response_xml << " <title>PlaQui v0.1</title>" << endl;
+ response_xml << " <title>PlaQui v0.4</title>" << endl;
response_xml << " </head>" << endl;
response_xml << " <body>" << endl;
response_xml << " <h1>PlaQui</h1>" << endl;
- response_xml << " <p>versión 0.3</p>" << endl;
- response_xml << " <h2>Pedido HTTP</h2>" << endl;
+ response_xml << " <p>versión 0.4</p>" << endl;
+ response_xml << " <h2>Comando</h2>" << endl;
response_xml << " <ul>" << endl;
- response_xml << " <li><b>Versión:</b> " << request.version << endl;
- response_xml << " <li><b>Método:</b> " << (request.method ? "POST" : "GET") << endl;
- response_xml << " <li><b>URI:</b> " << request.uri << endl;
- response_xml << " <li><b>Query:</b> " << request.query << endl;
- for (HTTPHeaders::const_iterator i = request.headers.begin();
- i != request.headers.end(); i++) {
- response_xml << " <li><b>" << i->first << ":</b> "
- << i->second << endl;
+ response_xml << " <li><b>Target:</b> " << command.get_target() << endl;
+ response_xml << " <li><b>Command:</b> " << command.get_command() << endl;
+ response_xml << " <li><b>Argumentos:</b>" << endl;
+ response_xml << " <ol>" << endl;
+ for (Command::Arguments::const_iterator i = command.get_args().begin();
+ i != command.get_args().end(); i++) {
+ response_xml << " <li>" << *i << "</li>" << endl;
}
+ response_xml << " </ol>" << endl;
response_xml << " </ul>" << endl;
response_xml << " <h2>Desarrollado por</h2>" << endl;
response_xml << " <ul>" << endl;
socket << "Content-Length: " << response_xml.str().length() << endl;
socket << endl;
socket << response_xml.str() << flush;
+*/
}
}
+void ControlServer::send(const HTTPResponse& response) {
+ //Glib::Mutex::Lock lock(socket_mutex);
+ socket << response << flush;
+#ifdef DEBUG
+ cerr << __FILE__ << ": send() Enviado!" << endl;
+#endif // DEBUG
+}
+
+ControlServer::SignalCommandReceived& ControlServer::signal_command_received(void) {
+ return command_received;
+}
+
} // namespace Server
} // namespace PlaQui