libt2n: (gerd) small improvements, resolve doxygen conflicts
[libt2n] / src / server.hxx
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#ifndef __LIBT2N_SERVER
20#define __LIBT2N_SERVER
21
22#include <iostream>
23#include <string>
24#include <map>
25
26namespace libt2n
27{
28
59adb9e2
TJ
29/**
30 Basic connection class
31*/
ac7fdc22
GE
32class connection
33{
34 private:
35 int timeout;
36 int last_action_time;
37 bool closed;
38 std::string buffer;
39
40 protected:
41 connection(int _timeout)
42 {
43 set_timeout(_timeout);
44 reset_timeout();
45 closed=false;
46 }
47
48 public:
49 ~connection()
50 { this->close(); }
51
52 void check_timeout();
53 void reset_timeout();
54 void set_timeout(int _timeout)
55 { timeout=_timeout; }
56
57 bool is_closed()
58 { return closed; }
59
60 virtual void close()
61 { closed=true; }
62
63 virtual void fill_buffer(void)=0;
64
65 bool get_packet(std::string& data, unsigned int& conn_id);
66 virtual void write(const std::string& data)=0;
67};
68
59adb9e2
TJ
69/**
70 Basic server class
71*/
ac7fdc22
GE
72class server
73{
74 public:
75 enum log_level_values { none=0, error=1, debug=2 };
76
77 private:
78 int default_timeout;
79 log_level_values log_level;
80 std::ostream *logstream;
81
82 unsigned int next_id;
83 std::map<unsigned int, connection*> connections;
84
85 protected:
86 server()
87 {
88 set_default_timeout(30);
89 set_logging(NULL,none);
90 next_id=0;
91 }
92
04e6b271
GE
93 int add_connection(connection* newconn);
94
ac7fdc22
GE
95 public:
96 virtual ~server();
97
98 void set_default_timeout(int _default_timeout)
99 { default_timeout=_default_timeout; }
04e6b271
GE
100 int get_default_timeout(void)
101 { return default_timeout; }
ac7fdc22
GE
102
103 void set_logging(std::ostream *_logstream, log_level_values _log_level)
104 {
105 log_level=_log_level;
106 logstream=_logstream;
107 }
108
109 connection* get_connection(unsigned int conn_id);
110
111 virtual void fill_buffer(long long usec_timeout=-1)=0;
112 void check_timeout();
113
114 bool get_packet(std::string& data, unsigned int& conn_id);
115
0cf4dc9b
GE
116 void fill_connection_buffers(void);
117
ac7fdc22 118 protected:
0cf4dc9b
GE
119 void log(log_level_values level, const std::string& message)
120 { log(level,message.c_str()); }
ac7fdc22
GE
121 void log(log_level_values level, const char* message);
122};
123
124}
125
126#endif