]>
Commit | Line | Data |
---|---|---|
f4ada568 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/socket.h |
f4ada568 | 3 | // Purpose: Socket handling classes |
fade627a | 4 | // Authors: Guilhem Lavaux, Guillermo Rodriguez Garcia |
f4ada568 GL |
5 | // Modified by: |
6 | // Created: April 1997 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Guilhem Lavaux | |
65571936 | 9 | // Licence: wxWindows licence |
f4ada568 | 10 | ///////////////////////////////////////////////////////////////////////////// |
0c32066b | 11 | |
7fa03f04 VZ |
12 | #ifndef _WX_SOCKET_H_ |
13 | #define _WX_SOCKET_H_ | |
f4ada568 | 14 | |
ce4169a4 RR |
15 | #include "wx/defs.h" |
16 | ||
17 | #if wxUSE_SOCKETS | |
18 | ||
f4ada568 | 19 | // --------------------------------------------------------------------------- |
71622a7a | 20 | // wxSocket headers |
f4ada568 | 21 | // --------------------------------------------------------------------------- |
483249fc | 22 | |
372c511b | 23 | #include "wx/event.h" |
ed58dbea | 24 | #include "wx/sckaddr.h" |
b8ddac49 | 25 | #include "wx/list.h" |
f4ada568 | 26 | |
51fe4b60 VZ |
27 | class wxSocketImpl; |
28 | ||
aa8fb7a0 | 29 | // ------------------------------------------------------------------------ |
71622a7a | 30 | // Types and constants |
aa8fb7a0 GL |
31 | // ------------------------------------------------------------------------ |
32 | ||
0623b0f0 VZ |
33 | // Define the type of native sockets. |
34 | #if defined(__WINDOWS__) | |
35 | // Although socket descriptors are still 32 bit values, even under Win64, | |
36 | // the socket type is 64 bit there. | |
37 | typedef wxUIntPtr wxSOCKET_T; | |
38 | #else | |
39 | typedef int wxSOCKET_T; | |
40 | #endif | |
41 | ||
42 | ||
51fe4b60 VZ |
43 | // Types of different socket notifications or events. |
44 | // | |
45 | // NB: the values here should be consecutive and start with 0 as they are | |
46 | // used to construct the wxSOCKET_XXX_FLAG bit mask values below | |
a64a02ef VZ |
47 | enum wxSocketNotify |
48 | { | |
51fe4b60 VZ |
49 | wxSOCKET_INPUT, |
50 | wxSOCKET_OUTPUT, | |
51 | wxSOCKET_CONNECTION, | |
c363ead1 | 52 | wxSOCKET_LOST |
a64a02ef | 53 | }; |
aa8fb7a0 | 54 | |
a64a02ef VZ |
55 | enum |
56 | { | |
51fe4b60 VZ |
57 | wxSOCKET_INPUT_FLAG = 1 << wxSOCKET_INPUT, |
58 | wxSOCKET_OUTPUT_FLAG = 1 << wxSOCKET_OUTPUT, | |
59 | wxSOCKET_CONNECTION_FLAG = 1 << wxSOCKET_CONNECTION, | |
60 | wxSOCKET_LOST_FLAG = 1 << wxSOCKET_LOST | |
aa8fb7a0 GL |
61 | }; |
62 | ||
51fe4b60 VZ |
63 | // this is a combination of the bit masks defined above |
64 | typedef int wxSocketEventFlags; | |
aa8fb7a0 | 65 | |
a64a02ef VZ |
66 | enum wxSocketError |
67 | { | |
51fe4b60 VZ |
68 | wxSOCKET_NOERROR = 0, |
69 | wxSOCKET_INVOP, | |
70 | wxSOCKET_IOERR, | |
71 | wxSOCKET_INVADDR, | |
72 | wxSOCKET_INVSOCK, | |
73 | wxSOCKET_NOHOST, | |
74 | wxSOCKET_INVPORT, | |
75 | wxSOCKET_WOULDBLOCK, | |
76 | wxSOCKET_TIMEDOUT, | |
77 | wxSOCKET_MEMERR, | |
78 | wxSOCKET_OPTERR | |
a64a02ef | 79 | }; |
aa8fb7a0 | 80 | |
51fe4b60 | 81 | // socket options/flags bit masks |
a64a02ef VZ |
82 | enum |
83 | { | |
d8986023 VZ |
84 | wxSOCKET_NONE = 0x0000, |
85 | wxSOCKET_NOWAIT_READ = 0x0001, | |
86 | wxSOCKET_NOWAIT_WRITE = 0x0002, | |
87 | wxSOCKET_NOWAIT = wxSOCKET_NOWAIT_READ | wxSOCKET_NOWAIT_WRITE, | |
88 | wxSOCKET_WAITALL_READ = 0x0004, | |
89 | wxSOCKET_WAITALL_WRITE = 0x0008, | |
90 | wxSOCKET_WAITALL = wxSOCKET_WAITALL_READ | wxSOCKET_WAITALL_WRITE, | |
91 | wxSOCKET_BLOCK = 0x0010, | |
92 | wxSOCKET_REUSEADDR = 0x0020, | |
93 | wxSOCKET_BROADCAST = 0x0040, | |
94 | wxSOCKET_NOBIND = 0x0080 | |
483249fc GRG |
95 | }; |
96 | ||
51fe4b60 VZ |
97 | typedef int wxSocketFlags; |
98 | ||
99 | // socket kind values (badly defined, don't use) | |
71622a7a | 100 | enum wxSocketType |
a64a02ef | 101 | { |
51fe4b60 VZ |
102 | wxSOCKET_UNINIT, |
103 | wxSOCKET_CLIENT, | |
104 | wxSOCKET_SERVER, | |
105 | wxSOCKET_BASE, | |
106 | wxSOCKET_DATAGRAM | |
a64a02ef VZ |
107 | }; |
108 | ||
aa8fb7a0 | 109 | |
3c778901 VZ |
110 | // event |
111 | class WXDLLIMPEXP_FWD_NET wxSocketEvent; | |
9b11752c | 112 | wxDECLARE_EXPORTED_EVENT(WXDLLIMPEXP_NET, wxEVT_SOCKET, wxSocketEvent); |
bffc1eaa | 113 | |
71622a7a GRG |
114 | // -------------------------------------------------------------------------- |
115 | // wxSocketBase | |
116 | // -------------------------------------------------------------------------- | |
117 | ||
7c4728f6 | 118 | class WXDLLIMPEXP_NET wxSocketBase : public wxObject |
f4ada568 | 119 | { |
71622a7a | 120 | public: |
f26d8138 VZ |
121 | // Public interface |
122 | // ---------------- | |
123 | ||
124 | // ctors and dtors | |
125 | wxSocketBase(); | |
126 | wxSocketBase(wxSocketFlags flags, wxSocketType type); | |
127 | virtual ~wxSocketBase(); | |
128 | void Init(); | |
129 | bool Destroy(); | |
130 | ||
131 | // state | |
132 | bool Ok() const { return IsOk(); } | |
133 | bool IsOk() const { return m_impl != NULL; } | |
134 | bool Error() const { return LastError() != wxSOCKET_NOERROR; } | |
135 | bool IsClosed() const { return m_closed; } | |
136 | bool IsConnected() const { return m_connected; } | |
137 | bool IsData() { return WaitForRead(0, 0); } | |
138 | bool IsDisconnected() const { return !IsConnected(); } | |
139 | wxUint32 LastCount() const { return m_lcount; } | |
294a09aa VZ |
140 | wxUint32 LastReadCount() const { return m_lcount_read; } |
141 | wxUint32 LastWriteCount() const { return m_lcount_write; } | |
f26d8138 VZ |
142 | wxSocketError LastError() const; |
143 | void SaveState(); | |
144 | void RestoreState(); | |
145 | ||
146 | // addresses | |
147 | virtual bool GetLocal(wxSockAddress& addr_man) const; | |
148 | virtual bool GetPeer(wxSockAddress& addr_man) const; | |
149 | virtual bool SetLocal(const wxIPV4address& local); | |
150 | ||
151 | // base IO | |
152 | virtual bool Close(); | |
153 | void ShutdownOutput(); | |
154 | wxSocketBase& Discard(); | |
155 | wxSocketBase& Peek(void* buffer, wxUint32 nbytes); | |
156 | wxSocketBase& Read(void* buffer, wxUint32 nbytes); | |
157 | wxSocketBase& ReadMsg(void *buffer, wxUint32 nbytes); | |
158 | wxSocketBase& Unread(const void *buffer, wxUint32 nbytes); | |
159 | wxSocketBase& Write(const void *buffer, wxUint32 nbytes); | |
160 | wxSocketBase& WriteMsg(const void *buffer, wxUint32 nbytes); | |
161 | ||
162 | // all Wait() functions wait until their condition is satisfied or the | |
163 | // timeout expires; if seconds == -1 (default) then m_timeout value is used | |
164 | // | |
165 | // it is also possible to call InterruptWait() to cancel any current Wait() | |
166 | ||
167 | // wait for anything at all to happen with this socket | |
168 | bool Wait(long seconds = -1, long milliseconds = 0); | |
169 | ||
170 | // wait until we can read from or write to the socket without blocking | |
171 | // (notice that this does not mean that the operation will succeed but only | |
172 | // that it will return immediately) | |
173 | bool WaitForRead(long seconds = -1, long milliseconds = 0); | |
174 | bool WaitForWrite(long seconds = -1, long milliseconds = 0); | |
175 | ||
176 | // wait until the connection is terminated | |
177 | bool WaitForLost(long seconds = -1, long milliseconds = 0); | |
178 | ||
179 | void InterruptWait() { m_interrupt = true; } | |
180 | ||
181 | ||
182 | wxSocketFlags GetFlags() const { return m_flags; } | |
183 | void SetFlags(wxSocketFlags flags); | |
6214e8d5 | 184 | virtual void SetTimeout(long seconds); |
f26d8138 VZ |
185 | long GetTimeout() const { return m_timeout; } |
186 | ||
187 | bool GetOption(int level, int optname, void *optval, int *optlen); | |
188 | bool SetOption(int level, int optname, const void *optval, int optlen); | |
189 | wxUint32 GetLastIOSize() const { return m_lcount; } | |
294a09aa VZ |
190 | wxUint32 GetLastIOReadSize() const { return m_lcount_read; } |
191 | wxUint32 GetLastIOWriteSize() const { return m_lcount_write; } | |
f26d8138 VZ |
192 | |
193 | // event handling | |
194 | void *GetClientData() const { return m_clientData; } | |
195 | void SetClientData(void *data) { m_clientData = data; } | |
196 | void SetEventHandler(wxEvtHandler& handler, int id = wxID_ANY); | |
197 | void SetNotify(wxSocketEventFlags flags); | |
198 | void Notify(bool notify); | |
199 | ||
0623b0f0 VZ |
200 | // Get the underlying socket descriptor. |
201 | wxSOCKET_T GetSocket() const; | |
202 | ||
4017f5ca VZ |
203 | // initialize/shutdown the sockets (done automatically so there is no need |
204 | // to call these functions usually) | |
205 | // | |
206 | // should always be called from the main thread only so one of the cases | |
207 | // where they should indeed be called explicitly is when the first wxSocket | |
208 | // object in the application is created in a different thread | |
f26d8138 VZ |
209 | static bool Initialize(); |
210 | static void Shutdown(); | |
211 | ||
4017f5ca VZ |
212 | // check if wxSocket had been already initialized |
213 | // | |
214 | // notice that this function should be only called from the main thread as | |
215 | // otherwise it is inherently unsafe because Initialize/Shutdown() may be | |
216 | // called concurrently with it in the main thread | |
217 | static bool IsInitialized(); | |
f26d8138 VZ |
218 | |
219 | // Implementation from now on | |
220 | // -------------------------- | |
221 | ||
222 | // do not use, should be private (called from wxSocketImpl only) | |
223 | void OnRequest(wxSocketNotify notify); | |
224 | ||
225 | // do not use, not documented nor supported | |
226 | bool IsNoWait() const { return ((m_flags & wxSOCKET_NOWAIT) != 0); } | |
227 | wxSocketType GetType() const { return m_type; } | |
ce3ed50d | 228 | |
fbf5995c | 229 | private: |
f26d8138 VZ |
230 | friend class wxSocketClient; |
231 | friend class wxSocketServer; | |
232 | friend class wxDatagramSocket; | |
233 | ||
234 | // low level IO | |
235 | wxUint32 DoRead(void* buffer, wxUint32 nbytes); | |
236 | wxUint32 DoWrite(const void *buffer, wxUint32 nbytes); | |
237 | ||
238 | // wait until the given flags are set for this socket or the given timeout | |
239 | // (or m_timeout) expires | |
240 | // | |
ebbf7407 VZ |
241 | // notice that wxSOCKET_LOST_FLAG is always taken into account and the |
242 | // function returns -1 if the connection was lost; otherwise it returns | |
243 | // true if any of the events specified by flags argument happened or false | |
244 | // if the timeout expired | |
245 | int DoWait(long timeout, wxSocketEventFlags flags); | |
f26d8138 VZ |
246 | |
247 | // a helper calling DoWait() using the same convention as the public | |
248 | // WaitForXXX() functions use, i.e. use our timeout if seconds == -1 or the | |
249 | // specified timeout otherwise | |
ebbf7407 | 250 | int DoWait(long seconds, long milliseconds, wxSocketEventFlags flags); |
f26d8138 VZ |
251 | |
252 | // another helper calling DoWait() using our m_timeout | |
ebbf7407 | 253 | int DoWaitWithTimeout(wxSocketEventFlags flags) |
f26d8138 VZ |
254 | { |
255 | return DoWait(m_timeout*1000, flags); | |
256 | } | |
257 | ||
258 | // pushback buffer | |
259 | void Pushback(const void *buffer, wxUint32 size); | |
260 | wxUint32 GetPushback(void *buffer, wxUint32 size, bool peek); | |
261 | ||
262 | // store the given error as the LastError() | |
263 | void SetError(wxSocketError error); | |
64b1cea0 | 264 | |
fbf5995c | 265 | private: |
f26d8138 VZ |
266 | // socket |
267 | wxSocketImpl *m_impl; // port-specific implementation | |
268 | wxSocketType m_type; // wxSocket type | |
269 | ||
270 | // state | |
271 | wxSocketFlags m_flags; // wxSocket flags | |
272 | bool m_connected; // connected? | |
273 | bool m_establishing; // establishing connection? | |
274 | bool m_reading; // busy reading? | |
275 | bool m_writing; // busy writing? | |
276 | bool m_closed; // was the other end closed? | |
277 | wxUint32 m_lcount; // last IO transaction size | |
294a09aa VZ |
278 | wxUint32 m_lcount_read; // last IO transaction size of Read() direction. |
279 | wxUint32 m_lcount_write; // last IO transaction size of Write() direction. | |
f26d8138 VZ |
280 | unsigned long m_timeout; // IO timeout value in seconds |
281 | // (TODO: remove, wxSocketImpl has it too) | |
282 | wxList m_states; // stack of states (TODO: remove!) | |
283 | bool m_interrupt; // interrupt ongoing wait operations? | |
284 | bool m_beingDeleted; // marked for delayed deletion? | |
285 | wxIPV4address m_localAddress; // bind to local address? | |
286 | ||
287 | // pushback buffer | |
288 | void *m_unread; // pushback buffer | |
289 | wxUint32 m_unrd_size; // pushback buffer size | |
290 | wxUint32 m_unrd_cur; // pushback pointer (index into buffer) | |
291 | ||
292 | // events | |
293 | int m_id; // socket id | |
294 | wxEvtHandler *m_handler; // event handler | |
295 | void *m_clientData; // client data for events | |
296 | bool m_notify; // notify events to users? | |
297 | wxSocketEventFlags m_eventmask; // which events to notify? | |
298 | wxSocketEventFlags m_eventsgot; // collects events received in OnRequest() | |
299 | ||
f26d8138 VZ |
300 | |
301 | friend class wxSocketReadGuard; | |
302 | friend class wxSocketWriteGuard; | |
303 | ||
c0c133e1 | 304 | wxDECLARE_NO_COPY_CLASS(wxSocketBase); |
f26d8138 | 305 | DECLARE_CLASS(wxSocketBase) |
f4ada568 GL |
306 | }; |
307 | ||
71622a7a GRG |
308 | |
309 | // -------------------------------------------------------------------------- | |
310 | // wxSocketServer | |
311 | // -------------------------------------------------------------------------- | |
f4ada568 | 312 | |
7c4728f6 | 313 | class WXDLLIMPEXP_NET wxSocketServer : public wxSocketBase |
f4ada568 | 314 | { |
71622a7a | 315 | public: |
f26d8138 VZ |
316 | wxSocketServer(const wxSockAddress& addr, |
317 | wxSocketFlags flags = wxSOCKET_NONE); | |
f4ada568 | 318 | |
f26d8138 VZ |
319 | wxSocketBase* Accept(bool wait = true); |
320 | bool AcceptWith(wxSocketBase& socket, bool wait = true); | |
35809fe3 | 321 | |
f26d8138 | 322 | bool WaitForAccept(long seconds = -1, long milliseconds = 0); |
0fccfc51 | 323 | |
c0c133e1 | 324 | wxDECLARE_NO_COPY_CLASS(wxSocketServer); |
f26d8138 | 325 | DECLARE_CLASS(wxSocketServer) |
f4ada568 GL |
326 | }; |
327 | ||
71622a7a GRG |
328 | |
329 | // -------------------------------------------------------------------------- | |
330 | // wxSocketClient | |
331 | // -------------------------------------------------------------------------- | |
f4ada568 | 332 | |
7c4728f6 | 333 | class WXDLLIMPEXP_NET wxSocketClient : public wxSocketBase |
f4ada568 | 334 | { |
71622a7a | 335 | public: |
f26d8138 | 336 | wxSocketClient(wxSocketFlags flags = wxSOCKET_NONE); |
f4ada568 | 337 | |
f26d8138 VZ |
338 | virtual bool Connect(const wxSockAddress& addr, bool wait = true); |
339 | bool Connect(const wxSockAddress& addr, | |
340 | const wxSockAddress& local, | |
341 | bool wait = true); | |
f4ada568 | 342 | |
f26d8138 | 343 | bool WaitOnConnect(long seconds = -1, long milliseconds = 0); |
0fccfc51 | 344 | |
f26d8138 VZ |
345 | // Sets initial socket buffer sizes using the SO_SNDBUF and SO_RCVBUF |
346 | // options before calling connect (either one can be -1 to leave it | |
347 | // unchanged) | |
348 | void SetInitialSocketBuffers(int recv, int send) | |
349 | { | |
350 | m_initialRecvBufferSize = recv; | |
351 | m_initialSendBufferSize = send; | |
352 | } | |
8c029a5b | 353 | |
33d925b0 | 354 | private: |
f26d8138 VZ |
355 | virtual bool DoConnect(const wxSockAddress& addr, |
356 | const wxSockAddress* local, | |
357 | bool wait = true); | |
8c029a5b | 358 | |
f26d8138 VZ |
359 | // buffer sizes, -1 if unset and defaults should be used |
360 | int m_initialRecvBufferSize; | |
361 | int m_initialSendBufferSize; | |
33d925b0 | 362 | |
c0c133e1 | 363 | wxDECLARE_NO_COPY_CLASS(wxSocketClient); |
f26d8138 | 364 | DECLARE_CLASS(wxSocketClient) |
f4ada568 GL |
365 | }; |
366 | ||
71622a7a GRG |
367 | |
368 | // -------------------------------------------------------------------------- | |
369 | // wxDatagramSocket | |
370 | // -------------------------------------------------------------------------- | |
371 | ||
372 | // WARNING: still in alpha stage | |
dc5c1114 | 373 | |
7c4728f6 | 374 | class WXDLLIMPEXP_NET wxDatagramSocket : public wxSocketBase |
dc5c1114 | 375 | { |
dc5c1114 | 376 | public: |
f26d8138 VZ |
377 | wxDatagramSocket(const wxSockAddress& addr, |
378 | wxSocketFlags flags = wxSOCKET_NONE); | |
379 | ||
380 | wxDatagramSocket& RecvFrom(wxSockAddress& addr, | |
381 | void *buf, | |
382 | wxUint32 nBytes); | |
383 | wxDatagramSocket& SendTo(const wxSockAddress& addr, | |
384 | const void* buf, | |
385 | wxUint32 nBytes); | |
386 | ||
387 | /* TODO: | |
388 | bool Connect(wxSockAddress& addr); | |
389 | */ | |
390 | ||
391 | private: | |
c0c133e1 | 392 | wxDECLARE_NO_COPY_CLASS(wxDatagramSocket); |
f26d8138 | 393 | DECLARE_CLASS(wxDatagramSocket) |
dc5c1114 GRG |
394 | }; |
395 | ||
dc5c1114 | 396 | |
71622a7a GRG |
397 | // -------------------------------------------------------------------------- |
398 | // wxSocketEvent | |
399 | // -------------------------------------------------------------------------- | |
400 | ||
7c4728f6 | 401 | class WXDLLIMPEXP_NET wxSocketEvent : public wxEvent |
71622a7a | 402 | { |
f4ada568 | 403 | public: |
f26d8138 VZ |
404 | wxSocketEvent(int id = 0) |
405 | : wxEvent(id, wxEVT_SOCKET) | |
406 | { | |
407 | } | |
f4ada568 | 408 | |
f26d8138 VZ |
409 | wxSocketNotify GetSocketEvent() const { return m_event; } |
410 | wxSocketBase *GetSocket() const | |
411 | { return (wxSocketBase *) GetEventObject(); } | |
412 | void *GetClientData() const { return m_clientData; } | |
f187448d | 413 | |
f26d8138 | 414 | virtual wxEvent *Clone() const { return new wxSocketEvent(*this); } |
d48b06bd | 415 | virtual wxEventCategory GetEventCategory() const { return wxEVT_CATEGORY_SOCKET; } |
aadbdf11 | 416 | |
f4ada568 | 417 | public: |
f26d8138 VZ |
418 | wxSocketNotify m_event; |
419 | void *m_clientData; | |
163f3154 | 420 | |
f26d8138 | 421 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSocketEvent) |
f4ada568 GL |
422 | }; |
423 | ||
71622a7a | 424 | |
f4ada568 GL |
425 | typedef void (wxEvtHandler::*wxSocketEventFunction)(wxSocketEvent&); |
426 | ||
7fa03f04 | 427 | #define wxSocketEventHandler(func) \ |
3c778901 | 428 | wxEVENT_HANDLER_CAST(wxSocketEventFunction, func) |
7fa03f04 | 429 | |
2e4df4bf | 430 | #define EVT_SOCKET(id, func) \ |
7fa03f04 | 431 | wx__DECLARE_EVT1(wxEVT_SOCKET, id, wxSocketEventHandler(func)) |
f4ada568 | 432 | |
7fa03f04 | 433 | #endif // wxUSE_SOCKETS |
71622a7a | 434 | |
7fa03f04 | 435 | #endif // _WX_SOCKET_H_ |
ce4169a4 | 436 |