]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/httpmessage.cpp
Se arreglan detalles, ya compila pero se cuelga cuando se conecta un cliente.
[z.facultad/75.42/plaqui.git] / Server / src / httpmessage.cpp
index 2d3a18bca1f5bc09836efbdfc9058cad8b18431e..685fa69ad92b9e8912da6927f00cbbfc80c36ac5 100644 (file)
 //
 
 #include "plaqui/server/httpmessage.h"
+#include <sstream>
 #include <cstdlib>
 #ifdef DEBUG
 #      include <iostream>
 #endif // DEBUG
 
-PlaQui::Server::HTTPMessage::~HTTPMessage(void) {
+using namespace std;
+
+namespace PlaQui {
+       
+namespace Server {
+
+HTTPMessage::~HTTPMessage(void) {
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": destructor." << std::endl;
+       cerr << __FILE__ << ": destructor." << endl;
 #endif // DEBUG
 }
 
-PlaQui::Server::HTTPMessage::HTTPMessage(const std::string& http_version):
-               http_version(http_version) {
+HTTPMessage::HTTPMessage(const string& version):
+               version(version) {
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": http_version = " << http_version << std::endl;
+       cerr << __FILE__ << ": version = " << version << endl;
 #endif // DEBUG
 }
 
 /*
-PlaQui::Server::HTTPMessage::HTTPMessage(const std::string& _body,
-               const std::string& http_version):
+HTTPMessage::HTTPMessage(const string& _body,
+               const string& http_version):
                http_version(http_version) {
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": http_version = " << http_version
-               << " | body = " << body << std::endl;
+       cerr << __FILE__ << ": http_version = " << http_version
+               << " | body = " << body << endl;
 #endif // DEBUG
        set_body(_body);
 }
 */
 
-void PlaQui::Server::HTTPMessage::set_body(const std::string& _body) {
+void HTTPMessage::set_body(const string& _body) {
        body = _body;
        if (body.length()) {
                stringstream ss; // TODO ver forma mas linda de convertir
@@ -65,43 +72,49 @@ void PlaQui::Server::HTTPMessage::set_body(const std::string& _body) {
        }
 }
 
-const std::string& PlaQui::Server::HTTPMessage::get_body(void) {
+const string& HTTPMessage::get_body(void) const {
        return body;
 }
 
-istream& operator>>(std::istream& is, PlaQui::Server::HTTPMessage) {
+istream& operator>>(istream& is, HTTPMessage& m) {
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": operator>>()" << std::endl;
+       cerr << __FILE__ << ": operator>>()" << endl;
 #endif // DEBUG
        char buf[BUFSIZ];
        bool is_header = true;
        stringstream body_ss;
        while (is.getline(buf, BUFSIZ)) {
-               std::string sbuf = buf;
-               if (sbuf.length())
+               string sbuf = buf;
+               if (sbuf.length()) {
                        if (is_header) {
-                               istringstream(buf) >> m.headers;
+                               stringstream ss;
+                               ss << buf;
+                               ss >> m.headers;
                        } else {
-                               body_ss << buf << std::endl;
+                               body_ss << buf << endl;
                        }
                } else {
                        if (is_header) {
                                is_header = false;
                        } else {
-                               body_ss << buf << std::endl;
+                               body_ss << buf << endl;
                        }
                }
        }
        // TODO si el body es un serializable, deberia auto deserializarse.
-       body = body_ss.str();
+       m.body = body_ss.str();
        return is;
 }
 
-ostream& operator<<(std::ostream& os, PlaQui::Server::HTTPMessage) {
+ostream& operator<<(ostream& os, const HTTPMessage& m) {
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": operator<<()" << std::endl;
+       cerr << __FILE__ << ": operator<<()" << endl;
 #endif // DEBUG
-       return os << headers << "\r\l" // Fin de cabeceras
-               << body;
+       return os << m.headers << "\n\r" // Fin de cabeceras
+               << m.body;
 }
 
+} // namespace Server
+
+} // namespace PlaQui
+