ca2f03cbdfa88168bdc0e7f5b44819f8e8ffbc4f
[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 { tcp, unix };
33
34     private:
35         int socket;
36         fd_set connection_set;
37         socket_type type;
38         string unix_path;
39
40     public:
41         socket_server(int port, const char* ip="0.0.0.0");
42         socket_server(const char* path, mode_t chmod, const char* user="", const char* group="");
43
44         ~socket_server();
45
46         socket_type get_type()
47             { return type; }
48
49         void fill_buffer(long long usec_timeout=-1);
50 };
51
52 class socket_connection : public connection
53 {
54     private:
55         int socket;
56
57         friend void socket_server::fill_buffer(long long usec_timeout);
58         socket_connection(int _socket, int _timeout);
59
60     public:
61
62         void close();
63
64         void fill_buffer(void);
65
66         void write(const std::string& data);
67 };
68
69 }
70
71 #endif