]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/controlserver.cpp
133f36eeccc9abb64992180256931253fdcee5a6
[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/command.h"
30 #include "plaqui/server/string.h"
31 #include <cstring>
32 #include <sstream>
33 #ifdef DEBUG
34 #       include <iostream>
35 #endif // DEBUG
36
37 using namespace std;
38
39 namespace PlaQui {
40
41 namespace Server {
42
43 ControlServer::~ControlServer(void) {
44 #ifdef DEBUG
45         cerr << __FILE__ << ": destructor." << endl;
46 #endif // DEBUG
47 }
48
49 ControlServer::ControlServer(const sockbuf::sockdesc& sd):
50                 ServerConnection(sd) {
51 #ifdef DEBUG
52         cerr << __FILE__ << ": sd = " << sd.sock << endl;
53 #endif // DEBUG
54 }
55
56 void ControlServer::real_run(void) {
57 #ifdef DEBUG
58         cerr << __FILE__ << ": real_run()" << endl;
59 #endif // DEBUG
60         //char buf[BUFSIZ];
61         while (!stop) {
62                 Command command;
63                 try {
64                         socket >> command;
65                 } catch (const char* e) {
66                         cerr << "    (" << __LINE__ << ") Error: " << e << endl;
67                         stop = true;
68                         continue;
69                 } catch (string e) {
70                         cerr << "    (" << __LINE__ << ") Error: " << e << endl;
71                         stop = true;
72                         continue;
73                 } catch (...) {
74                         cerr << "    (" << __LINE__ << ") Error desconocido!" << endl;
75                         stop = true;
76                         continue;
77                 }
78                 // TODO agregar las verificaciones de abajo a HTTPRequest y padres.
79 /*
80                 // Primera línea no vacía (que debe ser el request).
81                 bool is_first = true;
82                 while (!stop && socket.getline(buf, BUFSIZ)) {
83 #ifdef DEBUG
84                         cerr << __FILE__ << "  Recibiendo inea: " << buf << endl;
85 #endif // DEBUG
86                         int len = strlen(buf);
87                         // Si tiene un retorno de carro, lo elimina.
88                         if (len && (buf[len-1] == '\r')) {
89                                 buf[--len] = '\0';
90                         }
91                         // Si tiene contenido, lo agrego a la información del request.
92                         if (len) {
93                                 // Si es la primera línea, es el request.
94                                 if (is_first) {
95                                         request.set_request(buf, socket->peerhost(),
96                                                         socket->peerport());
97                                         is_first = false;
98                                 } else {
99                                         // TODO request.parse_header(buf);
100                                 }
101                         // Si viene la línea vacía
102                         } else {
103                                 // Si no es la primera, terminan las cabeceras HTTP.
104                                 if (!is_first) {
105                                         // Podría ir un break.
106                                         stop = true;
107                                         continue;
108                                 }
109                                 // Si es la primera, no pasa nada, sigue esperando un request.
110                         }
111                 }
112 */
113                 // TODO: Manda el comando.
114                 // Command command = parse_command(request.uri);
115                 //signal_command_received().emit(command);
116 #ifdef DEBUG
117                 cerr << "Comando: target = " << command.get_target()
118                         << " | command = " << command.get_command()
119                         << " | args = [" << String::join(command.get_args(), ", ") << "]"
120                         << endl;
121                 //for (HTTPRequest::const_iterator i = request.begin();
122                 //              i != request.end(); i++) {
123                 //      cerr << "   " << i->first << ": " << i->second << endl;
124                 //}
125 #endif // DEBUG
126                 // FIXME - hacer respuesta XML.
127                 // La respuesta hay que mandarla asincrónicamente porque no puedo
128                 // responder hasta que la planta no se termine de actualizar, por
129                 // ejemplo.
130                 stringstream response_xml;
131                 socket << "HTTP/1.0 200 OK" << endl;
132 /*
133 Date: Sun, 19 Oct 2003 15:11:14 GMT
134 Server: Apache/1.3.28 (Debian GNU/Linux)
135 Last-Modified: Mon, 28 Apr 2003 07:50:08 GMT
136 Accept-Ranges: bytes
137 */
138                 socket << "Content-Type: text/html; charset=iso-8859-1" << endl;
139                 response_xml << "<html>" << endl;
140                 response_xml << "    <head>" << endl;
141                 response_xml << "        <title>PlaQui v0.1</title>" << endl;
142                 response_xml << "    </head>" << endl;
143                 response_xml << "    <body>" << endl;
144                 response_xml << "        <h1>PlaQui</h1>" << endl;
145                 response_xml << "        <p>versión 0.4</p>" << endl;
146                 response_xml << "        <h2>Comando</h2>" << endl;
147                 response_xml << "        <ul>" << endl;
148 /*              response_xml << "           <li><b>Versión:</b> " << request.version << endl;
149                 response_xml << "           <li><b>Método:</b> " << (request.method ? "POST" : "GET") << endl;
150                 response_xml << "           <li><b>URI:</b> " << request.uri << endl;
151                 response_xml << "           <li><b>Query:</b> " << request.query << endl;
152                 for (HTTPHeaders::const_iterator i = request.headers.begin();
153                                 i != request.headers.end(); i++) {
154                         response_xml << "           <li><b>" << i->first << ":</b> "
155                                 << i->second << endl;
156                 }*/
157                 response_xml << "           <li><b>Target:</b> " << command.get_target() << endl;
158                 response_xml << "           <li><b>Command:</b> " << command.get_command() << endl;
159                 response_xml << "           <li><b>Argumentos:</b>" << endl;
160                 response_xml << "               <ol>" << endl;
161                 for (Command::Arguments::const_iterator i = command.get_args().begin();
162                                 i != command.get_args().end(); i++) {
163                         response_xml << "                   <li>" << *i << "</li>" << endl;
164                 }
165                 response_xml << "               </ol>" << endl;
166                 response_xml << "        </ul>" << endl;
167                 response_xml << "        <h2>Desarrollado por</h2>" << endl;
168                 response_xml << "        <ul>" << endl;
169                 response_xml << "            <li>Nicolás Dimov.</li>" << endl;
170                 response_xml << "            <li>Leandro Lucarella.</li>" << endl;
171                 response_xml << "            <li>Ricardo Markiewicz.</li>" << endl;
172                 response_xml << "        </ul>" << endl;
173                 response_xml << "        <address>" << endl;
174                 response_xml << "             Copyleft 2003 - bajo los " << endl;
175                 response_xml << "             términos de la licencia GPL" << endl;
176                 response_xml << "        </address>" << endl;
177                 response_xml << "    </body>" << endl;
178                 response_xml << "</html>" << endl;
179                 socket << "Content-Length: " << response_xml.str().length() << endl;
180                 socket << endl;
181                 socket << response_xml.str() << flush;
182         }
183 }
184
185 } // namespace Server
186
187 } // namespace PlaQui
188