]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: socket.h | |
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" |
65ccd2b8 | 25 | #include "wx/gsocket.h" |
b8ddac49 | 26 | #include "wx/list.h" |
f4ada568 | 27 | |
aa8fb7a0 | 28 | // ------------------------------------------------------------------------ |
71622a7a | 29 | // Types and constants |
aa8fb7a0 GL |
30 | // ------------------------------------------------------------------------ |
31 | ||
a64a02ef VZ |
32 | enum wxSocketNotify |
33 | { | |
aa8fb7a0 GL |
34 | wxSOCKET_INPUT = GSOCK_INPUT, |
35 | wxSOCKET_OUTPUT = GSOCK_OUTPUT, | |
36 | wxSOCKET_CONNECTION = GSOCK_CONNECTION, | |
37 | wxSOCKET_LOST = GSOCK_LOST | |
a64a02ef | 38 | }; |
aa8fb7a0 | 39 | |
a64a02ef VZ |
40 | enum |
41 | { | |
aa8fb7a0 GL |
42 | wxSOCKET_INPUT_FLAG = GSOCK_INPUT_FLAG, |
43 | wxSOCKET_OUTPUT_FLAG = GSOCK_OUTPUT_FLAG, | |
44 | wxSOCKET_CONNECTION_FLAG = GSOCK_CONNECTION_FLAG, | |
feeb8165 | 45 | wxSOCKET_LOST_FLAG = GSOCK_LOST_FLAG |
aa8fb7a0 GL |
46 | }; |
47 | ||
48 | typedef GSocketEventFlags wxSocketEventFlags; | |
49 | ||
a64a02ef VZ |
50 | enum wxSocketError |
51 | { | |
5c9eff30 | 52 | // from GSocket |
aa8fb7a0 | 53 | wxSOCKET_NOERROR = GSOCK_NOERROR, |
5c9eff30 | 54 | wxSOCKET_INVOP = GSOCK_INVOP, |
aa8fb7a0 GL |
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, | |
aa6d9706 | 61 | wxSOCKET_TIMEDOUT = GSOCK_TIMEDOUT, |
5c9eff30 GRG |
62 | wxSOCKET_MEMERR = GSOCK_MEMERR, |
63 | ||
64 | // wxSocket-specific (not yet implemented) | |
65 | wxSOCKET_DUMMY | |
a64a02ef | 66 | }; |
aa8fb7a0 | 67 | |
a64a02ef VZ |
68 | enum |
69 | { | |
483249fc GRG |
70 | wxSOCKET_NONE = 0, |
71 | wxSOCKET_NOWAIT = 1, | |
72 | wxSOCKET_WAITALL = 2, | |
74c481d1 | 73 | wxSOCKET_BLOCK = 4, |
60edcf45 VZ |
74 | wxSOCKET_REUSEADDR = 8, |
75 | wxSOCKET_BROADCAST = 16, | |
76 | wxSOCKET_NOBIND = 32 | |
483249fc GRG |
77 | }; |
78 | ||
71622a7a | 79 | enum wxSocketType |
a64a02ef | 80 | { |
71622a7a GRG |
81 | wxSOCKET_UNINIT, |
82 | wxSOCKET_CLIENT, | |
83 | wxSOCKET_SERVER, | |
84 | wxSOCKET_BASE, | |
85 | wxSOCKET_DATAGRAM | |
a64a02ef VZ |
86 | }; |
87 | ||
71622a7a | 88 | typedef int wxSocketFlags; |
483249fc | 89 | |
aa8fb7a0 | 90 | |
bffc1eaa | 91 | |
71622a7a GRG |
92 | // -------------------------------------------------------------------------- |
93 | // wxSocketBase | |
94 | // -------------------------------------------------------------------------- | |
95 | ||
7c4728f6 | 96 | class WXDLLIMPEXP_NET wxSocketBase : public wxObject |
f4ada568 GL |
97 | { |
98 | DECLARE_CLASS(wxSocketBase) | |
71622a7a | 99 | |
71622a7a | 100 | public: |
81b92e17 | 101 | |
71622a7a GRG |
102 | // Public interface |
103 | // ---------------- | |
65ccd2b8 | 104 | |
71622a7a | 105 | // ctors and dtors |
f4ada568 | 106 | wxSocketBase(); |
71622a7a | 107 | wxSocketBase(wxSocketFlags flags, wxSocketType type); |
f4ada568 | 108 | virtual ~wxSocketBase(); |
71622a7a GRG |
109 | void Init(); |
110 | bool Destroy(); | |
f4ada568 | 111 | |
71622a7a | 112 | // state |
dde65a60 VZ |
113 | bool Ok() const { return IsOk(); } |
114 | bool IsOk() const { return (m_socket != NULL); } | |
115 | bool Error() const { return m_error; } | |
c9157492 | 116 | bool IsClosed() const { return m_closed; } |
dde65a60 VZ |
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(); } | |
71622a7a GRG |
122 | void SaveState(); |
123 | void RestoreState(); | |
65ccd2b8 | 124 | |
71622a7a | 125 | // addresses |
7c395bf3 | 126 | virtual bool GetLocal(wxSockAddress& addr_man) const; |
71622a7a | 127 | virtual bool GetPeer(wxSockAddress& addr_man) const; |
72ac4e88 | 128 | virtual bool SetLocal(const wxIPV4address& local); |
7c395bf3 | 129 | |
71622a7a GRG |
130 | // base IO |
131 | virtual bool Close(); | |
132 | wxSocketBase& Discard(); | |
f187448d GRG |
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); | |
71622a7a | 139 | |
60ee0172 VZ |
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 | |
142 | // | |
143 | // it is also possible to call InterruptWait() to cancel any current Wait() | |
144 | ||
145 | // wait for anything at all to happen with this socket | |
aa6d9706 | 146 | bool Wait(long seconds = -1, long milliseconds = 0); |
60ee0172 VZ |
147 | |
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) | |
aa6d9706 GL |
151 | bool WaitForRead(long seconds = -1, long milliseconds = 0); |
152 | bool WaitForWrite(long seconds = -1, long milliseconds = 0); | |
60ee0172 VZ |
153 | |
154 | // wait until the connection is terminated | |
aa6d9706 | 155 | bool WaitForLost(long seconds = -1, long milliseconds = 0); |
65ccd2b8 | 156 | |
60ee0172 VZ |
157 | void InterruptWait() { m_interrupt = true; } |
158 | ||
159 | ||
dde65a60 | 160 | wxSocketFlags GetFlags() const { return m_flags; } |
71622a7a GRG |
161 | void SetFlags(wxSocketFlags flags); |
162 | void SetTimeout(long seconds); | |
65ccd2b8 | 163 | |
bfa7bf7d VZ |
164 | bool GetOption(int level, int optname, void *optval, int *optlen); |
165 | bool SetOption(int level, int optname, const void *optval, int optlen); | |
dde65a60 | 166 | wxUint32 GetLastIOSize() const { return m_lcount; } |
bfa7bf7d | 167 | |
71622a7a | 168 | // event handling |
f187448d GRG |
169 | void *GetClientData() const { return m_clientData; } |
170 | void SetClientData(void *data) { m_clientData = data; } | |
d775fa82 | 171 | void SetEventHandler(wxEvtHandler& handler, int id = wxID_ANY); |
aa8fb7a0 | 172 | void SetNotify(wxSocketEventFlags flags); |
7c395bf3 | 173 | void Notify(bool notify); |
7c395bf3 | 174 | |
6c0d0845 VZ |
175 | // initialize/shutdown the sockets (usually called automatically) |
176 | static bool IsInitialized(); | |
177 | static bool Initialize(); | |
178 | static void Shutdown(); | |
179 | ||
f4ada568 | 180 | |
71622a7a GRG |
181 | // Implementation from now on |
182 | // -------------------------- | |
f4ada568 | 183 | |
5c9eff30 | 184 | // do not use, should be private (called from GSocket) |
bffc1eaa | 185 | void OnRequest(wxSocketNotify notify); |
ce3ed50d | 186 | |
71622a7a | 187 | // do not use, not documented nor supported |
dde65a60 VZ |
188 | bool IsNoWait() const { return ((m_flags & wxSOCKET_NOWAIT) != 0); } |
189 | wxSocketType GetType() const { return m_type; } | |
ce3ed50d | 190 | |
fbf5995c GRG |
191 | private: |
192 | friend class wxSocketClient; | |
193 | friend class wxSocketServer; | |
194 | friend class wxDatagramSocket; | |
65ccd2b8 | 195 | |
71622a7a | 196 | // low level IO |
cc0972a2 VZ |
197 | wxUint32 DoRead(void* buffer, wxUint32 nbytes); |
198 | wxUint32 DoWrite(const void *buffer, wxUint32 nbytes); | |
60ee0172 VZ |
199 | |
200 | // wait until the given flags are set for this socket or the given timeout | |
201 | // (or m_timeout) expires | |
202 | // | |
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 | |
207 | // | |
208 | // false is always returned if we returned because of the timeout expiration | |
209 | bool DoWait(long seconds, long milliseconds, wxSocketEventFlags flags); | |
f4ada568 | 210 | |
71622a7a | 211 | // pushback buffer |
5c9eff30 | 212 | void Pushback(const void *buffer, wxUint32 size); |
f187448d | 213 | wxUint32 GetPushback(void *buffer, wxUint32 size, bool peek); |
71622a7a | 214 | |
fbf5995c | 215 | private: |
5c9eff30 | 216 | // socket |
71622a7a GRG |
217 | GSocket *m_socket; // GSocket |
218 | wxSocketType m_type; // wxSocket type | |
219 | ||
220 | // state | |
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? | |
c9157492 VZ |
227 | bool m_closed; // was the other end closed? |
228 | // (notice that m_error is also set then) | |
71622a7a | 229 | wxUint32 m_lcount; // last IO transaction size |
60ee0172 | 230 | unsigned long m_timeout; // IO timeout value in seconds |
71622a7a GRG |
231 | wxList m_states; // stack of states |
232 | bool m_interrupt; // interrupt ongoing wait operations? | |
233 | bool m_beingDeleted; // marked for delayed deletion? | |
30bbf68d | 234 | wxIPV4address m_localAddress; // bind to local address? |
71622a7a GRG |
235 | |
236 | // pushback buffer | |
f187448d | 237 | void *m_unread; // pushback buffer |
71622a7a GRG |
238 | wxUint32 m_unrd_size; // pushback buffer size |
239 | wxUint32 m_unrd_cur; // pushback pointer (index into buffer) | |
240 | ||
241 | // events | |
71622a7a | 242 | int m_id; // socket id |
f187448d GRG |
243 | wxEvtHandler *m_handler; // event handler |
244 | void *m_clientData; // client data for events | |
bffc1eaa GRG |
245 | bool m_notify; // notify events to users? |
246 | wxSocketEventFlags m_eventmask; // which events to notify? | |
f187448d | 247 | |
6c0d0845 VZ |
248 | // the initialization count, GSocket is initialized if > 0 |
249 | static size_t m_countInit; | |
250 | ||
33d925b0 | 251 | DECLARE_NO_COPY_CLASS(wxSocketBase) |
f4ada568 GL |
252 | }; |
253 | ||
71622a7a GRG |
254 | |
255 | // -------------------------------------------------------------------------- | |
256 | // wxSocketServer | |
257 | // -------------------------------------------------------------------------- | |
f4ada568 | 258 | |
7c4728f6 | 259 | class WXDLLIMPEXP_NET wxSocketServer : public wxSocketBase |
f4ada568 GL |
260 | { |
261 | DECLARE_CLASS(wxSocketServer) | |
f4ada568 | 262 | |
71622a7a | 263 | public: |
fbfb8bcc | 264 | wxSocketServer(const wxSockAddress& addr, wxSocketFlags flags = wxSOCKET_NONE); |
f4ada568 | 265 | |
d775fa82 WS |
266 | wxSocketBase* Accept(bool wait = true); |
267 | bool AcceptWith(wxSocketBase& socket, bool wait = true); | |
35809fe3 | 268 | |
7c395bf3 | 269 | bool WaitForAccept(long seconds = -1, long milliseconds = 0); |
0fccfc51 MB |
270 | |
271 | DECLARE_NO_COPY_CLASS(wxSocketServer) | |
f4ada568 GL |
272 | }; |
273 | ||
71622a7a GRG |
274 | |
275 | // -------------------------------------------------------------------------- | |
276 | // wxSocketClient | |
277 | // -------------------------------------------------------------------------- | |
f4ada568 | 278 | |
7c4728f6 | 279 | class WXDLLIMPEXP_NET wxSocketClient : public wxSocketBase |
f4ada568 GL |
280 | { |
281 | DECLARE_CLASS(wxSocketClient) | |
f4ada568 | 282 | |
71622a7a GRG |
283 | public: |
284 | wxSocketClient(wxSocketFlags flags = wxSOCKET_NONE); | |
f4ada568 GL |
285 | virtual ~wxSocketClient(); |
286 | ||
72ac4e88 VZ |
287 | virtual bool Connect(const wxSockAddress& addr, bool wait = true); |
288 | bool Connect(const wxSockAddress& addr, const wxSockAddress& local, | |
289 | bool wait = true); | |
f4ada568 | 290 | |
aa6d9706 | 291 | bool WaitOnConnect(long seconds = -1, long milliseconds = 0); |
0fccfc51 | 292 | |
8c029a5b VZ |
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) | |
296 | { | |
297 | m_initialRecvBufferSize = recv; | |
298 | m_initialSendBufferSize = send; | |
299 | } | |
300 | ||
33d925b0 | 301 | private: |
72ac4e88 VZ |
302 | virtual bool DoConnect(const wxSockAddress& addr, |
303 | const wxSockAddress* local, | |
304 | bool wait = true); | |
8c029a5b VZ |
305 | |
306 | // buffer sizes, -1 if unset and defaults should be used | |
307 | int m_initialRecvBufferSize; | |
308 | int m_initialSendBufferSize; | |
33d925b0 | 309 | |
0fccfc51 | 310 | DECLARE_NO_COPY_CLASS(wxSocketClient) |
f4ada568 GL |
311 | }; |
312 | ||
71622a7a GRG |
313 | |
314 | // -------------------------------------------------------------------------- | |
315 | // wxDatagramSocket | |
316 | // -------------------------------------------------------------------------- | |
317 | ||
318 | // WARNING: still in alpha stage | |
dc5c1114 | 319 | |
7c4728f6 | 320 | class WXDLLIMPEXP_NET wxDatagramSocket : public wxSocketBase |
dc5c1114 GRG |
321 | { |
322 | DECLARE_CLASS(wxDatagramSocket) | |
323 | ||
324 | public: | |
fbfb8bcc | 325 | wxDatagramSocket(const wxSockAddress& addr, wxSocketFlags flags = wxSOCKET_NONE); |
dc5c1114 GRG |
326 | |
327 | wxDatagramSocket& RecvFrom( wxSockAddress& addr, | |
f187448d | 328 | void* buf, |
dc5c1114 | 329 | wxUint32 nBytes ); |
fbfb8bcc | 330 | wxDatagramSocket& SendTo( const wxSockAddress& addr, |
f187448d | 331 | const void* buf, |
dc5c1114 | 332 | wxUint32 nBytes ); |
5c9eff30 GRG |
333 | |
334 | /* TODO: | |
335 | bool Connect(wxSockAddress& addr); | |
336 | */ | |
0fccfc51 | 337 | DECLARE_NO_COPY_CLASS(wxDatagramSocket) |
dc5c1114 GRG |
338 | }; |
339 | ||
dc5c1114 | 340 | |
71622a7a GRG |
341 | // -------------------------------------------------------------------------- |
342 | // wxSocketEvent | |
343 | // -------------------------------------------------------------------------- | |
344 | ||
7c4728f6 | 345 | class WXDLLIMPEXP_NET wxSocketEvent : public wxEvent |
71622a7a | 346 | { |
f4ada568 | 347 | public: |
163f3154 VZ |
348 | wxSocketEvent(int id = 0) |
349 | : wxEvent(id, wxEVT_SOCKET) | |
350 | { | |
351 | } | |
f4ada568 | 352 | |
f187448d GRG |
353 | wxSocketNotify GetSocketEvent() const { return m_event; } |
354 | wxSocketBase *GetSocket() const { return (wxSocketBase *) GetEventObject(); } | |
355 | void *GetClientData() const { return m_clientData; } | |
356 | ||
163f3154 | 357 | virtual wxEvent *Clone() const { return new wxSocketEvent(*this); } |
aadbdf11 | 358 | |
f4ada568 | 359 | public: |
71622a7a | 360 | wxSocketNotify m_event; |
f187448d | 361 | void *m_clientData; |
163f3154 | 362 | |
a6cbc4db | 363 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSocketEvent) |
f4ada568 GL |
364 | }; |
365 | ||
71622a7a | 366 | |
f4ada568 GL |
367 | typedef void (wxEvtHandler::*wxSocketEventFunction)(wxSocketEvent&); |
368 | ||
7fa03f04 | 369 | #define wxSocketEventHandler(func) \ |
8bc3ec1f | 370 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSocketEventFunction, &func) |
7fa03f04 | 371 | |
2e4df4bf | 372 | #define EVT_SOCKET(id, func) \ |
7fa03f04 | 373 | wx__DECLARE_EVT1(wxEVT_SOCKET, id, wxSocketEventHandler(func)) |
f4ada568 | 374 | |
7fa03f04 | 375 | #endif // wxUSE_SOCKETS |
71622a7a | 376 | |
7fa03f04 | 377 | #endif // _WX_SOCKET_H_ |
ce4169a4 | 378 |