libt2n: (gerd) refactored connection classes
[libt2n] / src / socket_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_SOCKET_SERVER
20#define __LIBT2N_SOCKET_SERVER
21
22#include <sys/types.h>
23
24#include "server.hxx"
a11e19b7
GE
25#include "socket_handler.hxx"
26#include "types.hxx"
ac7fdc22
GE
27
28namespace libt2n
29{
30
59adb9e2
TJ
31/**
32 Socket based server class
33*/
a11e19b7 34class socket_server : public socket_handler, server
ac7fdc22 35{
ac7fdc22 36 private:
ac7fdc22 37 fd_set connection_set;
0cf4dc9b
GE
38 std::string unix_path;
39
0cf4dc9b 40 void new_connection();
ac7fdc22 41
a11e19b7
GE
42 protected:
43 void log(log_level_values level, const std::string& message)
44 { log(level,message.c_str()); }
45 void log(log_level_values level, const char* message)
46 { server::log(level,message); }
47
ac7fdc22
GE
48 public:
49 socket_server(int port, const char* ip="0.0.0.0");
0cf4dc9b 50 socket_server(const char* path, mode_t filemode, const char* user="", const char* group="");
ac7fdc22
GE
51
52 ~socket_server();
53
ac7fdc22 54 void fill_buffer(long long usec_timeout=-1);
aa499d20 55 void fill_connection_buffers();
a11e19b7
GE
56
57 void remove_connection_socket(int sock);
ac7fdc22
GE
58};
59
59adb9e2
TJ
60/**
61 Socket based connection class
62*/
a11e19b7 63class socket_server_connection : public socket_handler, server_connection
ac7fdc22 64{
04e6b271
GE
65 friend class socket_server;
66
ac7fdc22 67 private:
a11e19b7
GE
68 socket_server_connection(int _sock, socket_type_value _stype, int _timeout)
69 : server_connection(_timeout), socket_handler(_sock,_stype)
70 { }
aa499d20 71
a11e19b7
GE
72 void log(log_level_values level, const char* message)
73 { if(my_server) my_server->log(level,message); }
ac7fdc22 74
a11e19b7
GE
75 void real_write(const std::string& data)
76 { socket_handler::write(data); }
ac7fdc22
GE
77
78 public:
a11e19b7
GE
79 void fill_buffer(long long usec_timeout=-1)
80 { socket_handler::fill_buffer(buffer,usec_timeout); }
ac7fdc22
GE
81
82 void close();
ac7fdc22
GE
83};
84
85}
86
87#endif