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,
75 wxSOCKET_BROADCAST
= 16,
88 typedef int wxSocketFlags
;
92 // --------------------------------------------------------------------------
94 // --------------------------------------------------------------------------
96 class WXDLLIMPEXP_NET wxSocketBase
: public wxObject
98 DECLARE_CLASS(wxSocketBase
)
107 wxSocketBase(wxSocketFlags flags
, wxSocketType type
);
108 virtual ~wxSocketBase();
113 bool Ok() const { return IsOk(); }
114 bool IsOk() const { return (m_socket
!= NULL
); }
115 bool Error() const { return m_error
; }
116 bool IsClosed() const { return m_closed
; }
117 bool IsConnected() const { return m_connected
; }
118 bool IsData() { return WaitForRead(0, 0); }
119 bool IsDisconnected() const { return !IsConnected(); }
120 wxUint32
LastCount() const { return m_lcount
; }
121 wxSocketError
LastError() const { return (wxSocketError
)m_socket
->GetError(); }
126 virtual bool GetLocal(wxSockAddress
& addr_man
) const;
127 virtual bool GetPeer(wxSockAddress
& addr_man
) const;
128 virtual bool SetLocal(const wxIPV4address
& local
);
131 virtual bool Close();
132 wxSocketBase
& Discard();
133 wxSocketBase
& Peek(void* buffer
, wxUint32 nbytes
);
134 wxSocketBase
& Read(void* buffer
, wxUint32 nbytes
);
135 wxSocketBase
& ReadMsg(void *buffer
, wxUint32 nbytes
);
136 wxSocketBase
& Unread(const void *buffer
, wxUint32 nbytes
);
137 wxSocketBase
& Write(const void *buffer
, wxUint32 nbytes
);
138 wxSocketBase
& WriteMsg(const void *buffer
, wxUint32 nbytes
);
140 // all Wait() functions wait until their condition is satisfied or the
141 // timeout expires; if seconds == -1 (default) then m_timeout value is used
143 // it is also possible to call InterruptWait() to cancel any current Wait()
145 // wait for anything at all to happen with this socket
146 bool Wait(long seconds
= -1, long milliseconds
= 0);
148 // wait until we can read from or write to the socket without blocking
149 // (notice that this does not mean that the operation will succeed but only
150 // that it will return immediately)
151 bool WaitForRead(long seconds
= -1, long milliseconds
= 0);
152 bool WaitForWrite(long seconds
= -1, long milliseconds
= 0);
154 // wait until the connection is terminated
155 bool WaitForLost(long seconds
= -1, long milliseconds
= 0);
157 void InterruptWait() { m_interrupt
= true; }
160 wxSocketFlags
GetFlags() const { return m_flags
; }
161 void SetFlags(wxSocketFlags flags
);
162 void SetTimeout(long seconds
);
164 bool GetOption(int level
, int optname
, void *optval
, int *optlen
);
165 bool SetOption(int level
, int optname
, const void *optval
, int optlen
);
166 wxUint32
GetLastIOSize() const { return m_lcount
; }
169 void *GetClientData() const { return m_clientData
; }
170 void SetClientData(void *data
) { m_clientData
= data
; }
171 void SetEventHandler(wxEvtHandler
& handler
, int id
= wxID_ANY
);
172 void SetNotify(wxSocketEventFlags flags
);
173 void Notify(bool notify
);
175 // initialize/shutdown the sockets (usually called automatically)
176 static bool IsInitialized();
177 static bool Initialize();
178 static void Shutdown();
181 // Implementation from now on
182 // --------------------------
184 // do not use, should be private (called from GSocket)
185 void OnRequest(wxSocketNotify notify
);
187 // do not use, not documented nor supported
188 bool IsNoWait() const { return ((m_flags
& wxSOCKET_NOWAIT
) != 0); }
189 wxSocketType
GetType() const { return m_type
; }
192 friend class wxSocketClient
;
193 friend class wxSocketServer
;
194 friend class wxDatagramSocket
;
197 wxUint32
DoRead(void* buffer
, wxUint32 nbytes
);
198 wxUint32
DoWrite(const void *buffer
, wxUint32 nbytes
);
200 // wait until the given flags are set for this socket or the given timeout
201 // (or m_timeout) expires
203 // notice that GSOCK_LOST_FLAG is always taken into account but the return
204 // value depends on whether it is included in flags or not: if it is, and the
205 // connection is indeed lost, true is returned, but if it isn't then the
206 // function returns false in this case
208 // false is always returned if we returned because of the timeout expiration
209 bool DoWait(long seconds
, long milliseconds
, wxSocketEventFlags flags
);
212 void Pushback(const void *buffer
, wxUint32 size
);
213 wxUint32
GetPushback(void *buffer
, wxUint32 size
, bool peek
);
217 GSocket
*m_socket
; // GSocket
218 wxSocketType m_type
; // wxSocket type
221 wxSocketFlags m_flags
; // wxSocket flags
222 bool m_connected
; // connected?
223 bool m_establishing
; // establishing connection?
224 bool m_reading
; // busy reading?
225 bool m_writing
; // busy writing?
226 bool m_error
; // did last IO call fail?
227 bool m_closed
; // was the other end closed?
228 // (notice that m_error is also set then)
229 wxUint32 m_lcount
; // last IO transaction size
230 unsigned long m_timeout
; // IO timeout value in seconds
231 wxList m_states
; // stack of states
232 bool m_interrupt
; // interrupt ongoing wait operations?
233 bool m_beingDeleted
; // marked for delayed deletion?
234 wxIPV4address m_localAddress
; // bind to local address?
237 void *m_unread
; // pushback buffer
238 wxUint32 m_unrd_size
; // pushback buffer size
239 wxUint32 m_unrd_cur
; // pushback pointer (index into buffer)
242 int m_id
; // socket id
243 wxEvtHandler
*m_handler
; // event handler
244 void *m_clientData
; // client data for events
245 bool m_notify
; // notify events to users?
246 wxSocketEventFlags m_eventmask
; // which events to notify?
248 // the initialization count, GSocket is initialized if > 0
249 static size_t m_countInit
;
251 DECLARE_NO_COPY_CLASS(wxSocketBase
)
255 // --------------------------------------------------------------------------
257 // --------------------------------------------------------------------------
259 class WXDLLIMPEXP_NET wxSocketServer
: public wxSocketBase
261 DECLARE_CLASS(wxSocketServer
)
264 wxSocketServer(const wxSockAddress
& addr
, wxSocketFlags flags
= wxSOCKET_NONE
);
266 wxSocketBase
* Accept(bool wait
= true);
267 bool AcceptWith(wxSocketBase
& socket
, bool wait
= true);
269 bool WaitForAccept(long seconds
= -1, long milliseconds
= 0);
271 DECLARE_NO_COPY_CLASS(wxSocketServer
)
275 // --------------------------------------------------------------------------
277 // --------------------------------------------------------------------------
279 class WXDLLIMPEXP_NET wxSocketClient
: public wxSocketBase
281 DECLARE_CLASS(wxSocketClient
)
284 wxSocketClient(wxSocketFlags flags
= wxSOCKET_NONE
);
285 virtual ~wxSocketClient();
287 virtual bool Connect(const wxSockAddress
& addr
, bool wait
= true);
288 bool Connect(const wxSockAddress
& addr
, const wxSockAddress
& local
,
291 bool WaitOnConnect(long seconds
= -1, long milliseconds
= 0);
293 // Sets initial socket buffer sizes using the SO_SNDBUF and SO_RCVBUF options
294 // before calling connect (either one can be -1 to leave it unchanged)
295 void SetInitialSocketBuffers(int recv
, int send
)
297 m_initialRecvBufferSize
= recv
;
298 m_initialSendBufferSize
= send
;
302 virtual bool DoConnect(const wxSockAddress
& addr
,
303 const wxSockAddress
* local
,
306 // buffer sizes, -1 if unset and defaults should be used
307 int m_initialRecvBufferSize
;
308 int m_initialSendBufferSize
;
310 DECLARE_NO_COPY_CLASS(wxSocketClient
)
314 // --------------------------------------------------------------------------
316 // --------------------------------------------------------------------------
318 // WARNING: still in alpha stage
320 class WXDLLIMPEXP_NET wxDatagramSocket
: public wxSocketBase
322 DECLARE_CLASS(wxDatagramSocket
)
325 wxDatagramSocket(const wxSockAddress
& addr
, wxSocketFlags flags
= wxSOCKET_NONE
);
327 wxDatagramSocket
& RecvFrom( wxSockAddress
& addr
,
330 wxDatagramSocket
& SendTo( const wxSockAddress
& addr
,
335 bool Connect(wxSockAddress& addr);
337 DECLARE_NO_COPY_CLASS(wxDatagramSocket
)
341 // --------------------------------------------------------------------------
343 // --------------------------------------------------------------------------
345 class WXDLLIMPEXP_NET wxSocketEvent
: public wxEvent
348 wxSocketEvent(int id
= 0)
349 : wxEvent(id
, wxEVT_SOCKET
)
353 wxSocketNotify
GetSocketEvent() const { return m_event
; }
354 wxSocketBase
*GetSocket() const { return (wxSocketBase
*) GetEventObject(); }
355 void *GetClientData() const { return m_clientData
; }
357 virtual wxEvent
*Clone() const { return new wxSocketEvent(*this); }
360 wxSocketNotify m_event
;
363 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSocketEvent
)
367 typedef void (wxEvtHandler::*wxSocketEventFunction
)(wxSocketEvent
&);
369 #define wxSocketEventHandler(func) \
370 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSocketEventFunction, &func)
372 #define EVT_SOCKET(id, func) \
373 wx__DECLARE_EVT1(wxEVT_SOCKET, id, wxSocketEventHandler(func))
375 #endif // wxUSE_SOCKETS
377 #endif // _WX_SOCKET_H_