]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gsocket.h
fixed gcc warnings and reformatted some pieces of code to be a bit readable
[wxWidgets.git] / include / wx / gsocket.h
... / ...
CommitLineData
1/* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket)
3 * Name: gsocket.h
4 * Author: Guilhem Lavaux
5 * Guillermo Rodriguez Garcia <guille@iies.es> (maintainer)
6 * Purpose: GSocket include file (system independent)
7 * CVSID: $Id$
8 * -------------------------------------------------------------------------
9 */
10
11#ifndef __GSOCKET_H
12#define __GSOCKET_H
13
14#ifndef __GSOCKET_STANDALONE__
15#include "wx/setup.h"
16
17/* kludge for GTK.. gsockgtk.c craps out miserably if we include
18 defs.h ... no idea how other files get away with it.. */
19
20#if !defined( __WXMSW__ ) && !defined( WXDLLIMPEXP_NET )
21#define WXDLLIMPEXP_NET
22#endif
23
24#endif
25
26#if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
27
28#include <stddef.h>
29
30/*
31 Including sys/types.h under cygwin results in the warnings about "fd_set
32 having been defined in sys/types.h" when winsock.h is included later and
33 doesn't seem to be necessary anyhow. It's not needed under Mac neither.
34 */
35#if !defined(__WXMAC__) && !defined(__CYGWIN__) && !defined(__WXWINCE__)
36#include <sys/types.h>
37#endif
38
39#ifdef __WXWINCE__
40#include <stdlib.h>
41#endif
42
43#ifdef __cplusplus
44extern "C" {
45#endif
46
47typedef struct _GSocket GSocket;
48typedef struct _GAddress GAddress;
49
50typedef enum {
51 GSOCK_NOFAMILY = 0,
52 GSOCK_INET,
53 GSOCK_INET6,
54 GSOCK_UNIX
55} GAddressType;
56
57typedef enum {
58 GSOCK_STREAMED,
59 GSOCK_UNSTREAMED
60} GSocketStream;
61
62typedef enum {
63 GSOCK_NOERROR = 0,
64 GSOCK_INVOP,
65 GSOCK_IOERR,
66 GSOCK_INVADDR,
67 GSOCK_INVSOCK,
68 GSOCK_NOHOST,
69 GSOCK_INVPORT,
70 GSOCK_WOULDBLOCK,
71 GSOCK_TIMEDOUT,
72 GSOCK_MEMERR
73} GSocketError;
74
75/* See below for an explanation on how events work.
76 */
77typedef enum {
78 GSOCK_INPUT = 0,
79 GSOCK_OUTPUT = 1,
80 GSOCK_CONNECTION = 2,
81 GSOCK_LOST = 3,
82 GSOCK_MAX_EVENT = 4
83} GSocketEvent;
84
85enum {
86 GSOCK_INPUT_FLAG = 1 << GSOCK_INPUT,
87 GSOCK_OUTPUT_FLAG = 1 << GSOCK_OUTPUT,
88 GSOCK_CONNECTION_FLAG = 1 << GSOCK_CONNECTION,
89 GSOCK_LOST_FLAG = 1 << GSOCK_LOST
90};
91
92typedef int GSocketEventFlags;
93
94typedef void (*GSocketCallback)(GSocket *socket, GSocketEvent event,
95 char *cdata);
96
97
98/* Functions tables for internal use by GSocket code: */
99
100#ifndef __WINDOWS__
101struct GSocketBaseFunctionsTable
102{
103 void (*Detected_Read)(GSocket *socket);
104 void (*Detected_Write)(GSocket *socket);
105};
106#endif
107
108struct GSocketGUIFunctionsTable
109{
110 int (*GUI_Init)(void);
111 void (*GUI_Cleanup)(void);
112 int (*GUI_Init_Socket)(GSocket *socket);
113 void (*GUI_Destroy_Socket)(GSocket *socket);
114#ifndef __WINDOWS__
115 void (*Install_Callback)(GSocket *socket, GSocketEvent event);
116 void (*Uninstall_Callback)(GSocket *socket, GSocketEvent event);
117#endif
118 void (*Enable_Events)(GSocket *socket);
119 void (*Disable_Events)(GSocket *socket);
120};
121
122
123/* Global initializers */
124
125/* Sets GUI functions callbacks. Must be called *before* GSocket_Init
126 if the app uses async sockets. */
127void GSocket_SetGUIFunctions(struct GSocketGUIFunctionsTable *guifunc);
128
129/* GSocket_Init() must be called at the beginning */
130int GSocket_Init(void);
131
132/* GSocket_Cleanup() must be called at the end */
133void GSocket_Cleanup(void);
134
135
136/* Constructors / Destructors */
137
138GSocket *GSocket_new(void);
139void GSocket_destroy(GSocket *socket);
140
141
142
143/* GSocket_Shutdown:
144 * Disallow further read/write operations on this socket, close
145 * the fd and disable all callbacks.
146 */
147void GSocket_Shutdown(GSocket *socket);
148
149/* Address handling */
150
151/* GSocket_SetLocal:
152 * GSocket_GetLocal:
153 * GSocket_SetPeer:
154 * GSocket_GetPeer:
155 * Set or get the local or peer address for this socket. The 'set'
156 * functions return GSOCK_NOERROR on success, an error code otherwise.
157 * The 'get' functions return a pointer to a GAddress object on success,
158 * or NULL otherwise, in which case they set the error code of the
159 * corresponding GSocket.
160 *
161 * Error codes:
162 * GSOCK_INVSOCK - the socket is not valid.
163 * GSOCK_INVADDR - the address is not valid.
164 */
165GSocketError GSocket_SetLocal(GSocket *socket, GAddress *address);
166GSocketError GSocket_SetPeer(GSocket *socket, GAddress *address);
167GAddress *GSocket_GetLocal(GSocket *socket);
168GAddress *GSocket_GetPeer(GSocket *socket);
169
170/* Server specific parts */
171
172/* GSocket_SetServer:
173 * Sets up this socket as a server. The local address must have been
174 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
175 * Returns GSOCK_NOERROR on success, one of the following otherwise:
176 *
177 * Error codes:
178 * GSOCK_INVSOCK - the socket is in use.
179 * GSOCK_INVADDR - the local address has not been set.
180 * GSOCK_IOERR - low-level error.
181 */
182GSocketError GSocket_SetServer(GSocket *socket);
183
184/* GSocket_WaitConnection:
185 * Waits for an incoming client connection. Returns a pointer to
186 * a GSocket object, or NULL if there was an error, in which case
187 * the last error field will be updated for the calling GSocket.
188 *
189 * Error codes (set in the calling GSocket)
190 * GSOCK_INVSOCK - the socket is not valid or not a server.
191 * GSOCK_TIMEDOUT - timeout, no incoming connections.
192 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
193 * GSOCK_MEMERR - couldn't allocate memory.
194 * GSOCK_IOERR - low-level error.
195 */
196GSocket *GSocket_WaitConnection(GSocket *socket);
197
198
199/* Client specific parts */
200
201/* GSocket_Connect:
202 * For stream (connection oriented) sockets, GSocket_Connect() tries
203 * to establish a client connection to a server using the peer address
204 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
205 * connection has been succesfully established, or one of the error
206 * codes listed below. Note that for nonblocking sockets, a return
207 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
208 * request can be completed later; you should use GSocket_Select()
209 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
210 * corresponding asynchronous events.
211 *
212 * For datagram (non connection oriented) sockets, GSocket_Connect()
213 * just sets the peer address established with GSocket_SetPeer() as
214 * default destination.
215 *
216 * Error codes:
217 * GSOCK_INVSOCK - the socket is in use or not valid.
218 * GSOCK_INVADDR - the peer address has not been established.
219 * GSOCK_TIMEDOUT - timeout, the connection failed.
220 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
221 * GSOCK_MEMERR - couldn't allocate memory.
222 * GSOCK_IOERR - low-level error.
223 */
224GSocketError GSocket_Connect(GSocket *socket, GSocketStream stream);
225
226
227/* Datagram sockets */
228
229/* GSocket_SetNonOriented:
230 * Sets up this socket as a non-connection oriented (datagram) socket.
231 * Before using this function, the local address must have been set
232 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
233 * on success, or one of the following otherwise.
234 *
235 * Error codes:
236 * GSOCK_INVSOCK - the socket is in use.
237 * GSOCK_INVADDR - the local address has not been set.
238 * GSOCK_IOERR - low-level error.
239 */
240GSocketError GSocket_SetNonOriented(GSocket *socket);
241
242
243/* Generic IO */
244
245/* Like recv(), send(), ... */
246
247/* For datagram sockets, the incoming / outgoing addresses
248 * are stored as / read from the 'peer' address field.
249 */
250int GSocket_Read(GSocket *socket, char *buffer, int size);
251int GSocket_Write(GSocket *socket, const char *buffer,
252 int size);
253
254/* GSocket_Select:
255 * Polls the socket to determine its status. This function will
256 * check for the events specified in the 'flags' parameter, and
257 * it will return a mask indicating which operations can be
258 * performed. This function won't block, regardless of the
259 * mode (blocking | nonblocking) of the socket.
260 */
261GSocketEventFlags GSocket_Select(GSocket *socket, GSocketEventFlags flags);
262
263
264/* Attributes */
265
266/* GSocket_SetNonBlocking:
267 * Sets the socket to non-blocking mode. All IO calls will return
268 * immediately.
269 */
270void GSocket_SetNonBlocking(GSocket *socket, int non_block);
271
272/* GSocket_SetTimeout:
273 * Sets the timeout for blocking calls. Time is expressed in
274 * milliseconds.
275 */
276void GSocket_SetTimeout(GSocket *socket, unsigned long millisec);
277
278/* GSocket_GetError:
279 * Returns the last error occured for this socket. Note that successful
280 * operations do not clear this back to GSOCK_NOERROR, so use it only
281 * after an error.
282 */
283GSocketError WXDLLIMPEXP_NET GSocket_GetError(GSocket *socket);
284
285
286/* Callbacks */
287
288/* GSOCK_INPUT:
289 * There is data to be read in the input buffer. If, after a read
290 * operation, there is still data available, the callback function will
291 * be called again.
292 * GSOCK_OUTPUT:
293 * The socket is available for writing. That is, the next write call
294 * won't block. This event is generated only once, when the connection is
295 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
296 * when the output buffer empties again. This means that the app should
297 * assume that it can write since the first OUTPUT event, and no more
298 * OUTPUT events will be generated unless an error occurs.
299 * GSOCK_CONNECTION:
300 * Connection succesfully established, for client sockets, or incoming
301 * client connection, for server sockets. Wait for this event (also watch
302 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
303 * GSOCK_LOST:
304 * The connection is lost (or a connection request failed); this could
305 * be due to a failure, or due to the peer closing it gracefully.
306 */
307
308/* GSocket_SetCallback:
309 * Enables the callbacks specified by 'flags'. Note that 'flags'
310 * may be a combination of flags OR'ed toghether, so the same
311 * callback function can be made to accept different events.
312 * The callback function must have the following prototype:
313 *
314 * void function(GSocket *socket, GSocketEvent event, char *cdata)
315 */
316void GSocket_SetCallback(GSocket *socket, GSocketEventFlags flags,
317 GSocketCallback fallback, char *cdata);
318
319/* GSocket_UnsetCallback:
320 * Disables all callbacks specified by 'flags', which may be a
321 * combination of flags OR'ed toghether.
322 */
323void GSocket_UnsetCallback(GSocket *socket, GSocketEventFlags flags);
324
325
326/* GAddress */
327
328GAddress *GAddress_new(void);
329GAddress *GAddress_copy(GAddress *address);
330void GAddress_destroy(GAddress *address);
331
332void GAddress_SetFamily(GAddress *address, GAddressType type);
333GAddressType GAddress_GetFamily(GAddress *address);
334
335/* The use of any of the next functions will set the address family to
336 * the specific one. For example if you use GAddress_INET_SetHostName,
337 * address family will be implicitly set to AF_INET.
338 */
339
340GSocketError GAddress_INET_SetHostName(GAddress *address, const char *hostname);
341GSocketError GAddress_INET_SetAnyAddress(GAddress *address);
342GSocketError GAddress_INET_SetHostAddress(GAddress *address,
343 unsigned long hostaddr);
344GSocketError GAddress_INET_SetPortName(GAddress *address, const char *port,
345 const char *protocol);
346GSocketError GAddress_INET_SetPort(GAddress *address, unsigned short port);
347
348GSocketError GAddress_INET_GetHostName(GAddress *address, char *hostname,
349 size_t sbuf);
350unsigned long GAddress_INET_GetHostAddress(GAddress *address);
351unsigned short GAddress_INET_GetPort(GAddress *address);
352
353/* TODO: Define specific parts (INET6, UNIX) */
354
355GSocketError GAddress_UNIX_SetPath(GAddress *address, const char *path);
356GSocketError GAddress_UNIX_GetPath(GAddress *address, char *path, size_t sbuf);
357
358#ifdef __cplusplus
359}
360#endif /* __cplusplus */
361
362
363#endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */
364
365#endif /* __GSOCKET_H */