]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/tcpserver.cpp
Se arregla un bug y se ponen caudales > 0 en el ejemplo :)
[z.facultad/75.42/plaqui.git] / Server / src / tcpserver.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/tcpserver.h"
29 #include <sigc++/class_slot.h>
30 #ifdef DEBUG
31 #       include <iostream>
32 #endif // DEBUG
33
34 using namespace std;
35
36 namespace PlaQui {
37
38 namespace Server {
39
40 TCPServer::~TCPServer(void) {
41 #ifdef DEBUG
42         cerr << __FILE__ << "(" << __LINE__ << ")"
43                 <<  ": destructor." << endl;
44 #endif // DEBUG
45         Glib::Mutex::Lock lock(connections_mutex);
46         for (ConnectionList::iterator con = connections.begin();
47                         con != connections.end(); con++) {
48                 (*con)->finish(true);
49         }
50 }
51
52 TCPServer::TCPServer(const Connection::Port& port) throw(sockerr):
53                 socket(sockbuf::sock_stream) {
54 #ifdef DEBUG
55         cerr << __FILE__ << "(" << __LINE__ << ")"
56                 <<  ": port = " << port << endl;
57 #endif // DEBUG
58         // FIXME
59         //cerr << "recvtimeout = " << socket.recvtimeout(1) << endl;
60         //cerr << "sendtimeout = " << socket.sendtimeout(1) << endl;
61         //cerr << "recvtimeout = " << socket.recvtimeout(1) << endl;
62         //cerr << "sendtimeout = " << socket.sendtimeout(1) << endl;
63         socket.bind(port);
64 #ifdef DEBUG
65         cerr << __FILE__ << "(" << __LINE__ << ")"
66                 <<  ": escuchando en " << socket.localhost()
67                 << ":" << socket.localport() << "." << endl;
68 #endif // DEBUG
69         socket.listen(MAX_PENDING_CONNECTIONS);
70 #ifdef DEBUG
71         cerr << __FILE__ << "(" << __LINE__ << ")"
72                 <<  ": [despues de listen()] escuchando en "
73                 << socket.localhost() << ":" << socket.localport() << "." << endl;
74 #endif // DEBUG
75 }
76
77 /*void TCPServer::finish(bool attach) {
78         //socket_mutex.lock();
79         socket.shutdown(sockbuf::shut_readwrite);
80         //socket_mutex.unlock();
81         Runnable::finish(attach);
82 }*/
83
84 void TCPServer::on_connection_finished(Connection* connection) {
85 #ifdef DEBUG
86         cerr << __FILE__ << "(" << __LINE__ << ")"
87                 <<  ": on_connection_finished(connection = "
88                 << connection << ")" << endl;
89 #endif // DEBUG
90         Glib::Mutex::Lock lock(connections_mutex);
91         connections.remove(connection);
92 #ifdef DEBUG
93         cerr << __FILE__ << "(" << __LINE__ << ")"
94                 <<  ": lista de conexiones" << endl;
95         for (ConnectionList::const_iterator i = connections.begin();
96                         i != connections.end(); i++) {
97                 cerr << "\t " << *i << endl;
98         }
99 #endif // DEBUG
100 }
101
102 /// \todo TODO: ver tema de timeout o como salir de un accept().
103 void TCPServer::real_run(void) {
104 #ifdef DEBUG
105         cerr << __FILE__ << "(" << __LINE__ << ")"
106                 <<  ": real_run()" << endl;
107 #endif // DEBUG
108         Connection* connection;
109         while (!stop) {
110                 // Forma grasa de salir del accept: crear conexion que salga al toque.
111                 try {
112                         connection = new_connection(socket.accept());
113                 } catch (const sockerr& e) { // No se si el accept() puede fallar.
114                         error(e.serrno(), e.errstr());
115                         continue; // Supongo que puede seguir aceptando conexiones.
116                 }
117 #ifdef DEBUG
118                 cerr << __FILE__ << "(" << __LINE__ << ")"
119                         <<  ": real_run(): connection = " << connection
120                         << endl;
121 #endif // DEBUG
122                 Glib::Mutex::Lock lock(connections_mutex);
123                 // XXX connections_mutex.lock();
124                 connections.push_back(connection);
125 #ifdef DEBUG
126                 cerr << __FILE__ << "(" << __LINE__ << ")"
127                         <<  ": real_run(): lista de conexiones" << endl;
128                 for (ConnectionList::const_iterator i = connections.begin();
129                                 i != connections.end(); i++) {
130                         cerr << "\t " << *i << endl;
131                 }
132 #endif // DEBUG
133                 // XXX connections_mutex.unlock(); // Si pongo el mutex antes del run(),
134                 //                                    muere.
135                 // Conecto la señal para cuando termina una conexión, borrarla.
136                 connection->signal_finished().connect(
137                                 SigC::bind<Connection*>(
138                                         SigC::slot_class(*this,
139                                                 &TCPServer::on_connection_finished),
140                                         connection));
141                 connection->run();
142         }
143 }
144
145 bool TCPServer::disconnect(const std::string& host, const Connection::Port& port) {
146 #ifdef DEBUG
147         cerr << __FILE__ << "(" << __LINE__ << ")"
148                 <<  ": disconnect(host = " << host
149                 << ", port = " << port << ")" << endl;
150 #endif // DEBUG
151         Glib::Mutex::Lock lock(connections_mutex);
152         for (ConnectionList::iterator con = connections.begin();
153                         con != connections.end(); con++) {
154                 if (((*con)->get_host() == host) && ((*con)->get_port() == port)) {
155                         (*con)->finish();
156                         return true;
157                 }
158         }
159         return false;
160 }
161
162 /// \todo TODO Hay que reemplazarlo por una lista generica.
163 TCPServer::ConnectionInfoList TCPServer::get_connected(void) {
164 #ifdef DEBUG
165         cerr << __FILE__ << "(" << __LINE__ << ")"
166                 <<  ": get_connected()" << endl;
167 #endif // DEBUG
168         TCPServer::ConnectionInfoList cl;
169         Glib::Mutex::Lock lock(connections_mutex);
170         for (ConnectionList::const_iterator con = connections.begin();
171                         con != connections.end(); con++) {
172                 TCPServer::ConnectionInfo ci =
173                         { (*con)->get_host(), (*con)->get_port() };
174                 cl.push_back(ci);
175         }
176         return cl;
177 }
178
179 } // namespace Server
180
181 } // namespace PlaQui
182