libt2n: (gerd) fixes & improvements
[libt2n] / src / socket_server.hxx
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"
25
26 namespace libt2n
27 {
28
29 class socket_server : public server
30 {
31     public:
32         enum socket_type_value { tcp_s, unix_s };
33
34     private:
35         int sock;
36         fd_set connection_set;
37         socket_type_value socket_type;
38         std::string unix_path;
39
40         void set_socket_options(int sock);
41         void new_connection();
42
43     public:
44         socket_server(int port, const char* ip="0.0.0.0");
45         socket_server(const char* path, mode_t filemode, const char* user="", const char* group="");
46
47         ~socket_server();
48
49         socket_type_value get_type()
50             { return socket_type; }
51
52         void fill_buffer(long long usec_timeout=-1);
53 };
54
55 class socket_connection : public connection
56 {
57     private:
58         int socket;
59
60         friend void socket_server::fill_buffer(long long usec_timeout);
61         socket_connection(int _socket, int _timeout);
62
63     public:
64
65         void close();
66
67         void fill_buffer(void);
68
69         void write(const std::string& data);
70 };
71
72 }
73
74 #endif