libt2n: (gerd) fixes, new logging concept (not working yet)
[libt2n] / src / server.cpp
1 /***************************************************************************
2  *   Copyright (C) 2006 by Gerd v. Egidy                                   *
3  *   gve@intra2net.com                                                     *
4  *                                                                         *
5  *   This library is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU Lesser General Public License version   *
7  *   2.1 as published by the Free Software Foundation.                     *
8  *                                                                         *
9  *   This library is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU Lesser General Public License for more details.                   *
13  *                                                                         *
14  *   You should have received a copy of the GNU Lesser General Public      *
15  *   License along with this program; if not, write to the                 *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19
20 #include <sstream>
21
22 #include "server.hxx"
23 #include "log.hxx"
24
25 namespace libt2n
26 {
27
28 server_connection::server_connection(int _timeout)
29     : connection()
30 {
31     set_timeout(_timeout);
32     reset_timeout();
33     connection_id=0;
34     my_server=0;
35 }
36
37
38 /// get pointer to logging stream, returns NULL if no logging needed
39 std::ostream* server_connection::get_logstream(log_level_values level)
40 {
41     if (my_server != NULL)
42         return my_server->get_logstream(level);
43 }
44
45 /// check if timeout is expired, close connection if so
46 void server_connection::check_timeout()
47 {
48     if (timeout != -1 && last_action_time+timeout < time(NULL))
49     {
50         LOGSTREAM(debug,"timeout on connection " << connection_id << ", closing");
51         this->close();
52     }
53 }
54
55 /// reset the timeout, e.g. if something is received
56 void server_connection::reset_timeout()
57 {
58     last_action_time=time(NULL);
59 }
60
61 server::server()
62 {
63     set_default_timeout(30);
64     set_logging(NULL,none);
65     next_id=1;
66 }
67
68 server::~server()
69 {
70     std::map<unsigned int, server_connection*>::iterator ie=connections.end();
71     for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie; i++)
72         delete i->second;
73 }
74
75 int server::add_connection(server_connection* newconn)
76 {
77     unsigned int cid=next_id++;
78     newconn->set_id(cid);
79     newconn->set_server(this);
80     connections[cid]=newconn;
81
82     LOGSTREAM(debug,"new connection accepted, id: " << cid);
83
84     return cid;
85 }
86
87 /// activate logging to the given stream. everything above the given level is logged.
88 void server::set_logging(std::ostream *_logstream, log_level_values _log_level)
89 {
90     log_level=_log_level;
91     logstream=_logstream;
92 }
93
94 /**
95     @brief Gets a connection by id
96     
97     @param conn_id Connection ID
98     
99     @retval Pointer to connection object
100 */
101 server_connection* server::get_connection(unsigned int conn_id)
102 {
103     std::map<unsigned int, server_connection*>::iterator p=connections.find(conn_id);
104     if (p==connections.end())
105         return NULL;
106     else
107         return p->second;
108 }
109
110 /// check for timeouts, remove closed connections. don't forget to call this from time to time.
111 void server::cleanup()
112 {
113     std::map<unsigned int, server_connection*>::iterator ie=connections.end();
114     for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie; i++)
115         i->second->check_timeout();
116
117     for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie;)
118     {
119         if (i->second->is_closed() && !i->second->packet_available())
120         {
121             // closed and no usable data in buffer -> remove
122             LOGSTREAM(debug,"removing conneciton " << i->first << " because it is closed and no more data waiting");
123
124             delete i->second;
125             connections.erase(i);
126             i=connections.begin();
127             ie=connections.end();
128         }
129         else
130             i++;
131     }
132 }
133
134 /** @brief get a complete data packet from any client. The packet is removed from the
135             connection buffer.
136     @param[out] data the data package
137     @param[out] conn_id the connection id we got this packet from
138     @retval true if packet found
139 */
140 bool server::get_packet(std::string& data, unsigned int& conn_id)
141 {
142     // todo: this is somehow unfair: the first connections in the map get checked more
143     // often than the others and can thus block them out
144
145     std::map<unsigned int, server_connection*>::iterator ie=connections.end();
146     for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie; i++)
147         if (i->second->get_packet(data))
148         {
149             LOGSTREAM(debug,"got packet (" << data.size() << " bytes) from connection " << i->first);
150
151             conn_id=i->first;
152             return true;
153         }
154
155     return false;
156 }
157
158 /// get pointer to logging stream, returns NULL if no logging needed
159 std::ostream* server::get_logstream(log_level_values level)
160 {
161     if (logstream && level >= log_level)
162         return logstream;
163 }
164 };