]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/httpmessage.cpp
Se borran archivos obsoletos.
[z.facultad/75.42/plaqui.git] / Server / src / httpmessage.cpp
index 737f6365dd0d94debd33e5be2ffb96ec9948e108..cfdd89404fab55f58f07ed292250a912e0accee2 100644 (file)
@@ -25,6 +25,7 @@
 // $Id$
 //
 
 // $Id$
 //
 
+#include "plaqui/server/string.h"
 #include "plaqui/server/httpmessage.h"
 #include <sstream>
 #include <cstdlib>
 #include "plaqui/server/httpmessage.h"
 #include <sstream>
 #include <cstdlib>
 #endif // DEBUG
 
 using namespace std;
 #endif // DEBUG
 
 using namespace std;
-using namespace PlaQui::Server;
+
+namespace PlaQui {
+       
+namespace Server {
 
 HTTPMessage::~HTTPMessage(void) {
 #ifdef DEBUG
 
 HTTPMessage::~HTTPMessage(void) {
 #ifdef DEBUG
@@ -79,33 +83,48 @@ istream& operator>>(istream& is, HTTPMessage& m) {
 #endif // DEBUG
        char buf[BUFSIZ];
        bool is_header = true;
 #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)) {
        while (is.getline(buf, BUFSIZ)) {
-               string sbuf = buf;
-               if (sbuf.length())
+               String sbuf(buf);
+               sbuf.trim();
+               if (sbuf.length()) {
                        if (is_header) {
                        if (is_header) {
-                               istringstream(buf) >> m.headers;
-                       } else {
-                               body_ss << buf << endl;
-                       }
+                               stringstream ss;
+                               ss << sbuf;
+                               ss >> m.headers;
+                       }// else { TODO body
+                       //      body_ss << sbuf << endl;
+                       //}
                } else {
                        if (is_header) {
                } 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;
                                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.
-       body = body_ss.str();
+       // TODO body
+       //m.body = body_ss.str();
        return is;
 }
 
        return is;
 }
 
-ostream& operator<<(ostream& os, HTTPMessage) {
+ostream& operator<<(ostream& os, const HTTPMessage& m) {
 #ifdef DEBUG
        cerr << __FILE__ << ": operator<<()" << endl;
 #endif // DEBUG
 #ifdef DEBUG
        cerr << __FILE__ << ": operator<<()" << endl;
 #endif // DEBUG
-       return os << headers << "\r\n" // Fin de cabeceras
-               << body;
+       return os << m.headers << "\n\r" // Fin de cabeceras
+               << m.body;
 }
 
 }
 
+} // namespace Server
+
+} // namespace PlaQui
+