1 /* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket)
4 * Author: Guillermo Rodriguez Garcia <guille@iies.es>
5 * Purpose: GSocket main MSW file
6 * Licence: The wxWindows licence
8 * -------------------------------------------------------------------------
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
19 /* RPCNOTIFICATION_ROUTINE in rasasync.h (included from winsock.h),
20 * warning: conditional expression is constant.
22 # pragma warning(disable:4115)
24 * warning: named type definition in parentheses.
26 # pragma warning(disable:4127)
27 /* GAddress_UNIX_GetPath,
28 * warning: unreferenced formal parameter.
30 # pragma warning(disable:4100)
33 /* windows.h results in tons of warnings at max warning level */
35 # pragma warning(push, 1)
40 # pragma warning(disable:4514)
48 #ifndef __GSOCKET_STANDALONE__
49 # include "wx/platform.h"
50 # include "wx/setup.h"
53 #if wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__)
55 #ifndef __GSOCKET_STANDALONE__
56 # include "wx/msw/gsockmsw.h"
57 # include "wx/gsocket.h"
59 # include "gsockmsw.h"
61 #endif /* __GSOCKET_STANDALONE__ */
68 #define isdigit(x) (x > 47 && x < 58)
70 #include "wx/msw/wince/net.h"
79 /* if we use configure for MSW SOCKLEN_T will be already defined */
81 # define SOCKLEN_T int
84 /* Table of GUI-related functions. We must call them indirectly because
85 * of wxBase and GUI separation: */
87 static GSocketGUIFunctionsTable
*gs_gui_functions
;
89 class GSocketGUIFunctionsTableNull
: public GSocketGUIFunctionsTable
92 virtual bool OnInit();
93 virtual void OnExit();
94 virtual bool CanUseEventLoop();
95 virtual bool Init_Socket(GSocket
*socket
);
96 virtual void Destroy_Socket(GSocket
*socket
);
97 virtual void Enable_Events(GSocket
*socket
);
98 virtual void Disable_Events(GSocket
*socket
);
101 bool GSocketGUIFunctionsTableNull::OnInit()
103 void GSocketGUIFunctionsTableNull::OnExit()
105 bool GSocketGUIFunctionsTableNull::CanUseEventLoop()
107 bool GSocketGUIFunctionsTableNull::Init_Socket(GSocket
*WXUNUSED(socket
))
109 void GSocketGUIFunctionsTableNull::Destroy_Socket(GSocket
*WXUNUSED(socket
))
111 void GSocketGUIFunctionsTableNull::Enable_Events(GSocket
*WXUNUSED(socket
))
113 void GSocketGUIFunctionsTableNull::Disable_Events(GSocket
*WXUNUSED(socket
))
115 /* Global initialisers */
117 void GSocket_SetGUIFunctions(GSocketGUIFunctionsTable
*guifunc
)
119 gs_gui_functions
= guifunc
;
122 int GSocket_Init(void)
126 if (!gs_gui_functions
)
128 static GSocketGUIFunctionsTableNull table
;
129 gs_gui_functions
= &table
;
131 if ( !gs_gui_functions
->OnInit() )
136 /* Initialize WinSocket */
137 return (WSAStartup((1 << 8) | 1, &wsaData
) == 0);
140 void GSocket_Cleanup(void)
142 if (gs_gui_functions
)
144 gs_gui_functions
->OnExit();
147 /* Cleanup WinSocket */
151 /* Constructors / Destructors for GSocket */
157 m_fd
= INVALID_SOCKET
;
158 for (i
= 0; i
< GSOCK_MAX_EVENT
; i
++)
165 m_error
= GSOCK_NOERROR
;
168 m_non_blocking
= false;
169 m_timeout
.tv_sec
= 10 * 60; /* 10 minutes */
170 m_timeout
.tv_usec
= 0;
171 m_establishing
= false;
174 assert(gs_gui_functions
);
175 /* Per-socket GUI-specific initialization */
176 m_ok
= gs_gui_functions
->Init_Socket(this);
179 void GSocket::Close()
181 gs_gui_functions
->Disable_Events(this);
183 m_fd
= INVALID_SOCKET
;
190 /* Per-socket GUI-specific cleanup */
191 gs_gui_functions
->Destroy_Socket(this);
193 /* Check that the socket is really shutdowned */
194 if (m_fd
!= INVALID_SOCKET
)
197 /* Destroy private addresses */
199 GAddress_destroy(m_local
);
202 GAddress_destroy(m_peer
);
206 * Disallow further read/write operations on this socket, close
207 * the fd and disable all callbacks.
209 void GSocket::Shutdown()
215 /* If socket has been created, shutdown it */
216 if (m_fd
!= INVALID_SOCKET
)
222 /* Disable GUI callbacks */
223 for (evt
= 0; evt
< GSOCK_MAX_EVENT
; evt
++)
224 m_cbacks
[evt
] = NULL
;
226 m_detected
= GSOCK_LOST_FLAG
;
229 /* Address handling */
235 * Set or get the local or peer address for this socket. The 'set'
236 * functions return GSOCK_NOERROR on success, an error code otherwise.
237 * The 'get' functions return a pointer to a GAddress object on success,
238 * or NULL otherwise, in which case they set the error code of the
239 * corresponding GSocket.
242 * GSOCK_INVSOCK - the socket is not valid.
243 * GSOCK_INVADDR - the address is not valid.
245 GSocketError
GSocket::SetLocal(GAddress
*address
)
249 /* the socket must be initialized, or it must be a server */
250 if (m_fd
!= INVALID_SOCKET
&& !m_server
)
252 m_error
= GSOCK_INVSOCK
;
253 return GSOCK_INVSOCK
;
257 if (address
== NULL
|| address
->m_family
== GSOCK_NOFAMILY
)
259 m_error
= GSOCK_INVADDR
;
260 return GSOCK_INVADDR
;
264 GAddress_destroy(m_local
);
266 m_local
= GAddress_copy(address
);
268 return GSOCK_NOERROR
;
271 GSocketError
GSocket::SetPeer(GAddress
*address
)
276 if (address
== NULL
|| address
->m_family
== GSOCK_NOFAMILY
)
278 m_error
= GSOCK_INVADDR
;
279 return GSOCK_INVADDR
;
283 GAddress_destroy(m_peer
);
285 m_peer
= GAddress_copy(address
);
287 return GSOCK_NOERROR
;
290 GAddress
*GSocket::GetLocal()
293 struct sockaddr addr
;
294 SOCKLEN_T size
= sizeof(addr
);
299 /* try to get it from the m_local var first */
301 return GAddress_copy(m_local
);
303 /* else, if the socket is initialized, try getsockname */
304 if (m_fd
== INVALID_SOCKET
)
306 m_error
= GSOCK_INVSOCK
;
310 if (getsockname(m_fd
, &addr
, &size
) == SOCKET_ERROR
)
312 m_error
= GSOCK_IOERR
;
316 /* got a valid address from getsockname, create a GAddress object */
317 if ((address
= GAddress_new()) == NULL
)
319 m_error
= GSOCK_MEMERR
;
323 if ((err
= _GAddress_translate_from(address
, &addr
, size
)) != GSOCK_NOERROR
)
325 GAddress_destroy(address
);
333 GAddress
*GSocket::GetPeer()
337 /* try to get it from the m_peer var */
339 return GAddress_copy(m_peer
);
344 /* Server specific parts */
346 /* GSocket_SetServer:
347 * Sets up this socket as a server. The local address must have been
348 * set with GSocket_SetLocal() before GSocket_SetServer() is called.
349 * Returns GSOCK_NOERROR on success, one of the following otherwise:
352 * GSOCK_INVSOCK - the socket is in use.
353 * GSOCK_INVADDR - the local address has not been set.
354 * GSOCK_IOERR - low-level error.
356 GSocketError
GSocket::SetServer()
362 /* must not be in use */
363 if (m_fd
!= INVALID_SOCKET
)
365 m_error
= GSOCK_INVSOCK
;
366 return GSOCK_INVSOCK
;
369 /* the local addr must have been set */
372 m_error
= GSOCK_INVADDR
;
373 return GSOCK_INVADDR
;
376 /* Initialize all fields */
380 /* Create the socket */
381 m_fd
= socket(m_local
->m_realfamily
, SOCK_STREAM
, 0);
383 if (m_fd
== INVALID_SOCKET
)
385 m_error
= GSOCK_IOERR
;
389 ioctlsocket(m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
390 gs_gui_functions
->Enable_Events(this);
392 /* allow a socket to re-bind if the socket is in the TIME_WAIT
393 state after being previously closed.
396 setsockopt(m_fd
, SOL_SOCKET
, SO_REUSEADDR
, (const char*)&arg
, sizeof(u_long
));
399 /* Bind to the local address,
400 * retrieve the actual address bound,
401 * and listen up to 5 connections.
403 if ((bind(m_fd
, m_local
->m_addr
, m_local
->m_len
) != 0) ||
406 (SOCKLEN_T
*)&m_local
->m_len
) != 0) ||
407 (listen(m_fd
, 5) != 0))
410 m_error
= GSOCK_IOERR
;
414 return GSOCK_NOERROR
;
417 /* GSocket_WaitConnection:
418 * Waits for an incoming client connection. Returns a pointer to
419 * a GSocket object, or NULL if there was an error, in which case
420 * the last error field will be updated for the calling GSocket.
422 * Error codes (set in the calling GSocket)
423 * GSOCK_INVSOCK - the socket is not valid or not a server.
424 * GSOCK_TIMEDOUT - timeout, no incoming connections.
425 * GSOCK_WOULDBLOCK - the call would block and the socket is nonblocking.
426 * GSOCK_MEMERR - couldn't allocate memory.
427 * GSOCK_IOERR - low-level error.
429 GSocket
*GSocket::WaitConnection()
432 struct sockaddr from
;
433 SOCKLEN_T fromlen
= sizeof(from
);
439 /* Reenable CONNECTION events */
440 m_detected
&= ~GSOCK_CONNECTION_FLAG
;
442 /* If the socket has already been created, we exit immediately */
443 if (m_fd
== INVALID_SOCKET
|| !m_server
)
445 m_error
= GSOCK_INVSOCK
;
449 /* Create a GSocket object for the new connection */
450 connection
= GSocket_new();
454 m_error
= GSOCK_MEMERR
;
458 /* Wait for a connection (with timeout) */
459 if (Input_Timeout() == GSOCK_TIMEDOUT
)
462 /* m_error set by _GSocket_Input_Timeout */
466 connection
->m_fd
= accept(m_fd
, &from
, &fromlen
);
468 if (connection
->m_fd
== INVALID_SOCKET
)
470 if (WSAGetLastError() == WSAEWOULDBLOCK
)
471 m_error
= GSOCK_WOULDBLOCK
;
473 m_error
= GSOCK_IOERR
;
479 /* Initialize all fields */
480 connection
->m_server
= false;
481 connection
->m_stream
= true;
483 /* Setup the peer address field */
484 connection
->m_peer
= GAddress_new();
485 if (!connection
->m_peer
)
488 m_error
= GSOCK_MEMERR
;
491 err
= _GAddress_translate_from(connection
->m_peer
, &from
, fromlen
);
492 if (err
!= GSOCK_NOERROR
)
494 GAddress_destroy(connection
->m_peer
);
500 ioctlsocket(connection
->m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
501 gs_gui_functions
->Enable_Events(connection
);
506 /* GSocket_SetReusable:
507 * Simply sets the m_resuable flag on the socket. GSocket_SetServer will
508 * make the appropriate setsockopt() call.
509 * Implemented as a GSocket function because clients (ie, wxSocketServer)
510 * don't have access to the GSocket struct information.
511 * Returns true if the flag was set correctly, false if an error occured
512 * (ie, if the parameter was NULL)
514 bool GSocket::SetReusable()
516 /* socket must not be null, and must not be in use/already bound */
517 if (this && m_fd
== INVALID_SOCKET
) {
524 /* Client specific parts */
527 * For stream (connection oriented) sockets, GSocket_Connect() tries
528 * to establish a client connection to a server using the peer address
529 * as established with GSocket_SetPeer(). Returns GSOCK_NOERROR if the
530 * connection has been succesfully established, or one of the error
531 * codes listed below. Note that for nonblocking sockets, a return
532 * value of GSOCK_WOULDBLOCK doesn't mean a failure. The connection
533 * request can be completed later; you should use GSocket_Select()
534 * to poll for GSOCK_CONNECTION | GSOCK_LOST, or wait for the
535 * corresponding asynchronous events.
537 * For datagram (non connection oriented) sockets, GSocket_Connect()
538 * just sets the peer address established with GSocket_SetPeer() as
539 * default destination.
542 * GSOCK_INVSOCK - the socket is in use or not valid.
543 * GSOCK_INVADDR - the peer address has not been established.
544 * GSOCK_TIMEDOUT - timeout, the connection failed.
545 * GSOCK_WOULDBLOCK - connection in progress (nonblocking sockets only)
546 * GSOCK_MEMERR - couldn't allocate memory.
547 * GSOCK_IOERR - low-level error.
549 GSocketError
GSocket::Connect(GSocketStream stream
)
556 /* Enable CONNECTION events (needed for nonblocking connections) */
557 m_detected
&= ~GSOCK_CONNECTION_FLAG
;
559 if (m_fd
!= INVALID_SOCKET
)
561 m_error
= GSOCK_INVSOCK
;
562 return GSOCK_INVSOCK
;
567 m_error
= GSOCK_INVADDR
;
568 return GSOCK_INVADDR
;
571 /* Streamed or dgram socket? */
572 m_stream
= (stream
== GSOCK_STREAMED
);
574 m_establishing
= false;
576 /* Create the socket */
577 m_fd
= socket(m_peer
->m_realfamily
,
578 m_stream
? SOCK_STREAM
: SOCK_DGRAM
, 0);
580 if (m_fd
== INVALID_SOCKET
)
582 m_error
= GSOCK_IOERR
;
586 ioctlsocket(m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
587 gs_gui_functions
->Enable_Events(this);
589 /* Connect it to the peer address, with a timeout (see below) */
590 ret
= connect(m_fd
, m_peer
->m_addr
, m_peer
->m_len
);
592 if (ret
== SOCKET_ERROR
)
594 err
= WSAGetLastError();
596 /* If connect failed with EWOULDBLOCK and the GSocket object
597 * is in blocking mode, we select() for the specified timeout
598 * checking for writability to see if the connection request
601 if ((err
== WSAEWOULDBLOCK
) && (!m_non_blocking
))
603 err
= Connect_Timeout();
605 if (err
!= GSOCK_NOERROR
)
608 /* m_error is set in _GSocket_Connect_Timeout */
611 return (GSocketError
) err
;
614 /* If connect failed with EWOULDBLOCK and the GSocket object
615 * is set to nonblocking, we set m_error to GSOCK_WOULDBLOCK
616 * (and return GSOCK_WOULDBLOCK) but we don't close the socket;
617 * this way if the connection completes, a GSOCK_CONNECTION
618 * event will be generated, if enabled.
620 if ((err
== WSAEWOULDBLOCK
) && (m_non_blocking
))
622 m_establishing
= true;
623 m_error
= GSOCK_WOULDBLOCK
;
624 return GSOCK_WOULDBLOCK
;
627 /* If connect failed with an error other than EWOULDBLOCK,
628 * then the call to GSocket_Connect() has failed.
631 m_error
= GSOCK_IOERR
;
635 return GSOCK_NOERROR
;
638 /* Datagram sockets */
640 /* GSocket_SetNonOriented:
641 * Sets up this socket as a non-connection oriented (datagram) socket.
642 * Before using this function, the local address must have been set
643 * with GSocket_SetLocal(), or the call will fail. Returns GSOCK_NOERROR
644 * on success, or one of the following otherwise.
647 * GSOCK_INVSOCK - the socket is in use.
648 * GSOCK_INVADDR - the local address has not been set.
649 * GSOCK_IOERR - low-level error.
651 GSocketError
GSocket::SetNonOriented()
657 if (m_fd
!= INVALID_SOCKET
)
659 m_error
= GSOCK_INVSOCK
;
660 return GSOCK_INVSOCK
;
665 m_error
= GSOCK_INVADDR
;
666 return GSOCK_INVADDR
;
669 /* Initialize all fields */
673 /* Create the socket */
674 m_fd
= socket(m_local
->m_realfamily
, SOCK_DGRAM
, 0);
676 if (m_fd
== INVALID_SOCKET
)
678 m_error
= GSOCK_IOERR
;
682 ioctlsocket(m_fd
, FIONBIO
, (u_long FAR
*) &arg
);
683 gs_gui_functions
->Enable_Events(this);
685 /* Bind to the local address,
686 * and retrieve the actual address bound.
688 if ((bind(m_fd
, m_local
->m_addr
, m_local
->m_len
) != 0) ||
691 (SOCKLEN_T
*)&m_local
->m_len
) != 0))
694 m_error
= GSOCK_IOERR
;
698 return GSOCK_NOERROR
;
703 /* Like recv(), send(), ... */
704 int GSocket::Read(char *buffer
, int size
)
710 /* Reenable INPUT events */
711 m_detected
&= ~GSOCK_INPUT_FLAG
;
713 if (m_fd
== INVALID_SOCKET
|| m_server
)
715 m_error
= GSOCK_INVSOCK
;
719 /* If the socket is blocking, wait for data (with a timeout) */
720 if (Input_Timeout() == GSOCK_TIMEDOUT
)
725 ret
= Recv_Stream(buffer
, size
);
727 ret
= Recv_Dgram(buffer
, size
);
729 if (ret
== SOCKET_ERROR
)
731 if (WSAGetLastError() != WSAEWOULDBLOCK
)
732 m_error
= GSOCK_IOERR
;
734 m_error
= GSOCK_WOULDBLOCK
;
741 int GSocket::Write(const char *buffer
, int size
)
747 if (m_fd
== INVALID_SOCKET
|| m_server
)
749 m_error
= GSOCK_INVSOCK
;
753 /* If the socket is blocking, wait for writability (with a timeout) */
754 if (Output_Timeout() == GSOCK_TIMEDOUT
)
759 ret
= Send_Stream(buffer
, size
);
761 ret
= Send_Dgram(buffer
, size
);
763 if (ret
== SOCKET_ERROR
)
765 if (WSAGetLastError() != WSAEWOULDBLOCK
)
766 m_error
= GSOCK_IOERR
;
768 m_error
= GSOCK_WOULDBLOCK
;
770 /* Only reenable OUTPUT events after an error (just like WSAAsyncSelect
771 * does). Once the first OUTPUT event is received, users can assume
772 * that the socket is writable until a read operation fails. Only then
773 * will further OUTPUT events be posted.
775 m_detected
&= ~GSOCK_OUTPUT_FLAG
;
783 * Polls the socket to determine its status. This function will
784 * check for the events specified in the 'flags' parameter, and
785 * it will return a mask indicating which operations can be
786 * performed. This function won't block, regardless of the
787 * mode (blocking | nonblocking) of the socket.
789 GSocketEventFlags
GSocket::Select(GSocketEventFlags flags
)
791 if (!gs_gui_functions
->CanUseEventLoop())
793 GSocketEventFlags result
= 0;
803 FD_SET(m_fd
, &readfds
);
804 if (flags
& GSOCK_OUTPUT_FLAG
|| flags
& GSOCK_CONNECTION_FLAG
)
805 FD_SET(m_fd
, &writefds
);
806 FD_SET(m_fd
, &exceptfds
);
808 /* Check 'sticky' CONNECTION flag first */
809 result
|= (GSOCK_CONNECTION_FLAG
& m_detected
);
811 /* If we have already detected a LOST event, then don't try
812 * to do any further processing.
814 if ((m_detected
& GSOCK_LOST_FLAG
) != 0)
816 m_establishing
= false;
818 return (GSOCK_LOST_FLAG
& flags
);
822 if (select(m_fd
+ 1, &readfds
, &writefds
, &exceptfds
,
825 /* What to do here? */
826 return (result
& flags
);
829 /* Check for readability */
830 if (FD_ISSET(m_fd
, &readfds
))
834 if (!m_stream
|| recv(m_fd
, &c
, 1, MSG_PEEK
) > 0)
836 result
|= GSOCK_INPUT_FLAG
;
840 if (m_server
&& m_stream
)
842 result
|= GSOCK_CONNECTION_FLAG
;
843 m_detected
|= GSOCK_CONNECTION_FLAG
;
847 m_detected
= GSOCK_LOST_FLAG
;
848 m_establishing
= false;
850 /* LOST event: Abort any further processing */
851 return (GSOCK_LOST_FLAG
& flags
);
856 /* Check for writability */
857 if (FD_ISSET(m_fd
, &writefds
))
859 if (m_establishing
&& !m_server
)
862 SOCKLEN_T len
= sizeof(error
);
864 m_establishing
= false;
866 getsockopt(m_fd
, SOL_SOCKET
, SO_ERROR
, (char*)&error
, &len
);
870 m_detected
= GSOCK_LOST_FLAG
;
872 /* LOST event: Abort any further processing */
873 return (GSOCK_LOST_FLAG
& flags
);
877 result
|= GSOCK_CONNECTION_FLAG
;
878 m_detected
|= GSOCK_CONNECTION_FLAG
;
883 result
|= GSOCK_OUTPUT_FLAG
;
887 /* Check for exceptions and errors (is this useful in Unices?) */
888 if (FD_ISSET(m_fd
, &exceptfds
))
890 m_establishing
= false;
891 m_detected
= GSOCK_LOST_FLAG
;
893 /* LOST event: Abort any further processing */
894 return (GSOCK_LOST_FLAG
& flags
);
897 return (result
& flags
);
902 return flags
& m_detected
;
908 /* GSocket_SetNonBlocking:
909 * Sets the socket to non-blocking mode. All IO calls will return
912 void GSocket::SetNonBlocking(bool non_block
)
916 m_non_blocking
= non_block
;
919 /* GSocket_SetTimeout:
920 * Sets the timeout for blocking calls. Time is expressed in
923 void GSocket::SetTimeout(unsigned long millis
)
927 m_timeout
.tv_sec
= (millis
/ 1000);
928 m_timeout
.tv_usec
= (millis
% 1000) * 1000;
932 * Returns the last error occured for this socket. Note that successful
933 * operations do not clear this back to GSOCK_NOERROR, so use it only
936 GSocketError WXDLLIMPEXP_NET
GSocket::GetError()
946 * There is data to be read in the input buffer. If, after a read
947 * operation, there is still data available, the callback function will
950 * The socket is available for writing. That is, the next write call
951 * won't block. This event is generated only once, when the connection is
952 * first established, and then only if a call failed with GSOCK_WOULDBLOCK,
953 * when the output buffer empties again. This means that the app should
954 * assume that it can write since the first OUTPUT event, and no more
955 * OUTPUT events will be generated unless an error occurs.
957 * Connection succesfully established, for client sockets, or incoming
958 * client connection, for server sockets. Wait for this event (also watch
959 * out for GSOCK_LOST) after you issue a nonblocking GSocket_Connect() call.
961 * The connection is lost (or a connection request failed); this could
962 * be due to a failure, or due to the peer closing it gracefully.
965 /* GSocket_SetCallback:
966 * Enables the callbacks specified by 'flags'. Note that 'flags'
967 * may be a combination of flags OR'ed toghether, so the same
968 * callback function can be made to accept different events.
969 * The callback function must have the following prototype:
971 * void function(GSocket *socket, GSocketEvent event, char *cdata)
973 void GSocket::SetCallback(GSocketEventFlags flags
,
974 GSocketCallback callback
, char *cdata
)
980 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
982 if ((flags
& (1 << count
)) != 0)
984 m_cbacks
[count
] = callback
;
985 m_data
[count
] = cdata
;
990 /* GSocket_UnsetCallback:
991 * Disables all callbacks specified by 'flags', which may be a
992 * combination of flags OR'ed toghether.
994 void GSocket::UnsetCallback(GSocketEventFlags flags
)
1000 for (count
= 0; count
< GSOCK_MAX_EVENT
; count
++)
1002 if ((flags
& (1 << count
)) != 0)
1004 m_cbacks
[count
] = NULL
;
1005 m_data
[count
] = NULL
;
1010 GSocketError
GSocket::GetSockOpt(int level
, int optname
,
1011 void *optval
, int *optlen
)
1013 if (getsockopt(m_fd
, level
, optname
, (char*)optval
, optlen
) == 0)
1015 return GSOCK_NOERROR
;
1017 return GSOCK_OPTERR
;
1020 GSocketError
GSocket::SetSockOpt(int level
, int optname
,
1021 const void *optval
, int optlen
)
1023 if (setsockopt(m_fd
, level
, optname
, (char*)optval
, optlen
) == 0)
1025 return GSOCK_NOERROR
;
1027 return GSOCK_OPTERR
;
1030 /* Internals (IO) */
1032 /* _GSocket_Input_Timeout:
1033 * For blocking sockets, wait until data is available or
1034 * until timeout ellapses.
1036 GSocketError
GSocket::Input_Timeout()
1040 if (!m_non_blocking
)
1043 FD_SET(m_fd
, &readfds
);
1044 if (select(0, &readfds
, NULL
, NULL
, &m_timeout
) == 0)
1046 m_error
= GSOCK_TIMEDOUT
;
1047 return GSOCK_TIMEDOUT
;
1050 return GSOCK_NOERROR
;
1053 /* _GSocket_Output_Timeout:
1054 * For blocking sockets, wait until data can be sent without
1055 * blocking or until timeout ellapses.
1057 GSocketError
GSocket::Output_Timeout()
1061 if (!m_non_blocking
)
1064 FD_SET(m_fd
, &writefds
);
1065 if (select(0, NULL
, &writefds
, NULL
, &m_timeout
) == 0)
1067 m_error
= GSOCK_TIMEDOUT
;
1068 return GSOCK_TIMEDOUT
;
1071 return GSOCK_NOERROR
;
1074 /* _GSocket_Connect_Timeout:
1075 * For blocking sockets, wait until the connection is
1076 * established or fails, or until timeout ellapses.
1078 GSocketError
GSocket::Connect_Timeout()
1084 FD_ZERO(&exceptfds
);
1085 FD_SET(m_fd
, &writefds
);
1086 FD_SET(m_fd
, &exceptfds
);
1087 if (select(0, NULL
, &writefds
, &exceptfds
, &m_timeout
) == 0)
1089 m_error
= GSOCK_TIMEDOUT
;
1090 return GSOCK_TIMEDOUT
;
1092 if (!FD_ISSET(m_fd
, &writefds
))
1094 m_error
= GSOCK_IOERR
;
1098 return GSOCK_NOERROR
;
1101 int GSocket::Recv_Stream(char *buffer
, int size
)
1103 return recv(m_fd
, buffer
, size
, 0);
1106 int GSocket::Recv_Dgram(char *buffer
, int size
)
1108 struct sockaddr from
;
1109 SOCKLEN_T fromlen
= sizeof(from
);
1113 ret
= recvfrom(m_fd
, buffer
, size
, 0, &from
, &fromlen
);
1115 if (ret
== SOCKET_ERROR
)
1116 return SOCKET_ERROR
;
1118 /* Translate a system address into a GSocket address */
1121 m_peer
= GAddress_new();
1124 m_error
= GSOCK_MEMERR
;
1128 err
= _GAddress_translate_from(m_peer
, &from
, fromlen
);
1129 if (err
!= GSOCK_NOERROR
)
1131 GAddress_destroy(m_peer
);
1140 int GSocket::Send_Stream(const char *buffer
, int size
)
1142 return send(m_fd
, buffer
, size
, 0);
1145 int GSocket::Send_Dgram(const char *buffer
, int size
)
1147 struct sockaddr
*addr
;
1153 m_error
= GSOCK_INVADDR
;
1157 err
= _GAddress_translate_to(m_peer
, &addr
, &len
);
1158 if (err
!= GSOCK_NOERROR
)
1164 ret
= sendto(m_fd
, buffer
, size
, 0, addr
, len
);
1166 /* Frees memory allocated by _GAddress_translate_to */
1172 /* Compatibility functions for GSocket */
1173 GSocket
*GSocket_new(void)
1175 GSocket
*newsocket
= new GSocket();
1176 if(newsocket
->IsOk())
1184 * -------------------------------------------------------------------------
1186 * -------------------------------------------------------------------------
1189 /* CHECK_ADDRESS verifies that the current address family is either
1190 * GSOCK_NOFAMILY or GSOCK_*family*, and if it is GSOCK_NOFAMILY, it
1191 * initalizes it to be a GSOCK_*family*. In other cases, it returns
1192 * an appropiate error code.
1194 * CHECK_ADDRESS_RETVAL does the same but returning 'retval' on error.
1196 #define CHECK_ADDRESS(address, family) \
1198 if (address->m_family == GSOCK_NOFAMILY) \
1199 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1200 return address->m_error; \
1201 if (address->m_family != GSOCK_##family) \
1203 address->m_error = GSOCK_INVADDR; \
1204 return GSOCK_INVADDR; \
1208 #define CHECK_ADDRESS_RETVAL(address, family, retval) \
1210 if (address->m_family == GSOCK_NOFAMILY) \
1211 if (_GAddress_Init_##family(address) != GSOCK_NOERROR) \
1213 if (address->m_family != GSOCK_##family) \
1215 address->m_error = GSOCK_INVADDR; \
1221 GAddress
*GAddress_new(void)
1225 if ((address
= (GAddress
*) malloc(sizeof(GAddress
))) == NULL
)
1228 address
->m_family
= GSOCK_NOFAMILY
;
1229 address
->m_addr
= NULL
;
1235 GAddress
*GAddress_copy(GAddress
*address
)
1239 assert(address
!= NULL
);
1241 if ((addr2
= (GAddress
*) malloc(sizeof(GAddress
))) == NULL
)
1244 memcpy(addr2
, address
, sizeof(GAddress
));
1246 if (address
->m_addr
)
1248 addr2
->m_addr
= (struct sockaddr
*) malloc(addr2
->m_len
);
1249 if (addr2
->m_addr
== NULL
)
1254 memcpy(addr2
->m_addr
, address
->m_addr
, addr2
->m_len
);
1260 void GAddress_destroy(GAddress
*address
)
1262 assert(address
!= NULL
);
1264 if (address
->m_addr
)
1265 free(address
->m_addr
);
1270 void GAddress_SetFamily(GAddress
*address
, GAddressType type
)
1272 assert(address
!= NULL
);
1274 address
->m_family
= type
;
1277 GAddressType
GAddress_GetFamily(GAddress
*address
)
1279 assert(address
!= NULL
);
1281 return address
->m_family
;
1284 GSocketError
_GAddress_translate_from(GAddress
*address
,
1285 struct sockaddr
*addr
, int len
)
1287 address
->m_realfamily
= addr
->sa_family
;
1288 switch (addr
->sa_family
)
1291 address
->m_family
= GSOCK_INET
;
1294 address
->m_family
= GSOCK_UNIX
;
1298 address
->m_family
= GSOCK_INET6
;
1303 address
->m_error
= GSOCK_INVOP
;
1308 if (address
->m_addr
)
1309 free(address
->m_addr
);
1311 address
->m_len
= len
;
1312 address
->m_addr
= (struct sockaddr
*) malloc(len
);
1314 if (address
->m_addr
== NULL
)
1316 address
->m_error
= GSOCK_MEMERR
;
1317 return GSOCK_MEMERR
;
1319 memcpy(address
->m_addr
, addr
, len
);
1321 return GSOCK_NOERROR
;
1324 GSocketError
_GAddress_translate_to(GAddress
*address
,
1325 struct sockaddr
**addr
, int *len
)
1327 if (!address
->m_addr
)
1329 address
->m_error
= GSOCK_INVADDR
;
1330 return GSOCK_INVADDR
;
1333 *len
= address
->m_len
;
1334 *addr
= (struct sockaddr
*) malloc(address
->m_len
);
1337 address
->m_error
= GSOCK_MEMERR
;
1338 return GSOCK_MEMERR
;
1341 memcpy(*addr
, address
->m_addr
, address
->m_len
);
1342 return GSOCK_NOERROR
;
1346 * -------------------------------------------------------------------------
1347 * Internet address family
1348 * -------------------------------------------------------------------------
1351 GSocketError
_GAddress_Init_INET(GAddress
*address
)
1353 address
->m_len
= sizeof(struct sockaddr_in
);
1354 address
->m_addr
= (struct sockaddr
*) malloc(address
->m_len
);
1355 if (address
->m_addr
== NULL
)
1357 address
->m_error
= GSOCK_MEMERR
;
1358 return GSOCK_MEMERR
;
1361 address
->m_family
= GSOCK_INET
;
1362 address
->m_realfamily
= AF_INET
;
1363 ((struct sockaddr_in
*)address
->m_addr
)->sin_family
= AF_INET
;
1364 ((struct sockaddr_in
*)address
->m_addr
)->sin_addr
.s_addr
= INADDR_ANY
;
1366 return GSOCK_NOERROR
;
1369 GSocketError
GAddress_INET_SetHostName(GAddress
*address
, const char *hostname
)
1372 struct in_addr
*addr
;
1374 assert(address
!= NULL
);
1376 CHECK_ADDRESS(address
, INET
);
1378 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1380 addr
->s_addr
= inet_addr(hostname
);
1382 /* If it is a numeric host name, convert it now */
1383 if (addr
->s_addr
== INADDR_NONE
)
1385 struct in_addr
*array_addr
;
1387 /* It is a real name, we solve it */
1388 if ((he
= gethostbyname(hostname
)) == NULL
)
1390 /* addr->s_addr = INADDR_NONE just done by inet_addr() above */
1391 address
->m_error
= GSOCK_NOHOST
;
1392 return GSOCK_NOHOST
;
1394 array_addr
= (struct in_addr
*) *(he
->h_addr_list
);
1395 addr
->s_addr
= array_addr
[0].s_addr
;
1397 return GSOCK_NOERROR
;
1400 GSocketError
GAddress_INET_SetAnyAddress(GAddress
*address
)
1402 return GAddress_INET_SetHostAddress(address
, INADDR_ANY
);
1405 GSocketError
GAddress_INET_SetHostAddress(GAddress
*address
,
1406 unsigned long hostaddr
)
1408 struct in_addr
*addr
;
1410 assert(address
!= NULL
);
1412 CHECK_ADDRESS(address
, INET
);
1414 addr
= &(((struct sockaddr_in
*)address
->m_addr
)->sin_addr
);
1415 addr
->s_addr
= htonl(hostaddr
);;
1417 return GSOCK_NOERROR
;
1420 GSocketError
GAddress_INET_SetPortName(GAddress
*address
, const char *port
,
1421 const char *protocol
)
1424 struct sockaddr_in
*addr
;
1426 assert(address
!= NULL
);
1427 CHECK_ADDRESS(address
, INET
);
1431 address
->m_error
= GSOCK_INVPORT
;
1432 return GSOCK_INVPORT
;
1435 se
= getservbyname(port
, protocol
);
1438 if (isdigit(port
[0]))
1442 port_int
= atoi(port
);
1443 addr
= (struct sockaddr_in
*)address
->m_addr
;
1444 addr
->sin_port
= htons((u_short
) port_int
);
1445 return GSOCK_NOERROR
;
1448 address
->m_error
= GSOCK_INVPORT
;
1449 return GSOCK_INVPORT
;
1452 addr
= (struct sockaddr_in
*)address
->m_addr
;
1453 addr
->sin_port
= se
->s_port
;
1455 return GSOCK_NOERROR
;
1458 GSocketError
GAddress_INET_SetPort(GAddress
*address
, unsigned short port
)
1460 struct sockaddr_in
*addr
;
1462 assert(address
!= NULL
);
1463 CHECK_ADDRESS(address
, INET
);
1465 addr
= (struct sockaddr_in
*)address
->m_addr
;
1466 addr
->sin_port
= htons(port
);
1468 return GSOCK_NOERROR
;
1471 GSocketError
GAddress_INET_GetHostName(GAddress
*address
, char *hostname
, size_t sbuf
)
1475 struct sockaddr_in
*addr
;
1477 assert(address
!= NULL
);
1478 CHECK_ADDRESS(address
, INET
);
1480 addr
= (struct sockaddr_in
*)address
->m_addr
;
1481 addr_buf
= (char *)&(addr
->sin_addr
);
1483 he
= gethostbyaddr(addr_buf
, sizeof(addr
->sin_addr
), AF_INET
);
1486 address
->m_error
= GSOCK_NOHOST
;
1487 return GSOCK_NOHOST
;
1490 strncpy(hostname
, he
->h_name
, sbuf
);
1492 return GSOCK_NOERROR
;
1495 unsigned long GAddress_INET_GetHostAddress(GAddress
*address
)
1497 struct sockaddr_in
*addr
;
1499 assert(address
!= NULL
);
1500 CHECK_ADDRESS_RETVAL(address
, INET
, 0);
1502 addr
= (struct sockaddr_in
*)address
->m_addr
;
1504 return ntohl(addr
->sin_addr
.s_addr
);
1507 unsigned short GAddress_INET_GetPort(GAddress
*address
)
1509 struct sockaddr_in
*addr
;
1511 assert(address
!= NULL
);
1512 CHECK_ADDRESS_RETVAL(address
, INET
, 0);
1514 addr
= (struct sockaddr_in
*)address
->m_addr
;
1515 return ntohs(addr
->sin_port
);
1519 * -------------------------------------------------------------------------
1520 * Unix address family
1521 * -------------------------------------------------------------------------
1524 GSocketError
_GAddress_Init_UNIX(GAddress
*address
)
1526 assert (address
!= NULL
);
1527 address
->m_error
= GSOCK_INVADDR
;
1528 return GSOCK_INVADDR
;
1531 GSocketError
GAddress_UNIX_SetPath(GAddress
*address
, const char *WXUNUSED(path
))
1533 assert (address
!= NULL
);
1534 address
->m_error
= GSOCK_INVADDR
;
1535 return GSOCK_INVADDR
;
1538 GSocketError
GAddress_UNIX_GetPath(GAddress
*address
, char *WXUNUSED(path
), size_t WXUNUSED(sbuf
))
1540 assert (address
!= NULL
);
1541 address
->m_error
= GSOCK_INVADDR
;
1542 return GSOCK_INVADDR
;
1545 #else /* !wxUSE_SOCKETS */
1548 * Translation unit shouldn't be empty, so include this typedef to make the
1549 * compiler (VC++ 6.0, for example) happy
1551 typedef void (*wxDummy
)();
1553 #endif /* wxUSE_SOCKETS || defined(__GSOCKET_STANDALONE__) */