// $Id$
//
-#include "controlserver.h"
+#include "plaqui/server/controlserver.h"
+#include "plaqui/server/httprequest.h"
#include <cstring>
#include <sstream>
+#ifdef DEBUG
+# include <iostream>
+#endif // DEBUG
+
+using namespace std;
+
+namespace PlaQui {
-using namespace Plaqui;
+namespace Server {
+
+ControlServer::~ControlServer(void) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+}
ControlServer::ControlServer(const sockbuf::sockdesc& sd):
- Connection(sd) {
+ ServerConnection(sd) {
#ifdef DEBUG
- std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl;
+ cerr << __FILE__ << ": sd = " << sd.sock << endl;
#endif // DEBUG
}
void ControlServer::real_run(void) {
- // FIXME se tiene que ir a la clase para poder frenarlo desde afuera.
- bool stop = false;
- char buf[BUFFER_SIZE];
+#ifdef DEBUG
+ cerr << __FILE__ << ": real_run()" << endl;
+#endif // DEBUG
+ //char buf[BUFSIZ];
while (!stop) {
- stringstream sstr;
- while (!stop && socket.getline(buf, BUFFER_SIZE)) {
+ HTTPRequest request;
+ socket >> request;
+ // TODO agregar las verificaciones de abajo a HTTPRequest y padres.
+/*
+ // Primera línea no vacía (que debe ser el request).
+ bool is_first = true;
+ while (!stop && socket.getline(buf, BUFSIZ)) {
#ifdef DEBUG
- std::cerr << "Reciviendo: " << buf << std::endl;
+ cerr << __FILE__ << " Recibiendo inea: " << buf << endl;
#endif // DEBUG
- // Si tiene contenido, lo almaceno en el buffer de comandos.
- if (strlen(buf)) {
- sstr << buf << endl;
- // Si viene la línea vacía, terminan las cabeceras HTTP.
+ int len = strlen(buf);
+ // Si tiene un retorno de carro, lo elimina.
+ if (len && (buf[len-1] == '\r')) {
+ buf[--len] = '\0';
+ }
+ // Si tiene contenido, lo agrego a la información del request.
+ if (len) {
+ // Si es la primera línea, es el request.
+ if (is_first) {
+ request.set_request(buf, socket->peerhost(),
+ socket->peerport());
+ is_first = false;
+ } else {
+ // TODO request.parse_header(buf);
+ }
+ // Si viene la línea vacía
} else {
- stop = true;
+ // Si no es la primera, terminan las cabeceras HTTP.
+ if (!is_first) {
+ // Podría ir un break.
+ stop = true;
+ continue;
+ }
+ // Si es la primera, no pasa nada, sigue esperando un request.
}
}
- // Manda mensaje a la planta.
- //dispatch_command(parse_command(sstr.str()));
+*/
+ // TODO: Manda el comando.
+ // Command command = parse_command(request.uri);
+ //signal_command_received().emit(command);
#ifdef DEBUG
- std::cerr << "Recivido:" << std::endl << sstr.str() << std::endl;
+ cerr << "Request: " << request << endl;
+ //for (HTTPRequest::const_iterator i = request.begin();
+ // i != request.end(); i++) {
+ // cerr << " " << i->first << ": " << i->second << endl;
+ //}
#endif // DEBUG
// FIXME - hacer respuesta XML.
- socket << "Ok!" << std::endl;
+ // 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;
+/*
+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 << " </head>" << endl;
+ response_xml << " <body>" << endl;
+ response_xml << " <h1>PlaQui</h1>" << endl;
+ response_xml << " <p>versión 0.2</p>" << endl;
+ response_xml << " <h2>Pedido HTTP</h2>" << endl;
+ response_xml << " <ul>" << 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 << " </ul>" << endl;
+ response_xml << " <h2>Desarrollado por</h2>" << endl;
+ response_xml << " <ul>" << endl;
+ response_xml << " <li>Nicolás Dimov.</li>" << endl;
+ response_xml << " <li>Leandro Lucarella.</li>" << endl;
+ response_xml << " <li>Ricardo Markiewicz.</li>" << endl;
+ response_xml << " </ul>" << endl;
+ response_xml << " <address>" << endl;
+ response_xml << " Copyleft 2003 - bajo los " << endl;
+ response_xml << " términos de la licencia GPL" << endl;
+ response_xml << " </address>" << endl;
+ response_xml << " </body>" << endl;
+ response_xml << "</html>" << endl;
+ socket << "Content-Length: " << response_xml.str().length() << endl;
+ socket << endl;
+ socket << response_xml.str() << flush;
}
}
+} // namespace Server
+
+} // namespace PlaQui
+