1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Socket handling classes
4 // Authors: Guilhem Lavaux, Guillermo Rodriguez Garcia
8 // Copyright: (c) Guilhem Lavaux
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
19 // ---------------------------------------------------------------------------
21 // ---------------------------------------------------------------------------
24 #include "wx/sckaddr.h"
25 #include "wx/gsocket.h"
28 // ------------------------------------------------------------------------
29 // Types and constants
30 // ------------------------------------------------------------------------
34 wxSOCKET_INPUT
= GSOCK_INPUT
,
35 wxSOCKET_OUTPUT
= GSOCK_OUTPUT
,
36 wxSOCKET_CONNECTION
= GSOCK_CONNECTION
,
37 wxSOCKET_LOST
= GSOCK_LOST
42 wxSOCKET_INPUT_FLAG
= GSOCK_INPUT_FLAG
,
43 wxSOCKET_OUTPUT_FLAG
= GSOCK_OUTPUT_FLAG
,
44 wxSOCKET_CONNECTION_FLAG
= GSOCK_CONNECTION_FLAG
,
45 wxSOCKET_LOST_FLAG
= GSOCK_LOST_FLAG
48 typedef GSocketEventFlags wxSocketEventFlags
;
53 wxSOCKET_NOERROR
= GSOCK_NOERROR
,
54 wxSOCKET_INVOP
= GSOCK_INVOP
,
55 wxSOCKET_IOERR
= GSOCK_IOERR
,
56 wxSOCKET_INVADDR
= GSOCK_INVADDR
,
57 wxSOCKET_INVSOCK
= GSOCK_INVSOCK
,
58 wxSOCKET_NOHOST
= GSOCK_NOHOST
,
59 wxSOCKET_INVPORT
= GSOCK_INVPORT
,
60 wxSOCKET_WOULDBLOCK
= GSOCK_WOULDBLOCK
,
61 wxSOCKET_TIMEDOUT
= GSOCK_TIMEDOUT
,
62 wxSOCKET_MEMERR
= GSOCK_MEMERR
,
64 // wxSocket-specific (not yet implemented)
74 wxSOCKET_REUSEADDR
= 8
86 typedef int wxSocketFlags
;
90 // --------------------------------------------------------------------------
92 // --------------------------------------------------------------------------
94 class WXDLLIMPEXP_NET wxSocketBase
: public wxObject
96 DECLARE_CLASS(wxSocketBase
)
105 wxSocketBase(wxSocketFlags flags
, wxSocketType type
);
106 virtual ~wxSocketBase();
111 inline bool Ok() const { return (m_socket
!= NULL
); };
112 inline bool Error() const { return m_error
; };
113 inline bool IsConnected() const { return m_connected
; };
114 inline bool IsData() { return WaitForRead(0, 0); };
115 inline bool IsDisconnected() const { return !IsConnected(); };
116 inline wxUint32
LastCount() const { return m_lcount
; }
117 inline wxSocketError
LastError() const { return (wxSocketError
)m_socket
->GetError(); }
122 virtual bool GetLocal(wxSockAddress
& addr_man
) const;
123 virtual bool GetPeer(wxSockAddress
& addr_man
) const;
124 virtual bool SetLocal(wxIPV4address
& local
);
127 virtual bool Close();
128 wxSocketBase
& Discard();
129 wxSocketBase
& Peek(void* buffer
, wxUint32 nbytes
);
130 wxSocketBase
& Read(void* buffer
, wxUint32 nbytes
);
131 wxSocketBase
& ReadMsg(void *buffer
, wxUint32 nbytes
);
132 wxSocketBase
& Unread(const void *buffer
, wxUint32 nbytes
);
133 wxSocketBase
& Write(const void *buffer
, wxUint32 nbytes
);
134 wxSocketBase
& WriteMsg(const void *buffer
, wxUint32 nbytes
);
136 void InterruptWait() { m_interrupt
= true; };
137 bool Wait(long seconds
= -1, long milliseconds
= 0);
138 bool WaitForRead(long seconds
= -1, long milliseconds
= 0);
139 bool WaitForWrite(long seconds
= -1, long milliseconds
= 0);
140 bool WaitForLost(long seconds
= -1, long milliseconds
= 0);
142 inline wxSocketFlags
GetFlags() const { return m_flags
; }
143 void SetFlags(wxSocketFlags flags
);
144 void SetTimeout(long seconds
);
146 bool GetOption(int level
, int optname
, void *optval
, int *optlen
);
147 bool SetOption(int level
, int optname
, const void *optval
, int optlen
);
148 inline wxUint32
GetLastIOSize() const { return m_lcount
; };
151 void *GetClientData() const { return m_clientData
; }
152 void SetClientData(void *data
) { m_clientData
= data
; }
153 void SetEventHandler(wxEvtHandler
& handler
, int id
= wxID_ANY
);
154 void SetNotify(wxSocketEventFlags flags
);
155 void Notify(bool notify
);
157 // initialize/shutdown the sockets (usually called automatically)
158 static bool IsInitialized();
159 static bool Initialize();
160 static void Shutdown();
163 // Implementation from now on
164 // --------------------------
166 // do not use, should be private (called from GSocket)
167 void OnRequest(wxSocketNotify notify
);
169 // do not use, not documented nor supported
170 inline bool IsNoWait() const { return ((m_flags
& wxSOCKET_NOWAIT
) != 0); }
171 inline wxSocketType
GetType() const { return m_type
; }
174 friend class wxSocketClient
;
175 friend class wxSocketServer
;
176 friend class wxDatagramSocket
;
179 wxUint32
_Read(void* buffer
, wxUint32 nbytes
);
180 wxUint32
_Write(const void *buffer
, wxUint32 nbytes
);
181 bool _Wait(long seconds
, long milliseconds
, wxSocketEventFlags flags
);
184 void Pushback(const void *buffer
, wxUint32 size
);
185 wxUint32
GetPushback(void *buffer
, wxUint32 size
, bool peek
);
189 GSocket
*m_socket
; // GSocket
190 wxSocketType m_type
; // wxSocket type
193 wxSocketFlags m_flags
; // wxSocket flags
194 bool m_connected
; // connected?
195 bool m_establishing
; // establishing connection?
196 bool m_reading
; // busy reading?
197 bool m_writing
; // busy writing?
198 bool m_error
; // did last IO call fail?
199 wxSocketError m_lasterror
; // last error (not cleared on success)
200 wxUint32 m_lcount
; // last IO transaction size
201 unsigned long m_timeout
; // IO timeout value
202 wxList m_states
; // stack of states
203 bool m_interrupt
; // interrupt ongoing wait operations?
204 bool m_beingDeleted
; // marked for delayed deletion?
205 wxIPV4address m_localAddress
; // bind to local address?
208 void *m_unread
; // pushback buffer
209 wxUint32 m_unrd_size
; // pushback buffer size
210 wxUint32 m_unrd_cur
; // pushback pointer (index into buffer)
213 int m_id
; // socket id
214 wxEvtHandler
*m_handler
; // event handler
215 void *m_clientData
; // client data for events
216 bool m_notify
; // notify events to users?
217 wxSocketEventFlags m_eventmask
; // which events to notify?
219 // the initialization count, GSocket is initialized if > 0
220 static size_t m_countInit
;
222 DECLARE_NO_COPY_CLASS(wxSocketBase
)
226 // --------------------------------------------------------------------------
228 // --------------------------------------------------------------------------
230 class WXDLLIMPEXP_NET wxSocketServer
: public wxSocketBase
232 DECLARE_CLASS(wxSocketServer
)
235 wxSocketServer(const wxSockAddress
& addr
, wxSocketFlags flags
= wxSOCKET_NONE
);
237 wxSocketBase
* Accept(bool wait
= true);
238 bool AcceptWith(wxSocketBase
& socket
, bool wait
= true);
240 bool WaitForAccept(long seconds
= -1, long milliseconds
= 0);
242 DECLARE_NO_COPY_CLASS(wxSocketServer
)
246 // --------------------------------------------------------------------------
248 // --------------------------------------------------------------------------
250 class WXDLLIMPEXP_NET wxSocketClient
: public wxSocketBase
252 DECLARE_CLASS(wxSocketClient
)
255 wxSocketClient(wxSocketFlags flags
= wxSOCKET_NONE
);
256 virtual ~wxSocketClient();
258 virtual bool Connect(wxSockAddress
& addr
, bool wait
= true);
259 bool Connect(wxSockAddress
& addr
, wxSockAddress
& local
, bool wait
= true);
261 bool WaitOnConnect(long seconds
= -1, long milliseconds
= 0);
264 virtual bool DoConnect(wxSockAddress
& addr
, wxSockAddress
* local
, bool wait
= true);
266 DECLARE_NO_COPY_CLASS(wxSocketClient
)
270 // --------------------------------------------------------------------------
272 // --------------------------------------------------------------------------
274 // WARNING: still in alpha stage
276 class WXDLLIMPEXP_NET wxDatagramSocket
: public wxSocketBase
278 DECLARE_CLASS(wxDatagramSocket
)
281 wxDatagramSocket(const wxSockAddress
& addr
, wxSocketFlags flags
= wxSOCKET_NONE
);
283 wxDatagramSocket
& RecvFrom( wxSockAddress
& addr
,
286 wxDatagramSocket
& SendTo( const wxSockAddress
& addr
,
291 bool Connect(wxSockAddress& addr);
293 DECLARE_NO_COPY_CLASS(wxDatagramSocket
)
297 // --------------------------------------------------------------------------
299 // --------------------------------------------------------------------------
301 class WXDLLIMPEXP_NET wxSocketEvent
: public wxEvent
304 wxSocketEvent(int id
= 0)
305 : wxEvent(id
, wxEVT_SOCKET
)
309 wxSocketNotify
GetSocketEvent() const { return m_event
; }
310 wxSocketBase
*GetSocket() const { return (wxSocketBase
*) GetEventObject(); }
311 void *GetClientData() const { return m_clientData
; }
313 virtual wxEvent
*Clone() const { return new wxSocketEvent(*this); }
316 wxSocketNotify m_event
;
319 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSocketEvent
)
323 typedef void (wxEvtHandler::*wxSocketEventFunction
)(wxSocketEvent
&);
325 #define wxSocketEventHandler(func) \
326 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSocketEventFunction, &func)
328 #define EVT_SOCKET(id, func) \
329 wx__DECLARE_EVT1(wxEVT_SOCKET, id, wxSocketEventHandler(func))
331 #endif // wxUSE_SOCKETS
333 #endif // _WX_SOCKET_H_