]> git.mxchange.org Git - simgear.git/blob - simgear/io/sg_socket.hxx
Moved to SimGear.
[simgear.git] / simgear / io / sg_socket.hxx
1 // sg_socket.hxx -- Socket I/O routines
2 //
3 // Written by Curtis Olson, started November 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _SG_SOCKET_HXX
25 #define _SG_SOCKET_HXX
26
27
28 #ifndef __cplusplus
29 # error This library requires C++
30 #endif
31
32 #include <simgear/compiler.h>
33
34 #include <string>
35
36 #include <simgear/math/fg_types.hxx>
37
38 #include "iochannel.hxx"
39
40 FG_USING_STD(string);
41
42
43 #define SG_MAX_SOCKET_QUEUE 32
44
45
46 class SGSocket : public SGIOChannel {
47
48     string hostname;
49     string port_str;
50
51     char save_buf[ 2 * SG_IO_MAX_MSG_SIZE ];
52     int save_len;
53
54     int sock;
55     short unsigned int port;
56
57     // make a server (master listening) socket
58     int make_server_socket();
59
60     // make a client socket
61     int make_client_socket();
62
63     int_list client_connections;
64
65 public:
66
67     SGSocket();
68     ~SGSocket();
69
70     // open the file based on specified direction
71     bool open( SGProtocolDir dir );
72
73     // read data from socket
74     int read( char *buf, int length );
75
76     // read data from socket
77     int readline( char *buf, int length );
78
79     // write data to a socket
80     int write( char *buf, int length );
81
82     // write null terminated string to a socket
83     int writestring( char *str );
84
85     // close file
86     bool close();
87
88     inline string get_hostname() const { return hostname; }
89     inline void set_hostname( const string& hn ) { hostname = hn; }
90     inline string get_port_str() const { return port_str; }
91     inline void set_port_str( const string& p ) { port_str = p; }
92 };
93
94
95 #endif // _SG_SOCKET_HXX
96
97