]>
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)
29 #ifndef __GSOCKET_STANDALONE__
31 # include "wx/setup.h"
34 #if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
36 #ifndef __GSOCKET_STANDALONE__
37 # include "wx/msw/gsockmsw.h"
38 # include "wx/gsocket.h"
40 # include "gsockmsw.h"
42 #endif /* __GSOCKET_STANDALONE__ */
44 /* Redefine some GUI-only functions to do nothing in console mode */
45 #if defined(wxUSE_GUI) && !wxUSE_GUI
46 # define _GSocket_GUI_Init(socket) (1)
47 # define _GSocket_GUI_Destroy(socket)
48 # define _GSocket_Enable_Events(socket)
49 # define _GSocket_Disable_Events(socket)
50 #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 known state first */
716 result
|= (GSOCK_CONNECTION_FLAG
& socket
->m_detected
& flags
);
717 result
|= (GSOCK_LOST_FLAG
& socket
->m_detected
& flags
);
720 if (select(socket
->m_fd
+ 1, &readfds
, &writefds
, &exceptfds
, &tv
) <= 0)
723 /* Check for readability */
724 if (FD_ISSET(socket
->m_fd
, &readfds
))
726 /* Assume that closure of the socket is always reported via exceptfds */
727 if (socket
->m_server
&& socket
->m_stream
)
728 result
|= (GSOCK_CONNECTION_FLAG
& flags
);
730 result
|= (GSOCK_INPUT_FLAG
& flags
);
733 /* Check for writability */
734 if (FD_ISSET(socket
->m_fd
, &writefds
))
736 if (socket
->m_establishing
&& !socket
->m_server
)
738 result
|= (GSOCK_CONNECTION_FLAG
& flags
);
739 socket
->m_establishing
= FALSE
;
740 socket
->m_detected
|= GSOCK_CONNECTION_FLAG
;
743 result
|= (GSOCK_OUTPUT_FLAG
& flags
);
746 /* Check for exceptions and errors */
747 if (FD_ISSET(socket
->m_fd
, &exceptfds
))
749 result
|= (GSOCK_LOST_FLAG
& flags
);
750 socket
->m_establishing
= FALSE
;
751 socket
->m_detected
= GSOCK_LOST_FLAG
;
758 assert(socket
!= NULL
);
759 return flags
& socket
->m_detected
;
761 #endif /* !wxUSE_GUI */
766 /* GSocket_SetNonBlocking:
767 * Sets the socket to non-blocking mode. All IO calls will return
770 void GSocket_SetNonBlocking(GSocket
*socket
, int non_block
)
772 assert(socket
!= NULL
);
774 socket
->m_non_blocking
= non_block
;
777 /* GSocket_SetTimeout:
778 * Sets the timeout for blocking calls. Time is expressed in
781 void GSocket_SetTimeout(GSocket
*socket
, unsigned long millis
)
783 assert(socket
!= NULL
);
785 socket
->m_timeout
.tv_sec
= (millis
/ 1000);
786 socket
->m_timeout
.tv_usec
= (millis
% 1000) * 1000;
790 * Returns the last error occured for this socket. Note that successful
791 * operations do not clear this back to GSOCK_NOERROR, so use it only
794 GSocketError
GSocket_GetError(GSocket
*socket
)
796 assert(socket
!= NULL
);
798 return socket
->m_error
;
804 * There is data to be read in the input buffer. If, after a read
805 * operation, there is still data available, the callback function will
808 * The socket is available for writing. That is, the next write call
809 * won't block. This event is generated only once, when the connection is
810 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
811 * when the output buffer empties again. This means that the app should
812 * assume that it can write since the first OUTPUT event, and no more
813 * OUTPUT events will be generated unless an error occurs.
815 * Connection succesfully established, for client sockets, or incoming
816 * client connection, for server sockets. Wait for this event (also watch
817 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
819 * The connection is lost (or a connection request failed); this could
820 * be due to a failure, or due to the peer closing it gracefully.
823 /* GSocket_SetCallback:
824 * Enables the callbacks specified by 'flags'. Note that 'flags'
825 * may be a combination of flags OR'ed toghether, so the same
826 * callback function can be made to accept different events.
827 * The callback function must have the following prototype:
829 * void function(GSocket *socket, GSocketEvent event, char *cdata)
831 void GSocket_SetCallback(GSocket
*socket
, GSocketEventFlags flags
,
832 GSocketCallback callback
, char *cdata
)
836 assert(socket
!= NULL
);
838 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
840 if ((flags
& (1 << count
)) != 0)
842 socket
->m_cbacks
[count
] = callback
;
843 socket
->m_data
[count
] = cdata
;
848 /* GSocket_UnsetCallback:
849 * Disables all callbacks specified by 'flags', which may be a
850 * combination of flags OR'ed toghether.
852 void GSocket_UnsetCallback(GSocket
*socket
, GSocketEventFlags flags
)
856 assert(socket
!= NULL
);
858 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
860 if ((flags
& (1 << count
)) != 0)
862 socket
->m_cbacks
[count
] = NULL
;
863 socket
->m_data
[count
] = NULL
;
870 /* _GSocket_Input_Timeout:
871 * For blocking sockets, wait until data is available or
872 * until timeout ellapses.
874 GSocketError
_GSocket_Input_Timeout(GSocket
*socket
)
878 if (!socket
->m_non_blocking
)
881 FD_SET(socket
->m_fd
, &readfds
);
882 if (select(0, &readfds
, NULL
, NULL
, &socket
->m_timeout
) == 0)
884 socket
->m_error
= GSOCK_TIMEDOUT
;
885 return GSOCK_TIMEDOUT
;
888 return GSOCK_NOERROR
;
891 /* _GSocket_Output_Timeout:
892 * For blocking sockets, wait until data can be sent without
893 * blocking or until timeout ellapses.
895 GSocketError
_GSocket_Output_Timeout(GSocket
*socket
)
899 if (!socket
->m_non_blocking
)
902 FD_SET(socket
->m_fd
, &writefds
);
903 if (select(0, NULL
, &writefds
, NULL
, &socket
->m_timeout
) == 0)
905 socket
->m_error
= GSOCK_TIMEDOUT
;
906 return GSOCK_TIMEDOUT
;
909 return GSOCK_NOERROR
;
912 /* _GSocket_Connect_Timeout:
913 * For blocking sockets, wait until the connection is
914 * established or fails, or until timeout ellapses.
916 GSocketError
_GSocket_Connect_Timeout(GSocket
*socket
)
923 FD_SET(socket
->m_fd
, &writefds
);
924 FD_SET(socket
->m_fd
, &exceptfds
);
925 if (select(0, NULL
, &writefds
, &exceptfds
, &socket
->m_timeout
) == 0)
927 socket
->m_error
= GSOCK_TIMEDOUT
;
928 return GSOCK_TIMEDOUT
;
930 if (!FD_ISSET(socket
->m_fd
, &writefds
))
932 socket
->m_error
= GSOCK_IOERR
;
936 return GSOCK_NOERROR
;
939 int _GSocket_Recv_Stream(GSocket
*socket
, char *buffer
, int size
)
941 return recv(socket
->m_fd
, buffer
, size
, 0);
944 int _GSocket_Recv_Dgram(GSocket
*socket
, char *buffer
, int size
)
946 struct sockaddr from
;
947 SOCKLEN_T fromlen
= sizeof(from
);
951 ret
= recvfrom(socket
->m_fd
, buffer
, size
, 0, &from
, &fromlen
);
953 if (ret
== SOCKET_ERROR
)
956 /* Translate a system address into a GSocket address */
959 socket
->m_peer
= GAddress_new();
962 socket
->m_error
= GSOCK_MEMERR
;
966 err
= _GAddress_translate_from(socket
->m_peer
, &from
, fromlen
);
967 if (err
!= GSOCK_NOERROR
)
969 GAddress_destroy(socket
->m_peer
);
970 socket
->m_peer
= NULL
;
971 socket
->m_error
= err
;
978 int _GSocket_Send_Stream(GSocket
*socket
, const char *buffer
, int size
)
980 return send(socket
->m_fd
, buffer
, size
, 0);
983 int _GSocket_Send_Dgram(GSocket
*socket
, const char *buffer
, int size
)
985 struct sockaddr
*addr
;
991 socket
->m_error
= GSOCK_INVADDR
;
995 err
= _GAddress_translate_to(socket
->m_peer
, &addr
, &len
);
996 if (err
!= GSOCK_NOERROR
)
998 socket
->m_error
= err
;
1002 ret
= sendto(socket
->m_fd
, buffer
, size
, 0, addr
, len
);
1004 /* Frees memory allocated by _GAddress_translate_to */
1012 * -------------------------------------------------------------------------
1014 * -------------------------------------------------------------------------
1017 /* CHECK_ADDRESS verifies that the current address family is either
1018 * GSOCK_NOFAMILY or GSOCK_*family*, and if it is GSOCK_NOFAMILY, it
1019 * initalizes it to be a GSOCK_*family*. In other cases, it returns
1020 * an appropiate error code.
1022 * CHECK_ADDRESS_RETVAL does the same but returning 'retval' on error.
1024 #define CHECK_ADDRESS(address, family) \
1026 if (address->m_family == GSOCK_NOFAMILY) \
1027 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1028 return address->m_error; \
1029 if (address->m_family != GSOCK_##family) \
1031 address->m_error = GSOCK_INVADDR; \
1032 return GSOCK_INVADDR; \
1036 #define CHECK_ADDRESS_RETVAL(address, family, retval) \
1038 if (address->m_family == GSOCK_NOFAMILY) \
1039 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1041 if (address->m_family != GSOCK_##family) \
1043 address->m_error = GSOCK_INVADDR; \
1049 GAddress
*GAddress_new(void)
1053 if ((address
= (GAddress
*) malloc(sizeof(GAddress
))) == NULL
)
1056 address
->m_family
= GSOCK_NOFAMILY
;
1057 address
->m_addr
= NULL
;
1063 GAddress
*GAddress_copy(GAddress
*address
)
1067 assert(address
!= NULL
);
1069 if ((addr2
= (GAddress
*) malloc(sizeof(GAddress
))) == NULL
)
1072 memcpy(addr2
, address
, sizeof(GAddress
));
1074 if (address
->m_addr
)
1076 addr2
->m_addr
= (struct sockaddr
*) malloc(addr2
->m_len
);
1077 if (addr2
->m_addr
== NULL
)
1082 memcpy(addr2
->m_addr
, address
->m_addr
, addr2
->m_len
);
1088 void GAddress_destroy(GAddress
*address
)
1090 assert(address
!= NULL
);
1092 if (address
->m_addr
)
1093 free(address
->m_addr
);
1098 void GAddress_SetFamily(GAddress
*address
, GAddressType type
)
1100 assert(address
!= NULL
);
1102 address
->m_family
= type
;
1105 GAddressType
GAddress_GetFamily(GAddress
*address
)
1107 assert(address
!= NULL
);
1109 return address
->m_family
;
1112 GSocketError
_GAddress_translate_from(GAddress
*address
,
1113 struct sockaddr
*addr
, int len
)
1115 address
->m_realfamily
= addr
->sa_family
;
1116 switch (addr
->sa_family
)
1119 address
->m_family
= GSOCK_INET
;
1122 address
->m_family
= GSOCK_UNIX
;
1126 address
->m_family
= GSOCK_INET6
;
1131 address
->m_error
= GSOCK_INVOP
;
1136 if (address
->m_addr
)
1137 free(address
->m_addr
);
1139 address
->m_len
= len
;
1140 address
->m_addr
= (struct sockaddr
*) malloc(len
);
1142 if (address
->m_addr
== NULL
)
1144 address
->m_error
= GSOCK_MEMERR
;
1145 return GSOCK_MEMERR
;
1147 memcpy(address
->m_addr
, addr
, len
);
1149 return GSOCK_NOERROR
;
1152 GSocketError
_GAddress_translate_to(GAddress
*address
,
1153 struct sockaddr
**addr
, int *len
)
1155 if (!address
->m_addr
)
1157 address
->m_error
= GSOCK_INVADDR
;
1158 return GSOCK_INVADDR
;
1161 *len
= address
->m_len
;
1162 *addr
= (struct sockaddr
*) malloc(address
->m_len
);
1165 address
->m_error
= GSOCK_MEMERR
;
1166 return GSOCK_MEMERR
;
1169 memcpy(*addr
, address
->m_addr
, address
->m_len
);
1170 return GSOCK_NOERROR
;
1174 * -------------------------------------------------------------------------
1175 * Internet address family
1176 * -------------------------------------------------------------------------
1179 GSocketError
_GAddress_Init_INET(GAddress
*address
)
1181 address
->m_len
= sizeof(struct sockaddr_in
);
1182 address
->m_addr
= (struct sockaddr
*) malloc(address
->m_len
);
1183 if (address
->m_addr
== NULL
)
1185 address
->m_error
= GSOCK_MEMERR
;
1186 return GSOCK_MEMERR
;
1189 address
->m_family
= GSOCK_INET
;
1190 address
->m_realfamily
= PF_INET
;
1191 ((struct sockaddr_in
*)address
->m_addr
)->sin_family
= AF_INET
;
1192 ((struct sockaddr_in
*)address
->m_addr
)->sin_addr
.s_addr
= INADDR_ANY
;
1194 return GSOCK_NOERROR
;
1197 GSocketError
GAddress_INET_SetHostName(GAddress
*address
, const char *hostname
)
1200 struct in_addr
*addr
;
1202 assert(address
!= NULL
);
1204 CHECK_ADDRESS(address
, INET
);
1206 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1208 addr
->s_addr
= inet_addr(hostname
);
1210 /* If it is a numeric host name, convert it now */
1211 if (addr
->s_addr
== INADDR_NONE
)
1213 struct in_addr
*array_addr
;
1215 /* It is a real name, we solve it */
1216 if ((he
= gethostbyname(hostname
)) == NULL
)
1218 /* addr->s_addr = INADDR_NONE just done by inet_addr() above */
1219 address
->m_error
= GSOCK_NOHOST
;
1220 return GSOCK_NOHOST
;
1222 array_addr
= (struct in_addr
*) *(he
->h_addr_list
);
1223 addr
->s_addr
= array_addr
[0].s_addr
;
1225 return GSOCK_NOERROR
;
1228 GSocketError
GAddress_INET_SetAnyAddress(GAddress
*address
)
1230 return GAddress_INET_SetHostAddress(address
, INADDR_ANY
);
1233 GSocketError
GAddress_INET_SetHostAddress(GAddress
*address
,
1234 unsigned long hostaddr
)
1236 struct in_addr
*addr
;
1238 assert(address
!= NULL
);
1240 CHECK_ADDRESS(address
, INET
);
1242 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1243 addr
->s_addr
= hostaddr
;
1245 return GSOCK_NOERROR
;
1248 GSocketError
GAddress_INET_SetPortName(GAddress
*address
, const char *port
,
1249 const char *protocol
)
1252 struct sockaddr_in
*addr
;
1254 assert(address
!= NULL
);
1255 CHECK_ADDRESS(address
, INET
);
1259 address
->m_error
= GSOCK_INVPORT
;
1260 return GSOCK_INVPORT
;
1263 se
= getservbyname(port
, protocol
);
1266 if (isdigit(port
[0]))
1270 port_int
= atoi(port
);
1271 addr
= (struct sockaddr_in
*)address
->m_addr
;
1272 addr
->sin_port
= htons((u_short
) port_int
);
1273 return GSOCK_NOERROR
;
1276 address
->m_error
= GSOCK_INVPORT
;
1277 return GSOCK_INVPORT
;
1280 addr
= (struct sockaddr_in
*)address
->m_addr
;
1281 addr
->sin_port
= se
->s_port
;
1283 return GSOCK_NOERROR
;
1286 GSocketError
GAddress_INET_SetPort(GAddress
*address
, unsigned short port
)
1288 struct sockaddr_in
*addr
;
1290 assert(address
!= NULL
);
1291 CHECK_ADDRESS(address
, INET
);
1293 addr
= (struct sockaddr_in
*)address
->m_addr
;
1294 addr
->sin_port
= htons(port
);
1296 return GSOCK_NOERROR
;
1299 GSocketError
GAddress_INET_GetHostName(GAddress
*address
, char *hostname
, size_t sbuf
)
1303 struct sockaddr_in
*addr
;
1305 assert(address
!= NULL
);
1306 CHECK_ADDRESS(address
, INET
);
1308 addr
= (struct sockaddr_in
*)address
->m_addr
;
1309 addr_buf
= (char *)&(addr
->sin_addr
);
1311 he
= gethostbyaddr(addr_buf
, sizeof(addr
->sin_addr
), AF_INET
);
1314 address
->m_error
= GSOCK_NOHOST
;
1315 return GSOCK_NOHOST
;
1318 strncpy(hostname
, he
->h_name
, sbuf
);
1320 return GSOCK_NOERROR
;
1323 unsigned long GAddress_INET_GetHostAddress(GAddress
*address
)
1325 struct sockaddr_in
*addr
;
1327 assert(address
!= NULL
);
1328 CHECK_ADDRESS_RETVAL(address
, INET
, 0);
1330 addr
= (struct sockaddr_in
*)address
->m_addr
;
1332 return addr
->sin_addr
.s_addr
;
1335 unsigned short GAddress_INET_GetPort(GAddress
*address
)
1337 struct sockaddr_in
*addr
;
1339 assert(address
!= NULL
);
1340 CHECK_ADDRESS_RETVAL(address
, INET
, 0);
1342 addr
= (struct sockaddr_in
*)address
->m_addr
;
1343 return ntohs(addr
->sin_port
);
1347 * -------------------------------------------------------------------------
1348 * Unix address family
1349 * -------------------------------------------------------------------------
1352 GSocketError
_GAddress_Init_UNIX(GAddress
*address
)
1354 assert (address
!= NULL
);
1355 address
->m_error
= GSOCK_INVADDR
;
1356 return GSOCK_INVADDR
;
1359 GSocketError
GAddress_UNIX_SetPath(GAddress
*address
, const char *path
)
1361 assert (address
!= NULL
);
1362 address
->m_error
= GSOCK_INVADDR
;
1363 return GSOCK_INVADDR
;
1366 GSocketError
GAddress_UNIX_GetPath(GAddress
*address
, char *path
, size_t sbuf
)
1368 assert (address
!= NULL
);
1369 address
->m_error
= GSOCK_INVADDR
;
1370 return GSOCK_INVADDR
;
1373 #else /* !wxUSE_SOCKETS */
1376 * Translation unit shouldn't be empty, so include this typedef to make the
1377 * compiler (VC++ 6.0, for example) happy
1379 typedef void (*wxDummy
)();
1381 #endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */