]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Server/src/tcpserver.cpp
Se borran archivos obsoletos.
[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 const unsigned TCPServer::MAX_PENDING_CONNECTIONS = 10;
41
42 TCPServer::~TCPServer(void) {
43 #ifdef DEBUG
44         cerr << __FILE__ <<  ": destructor." << endl;
45 #endif // DEBUG
46 }
47
48 TCPServer::TCPServer(int port): socket(sockbuf::sock_stream) {
49 #ifdef DEBUG
50         cerr << __FILE__ <<  ": port = " << port << endl;
51 #endif // DEBUG
52         socket.bind(port);
53 #ifdef DEBUG
54         cerr << __FILE__ <<  ": escuchando en " << socket.localhost()
55                 << ":" << socket.localport() << "." << endl;
56 #endif // DEBUG
57         socket.listen(MAX_PENDING_CONNECTIONS);
58 #ifdef DEBUG
59         cerr << __FILE__ <<  ": [despues de listen()] escuchando en "
60                 << socket.localhost() << ":" << socket.localport() << "." << endl;
61 #endif // DEBUG
62 }
63
64 void TCPServer::on_connection_finished(
65                 Connection* connection) {
66 #ifdef DEBUG
67         cerr << __FILE__ <<  ": on_connection_finished(connection = "
68                 << connection << ")" << endl;
69 #endif // DEBUG
70         Glib::Mutex::Lock lock(connections_mutex);
71         connections.remove(connection);
72 #ifdef DEBUG
73         cerr << __FILE__ <<  ": lista de conexiones" << endl;
74         for (ConnectionList::const_iterator i = connections.begin();
75                         i != connections.end(); i++) {
76                 cerr << "\t " << *i << endl;
77         }
78 #endif // DEBUG
79 }
80
81 /// \todo TODO: ver tema de timeout o como salir de un accept().
82 void TCPServer::real_run(void) {
83 #ifdef DEBUG
84         cerr << __FILE__ <<  ": real_run()" << endl;
85 #endif // DEBUG
86         Connection* connection;
87         while (!stop) {
88                 // Forma grasa de salir del accept: crear conexion que salga al toque.
89                 connection = new_connection(socket.accept());
90 #ifdef DEBUG
91                 cerr << __FILE__ <<  ": real_run(): connection = " << connection
92                         << endl;
93 #endif // DEBUG
94                 Glib::Mutex::Lock lock(connections_mutex);
95                 // XXX connections_mutex.lock();
96                 connections.push_back(connection);
97 #ifdef DEBUG
98                 cerr << __FILE__ <<  ": real_run(): lista de conexiones" << endl;
99                 for (ConnectionList::const_iterator i = connections.begin();
100                                 i != connections.end(); i++) {
101                         cerr << "\t " << *i << endl;
102                 }
103 #endif // DEBUG
104                 // XXX connections_mutex.unlock(); // Si pongo el mutex antes del run(),
105                 //                                    muere.
106                 // Conecto la señal para cuando termina una conexión, borrarla.
107                 connection->signal_finished().connect(
108                                 SigC::bind<Connection*>(
109                                         SigC::slot_class(*this,
110                                                 &TCPServer::on_connection_finished),
111                                         connection));
112                 connection->run();
113         }
114 }
115
116 } // namespace Server
117
118 } // namespace PlaQui
119