]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/controlserver.cpp
El server manda una respuesta HTTP valida (al parecer, al menos para Mozilla :).
[z.facultad/75.42/plaqui.git] / Server / src / controlserver.cpp
index 4b888493b2264666c733dc3dfc7bdf8242ec18e5..6ac3a77fcb73c71094f3783e302f1e48eee8e5de 100644 (file)
@@ -34,6 +34,7 @@ using namespace Plaqui;
 ControlServer::ControlServer(const sockbuf::sockdesc& sd):
                Connection(sd) {
 #ifdef DEBUG
+       std::cerr << "Compilado el " << __DATE__ << std::endl;
        std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl;
 #endif // DEBUG
 }
@@ -46,10 +47,22 @@ void ControlServer::real_run(void) {
                stringstream sstr;
                while (!stop && socket.getline(buf, BUFFER_SIZE)) {
 #ifdef DEBUG
-                       std::cerr << "Reciviendo: " << buf << std::endl;
+                       std::cerr << "Reciviendo (crudo): " << buf << std::endl;
+#endif // DEBUG
+                       int len = strlen(buf);
+                       // Si tiene un retorno de carro, lo elimina.
+                       if (len && (buf[len-1] == '\r')) {
+                               buf[--len] = '\0';
+                       }
+#ifdef DEBUG
+                       std::cerr << "Reciviendo (sin \\r): " << buf << std::endl;
+                       std::cerr << "len: " << len << std::endl;
+                       if (len == 1) {
+                               std::cerr << std::hex << "Caracter: " << *buf << std::endl;
+                       }
 #endif // DEBUG
                        // Si tiene contenido, lo almaceno en el buffer de comandos.
-                       if (strlen(buf)) {
+                       if (len) {
                                sstr << buf << endl;
                        // Si viene la línea vacía, terminan las cabeceras HTTP.
                        } else {
@@ -59,10 +72,41 @@ void ControlServer::real_run(void) {
                // Manda mensaje a la planta.
                //dispatch_command(parse_command(sstr.str()));
 #ifdef DEBUG
-                       std::cerr << "Recivido:" << std::endl << sstr.str() << std::endl;
+               std::cerr << "Recivido:" << std::endl << sstr.str() << std::endl;
 #endif // DEBUG
                // FIXME - hacer respuesta XML.
-               socket << "Ok!" << std::endl;
+               stringstream response_xml;
+               socket << "HTTP/1.0 200 OK" << std::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
+ETag: "110f4043-11a1-3eacdd30"
+Accept-Ranges: bytes
+*/
+               socket << "Content-Type: text/html; charset=iso-8859-1" << std::endl;
+               response_xml << "<html>" << std::endl;
+               response_xml << "    <head>" << std::endl;
+               response_xml << "        <title>PlaQui v0.1</title>" << std::endl;
+               response_xml << "    </head>" << std::endl;
+               response_xml << "    <body>" << std::endl;
+               response_xml << "        <h1>PlaQui</h1>" << std::endl;
+               response_xml << "        <p>versión 0.1</p>" << std::endl;
+               response_xml << "        <h3>Desarrollado por</h3>" << std::endl;
+               response_xml << "        <ul>" << std::endl;
+               response_xml << "            <li>Nicolás Dimov.</li>" << std::endl;
+               response_xml << "            <li>Leandro Lucarella.</li>" << std::endl;
+               response_xml << "            <li>Ricardo Markiewicz.</li>" << std::endl;
+               response_xml << "        </ul>" << std::endl;
+               response_xml << "        <address>" << std::endl;
+               response_xml << "             Copyleft 2003 - bajo los " << std::endl;
+               response_xml << "             términos de la licencia GPL" << std::endl;
+               response_xml << "        </address>" << std::endl;
+               response_xml << "    </body>" << std::endl;
+               response_xml << "</html>" << std::endl;
+               //socket << "Content-Length: " << response_xml.str().length() << std::endl;
+               socket << std::endl;
+               socket << response_xml.str() << std::flush;
        }
 }