]> git.mxchange.org Git - simgear.git/blob - simgear/io/raw_socket.hxx
1af74ce0e8d946baaeda685d84c748fbb3705ec7
[simgear.git] / simgear / io / raw_socket.hxx
1 /*
2      simgear::Socket, adapted from PLIB netSocket by James Turner
3      Copyright (C) 2010  James Turner
4      
5      PLIB - A Suite of Portable Game Libraries
6      Copyright (C) 1998,2002  Steve Baker
7  
8      This library is free software; you can redistribute it and/or
9      modify it under the terms of the GNU Library General Public
10      License as published by the Free Software Foundation; either
11      version 2 of the License, or (at your option) any later version.
12  
13      This library is distributed in the hope that it will be useful,
14      but WITHOUT ANY WARRANTY; without even the implied warranty of
15      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16      Library General Public License for more details.
17  
18      You should have received a copy of the GNU Library General Public
19      License along with this library; if not, write to the Free Software
20      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 */
22
23 #ifndef SG_IO_SOCKET_HXX
24 #define SG_IO_SOCKET_HXX
25
26 #include <errno.h>
27
28 #if defined(__APPLE__) || defined(__FreeBSD__)
29 #  include <netinet/in.h>
30 #endif
31
32 namespace simgear
33 {
34
35 /*
36  * Socket address, internet style.
37  */
38 class IPAddress
39 {
40 public:
41   IPAddress () {}
42   IPAddress ( const char* host, int port ) ;
43   IPAddress ( struct sockaddr* addr, size_t len );
44   
45   void set ( const char* host, int port ) ;
46   const char* getHost () const ;
47   unsigned int getPort() const ;
48   unsigned int getIP () const ;
49   unsigned int getFamily () const ;
50   static const char* getLocalHost () ;
51
52   bool getBroadcast () const ;
53   
54   void setPort(unsigned int port);
55   const struct sockaddr_in* getAddress() const
56       { return &_raw; }
57       
58   const size_t getAddressSize() const
59       { return sizeof(struct sockaddr_in); }
60 private:
61     struct sockaddr_in _raw;
62 };
63
64
65 /*
66  * Socket type
67  */
68 class Socket
69 {
70   int handle ;
71
72 public:
73   
74   Socket () ;
75   virtual ~Socket () ;
76
77   static int initSockets();
78
79   int getHandle () const { return handle; }
80   void setHandle (int handle) ;
81   
82   bool  open        ( bool stream=true ) ;
83   void  close       ( void ) ;
84   int   bind        ( const char* host, int port ) ;
85   int   listen      ( int backlog ) ;
86   int   accept      ( IPAddress* addr ) ;
87   int   connect     ( const char* host, int port ) ;
88   int   connect     ( const IPAddress& addr ) ;
89   int   send        ( const void * buffer, int size, int flags = 0 ) ;
90   int   sendto      ( const void * buffer, int size, int flags, const IPAddress* to ) ;
91   int   recv        ( void * buffer, int size, int flags = 0 ) ;
92   int   recvfrom    ( void * buffer, int size, int flags, IPAddress* from ) ;
93
94   void setBlocking ( bool blocking ) ;
95   void setBroadcast ( bool broadcast ) ;
96
97   static bool isNonBlockingError () ;
98   
99   static int select ( Socket** reads, Socket** writes, int timeout ) ;
100 } ;
101
102 //const char* netFormat ( const char* fmt, ... ) ;
103
104 } // of namespace simgear
105
106 #endif // SG_IO_SOCKET_HXX
107