libt2n: (gerd) fix & improve logging
[libt2n] / src / server.cpp
CommitLineData
ac7fdc22
GE
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
aa499d20
GE
20#include <sstream>
21
ac7fdc22 22#include "server.hxx"
a7170401 23#include "log.hxx"
ac7fdc22
GE
24
25namespace libt2n
26{
27
a7170401
GE
28server_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
39std::ostream* server_connection::get_logstream(log_level_values level)
40{
41 if (my_server != NULL)
d535333f
GE
42 {
43 std::ostream* ostr=my_server->get_logstream(level);
44 if (ostr != NULL)
45 (*ostr) << "connection " << get_id() << ": ";
46 return ostr;
47 }
48 else
49 return NULL;
a7170401
GE
50}
51
52/// check if timeout is expired, close connection if so
a11e19b7 53void server_connection::check_timeout()
ac7fdc22 54{
a7170401
GE
55 if (timeout != -1 && last_action_time+timeout < time(NULL))
56 {
57 LOGSTREAM(debug,"timeout on connection " << connection_id << ", closing");
ac7fdc22 58 this->close();
a7170401 59 }
ac7fdc22
GE
60}
61
a7170401 62/// reset the timeout, e.g. if something is received
a11e19b7 63void server_connection::reset_timeout()
ac7fdc22
GE
64{
65 last_action_time=time(NULL);
66}
67
a7170401
GE
68server::server()
69{
70 set_default_timeout(30);
71 set_logging(NULL,none);
72 next_id=1;
73}
74
ac7fdc22
GE
75server::~server()
76{
a11e19b7
GE
77 std::map<unsigned int, server_connection*>::iterator ie=connections.end();
78 for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie; i++)
ac7fdc22
GE
79 delete i->second;
80}
81
a11e19b7 82int server::add_connection(server_connection* newconn)
04e6b271 83{
aa499d20
GE
84 unsigned int cid=next_id++;
85 newconn->set_id(cid);
86 newconn->set_server(this);
87 connections[cid]=newconn;
a7170401
GE
88
89 LOGSTREAM(debug,"new connection accepted, id: " << cid);
90
aa499d20 91 return cid;
04e6b271
GE
92}
93
a7170401
GE
94/// activate logging to the given stream. everything above the given level is logged.
95void server::set_logging(std::ostream *_logstream, log_level_values _log_level)
96{
97 log_level=_log_level;
98 logstream=_logstream;
99}
100
59adb9e2 101/**
94247295 102 @brief Gets a connection by id
59adb9e2 103
94247295 104 @param conn_id Connection ID
59adb9e2 105
94247295 106 @retval Pointer to connection object
59adb9e2 107*/
a11e19b7 108server_connection* server::get_connection(unsigned int conn_id)
ac7fdc22 109{
a11e19b7 110 std::map<unsigned int, server_connection*>::iterator p=connections.find(conn_id);
ac7fdc22
GE
111 if (p==connections.end())
112 return NULL;
113 else
114 return p->second;
115}
116
94247295 117/// check for timeouts, remove closed connections. don't forget to call this from time to time.
a11e19b7 118void server::cleanup()
ac7fdc22 119{
a11e19b7
GE
120 std::map<unsigned int, server_connection*>::iterator ie=connections.end();
121 for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie; i++)
ac7fdc22 122 i->second->check_timeout();
a11e19b7
GE
123
124 for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie;)
125 {
126 if (i->second->is_closed() && !i->second->packet_available())
127 {
128 // closed and no usable data in buffer -> remove
a7170401
GE
129 LOGSTREAM(debug,"removing conneciton " << i->first << " because it is closed and no more data waiting");
130
a11e19b7
GE
131 delete i->second;
132 connections.erase(i);
133 i=connections.begin();
134 ie=connections.end();
135 }
136 else
137 i++;
138 }
ac7fdc22
GE
139}
140
a7170401
GE
141/** @brief get a complete data packet from any client. The packet is removed from the
142 connection buffer.
143 @param[out] data the data package
144 @param[out] conn_id the connection id we got this packet from
145 @retval true if packet found
146*/
ac7fdc22
GE
147bool server::get_packet(std::string& data, unsigned int& conn_id)
148{
149 // todo: this is somehow unfair: the first connections in the map get checked more
150 // often than the others and can thus block them out
151
a11e19b7
GE
152 std::map<unsigned int, server_connection*>::iterator ie=connections.end();
153 for(std::map<unsigned int, server_connection*>::iterator i=connections.begin(); i != ie; i++)
154 if (i->second->get_packet(data))
155 {
a7170401
GE
156 LOGSTREAM(debug,"got packet (" << data.size() << " bytes) from connection " << i->first);
157
a11e19b7 158 conn_id=i->first;
ac7fdc22 159 return true;
a11e19b7
GE
160 }
161
162 return false;
ac7fdc22
GE
163}
164
a7170401
GE
165/// get pointer to logging stream, returns NULL if no logging needed
166std::ostream* server::get_logstream(log_level_values level)
ac7fdc22 167{
d535333f 168 if (logstream && log_level >= level)
a7170401 169 return logstream;
d535333f
GE
170 else
171 return NULL;
ac7fdc22 172}
ac7fdc22 173};