]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/controlserver.cpp
Varios cambios:
[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__ << "(" << __LINE__ << ")"
48                 << ": destructor." << endl;
49 #endif // DEBUG
50 }
51
52 ControlServer::ControlServer(const sockbuf::sockdesc& sd):
53                 Connection(sd) {
54 #ifdef DEBUG
55         cerr << __FILE__ << "(" << __LINE__ << ")"
56                 << ": sd = " << sd.sock << endl;
57 #endif // DEBUG
58 }
59
60 void ControlServer::real_run(void) {
61 #ifdef DEBUG
62         cerr << __FILE__ << "(" << __LINE__ << ")"
63                 << ": real_run()" << endl;
64 #endif // DEBUG
65         //char buf[BUFSIZ];
66         while (!stop()) {
67                 Command command;
68                 try {
69                         //Glib::Mutex::Lock lock(socket_mutex);
70                         socket >> command;
71                 } catch (const ios::failure& e) {
72                         // TODO poner buenos codigos de error.
73                         signal_error().emit(1000000, "Se desconectó.");
74                         return;
75                 } catch (const sockerr& e) {
76                         signal_error().emit(e.serrno(), e.errstr());
77                         return;
78                 // Si se cerró el socket.
79                 //} catch (const ios::failure& e) {
80                 //      stop = true;
81                 //      continue;
82                 // Si hay un error al parsear el comando, se envia una respuesta con el
83                 // error.
84                 } catch (const HTTPError& e) {
85 #ifdef DEBUG
86                         cerr << __FILE__ << "(" << __LINE__ << ")"
87                                 << " : real_run() ERROR: status_code = "
88                                 << e.code << " | reason = " << HTTPMessage::reason(e.code)
89                                 << " | desc = " << e.what() << endl;
90 #endif // DEBUG
91                         //Glib::Mutex::Lock lock(socket_mutex);
92                         socket << HTTPResponse(e) << flush;
93                         continue;
94                 }
95                 // TODO agregar las verificaciones de abajo a HTTPRequest y padres.
96                 // Actualizacion: Estoy usando trim() en casi todos lados, no debería
97                 // ser necesario.
98 /*
99                 // Primera línea no vacía (que debe ser el request).
100                 bool is_first = true;
101                 while (!stop && socket.getline(buf, BUFSIZ)) {
102 #ifdef DEBUG
103                         cerr << __FILE__ << "(" << __LINE__ << ")"
104                         << "  Recibiendo inea: " << buf << endl;
105 #endif // DEBUG
106                         int len = strlen(buf);
107                         // Si tiene un retorno de carro, lo elimina.
108                         if (len && (buf[len-1] == '\r')) {
109                                 buf[--len] = '\0';
110                         }
111                         // Si tiene contenido, lo agrego a la información del request.
112                         if (len) {
113                                 // Si es la primera línea, es el request.
114                                 if (is_first) {
115                                         request.set_request(buf, socket->peerhost(),
116                                                         socket->peerport());
117                                         is_first = false;
118                                 } else {
119                                         // TODO request.parse_header(buf);
120                                 }
121                         // Si viene la línea vacía
122                         } else {
123                                 // Si no es la primera, terminan las cabeceras HTTP.
124                                 if (!is_first) {
125                                         // Podría ir un break.
126                                         stop = true;
127                                         continue;
128                                 }
129                                 // Si es la primera, no pasa nada, sigue esperando un request.
130                         }
131                 }
132 */
133 #ifdef DEBUG
134                 cerr << __FILE__ << "(" << __LINE__ << ")"
135                         << " : real_run() Despachando comando: target = "
136                         << command.get_target() << " | command = " << command.get_command()
137                         << " | args = [" << String::join(command.get_args(), ", ") << "]"
138                         << endl;
139 #endif // DEBUG
140                 // Manda el comando.
141                 command_received(command);
142         }
143 }
144
145 void ControlServer::send(const HTTPResponse& response) {
146         //Glib::Mutex::Lock lock(socket_mutex);
147         socket << response << flush;
148 #ifdef DEBUG
149         cerr << __FILE__ << "(" << __LINE__ << ")"
150                 << ": send() Enviado!" << endl;
151 #endif // DEBUG
152 }
153
154 ControlServer::SignalCommandReceived& ControlServer::signal_command_received(void) {
155         return command_received;
156 }
157
158 } // namespace Server
159
160 } // namespace PlaQui
161