X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/cd6078479123cd2cfe62df2d838633c143649edf..a143e957a68145eece4b5b60e0bf8bee0d0693cd:/Server/src/httpheaders.cpp diff --git a/Server/src/httpheaders.cpp b/Server/src/httpheaders.cpp index d0736b2..cef6d05 100644 --- a/Server/src/httpheaders.cpp +++ b/Server/src/httpheaders.cpp @@ -31,69 +31,39 @@ # include #endif // DEBUG -PlaQui::Server::HTTPHeaders::~HTTPHeaders(void) { -#ifdef DEBUG - std::cerr << __FILE__ << ": destructor." << std::endl; -#endif // DEBUG -} -/* -PlaQui::Server::HTTPMessage::HTTPMessage(const std::string& http_version): - http_version(http_version) { -#ifdef DEBUG - std::cerr << __FILE__ << ": http_version = " << http_version << std::endl; -#endif // DEBUG -} +using namespace std; +using namespace PlaQui::Server; -PlaQui::Server::HTTPMessage::HTTPMessage(const std::string& _body, - const std::string& http_version): - http_version(http_version) { +HTTPHeaders::~HTTPHeaders(void) { #ifdef DEBUG - std::cerr << __FILE__ << ": http_version = " << http_version - << " | body = " << body << std::endl; + cerr << __FILE__ << ": destructor." << endl; #endif // DEBUG - set_body(_body); } -*/ -ostream& operator<<(std::ostream& os, PlaQui::Server::HTTPMessage) { + +istream& operator>>(istream& is, HTTPHeaders& h) { #ifdef DEBUG - std::cerr << __FILE__ << ": operator<<()" << std::endl; + cerr << __FILE__ << ": operator>>()" << endl; #endif // DEBUG - for (HTTPMessage::const_iterator i = begin(); i != end(); ++i) { - os << i->first << ": " << i->second << std::flush; - return os << headers << "\r\l" // Fin de cabeceras + char buf[BUFSIZ]; + is.getline(buf, BUFSIZ); + string sbuf = buf; + string::size_type pos = sbuf.find(":"); + if (pos == string::npos) { + // FIXME poner mejores excepciones. + throw "Wrong header"; + } + h[sbuf.substr(0, pos)] = sbuf.substr(pos + 1); + return is; } -istream& operator>>(std::istream& is, PlaQui::Server::HTTPMessage) { +ostream& operator<<(ostream& os, const HTTPHeaders& h) { #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()) - 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; - } - } else { - if (is_header) { - is_header = false; - } else { - body_ss << buf << std::endl; - } - } + for (HTTPHeaders::const_iterator i = h.begin(); + i != h.end(); ++i) { + os << i->first << ": " << i->second << "\r\n"; } - // TODO El body debería leer solo el content-length. - body = body_ss.str(); - return is; + return os; }