]> git.mxchange.org Git - simgear.git/blob - simgear/io/raw_socket.hxx
Copy constructor and assignment operator for revised IPAddress
[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 struct sockaddr_in;
33 struct sockaddr;
34      
35 namespace simgear
36 {
37
38 /*
39  * Socket address, internet style.
40  */
41 class IPAddress
42 {
43     struct sockaddr_in* addr;
44 public:
45   IPAddress () : addr(0) {}
46   IPAddress ( const char* host, int port ) ;
47   ~IPAddress();
48   
49   IPAddress( const IPAddress& other );
50   const IPAddress& operator=(const IPAddress& other);
51
52   void set ( const char* host, int port ) ;
53   const char* getHost () const ;
54   unsigned int getPort() const ;
55   unsigned int getIP () const ;
56   unsigned int getFamily () const ;
57   static const char* getLocalHost () ;
58
59   bool getBroadcast () const ;
60   
61   unsigned int getAddrLen() const;
62   sockaddr* getAddr() const;
63 };
64
65
66 /*
67  * Socket type
68  */
69 class Socket
70 {
71   int handle ;
72
73 public:
74   
75   Socket () ;
76   virtual ~Socket () ;
77
78   static int initSockets();
79
80   int getHandle () const { return handle; }
81   void setHandle (int handle) ;
82   
83   bool  open        ( bool stream=true ) ;
84   void  close       ( void ) ;
85   int   bind        ( const char* host, int port ) ;
86   int   listen      ( int backlog ) ;
87   int   accept      ( IPAddress* addr ) ;
88   int   connect     ( const char* host, int port ) ;
89   int   connect     ( IPAddress* addr ) ;
90   int   send        ( const void * buffer, int size, int flags = 0 ) ;
91   int   sendto      ( const void * buffer, int size, int flags, const IPAddress* to ) ;
92   int   recv        ( void * buffer, int size, int flags = 0 ) ;
93   int   recvfrom    ( void * buffer, int size, int flags, IPAddress* from ) ;
94
95   void setBlocking ( bool blocking ) ;
96   void setBroadcast ( bool broadcast ) ;
97
98   static bool isNonBlockingError () ;
99   
100   static int select ( Socket** reads, Socket** writes, int timeout ) ;
101 } ;
102
103 //const char* netFormat ( const char* fmt, ... ) ;
104
105 } // of namespace simgear
106
107 #endif // SG_IO_SOCKET_HXX
108