]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/httpmessage.cpp
Pocos cambios a la vista del "usuario":
[z.facultad/75.42/plaqui.git] / Server / src / httpmessage.cpp
index 685fa69ad92b9e8912da6927f00cbbfc80c36ac5..af2875ecfcb441e2c48202033be7db999c135189 100644 (file)
@@ -25,6 +25,7 @@
 // $Id$
 //
 
+#include "plaqui/server/string.h"
 #include "plaqui/server/httpmessage.h"
 #include <sstream>
 #include <cstdlib>
@@ -44,30 +45,21 @@ HTTPMessage::~HTTPMessage(void) {
 #endif // DEBUG
 }
 
-HTTPMessage::HTTPMessage(const string& version):
-               version(version) {
+HTTPMessage::HTTPMessage(const string& _body, const string& _version):
+               version(_version) {
 #ifdef DEBUG
-       cerr << __FILE__ << ": version = " << version << endl;
-#endif // DEBUG
-}
-
-/*
-HTTPMessage::HTTPMessage(const string& _body,
-               const string& http_version):
-               http_version(http_version) {
-#ifdef DEBUG
-       cerr << __FILE__ << ": http_version = " << http_version
-               << " | body = " << body << endl;
+       cerr << __FILE__ << ": version = " << version << " | body.length = "
+               << _body.length() << endl;
 #endif // DEBUG
        set_body(_body);
 }
-*/
 
 void HTTPMessage::set_body(const string& _body) {
        body = _body;
        if (body.length()) {
                stringstream ss; // TODO ver forma mas linda de convertir
-               ss << body.length();
+               ss << (body.length());
+               headers["Accept-Ranges"] = "bytes";
                headers["Content-Length"] = ss.str();
        }
 }
@@ -82,27 +74,36 @@ istream& operator>>(istream& is, HTTPMessage& m) {
 #endif // DEBUG
        char buf[BUFSIZ];
        bool is_header = true;
-       stringstream body_ss;
+       // TODO body
+       // Para hacer que reciba bien el body hay que chequear la cabecera
+       // Content-length, si queda tiempo lo haré...
+       //stringstream body_ss;
        while (is.getline(buf, BUFSIZ)) {
-               string sbuf = buf;
+               String sbuf(buf);
+               sbuf.trim();
                if (sbuf.length()) {
                        if (is_header) {
                                stringstream ss;
-                               ss << buf;
+                               ss << sbuf;
                                ss >> m.headers;
-                       } else {
-                               body_ss << buf << endl;
-                       }
+                       }// else { TODO body
+                       //      body_ss << sbuf << endl;
+                       //}
                } else {
                        if (is_header) {
+                               // TODO body
+                               // Ver si tiene un Content-Length para saber si esperamos body.
+                               // Si no esperamos body, no hay que hacer otro is.getline()
+                               // porque se queda esperando forever.
                                is_header = false;
-                       } else {
-                               body_ss << buf << endl;
-                       }
+                               break;
+                       }// else { TODO body
+                       //      body_ss << sbuf << endl;
+                       //}
                }
        }
-       // TODO si el body es un serializable, deberia auto deserializarse.
-       m.body = body_ss.str();
+       // TODO body
+       //m.body = body_ss.str();
        return is;
 }
 
@@ -114,6 +115,26 @@ ostream& operator<<(ostream& os, const HTTPMessage& m) {
                << m.body;
 }
 
+string HTTPMessage::reason(unsigned code) {
+       switch (code) {
+               // TODO completar los códigos.
+               case OK:
+                       return "OK";
+               case BAD_REQUEST:
+                       return "Bad Request";
+               case LENGTH_REQUIRED:
+                       return "Length Required";
+               case INTERNAL_SERVER_ERROR:
+                       return "Internal Server Error";
+               case NOT_IMPLEMENTED:
+                       return "Not Implemented";
+               case HTTP_VERSION_NOT_SUPPORTED:
+                       return "HTTP Version Not Supported";
+               default:
+                       return "";
+       }
+}
+
 } // namespace Server
 
 } // namespace PlaQui