]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/controlserver.cpp
Algunos cambios mas, ya es probable que compile de nuevo (aunque no ande como deberia).
[z.facultad/75.42/plaqui.git] / Server / src / controlserver.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:  Sat Oct 18 18:18:36 2003
22 // Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 //----------------------------------------------------------------------------
24 //
25 // $Id$
26 //
27
28 #include "plaqui/server/controlserver.h"
29 #include "plaqui/server/httprequest.h"
30 #include <cstring>
31 #include <sstream>
32 #ifdef DEBUG
33 #       include <iostream>
34 #endif // DEBUG
35
36 using namespace std;
37
38 namespace PlaQui {
39
40 namespace Server {
41
42 ControlServer::~ControlServer(void) {
43 #ifdef DEBUG
44         cerr << __FILE__ << ": destructor." << endl;
45 #endif // DEBUG
46 }
47
48 ControlServer::ControlServer(const sockbuf::sockdesc& sd):
49                 ServerConnection(sd) {
50 #ifdef DEBUG
51         cerr << __FILE__ << ": sd = " << sd.sock << endl;
52 #endif // DEBUG
53 }
54
55 void ControlServer::real_run(void) {
56 #ifdef DEBUG
57         cerr << __FILE__ << ": real_run()" << endl;
58 #endif // DEBUG
59         char buf[BUFSIZ];
60         while (!stop) {
61                 HTTPRequest request;
62                 socket >> request;
63                 // TODO agregar las verificaciones de abajo a HTTPRequest y padres.
64 /*
65                 // Primera línea no vacía (que debe ser el request).
66                 bool is_first = true;
67                 while (!stop && socket.getline(buf, BUFSIZ)) {
68 #ifdef DEBUG
69                         cerr << __FILE__ << "  Recibiendo inea: " << buf << endl;
70 #endif // DEBUG
71                         int len = strlen(buf);
72                         // Si tiene un retorno de carro, lo elimina.
73                         if (len && (buf[len-1] == '\r')) {
74                                 buf[--len] = '\0';
75                         }
76                         // Si tiene contenido, lo agrego a la información del request.
77                         if (len) {
78                                 // Si es la primera línea, es el request.
79                                 if (is_first) {
80                                         request.set_request(buf, socket->peerhost(),
81                                                         socket->peerport());
82                                         is_first = false;
83                                 } else {
84                                         // TODO request.parse_header(buf);
85                                 }
86                         // Si viene la línea vacía
87                         } else {
88                                 // Si no es la primera, terminan las cabeceras HTTP.
89                                 if (!is_first) {
90                                         // Podría ir un break.
91                                         stop = true;
92                                         continue;
93                                 }
94                                 // Si es la primera, no pasa nada, sigue esperando un request.
95                         }
96                 }
97 */
98                 // TODO: Manda el comando.
99                 // Command command = parse_command(request.uri);
100                 //signal_command_received().emit(command);
101 #ifdef DEBUG
102                 cerr << "Request: " << endl;
103                 for (Request::const_iterator i = request.begin(); i != request.end();
104                                 i++) {
105                         cerr << "   " << i->first << ": " << i->second << endl;
106                 }
107 #endif // DEBUG
108                 // FIXME - hacer respuesta XML.
109                 // La respuesta hay que mandarla asincrónicamente porque no puedo
110                 // responder hasta que la planta no se termine de actualizar, por
111                 // ejemplo.
112                 stringstream response_xml;
113                 socket << "HTTP/1.0 200 OK" << endl;
114 /*
115 Date: Sun, 19 Oct 2003 15:11:14 GMT
116 Server: Apache/1.3.28 (Debian GNU/Linux)
117 Last-Modified: Mon, 28 Apr 2003 07:50:08 GMT
118 Accept-Ranges: bytes
119 */
120                 socket << "Content-Type: text/html; charset=iso-8859-1" << endl;
121                 response_xml << "<html>" << endl;
122                 response_xml << "    <head>" << endl;
123                 response_xml << "        <title>PlaQui v0.1</title>" << endl;
124                 response_xml << "    </head>" << endl;
125                 response_xml << "    <body>" << endl;
126                 response_xml << "        <h1>PlaQui</h1>" << endl;
127                 response_xml << "        <p>versión 0.2</p>" << endl;
128                 response_xml << "        <h2>Pedido HTTP</h2>" << endl;
129                 response_xml << "        <ul>" << endl;
130                 for (Request::const_iterator i = request.begin(); i != request.end();
131                                 i++) {
132                         response_xml << "           <li><b>" << i->first << ":</b> "
133                                 << i->second << endl;
134                 }
135                 response_xml << "        </ul>" << endl;
136                 response_xml << "        <h2>Desarrollado por</h2>" << endl;
137                 response_xml << "        <ul>" << endl;
138                 response_xml << "            <li>Nicolás Dimov.</li>" << endl;
139                 response_xml << "            <li>Leandro Lucarella.</li>" << endl;
140                 response_xml << "            <li>Ricardo Markiewicz.</li>" << endl;
141                 response_xml << "        </ul>" << endl;
142                 response_xml << "        <address>" << endl;
143                 response_xml << "             Copyleft 2003 - bajo los " << endl;
144                 response_xml << "             términos de la licencia GPL" << endl;
145                 response_xml << "        </address>" << endl;
146                 response_xml << "    </body>" << endl;
147                 response_xml << "</html>" << endl;
148                 socket << "Content-Length: " << response_xml.str().length() << endl;
149                 socket << endl;
150                 socket << response_xml.str() << flush;
151         }
152 }
153
154 } // namespace Server
155
156 } // namespace PlaQui
157