X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2804f77d88eb478f85a281b19d87e38cd96e0d0c..44c87b7d15d5c1f5926beffa4cd5c9d1d2045e04:/include/wx/unix/gsockunx.h diff --git a/include/wx/unix/gsockunx.h b/include/wx/unix/gsockunx.h index a6182dc0d4..0d57fe5a2f 100644 --- a/include/wx/unix/gsockunx.h +++ b/include/wx/unix/gsockunx.h @@ -13,20 +13,17 @@ class wxGSocketIOHandler; -class GSocket +class GSocket : public GSocketBase { public: - GSocket(); + GSocket(wxSocketBase& wxsocket); virtual ~GSocket(); - bool IsOk() { return m_ok; } - void Close(); - void Shutdown(); - GSocketError SetLocal(GAddress *address); - GSocketError SetPeer(GAddress *address); - GAddress *GetLocal(); - GAddress *GetPeer(); + + virtual void Close(); + virtual void Shutdown(); + virtual GSocket *WaitConnection(wxSocketBase& wxsocket); + GSocketError SetServer(); - GSocket *WaitConnection(); bool SetReusable(); bool SetBroadcast(); bool DontDoBind(); @@ -34,25 +31,15 @@ public: GSocketError SetNonOriented(); int Read(char *buffer, int size); int Write(const char *buffer, int size); - GSocketEventFlags Select(GSocketEventFlags flags); void SetNonBlocking(bool non_block); - void SetTimeout(unsigned long millisec); GSocketError WXDLLIMPEXP_NET GetError(); - void SetCallback(GSocketEventFlags flags, - GSocketCallback callback, char *cdata); - void UnsetCallback(GSocketEventFlags flags); GSocketError GetSockOpt(int level, int optname, void *optval, int *optlen); GSocketError SetSockOpt(int level, int optname, const void *optval, int optlen); //attach or detach from main loop void Notify(bool flag); - virtual void Detected_Read(); - virtual void Detected_Write(); - void SetInitialSocketBuffers(int recv, int send) - { - m_initialRecvBufferSize = recv; - m_initialSendBufferSize = send; - } + void Detected_Read(); + void Detected_Write(); protected: //enable or disable event callback using gsocket gui callback table @@ -66,60 +53,23 @@ protected: int Recv_Dgram(char *buffer, int size); int Send_Stream(const char *buffer, int size); int Send_Dgram(const char *buffer, int size); - bool m_ok; - int m_initialRecvBufferSize; - int m_initialSendBufferSize; public: /* DFE: We can't protect these data member until the GUI code is updated */ /* protected: */ - int m_fd; wxGSocketIOHandler *m_handler; - GAddress *m_local; - GAddress *m_peer; - GSocketError m_error; - - bool m_non_blocking; - bool m_server; - bool m_stream; - bool m_establishing; - bool m_reusable; - bool m_broadcast; - bool m_dobind; - unsigned long m_timeout; // true if socket should fire events bool m_use_events; - /* Callbacks */ - GSocketEventFlags m_detected; - GSocketCallback m_cbacks[GSOCK_MAX_EVENT]; - char *m_data[GSOCK_MAX_EVENT]; - // pointer for storing extra (usually GUI-specific) data void *m_gui_dependent; -}; -/* Definition of GAddress */ -struct _GAddress -{ - struct sockaddr *m_addr; - size_t m_len; - - GAddressType m_family; - int m_realfamily; - - GSocketError m_error; +private: + // notify the associated wxSocket about a change in socket state and shut + // down the socket if the event is GSOCK_LOST + void OnStateChange(GSocketEvent event); }; -/* GAddress */ - -GSocketError _GAddress_translate_from(GAddress *address, - struct sockaddr *addr, int len); -GSocketError _GAddress_translate_to (GAddress *address, - struct sockaddr **addr, int *len); -GSocketError _GAddress_Init_INET(GAddress *address); -GSocketError _GAddress_Init_UNIX(GAddress *address); - // A version of GSocketManager which uses FDs for socket IO // // This class uses GSocket::m_gui_dependent field to store the 2 (for input and @@ -135,7 +85,7 @@ public: virtual bool Init_Socket(GSocket *socket) { socket->m_gui_dependent = malloc(sizeof(int)*2); - int * const fds = wx_static_cast(int *, socket->m_gui_dependent); + int * const fds = static_cast(socket->m_gui_dependent); fds[0] = -1; fds[1] = -1; @@ -195,7 +145,7 @@ protected: // access the FDs we store int& FD(GSocket *socket, SocketDir d) { - return wx_static_cast(int *, socket->m_gui_dependent)[d]; + return static_cast(socket->m_gui_dependent)[d]; } };