1 /* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket)
4 * Author: Guilhem Lavaux
5 * Guillermo Rodriguez Garcia <guille@iies.es> (maintainer)
6 * Purpose: GSocket include file (system independent)
8 * -------------------------------------------------------------------------
14 /* DFE: Define this and compile gsocket.cpp instead of gsocket.c and
15 compile existing GUI gsock*.c as C++ to try out the new GSocket. */
16 /* #define wxUSE_GSOCKET_CPLUSPLUS 1 */
17 #undef wxUSE_GSOCKET_CPLUSPLUS
18 #if !defined(__cplusplus) && defined(wxUSE_GSOCKET_CPLUSPLUS)
19 #error "You need to compile this file (probably a GUI gsock peice) as C++"
22 #ifndef __GSOCKET_STANDALONE__
24 #include "wx/platform.h"
26 #include "wx/dlimpexp.h" /* for WXDLLIMPEXP_NET */
30 #if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
35 Including sys/types.h under cygwin results in the warnings about "fd_set
36 having been defined in sys/types.h" when winsock.h is included later and
37 doesn't seem to be necessary anyhow. It's not needed under Mac neither.
39 #if !defined(__WXMAC__) && !defined(__CYGWIN__) && !defined(__WXWINCE__)
40 #include <sys/types.h>
47 #ifdef wxUSE_GSOCKET_CPLUSPLUS
48 typedef class GSocketBSD GSocket
;
55 #ifndef wxUSE_GSOCKET_CPLUSPLUS
56 typedef struct _GSocket GSocket
;
58 typedef struct _GAddress GAddress
;
85 /* See below for an explanation on how events work.
96 GSOCK_INPUT_FLAG
= 1 << GSOCK_INPUT
,
97 GSOCK_OUTPUT_FLAG
= 1 << GSOCK_OUTPUT
,
98 GSOCK_CONNECTION_FLAG
= 1 << GSOCK_CONNECTION
,
99 GSOCK_LOST_FLAG
= 1 << GSOCK_LOST
102 typedef int GSocketEventFlags
;
104 typedef void (*GSocketCallback
)(GSocket
*socket
, GSocketEvent event
,
108 /* Functions tables for internal use by GSocket code: */
111 struct GSocketBaseFunctionsTable
113 void (*Detected_Read
)(GSocket
*socket
);
114 void (*Detected_Write
)(GSocket
*socket
);
118 struct GSocketGUIFunctionsTable
120 int (*GUI_Init
)(void);
121 void (*GUI_Cleanup
)(void);
122 int (*GUI_Init_Socket
)(GSocket
*socket
);
123 void (*GUI_Destroy_Socket
)(GSocket
*socket
);
125 void (*Install_Callback
)(GSocket
*socket
, GSocketEvent event
);
126 void (*Uninstall_Callback
)(GSocket
*socket
, GSocketEvent event
);
128 void (*Enable_Events
)(GSocket
*socket
);
129 void (*Disable_Events
)(GSocket
*socket
);
133 /* Global initializers */
135 /* Sets GUI functions callbacks. Must be called *before* GSocket_Init
136 if the app uses async sockets. */
137 void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable
*guifunc
);
139 /* GSocket_Init() must be called at the beginning */
140 int GSocket_Init(void);
142 /* GSocket_Cleanup() must be called at the end */
143 void GSocket_Cleanup(void);
146 /* Constructors / Destructors */
148 GSocket
*GSocket_new(void);
149 void GSocket_destroy(GSocket
*socket
);
152 #ifndef wxUSE_GSOCKET_CPLUSPLUS
155 * Disallow further read/write operations on this socket, close
156 * the fd and disable all callbacks.
158 void GSocket_Shutdown(GSocket
*socket
);
160 /* Address handling */
166 * Set or get the local or peer address for this socket. The 'set'
167 * functions return GSOCK_NOERROR on success, an error code otherwise.
168 * The 'get' functions return a pointer to a GAddress object on success,
169 * or NULL otherwise, in which case they set the error code of the
170 * corresponding GSocket.
173 * GSOCK_INVSOCK - the socket is not valid.
174 * GSOCK_INVADDR - the address is not valid.
176 GSocketError
GSocket_SetLocal(GSocket
*socket
, GAddress
*address
);
177 GSocketError
GSocket_SetPeer(GSocket
*socket
, GAddress
*address
);
178 GAddress
*GSocket_GetLocal(GSocket
*socket
);
179 GAddress
*GSocket_GetPeer(GSocket
*socket
);
181 /* Server specific parts */
183 /* GSocket_SetServer:
184 * Sets up this socket as a server. The local address must have been
185 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
186 * Returns GSOCK_NOERROR on success, one of the following otherwise:
189 * GSOCK_INVSOCK - the socket is in use.
190 * GSOCK_INVADDR - the local address has not been set.
191 * GSOCK_IOERR - low-level error.
193 GSocketError
GSocket_SetServer(GSocket
*socket
);
195 /* GSocket_WaitConnection:
196 * Waits for an incoming client connection. Returns a pointer to
197 * a GSocket object, or NULL if there was an error, in which case
198 * the last error field will be updated for the calling GSocket.
200 * Error codes (set in the calling GSocket)
201 * GSOCK_INVSOCK - the socket is not valid or not a server.
202 * GSOCK_TIMEDOUT - timeout, no incoming connections.
203 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
204 * GSOCK_MEMERR - couldn't allocate memory.
205 * GSOCK_IOERR - low-level error.
207 GSocket
*GSocket_WaitConnection(GSocket
*socket
);
210 /* Client specific parts */
213 * For stream (connection oriented) sockets, GSocket_Connect() tries
214 * to establish a client connection to a server using the peer address
215 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
216 * connection has been succesfully established, or one of the error
217 * codes listed below. Note that for nonblocking sockets, a return
218 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
219 * request can be completed later; you should use GSocket_Select()
220 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
221 * corresponding asynchronous events.
223 * For datagram (non connection oriented) sockets, GSocket_Connect()
224 * just sets the peer address established with GSocket_SetPeer() as
225 * default destination.
228 * GSOCK_INVSOCK - the socket is in use or not valid.
229 * GSOCK_INVADDR - the peer address has not been established.
230 * GSOCK_TIMEDOUT - timeout, the connection failed.
231 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
232 * GSOCK_MEMERR - couldn't allocate memory.
233 * GSOCK_IOERR - low-level error.
235 GSocketError
GSocket_Connect(GSocket
*socket
, GSocketStream stream
);
238 /* Datagram sockets */
240 /* GSocket_SetNonOriented:
241 * Sets up this socket as a non-connection oriented (datagram) socket.
242 * Before using this function, the local address must have been set
243 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
244 * on success, or one of the following otherwise.
247 * GSOCK_INVSOCK - the socket is in use.
248 * GSOCK_INVADDR - the local address has not been set.
249 * GSOCK_IOERR - low-level error.
251 GSocketError
GSocket_SetNonOriented(GSocket
*socket
);
256 /* Like recv(), send(), ... */
258 /* For datagram sockets, the incoming / outgoing addresses
259 * are stored as / read from the 'peer' address field.
261 int GSocket_Read(GSocket
*socket
, char *buffer
, int size
);
262 int GSocket_Write(GSocket
*socket
, const char *buffer
,
266 * Polls the socket to determine its status. This function will
267 * check for the events specified in the 'flags' parameter, and
268 * it will return a mask indicating which operations can be
269 * performed. This function won't block, regardless of the
270 * mode (blocking | nonblocking) of the socket.
272 GSocketEventFlags
GSocket_Select(GSocket
*socket
, GSocketEventFlags flags
);
277 /* GSocket_SetNonBlocking:
278 * Sets the socket to non-blocking mode. All IO calls will return
281 void GSocket_SetNonBlocking(GSocket
*socket
, int non_block
);
283 /* GSocket_SetTimeout:
284 * Sets the timeout for blocking calls. Time is expressed in
287 void GSocket_SetTimeout(GSocket
*socket
, unsigned long millisec
);
289 #endif /* ndef wxUSE_GSOCKET_CPLUSPLUS */
292 * Returns the last error occured for this socket. Note that successful
293 * operations do not clear this back to GSOCK_NOERROR, so use it only
296 GSocketError WXDLLIMPEXP_NET
GSocket_GetError(GSocket
*socket
);
298 #ifndef wxUSE_GSOCKET_CPLUSPLUS
303 * There is data to be read in the input buffer. If, after a read
304 * operation, there is still data available, the callback function will
307 * The socket is available for writing. That is, the next write call
308 * won't block. This event is generated only once, when the connection is
309 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
310 * when the output buffer empties again. This means that the app should
311 * assume that it can write since the first OUTPUT event, and no more
312 * OUTPUT events will be generated unless an error occurs.
314 * Connection succesfully established, for client sockets, or incoming
315 * client connection, for server sockets. Wait for this event (also watch
316 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
318 * The connection is lost (or a connection request failed); this could
319 * be due to a failure, or due to the peer closing it gracefully.
322 /* GSocket_SetCallback:
323 * Enables the callbacks specified by 'flags'. Note that 'flags'
324 * may be a combination of flags OR'ed toghether, so the same
325 * callback function can be made to accept different events.
326 * The callback function must have the following prototype:
328 * void function(GSocket *socket, GSocketEvent event, char *cdata)
330 void GSocket_SetCallback(GSocket
*socket
, GSocketEventFlags flags
,
331 GSocketCallback fallback
, char *cdata
);
333 /* GSocket_UnsetCallback:
334 * Disables all callbacks specified by 'flags', which may be a
335 * combination of flags OR'ed toghether.
337 void GSocket_UnsetCallback(GSocket
*socket
, GSocketEventFlags flags
);
339 #endif /* ndef wxUSE_GSOCKET_CPLUSPLUS */
344 GAddress
*GAddress_new(void);
345 GAddress
*GAddress_copy(GAddress
*address
);
346 void GAddress_destroy(GAddress
*address
);
348 void GAddress_SetFamily(GAddress
*address
, GAddressType type
);
349 GAddressType
GAddress_GetFamily(GAddress
*address
);
351 /* The use of any of the next functions will set the address family to
352 * the specific one. For example if you use GAddress_INET_SetHostName,
353 * address family will be implicitly set to AF_INET.
356 GSocketError
GAddress_INET_SetHostName(GAddress
*address
, const char *hostname
);
357 GSocketError
GAddress_INET_SetAnyAddress(GAddress
*address
);
358 GSocketError
GAddress_INET_SetHostAddress(GAddress
*address
,
359 unsigned long hostaddr
);
360 GSocketError
GAddress_INET_SetPortName(GAddress
*address
, const char *port
,
361 const char *protocol
);
362 GSocketError
GAddress_INET_SetPort(GAddress
*address
, unsigned short port
);
364 GSocketError
GAddress_INET_GetHostName(GAddress
*address
, char *hostname
,
366 unsigned long GAddress_INET_GetHostAddress(GAddress
*address
);
367 unsigned short GAddress_INET_GetPort(GAddress
*address
);
369 /* TODO: Define specific parts (INET6, UNIX) */
371 GSocketError
GAddress_UNIX_SetPath(GAddress
*address
, const char *path
);
372 GSocketError
GAddress_UNIX_GetPath(GAddress
*address
, char *path
, size_t sbuf
);
376 #endif /* __cplusplus */
378 #ifdef wxUSE_GSOCKET_CPLUSPLUS
379 #include "wx/unix/gsockunx.h"
382 #endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
384 #endif /* __GSOCKET_H */