X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/cd6078479123cd2cfe62df2d838633c143649edf..142292d716f0240f0cd50b8c17daa284d782cec8:/Server/src/httpmessage.cpp diff --git a/Server/src/httpmessage.cpp b/Server/src/httpmessage.cpp index 625d82e..cfdd894 100644 --- a/Server/src/httpmessage.cpp +++ b/Server/src/httpmessage.cpp @@ -25,36 +25,46 @@ // $Id$ // +#include "plaqui/server/string.h" #include "plaqui/server/httpmessage.h" +#include #include #ifdef DEBUG # include #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 @@ -63,49 +73,58 @@ 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; } -ostream& operator<<(std::ostream& os, PlaQui::Server::HTTPMessage) { -#ifdef DEBUG - std::cerr << __FILE__ << ": operator<<()" << std::endl; -#endif // DEBUG - return os << headers << "\r\l" // Fin de cabeceras - << body << std::flush; -} - -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; + // 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)) { - std::string sbuf = buf; - if (sbuf.length()) + String sbuf(buf); + sbuf.trim(); + if (sbuf.length()) { if (is_header) { - // TODO esto va al operator>> de HTTPHeaders. - std::string::size_type pos = sbuf.find(":"); - if (pos == std::string::npos) { - // FIXME poner mejores excepciones. - throw "Wrong header"; - } - headers[sbuf.substr(0, pos)] = sbuf.substr(pos + 1); - } else { - body_ss << buf << std::endl; - } + stringstream ss; + ss << sbuf; + ss >> m.headers; + }// 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 << std::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; } +ostream& operator<<(ostream& os, const HTTPMessage& m) { +#ifdef DEBUG + cerr << __FILE__ << ": operator<<()" << endl; +#endif // DEBUG + return os << m.headers << "\n\r" // Fin de cabeceras + << m.body; +} + +} // namespace Server + +} // namespace PlaQui +