]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/httpmessage.cpp
Algunos cambios mas, ya es probable que compile de nuevo (aunque no ande como deberia).
[z.facultad/75.42/plaqui.git] / Server / src / httpmessage.cpp
1 // vim: set noexpandtab tabstop=4 shiftwidth=4:
2 //----------------------------------------------------------------------------
3 //                                  PlaQui
4 //----------------------------------------------------------------------------
5 // This file is part of PlaQui.
6 //
7 // PlaQui is free software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the Free Software
9 // Foundation; either version 2 of the License, or (at your option) any later
10 // version.
11 //
12 // PlaQui is distributed in the hope that it will be useful, but WITHOUT ANY
13 // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 // details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with PlaQui; if not, write to the Free Software Foundation, Inc., 59 Temple
19 // Place, Suite 330, Boston, MA  02111-1307  USA
20 //----------------------------------------------------------------------------
21 // Creado:  dom oct 26 22:02:09 ART 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
24 //
25 // $Id$
26 //
27
28 #include "plaqui/server/httpmessage.h"
29 #include <sstream>
30 #include <cstdlib>
31 #ifdef DEBUG
32 #       include <iostream>
33 #endif // DEBUG
34
35 using namespace std;
36
37 namespace PlaQui {
38         
39 namespace Server {
40
41 HTTPMessage::~HTTPMessage(void) {
42 #ifdef DEBUG
43         cerr << __FILE__ << ": destructor." << endl;
44 #endif // DEBUG
45 }
46
47 HTTPMessage::HTTPMessage(const string& version):
48                 version(version) {
49 #ifdef DEBUG
50         cerr << __FILE__ << ": version = " << version << endl;
51 #endif // DEBUG
52 }
53
54 /*
55 HTTPMessage::HTTPMessage(const string& _body,
56                 const string& http_version):
57                 http_version(http_version) {
58 #ifdef DEBUG
59         cerr << __FILE__ << ": http_version = " << http_version
60                 << " | body = " << body << endl;
61 #endif // DEBUG
62         set_body(_body);
63 }
64 */
65
66 void HTTPMessage::set_body(const string& _body) {
67         body = _body;
68         if (body.length()) {
69                 stringstream ss; // TODO ver forma mas linda de convertir
70                 ss << body.length();
71                 headers["Content-Length"] = ss.str();
72         }
73 }
74
75 const string& HTTPMessage::get_body(void) const {
76         return body;
77 }
78
79 istream& operator>>(istream& is, HTTPMessage& m) {
80 #ifdef DEBUG
81         cerr << __FILE__ << ": operator>>()" << endl;
82 #endif // DEBUG
83         char buf[BUFSIZ];
84         bool is_header = true;
85         stringstream body_ss;
86         while (is.getline(buf, BUFSIZ)) {
87                 string sbuf = buf;
88                 if (sbuf.length()) {
89                         if (is_header) {
90                                 stringstream ss;
91                                 ss << buf;
92                                 ss >> m.headers;
93                         } else {
94                                 body_ss << buf << endl;
95                         }
96                 } else {
97                         if (is_header) {
98                                 is_header = false;
99                         } else {
100                                 body_ss << buf << endl;
101                         }
102                 }
103         }
104         // TODO si el body es un serializable, deberia auto deserializarse.
105         m.body = body_ss.str();
106         return is;
107 }
108
109 ostream& operator<<(ostream& os, const HTTPMessage& m) {
110 #ifdef DEBUG
111         cerr << __FILE__ << ": operator<<()" << endl;
112 #endif // DEBUG
113         return os << m.headers << "\r\n" // Fin de cabeceras
114                 << m.body;
115 }
116
117 } // namespace Server
118
119 } // namespace PlaQui
120