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