]> git.mxchange.org Git - simgear.git/blob - simgear/io/sg_socket.hxx
Tweaks to SGSocket.
[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     int sock_style;                     // SOCK_STREAM or SOCK_DGRAM
57
58     // make a server (master listening) socket
59     int make_server_socket();
60
61     // make a client socket
62     int make_client_socket();
63
64     // int_list client_connections;
65
66 public:
67
68     SGSocket( const string& host, const string& port, const string& style );
69     ~SGSocket();
70
71     // If specified as a server (in direction for now) open the master
72     // listening socket.  If specified as a client (out direction),
73     // open a connection to a server.
74     bool open( SGProtocolDir dir );
75
76     // read data from socket
77     int read( char *buf, int length );
78
79     // read data from socket
80     int readline( char *buf, int length );
81
82     // write data to a socket
83     int write( char *buf, int length );
84
85     // write null terminated string to a socket
86     int writestring( char *str );
87
88     // close file
89     bool close();
90
91     inline string get_hostname() const { return hostname; }
92     inline string get_port_str() const { return port_str; }
93 };
94
95
96 #endif // _SG_SOCKET_HXX
97
98