]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/gsocket.c
1 /* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket)
4 * Author: Guillermo Rodriguez Garcia <guille@iies.es>
5 * Purpose: GSocket main MSW file
7 * -------------------------------------------------------------------------
11 * PLEASE don't put C++ comments here - this is a C source file.
15 /* RPCNOTIFICATION_ROUTINE in rasasync.h (included from winsock.h),
16 * warning: conditional expression is constant.
18 # pragma warning(disable:4115)
20 * warning: named type definition in parentheses.
22 # pragma warning(disable:4127)
23 /* GAddress_UNIX_GetPath,
24 * warning: unreferenced formal parameter.
26 # pragma warning(disable:4100)
31 #ifndef __GSOCKET_STANDALONE__
33 # include "wx/setup.h"
36 #if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
38 #ifndef __GSOCKET_STANDALONE__
39 # include "wx/msw/gsockmsw.h"
40 # include "wx/gsocket.h"
42 # include "gsockmsw.h"
44 #endif /* __GSOCKET_STANDALONE__ */
46 /* Redefine some GUI-only functions to do nothing in console mode */
47 #if defined(wxUSE_GUI) && !wxUSE_GUI
48 # define _GSocket_GUI_Init(socket) (1)
49 # define _GSocket_GUI_Destroy(socket)
50 # define _GSocket_Enable_Events(socket)
51 # define _GSocket_Disable_Events(socket)
52 #endif /* wxUSE_GUI */
61 /* if we use configure for MSW SOCKLEN_T will be already defined */
63 # define SOCKLEN_T int
67 /* Constructors / Destructors for GSocket */
69 GSocket
*GSocket_new(void)
74 if ((socket
= (GSocket
*) malloc(sizeof(GSocket
))) == NULL
)
77 socket
->m_fd
= INVALID_SOCKET
;
78 for (i
= 0; i
< GSOCK_MAX_EVENT
; i
++)
80 socket
->m_cbacks
[i
] = NULL
;
82 socket
->m_detected
= 0;
83 socket
->m_local
= NULL
;
84 socket
->m_peer
= NULL
;
85 socket
->m_error
= GSOCK_NOERROR
;
86 socket
->m_server
= FALSE
;
87 socket
->m_stream
= TRUE
;
88 socket
->m_non_blocking
= FALSE
;
89 socket
->m_timeout
.tv_sec
= 10 * 60; /* 10 minutes */
90 socket
->m_timeout
.tv_usec
= 0;
91 socket
->m_establishing
= FALSE
;
93 /* Per-socket GUI-specific initialization */
94 success
= _GSocket_GUI_Init(socket
);
104 void GSocket_close(GSocket
*socket
)
106 _GSocket_Disable_Events(socket
);
107 closesocket(socket
->m_fd
);
108 socket
->m_fd
= INVALID_SOCKET
;
111 void GSocket_destroy(GSocket
*socket
)
113 assert(socket
!= NULL
);
115 /* Per-socket GUI-specific cleanup */
116 _GSocket_GUI_Destroy(socket
);
118 /* Check that the socket is really shutdowned */
119 if (socket
->m_fd
!= INVALID_SOCKET
)
120 GSocket_Shutdown(socket
);
122 /* Destroy private addresses */
124 GAddress_destroy(socket
->m_local
);
127 GAddress_destroy(socket
->m_peer
);
129 /* Destroy the socket itself */
134 * Disallow further read/write operations on this socket, close
135 * the fd and disable all callbacks.
137 void GSocket_Shutdown(GSocket
*socket
)
141 assert(socket
!= NULL
);
143 /* If socket has been created, shutdown it */
144 if (socket
->m_fd
!= INVALID_SOCKET
)
146 shutdown(socket
->m_fd
, 2);
147 GSocket_close(socket
);
150 /* Disable GUI callbacks */
151 for (evt
= 0; evt
< GSOCK_MAX_EVENT
; evt
++)
152 socket
->m_cbacks
[evt
] = NULL
;
154 socket
->m_detected
= GSOCK_LOST_FLAG
;
157 /* Address handling */
163 * Set or get the local or peer address for this socket. The 'set'
164 * functions return GSOCK_NOERROR on success, an error code otherwise.
165 * The 'get' functions return a pointer to a GAddress object on success,
166 * or NULL otherwise, in which case they set the error code of the
167 * corresponding GSocket.
170 * GSOCK_INVSOCK - the socket is not valid.
171 * GSOCK_INVADDR - the address is not valid.
173 GSocketError
GSocket_SetLocal(GSocket
*socket
, GAddress
*address
)
175 assert(socket
!= NULL
);
177 /* the socket must be initialized, or it must be a server */
178 if (socket
->m_fd
!= INVALID_SOCKET
&& !socket
->m_server
)
180 socket
->m_error
= GSOCK_INVSOCK
;
181 return GSOCK_INVSOCK
;
185 if (address
== NULL
|| address
->m_family
== GSOCK_NOFAMILY
)
187 socket
->m_error
= GSOCK_INVADDR
;
188 return GSOCK_INVADDR
;
192 GAddress_destroy(socket
->m_local
);
194 socket
->m_local
= GAddress_copy(address
);
196 return GSOCK_NOERROR
;
199 GSocketError
GSocket_SetPeer(GSocket
*socket
, GAddress
*address
)
201 assert(socket
!= NULL
);
204 if (address
== NULL
|| address
->m_family
== GSOCK_NOFAMILY
)
206 socket
->m_error
= GSOCK_INVADDR
;
207 return GSOCK_INVADDR
;
211 GAddress_destroy(socket
->m_peer
);
213 socket
->m_peer
= GAddress_copy(address
);
215 return GSOCK_NOERROR
;
218 GAddress
*GSocket_GetLocal(GSocket
*socket
)
221 struct sockaddr addr
;
222 SOCKLEN_T size
= sizeof(addr
);
225 assert(socket
!= NULL
);
227 /* try to get it from the m_local var first */
229 return GAddress_copy(socket
->m_local
);
231 /* else, if the socket is initialized, try getsockname */
232 if (socket
->m_fd
== INVALID_SOCKET
)
234 socket
->m_error
= GSOCK_INVSOCK
;
238 if (getsockname(socket
->m_fd
, &addr
, &size
) == SOCKET_ERROR
)
240 socket
->m_error
= GSOCK_IOERR
;
244 /* got a valid address from getsockname, create a GAddress object */
245 if ((address
= GAddress_new()) == NULL
)
247 socket
->m_error
= GSOCK_MEMERR
;
251 if ((err
= _GAddress_translate_from(address
, &addr
, size
)) != GSOCK_NOERROR
)
253 GAddress_destroy(address
);
254 socket
->m_error
= err
;
261 GAddress
*GSocket_GetPeer(GSocket
*socket
)
263 assert(socket
!= NULL
);
265 /* try to get it from the m_peer var */
267 return GAddress_copy(socket
->m_peer
);
272 /* Server specific parts */
274 /* GSocket_SetServer:
275 * Sets up this socket as a server. The local address must have been
276 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
277 * Returns GSOCK_NOERROR on success, one of the following otherwise:
280 * GSOCK_INVSOCK - the socket is in use.
281 * GSOCK_INVADDR - the local address has not been set.
282 * GSOCK_IOERR - low-level error.
284 GSocketError
GSocket_SetServer(GSocket
*sck
)
290 /* must not be in use */
291 if (sck
->m_fd
!= INVALID_SOCKET
)
293 sck
->m_error
= GSOCK_INVSOCK
;
294 return GSOCK_INVSOCK
;
297 /* the local addr must have been set */
300 sck
->m_error
= GSOCK_INVADDR
;
301 return GSOCK_INVADDR
;
304 /* Initialize all fields */
305 sck
->m_server
= TRUE
;
306 sck
->m_stream
= TRUE
;
307 sck
->m_oriented
= TRUE
;
309 /* Create the socket */
310 sck
->m_fd
= socket(sck
->m_local
->m_realfamily
, SOCK_STREAM
, 0);
312 if (sck
->m_fd
== INVALID_SOCKET
)
314 sck
->m_error
= GSOCK_IOERR
;
318 ioctlsocket(sck
->m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
319 _GSocket_Enable_Events(sck
);
321 /* Bind to the local address,
322 * retrieve the actual address bound,
323 * and listen up to 5 connections.
325 if ((bind(sck
->m_fd
, sck
->m_local
->m_addr
, sck
->m_local
->m_len
) != 0) ||
326 (getsockname(sck
->m_fd
,
327 sck
->m_local
->m_addr
,
328 (SOCKLEN_T
*)&sck
->m_local
->m_len
) != 0) ||
329 (listen(sck
->m_fd
, 5) != 0))
332 sck
->m_error
= GSOCK_IOERR
;
336 return GSOCK_NOERROR
;
339 /* GSocket_WaitConnection:
340 * Waits for an incoming client connection. Returns a pointer to
341 * a GSocket object, or NULL if there was an error, in which case
342 * the last error field will be updated for the calling GSocket.
344 * Error codes (set in the calling GSocket)
345 * GSOCK_INVSOCK - the socket is not valid or not a server.
346 * GSOCK_TIMEDOUT - timeout, no incoming connections.
347 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
348 * GSOCK_MEMERR - couldn't allocate memory.
349 * GSOCK_IOERR - low-level error.
351 GSocket
*GSocket_WaitConnection(GSocket
*sck
)
354 struct sockaddr from
;
355 SOCKLEN_T fromlen
= sizeof(from
);
361 /* Reenable CONNECTION events */
362 sck
->m_detected
&= ~GSOCK_CONNECTION_FLAG
;
364 /* If the socket has already been created, we exit immediately */
365 if (sck
->m_fd
== INVALID_SOCKET
|| !sck
->m_server
)
367 sck
->m_error
= GSOCK_INVSOCK
;
371 /* Create a GSocket object for the new connection */
372 connection
= GSocket_new();
376 sck
->m_error
= GSOCK_MEMERR
;
380 /* Wait for a connection (with timeout) */
381 if (_GSocket_Input_Timeout(sck
) == GSOCK_TIMEDOUT
)
383 GSocket_destroy(connection
);
384 /* sck->m_error set by _GSocket_Input_Timeout */
388 connection
->m_fd
= accept(sck
->m_fd
, &from
, &fromlen
);
390 if (connection
->m_fd
== INVALID_SOCKET
)
392 if (WSAGetLastError() == WSAEWOULDBLOCK
)
393 sck
->m_error
= GSOCK_WOULDBLOCK
;
395 sck
->m_error
= GSOCK_IOERR
;
397 GSocket_destroy(connection
);
401 /* Initialize all fields */
402 connection
->m_server
= FALSE
;
403 connection
->m_stream
= TRUE
;
404 connection
->m_oriented
= TRUE
;
406 /* Setup the peer address field */
407 connection
->m_peer
= GAddress_new();
408 if (!connection
->m_peer
)
410 GSocket_destroy(connection
);
411 sck
->m_error
= GSOCK_MEMERR
;
414 err
= _GAddress_translate_from(connection
->m_peer
, &from
, fromlen
);
415 if (err
!= GSOCK_NOERROR
)
417 GAddress_destroy(connection
->m_peer
);
418 GSocket_destroy(connection
);
423 ioctlsocket(connection
->m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
424 _GSocket_Enable_Events(connection
);
429 /* Client specific parts */
432 * For stream (connection oriented) sockets, GSocket_Connect() tries
433 * to establish a client connection to a server using the peer address
434 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
435 * connection has been succesfully established, or one of the error
436 * codes listed below. Note that for nonblocking sockets, a return
437 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
438 * request can be completed later; you should use GSocket_Select()
439 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
440 * corresponding asynchronous events.
442 * For datagram (non connection oriented) sockets, GSocket_Connect()
443 * just sets the peer address established with GSocket_SetPeer() as
444 * default destination.
447 * GSOCK_INVSOCK - the socket is in use or not valid.
448 * GSOCK_INVADDR - the peer address has not been established.
449 * GSOCK_TIMEDOUT - timeout, the connection failed.
450 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
451 * GSOCK_MEMERR - couldn't allocate memory.
452 * GSOCK_IOERR - low-level error.
454 GSocketError
GSocket_Connect(GSocket
*sck
, GSocketStream stream
)
461 /* Enable CONNECTION events (needed for nonblocking connections) */
462 sck
->m_detected
&= ~GSOCK_CONNECTION_FLAG
;
464 if (sck
->m_fd
!= INVALID_SOCKET
)
466 sck
->m_error
= GSOCK_INVSOCK
;
467 return GSOCK_INVSOCK
;
472 sck
->m_error
= GSOCK_INVADDR
;
473 return GSOCK_INVADDR
;
476 /* Streamed or dgram socket? */
477 sck
->m_stream
= (stream
== GSOCK_STREAMED
);
478 sck
->m_oriented
= TRUE
;
479 sck
->m_server
= FALSE
;
480 sck
->m_establishing
= FALSE
;
482 /* Create the socket */
483 sck
->m_fd
= socket(sck
->m_peer
->m_realfamily
,
484 sck
->m_stream
? SOCK_STREAM
: SOCK_DGRAM
, 0);
486 if (sck
->m_fd
== INVALID_SOCKET
)
488 sck
->m_error
= GSOCK_IOERR
;
492 ioctlsocket(sck
->m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
493 _GSocket_Enable_Events(sck
);
495 /* Connect it to the peer address, with a timeout (see below) */
496 ret
= connect(sck
->m_fd
, sck
->m_peer
->m_addr
, sck
->m_peer
->m_len
);
498 if (ret
== SOCKET_ERROR
)
500 err
= WSAGetLastError();
502 /* If connect failed with EWOULDBLOCK and the GSocket object
503 * is in blocking mode, we select() for the specified timeout
504 * checking for writability to see if the connection request
507 if ((err
== WSAEWOULDBLOCK
) && (!sck
->m_non_blocking
))
509 err
= _GSocket_Connect_Timeout(sck
);
511 if (err
!= GSOCK_NOERROR
)
514 /* sck->m_error is set in _GSocket_Connect_Timeout */
517 return (GSocketError
) err
;
520 /* If connect failed with EWOULDBLOCK and the GSocket object
521 * is set to nonblocking, we set m_error to GSOCK_WOULDBLOCK
522 * (and return GSOCK_WOULDBLOCK) but we don't close the socket;
523 * this way if the connection completes, a GSOCK_CONNECTION
524 * event will be generated, if enabled.
526 if ((err
== WSAEWOULDBLOCK
) && (sck
->m_non_blocking
))
528 sck
->m_establishing
= TRUE
;
529 sck
->m_error
= GSOCK_WOULDBLOCK
;
530 return GSOCK_WOULDBLOCK
;
533 /* If connect failed with an error other than EWOULDBLOCK,
534 * then the call to GSocket_Connect() has failed.
537 sck
->m_error
= GSOCK_IOERR
;
541 return GSOCK_NOERROR
;
544 /* Datagram sockets */
546 /* GSocket_SetNonOriented:
547 * Sets up this socket as a non-connection oriented (datagram) socket.
548 * Before using this function, the local address must have been set
549 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
550 * on success, or one of the following otherwise.
553 * GSOCK_INVSOCK - the socket is in use.
554 * GSOCK_INVADDR - the local address has not been set.
555 * GSOCK_IOERR - low-level error.
557 GSocketError
GSocket_SetNonOriented(GSocket
*sck
)
563 if (sck
->m_fd
!= INVALID_SOCKET
)
565 sck
->m_error
= GSOCK_INVSOCK
;
566 return GSOCK_INVSOCK
;
571 sck
->m_error
= GSOCK_INVADDR
;
572 return GSOCK_INVADDR
;
575 /* Initialize all fields */
576 sck
->m_stream
= FALSE
;
577 sck
->m_server
= FALSE
;
578 sck
->m_oriented
= FALSE
;
580 /* Create the socket */
581 sck
->m_fd
= socket(sck
->m_local
->m_realfamily
, SOCK_DGRAM
, 0);
583 if (sck
->m_fd
== INVALID_SOCKET
)
585 sck
->m_error
= GSOCK_IOERR
;
589 ioctlsocket(sck
->m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
590 _GSocket_Enable_Events(sck
);
592 /* Bind to the local address,
593 * and retrieve the actual address bound.
595 if ((bind(sck
->m_fd
, sck
->m_local
->m_addr
, sck
->m_local
->m_len
) != 0) ||
596 (getsockname(sck
->m_fd
,
597 sck
->m_local
->m_addr
,
598 (SOCKLEN_T
*)&sck
->m_local
->m_len
) != 0))
601 sck
->m_error
= GSOCK_IOERR
;
605 return GSOCK_NOERROR
;
610 /* Like recv(), send(), ... */
611 int GSocket_Read(GSocket
*socket
, char *buffer
, int size
)
615 assert(socket
!= NULL
);
617 /* Reenable INPUT events */
618 socket
->m_detected
&= ~GSOCK_INPUT_FLAG
;
620 if (socket
->m_fd
== INVALID_SOCKET
|| socket
->m_server
)
622 socket
->m_error
= GSOCK_INVSOCK
;
626 /* If the socket is blocking, wait for data (with a timeout) */
627 if (_GSocket_Input_Timeout(socket
) == GSOCK_TIMEDOUT
)
631 if (socket
->m_stream
)
632 ret
= _GSocket_Recv_Stream(socket
, buffer
, size
);
634 ret
= _GSocket_Recv_Dgram(socket
, buffer
, size
);
636 if (ret
== SOCKET_ERROR
)
638 if (WSAGetLastError() != WSAEWOULDBLOCK
)
639 socket
->m_error
= GSOCK_IOERR
;
641 socket
->m_error
= GSOCK_WOULDBLOCK
;
648 int GSocket_Write(GSocket
*socket
, const char *buffer
, int size
)
652 assert(socket
!= NULL
);
654 if (socket
->m_fd
== INVALID_SOCKET
|| socket
->m_server
)
656 socket
->m_error
= GSOCK_INVSOCK
;
660 /* If the socket is blocking, wait for writability (with a timeout) */
661 if (_GSocket_Output_Timeout(socket
) == GSOCK_TIMEDOUT
)
665 if (socket
->m_stream
)
666 ret
= _GSocket_Send_Stream(socket
, buffer
, size
);
668 ret
= _GSocket_Send_Dgram(socket
, buffer
, size
);
670 if (ret
== SOCKET_ERROR
)
672 if (WSAGetLastError() != WSAEWOULDBLOCK
)
673 socket
->m_error
= GSOCK_IOERR
;
675 socket
->m_error
= GSOCK_WOULDBLOCK
;
677 /* Only reenable OUTPUT events after an error (just like WSAAsyncSelect
678 * does). Once the first OUTPUT event is received, users can assume
679 * that the socket is writable until a read operation fails. Only then
680 * will further OUTPUT events be posted.
682 socket
->m_detected
&= ~GSOCK_OUTPUT_FLAG
;
690 * Polls the socket to determine its status. This function will
691 * check for the events specified in the 'flags' parameter, and
692 * it will return a mask indicating which operations can be
693 * performed. This function won't block, regardless of the
694 * mode (blocking | nonblocking) of the socket.
696 GSocketEventFlags
GSocket_Select(GSocket
*socket
, GSocketEventFlags flags
)
698 #if defined(wxUSE_GUI) && !wxUSE_GUI
700 GSocketEventFlags result
= 0;
704 static const struct timeval tv
= { 0, 0 };
706 assert(socket
!= NULL
);
711 FD_SET(socket
->m_fd
, &readfds
);
712 FD_SET(socket
->m_fd
, &writefds
);
713 FD_SET(socket
->m_fd
, &exceptfds
);
715 /* Check 'sticky' CONNECTION flag first */
716 result
|= (GSOCK_CONNECTION_FLAG
& socket
->m_detected
);
718 /* If we have already detected a LOST event, then don't try
719 * to do any further processing.
721 if ((socket
->m_detected
& GSOCK_LOST_FLAG
) != 0)
723 socket
->m_establishing
= FALSE
;
725 return (GSOCK_LOST_FLAG
& flags
);
729 if (select(socket
->m_fd
+ 1, &readfds
, &writefds
, &exceptfds
, &tv
) <= 0)
731 /* What to do here? */
732 return (result
& flags
);
735 /* Check for readability */
736 if (FD_ISSET(socket
->m_fd
, &readfds
))
740 if (recv(socket
->m_fd
, &c
, 1, MSG_PEEK
) > 0)
742 result
|= GSOCK_INPUT_FLAG
;
746 if (socket
->m_server
&& socket
->m_stream
)
748 result
|= GSOCK_CONNECTION_FLAG
;
749 socket
->m_detected
|= GSOCK_CONNECTION_FLAG
;
753 socket
->m_detected
= GSOCK_LOST_FLAG
;
754 socket
->m_establishing
= FALSE
;
756 /* LOST event: Abort any further processing */
757 return (GSOCK_LOST_FLAG
& flags
);
762 /* Check for writability */
763 if (FD_ISSET(socket
->m_fd
, &writefds
))
765 if (socket
->m_establishing
&& !socket
->m_server
)
768 SOCKLEN_T len
= sizeof(error
);
770 socket
->m_establishing
= FALSE
;
772 getsockopt(socket
->m_fd
, SOL_SOCKET
, SO_ERROR
, (void*)&error
, &len
);
776 socket
->m_detected
= GSOCK_LOST_FLAG
;
778 /* LOST event: Abort any further processing */
779 return (GSOCK_LOST_FLAG
& flags
);
783 result
|= GSOCK_CONNECTION_FLAG
;
784 socket
->m_detected
|= GSOCK_CONNECTION_FLAG
;
789 result
|= GSOCK_OUTPUT_FLAG
;
793 /* Check for exceptions and errors (is this useful in Unices?) */
794 if (FD_ISSET(socket
->m_fd
, &exceptfds
))
796 socket
->m_establishing
= FALSE
;
797 socket
->m_detected
= GSOCK_LOST_FLAG
;
799 /* LOST event: Abort any further processing */
800 return (GSOCK_LOST_FLAG
& flags
);
803 return (result
& flags
);
807 assert(socket
!= NULL
);
808 return flags
& socket
->m_detected
;
810 #endif /* !wxUSE_GUI */
815 /* GSocket_SetNonBlocking:
816 * Sets the socket to non-blocking mode. All IO calls will return
819 void GSocket_SetNonBlocking(GSocket
*socket
, int non_block
)
821 assert(socket
!= NULL
);
823 socket
->m_non_blocking
= non_block
;
826 /* GSocket_SetTimeout:
827 * Sets the timeout for blocking calls. Time is expressed in
830 void GSocket_SetTimeout(GSocket
*socket
, unsigned long millis
)
832 assert(socket
!= NULL
);
834 socket
->m_timeout
.tv_sec
= (millis
/ 1000);
835 socket
->m_timeout
.tv_usec
= (millis
% 1000) * 1000;
839 * Returns the last error occured for this socket. Note that successful
840 * operations do not clear this back to GSOCK_NOERROR, so use it only
843 GSocketError
GSocket_GetError(GSocket
*socket
)
845 assert(socket
!= NULL
);
847 return socket
->m_error
;
853 * There is data to be read in the input buffer. If, after a read
854 * operation, there is still data available, the callback function will
857 * The socket is available for writing. That is, the next write call
858 * won't block. This event is generated only once, when the connection is
859 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
860 * when the output buffer empties again. This means that the app should
861 * assume that it can write since the first OUTPUT event, and no more
862 * OUTPUT events will be generated unless an error occurs.
864 * Connection succesfully established, for client sockets, or incoming
865 * client connection, for server sockets. Wait for this event (also watch
866 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
868 * The connection is lost (or a connection request failed); this could
869 * be due to a failure, or due to the peer closing it gracefully.
872 /* GSocket_SetCallback:
873 * Enables the callbacks specified by 'flags'. Note that 'flags'
874 * may be a combination of flags OR'ed toghether, so the same
875 * callback function can be made to accept different events.
876 * The callback function must have the following prototype:
878 * void function(GSocket *socket, GSocketEvent event, char *cdata)
880 void GSocket_SetCallback(GSocket
*socket
, GSocketEventFlags flags
,
881 GSocketCallback callback
, char *cdata
)
885 assert(socket
!= NULL
);
887 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
889 if ((flags
& (1 << count
)) != 0)
891 socket
->m_cbacks
[count
] = callback
;
892 socket
->m_data
[count
] = cdata
;
897 /* GSocket_UnsetCallback:
898 * Disables all callbacks specified by 'flags', which may be a
899 * combination of flags OR'ed toghether.
901 void GSocket_UnsetCallback(GSocket
*socket
, GSocketEventFlags flags
)
905 assert(socket
!= NULL
);
907 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
909 if ((flags
& (1 << count
)) != 0)
911 socket
->m_cbacks
[count
] = NULL
;
912 socket
->m_data
[count
] = NULL
;
919 /* _GSocket_Input_Timeout:
920 * For blocking sockets, wait until data is available or
921 * until timeout ellapses.
923 GSocketError
_GSocket_Input_Timeout(GSocket
*socket
)
927 if (!socket
->m_non_blocking
)
930 FD_SET(socket
->m_fd
, &readfds
);
931 if (select(0, &readfds
, NULL
, NULL
, &socket
->m_timeout
) == 0)
933 socket
->m_error
= GSOCK_TIMEDOUT
;
934 return GSOCK_TIMEDOUT
;
937 return GSOCK_NOERROR
;
940 /* _GSocket_Output_Timeout:
941 * For blocking sockets, wait until data can be sent without
942 * blocking or until timeout ellapses.
944 GSocketError
_GSocket_Output_Timeout(GSocket
*socket
)
948 if (!socket
->m_non_blocking
)
951 FD_SET(socket
->m_fd
, &writefds
);
952 if (select(0, NULL
, &writefds
, NULL
, &socket
->m_timeout
) == 0)
954 socket
->m_error
= GSOCK_TIMEDOUT
;
955 return GSOCK_TIMEDOUT
;
958 return GSOCK_NOERROR
;
961 /* _GSocket_Connect_Timeout:
962 * For blocking sockets, wait until the connection is
963 * established or fails, or until timeout ellapses.
965 GSocketError
_GSocket_Connect_Timeout(GSocket
*socket
)
972 FD_SET(socket
->m_fd
, &writefds
);
973 FD_SET(socket
->m_fd
, &exceptfds
);
974 if (select(0, NULL
, &writefds
, &exceptfds
, &socket
->m_timeout
) == 0)
976 socket
->m_error
= GSOCK_TIMEDOUT
;
977 return GSOCK_TIMEDOUT
;
979 if (!FD_ISSET(socket
->m_fd
, &writefds
))
981 socket
->m_error
= GSOCK_IOERR
;
985 return GSOCK_NOERROR
;
988 int _GSocket_Recv_Stream(GSocket
*socket
, char *buffer
, int size
)
990 return recv(socket
->m_fd
, buffer
, size
, 0);
993 int _GSocket_Recv_Dgram(GSocket
*socket
, char *buffer
, int size
)
995 struct sockaddr from
;
996 SOCKLEN_T fromlen
= sizeof(from
);
1000 ret
= recvfrom(socket
->m_fd
, buffer
, size
, 0, &from
, &fromlen
);
1002 if (ret
== SOCKET_ERROR
)
1003 return SOCKET_ERROR
;
1005 /* Translate a system address into a GSocket address */
1006 if (!socket
->m_peer
)
1008 socket
->m_peer
= GAddress_new();
1009 if (!socket
->m_peer
)
1011 socket
->m_error
= GSOCK_MEMERR
;
1015 err
= _GAddress_translate_from(socket
->m_peer
, &from
, fromlen
);
1016 if (err
!= GSOCK_NOERROR
)
1018 GAddress_destroy(socket
->m_peer
);
1019 socket
->m_peer
= NULL
;
1020 socket
->m_error
= err
;
1027 int _GSocket_Send_Stream(GSocket
*socket
, const char *buffer
, int size
)
1029 return send(socket
->m_fd
, buffer
, size
, 0);
1032 int _GSocket_Send_Dgram(GSocket
*socket
, const char *buffer
, int size
)
1034 struct sockaddr
*addr
;
1038 if (!socket
->m_peer
)
1040 socket
->m_error
= GSOCK_INVADDR
;
1044 err
= _GAddress_translate_to(socket
->m_peer
, &addr
, &len
);
1045 if (err
!= GSOCK_NOERROR
)
1047 socket
->m_error
= err
;
1051 ret
= sendto(socket
->m_fd
, buffer
, size
, 0, addr
, len
);
1053 /* Frees memory allocated by _GAddress_translate_to */
1061 * -------------------------------------------------------------------------
1063 * -------------------------------------------------------------------------
1066 /* CHECK_ADDRESS verifies that the current address family is either
1067 * GSOCK_NOFAMILY or GSOCK_*family*, and if it is GSOCK_NOFAMILY, it
1068 * initalizes it to be a GSOCK_*family*. In other cases, it returns
1069 * an appropiate error code.
1071 * CHECK_ADDRESS_RETVAL does the same but returning 'retval' on error.
1073 #define CHECK_ADDRESS(address, family) \
1075 if (address->m_family == GSOCK_NOFAMILY) \
1076 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1077 return address->m_error; \
1078 if (address->m_family != GSOCK_##family) \
1080 address->m_error = GSOCK_INVADDR; \
1081 return GSOCK_INVADDR; \
1085 #define CHECK_ADDRESS_RETVAL(address, family, retval) \
1087 if (address->m_family == GSOCK_NOFAMILY) \
1088 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1090 if (address->m_family != GSOCK_##family) \
1092 address->m_error = GSOCK_INVADDR; \
1098 GAddress
*GAddress_new(void)
1102 if ((address
= (GAddress
*) malloc(sizeof(GAddress
))) == NULL
)
1105 address
->m_family
= GSOCK_NOFAMILY
;
1106 address
->m_addr
= NULL
;
1112 GAddress
*GAddress_copy(GAddress
*address
)
1116 assert(address
!= NULL
);
1118 if ((addr2
= (GAddress
*) malloc(sizeof(GAddress
))) == NULL
)
1121 memcpy(addr2
, address
, sizeof(GAddress
));
1123 if (address
->m_addr
)
1125 addr2
->m_addr
= (struct sockaddr
*) malloc(addr2
->m_len
);
1126 if (addr2
->m_addr
== NULL
)
1131 memcpy(addr2
->m_addr
, address
->m_addr
, addr2
->m_len
);
1137 void GAddress_destroy(GAddress
*address
)
1139 assert(address
!= NULL
);
1141 if (address
->m_addr
)
1142 free(address
->m_addr
);
1147 void GAddress_SetFamily(GAddress
*address
, GAddressType type
)
1149 assert(address
!= NULL
);
1151 address
->m_family
= type
;
1154 GAddressType
GAddress_GetFamily(GAddress
*address
)
1156 assert(address
!= NULL
);
1158 return address
->m_family
;
1161 GSocketError
_GAddress_translate_from(GAddress
*address
,
1162 struct sockaddr
*addr
, int len
)
1164 address
->m_realfamily
= addr
->sa_family
;
1165 switch (addr
->sa_family
)
1168 address
->m_family
= GSOCK_INET
;
1171 address
->m_family
= GSOCK_UNIX
;
1175 address
->m_family
= GSOCK_INET6
;
1180 address
->m_error
= GSOCK_INVOP
;
1185 if (address
->m_addr
)
1186 free(address
->m_addr
);
1188 address
->m_len
= len
;
1189 address
->m_addr
= (struct sockaddr
*) malloc(len
);
1191 if (address
->m_addr
== NULL
)
1193 address
->m_error
= GSOCK_MEMERR
;
1194 return GSOCK_MEMERR
;
1196 memcpy(address
->m_addr
, addr
, len
);
1198 return GSOCK_NOERROR
;
1201 GSocketError
_GAddress_translate_to(GAddress
*address
,
1202 struct sockaddr
**addr
, int *len
)
1204 if (!address
->m_addr
)
1206 address
->m_error
= GSOCK_INVADDR
;
1207 return GSOCK_INVADDR
;
1210 *len
= address
->m_len
;
1211 *addr
= (struct sockaddr
*) malloc(address
->m_len
);
1214 address
->m_error
= GSOCK_MEMERR
;
1215 return GSOCK_MEMERR
;
1218 memcpy(*addr
, address
->m_addr
, address
->m_len
);
1219 return GSOCK_NOERROR
;
1223 * -------------------------------------------------------------------------
1224 * Internet address family
1225 * -------------------------------------------------------------------------
1228 GSocketError
_GAddress_Init_INET(GAddress
*address
)
1230 address
->m_len
= sizeof(struct sockaddr_in
);
1231 address
->m_addr
= (struct sockaddr
*) malloc(address
->m_len
);
1232 if (address
->m_addr
== NULL
)
1234 address
->m_error
= GSOCK_MEMERR
;
1235 return GSOCK_MEMERR
;
1238 address
->m_family
= GSOCK_INET
;
1239 address
->m_realfamily
= PF_INET
;
1240 ((struct sockaddr_in
*)address
->m_addr
)->sin_family
= AF_INET
;
1241 ((struct sockaddr_in
*)address
->m_addr
)->sin_addr
.s_addr
= INADDR_ANY
;
1243 return GSOCK_NOERROR
;
1246 GSocketError
GAddress_INET_SetHostName(GAddress
*address
, const char *hostname
)
1249 struct in_addr
*addr
;
1251 assert(address
!= NULL
);
1253 CHECK_ADDRESS(address
, INET
);
1255 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1257 addr
->s_addr
= inet_addr(hostname
);
1259 /* If it is a numeric host name, convert it now */
1260 if (addr
->s_addr
== INADDR_NONE
)
1262 struct in_addr
*array_addr
;
1264 /* It is a real name, we solve it */
1265 if ((he
= gethostbyname(hostname
)) == NULL
)
1267 /* addr->s_addr = INADDR_NONE just done by inet_addr() above */
1268 address
->m_error
= GSOCK_NOHOST
;
1269 return GSOCK_NOHOST
;
1271 array_addr
= (struct in_addr
*) *(he
->h_addr_list
);
1272 addr
->s_addr
= array_addr
[0].s_addr
;
1274 return GSOCK_NOERROR
;
1277 GSocketError
GAddress_INET_SetAnyAddress(GAddress
*address
)
1279 return GAddress_INET_SetHostAddress(address
, INADDR_ANY
);
1282 GSocketError
GAddress_INET_SetHostAddress(GAddress
*address
,
1283 unsigned long hostaddr
)
1285 struct in_addr
*addr
;
1287 assert(address
!= NULL
);
1289 CHECK_ADDRESS(address
, INET
);
1291 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1292 addr
->s_addr
= hostaddr
;
1294 return GSOCK_NOERROR
;
1297 GSocketError
GAddress_INET_SetPortName(GAddress
*address
, const char *port
,
1298 const char *protocol
)
1301 struct sockaddr_in
*addr
;
1303 assert(address
!= NULL
);
1304 CHECK_ADDRESS(address
, INET
);
1308 address
->m_error
= GSOCK_INVPORT
;
1309 return GSOCK_INVPORT
;
1312 se
= getservbyname(port
, protocol
);
1315 if (isdigit(port
[0]))
1319 port_int
= atoi(port
);
1320 addr
= (struct sockaddr_in
*)address
->m_addr
;
1321 addr
->sin_port
= htons((u_short
) port_int
);
1322 return GSOCK_NOERROR
;
1325 address
->m_error
= GSOCK_INVPORT
;
1326 return GSOCK_INVPORT
;
1329 addr
= (struct sockaddr_in
*)address
->m_addr
;
1330 addr
->sin_port
= se
->s_port
;
1332 return GSOCK_NOERROR
;
1335 GSocketError
GAddress_INET_SetPort(GAddress
*address
, unsigned short port
)
1337 struct sockaddr_in
*addr
;
1339 assert(address
!= NULL
);
1340 CHECK_ADDRESS(address
, INET
);
1342 addr
= (struct sockaddr_in
*)address
->m_addr
;
1343 addr
->sin_port
= htons(port
);
1345 return GSOCK_NOERROR
;
1348 GSocketError
GAddress_INET_GetHostName(GAddress
*address
, char *hostname
, size_t sbuf
)
1352 struct sockaddr_in
*addr
;
1354 assert(address
!= NULL
);
1355 CHECK_ADDRESS(address
, INET
);
1357 addr
= (struct sockaddr_in
*)address
->m_addr
;
1358 addr_buf
= (char *)&(addr
->sin_addr
);
1360 he
= gethostbyaddr(addr_buf
, sizeof(addr
->sin_addr
), AF_INET
);
1363 address
->m_error
= GSOCK_NOHOST
;
1364 return GSOCK_NOHOST
;
1367 strncpy(hostname
, he
->h_name
, sbuf
);
1369 return GSOCK_NOERROR
;
1372 unsigned long GAddress_INET_GetHostAddress(GAddress
*address
)
1374 struct sockaddr_in
*addr
;
1376 assert(address
!= NULL
);
1377 CHECK_ADDRESS_RETVAL(address
, INET
, 0);
1379 addr
= (struct sockaddr_in
*)address
->m_addr
;
1381 return addr
->sin_addr
.s_addr
;
1384 unsigned short GAddress_INET_GetPort(GAddress
*address
)
1386 struct sockaddr_in
*addr
;
1388 assert(address
!= NULL
);
1389 CHECK_ADDRESS_RETVAL(address
, INET
, 0);
1391 addr
= (struct sockaddr_in
*)address
->m_addr
;
1392 return ntohs(addr
->sin_port
);
1396 * -------------------------------------------------------------------------
1397 * Unix address family
1398 * -------------------------------------------------------------------------
1401 GSocketError
_GAddress_Init_UNIX(GAddress
*address
)
1403 assert (address
!= NULL
);
1404 address
->m_error
= GSOCK_INVADDR
;
1405 return GSOCK_INVADDR
;
1408 GSocketError
GAddress_UNIX_SetPath(GAddress
*address
, const char *path
)
1410 assert (address
!= NULL
);
1411 address
->m_error
= GSOCK_INVADDR
;
1412 return GSOCK_INVADDR
;
1415 GSocketError
GAddress_UNIX_GetPath(GAddress
*address
, char *path
, size_t sbuf
)
1417 assert (address
!= NULL
);
1418 address
->m_error
= GSOCK_INVADDR
;
1419 return GSOCK_INVADDR
;
1422 #else /* !wxUSE_SOCKETS */
1425 * Translation unit shouldn't be empty, so include this typedef to make the
1426 * compiler (VC++ 6.0, for example) happy
1428 typedef void (*wxDummy
)();
1430 #endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */