]>
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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
0c32066b | 11 | |
f4ada568 GL |
12 | #ifndef _WX_NETWORK_SOCKET_H |
13 | #define _WX_NETWORK_SOCKET_H | |
14 | ||
15 | #ifdef __GNUG__ | |
bffc1eaa | 16 | #pragma interface "socket.h" |
f4ada568 GL |
17 | #endif |
18 | ||
ce4169a4 RR |
19 | #include "wx/defs.h" |
20 | ||
21 | #if wxUSE_SOCKETS | |
22 | ||
f4ada568 | 23 | // --------------------------------------------------------------------------- |
71622a7a | 24 | // wxSocket headers |
f4ada568 | 25 | // --------------------------------------------------------------------------- |
483249fc | 26 | |
f4ada568 | 27 | #ifdef WXPREC |
bffc1eaa | 28 | #include "wx/wxprec.h" |
f4ada568 | 29 | #else |
bffc1eaa GRG |
30 | #include "wx/event.h" |
31 | #include "wx/string.h" | |
f4ada568 | 32 | #endif |
57dde4bd | 33 | |
ed58dbea | 34 | #include "wx/sckaddr.h" |
65ccd2b8 | 35 | #include "wx/gsocket.h" |
f4ada568 | 36 | |
aa8fb7a0 | 37 | // ------------------------------------------------------------------------ |
71622a7a | 38 | // Types and constants |
aa8fb7a0 GL |
39 | // ------------------------------------------------------------------------ |
40 | ||
a64a02ef VZ |
41 | enum wxSocketNotify |
42 | { | |
aa8fb7a0 GL |
43 | wxSOCKET_INPUT = GSOCK_INPUT, |
44 | wxSOCKET_OUTPUT = GSOCK_OUTPUT, | |
45 | wxSOCKET_CONNECTION = GSOCK_CONNECTION, | |
46 | wxSOCKET_LOST = GSOCK_LOST | |
a64a02ef | 47 | }; |
aa8fb7a0 | 48 | |
a64a02ef VZ |
49 | enum |
50 | { | |
aa8fb7a0 GL |
51 | wxSOCKET_INPUT_FLAG = GSOCK_INPUT_FLAG, |
52 | wxSOCKET_OUTPUT_FLAG = GSOCK_OUTPUT_FLAG, | |
53 | wxSOCKET_CONNECTION_FLAG = GSOCK_CONNECTION_FLAG, | |
feeb8165 | 54 | wxSOCKET_LOST_FLAG = GSOCK_LOST_FLAG |
aa8fb7a0 GL |
55 | }; |
56 | ||
57 | typedef GSocketEventFlags wxSocketEventFlags; | |
58 | ||
a64a02ef VZ |
59 | enum wxSocketError |
60 | { | |
5c9eff30 | 61 | // from GSocket |
aa8fb7a0 | 62 | wxSOCKET_NOERROR = GSOCK_NOERROR, |
5c9eff30 | 63 | wxSOCKET_INVOP = GSOCK_INVOP, |
aa8fb7a0 GL |
64 | wxSOCKET_IOERR = GSOCK_IOERR, |
65 | wxSOCKET_INVADDR = GSOCK_INVADDR, | |
66 | wxSOCKET_INVSOCK = GSOCK_INVSOCK, | |
67 | wxSOCKET_NOHOST = GSOCK_NOHOST, | |
68 | wxSOCKET_INVPORT = GSOCK_INVPORT, | |
69 | wxSOCKET_WOULDBLOCK = GSOCK_WOULDBLOCK, | |
aa6d9706 | 70 | wxSOCKET_TIMEDOUT = GSOCK_TIMEDOUT, |
5c9eff30 GRG |
71 | wxSOCKET_MEMERR = GSOCK_MEMERR, |
72 | ||
73 | // wxSocket-specific (not yet implemented) | |
74 | wxSOCKET_DUMMY | |
a64a02ef | 75 | }; |
aa8fb7a0 | 76 | |
a64a02ef VZ |
77 | enum |
78 | { | |
483249fc GRG |
79 | wxSOCKET_NONE = 0, |
80 | wxSOCKET_NOWAIT = 1, | |
81 | wxSOCKET_WAITALL = 2, | |
82 | wxSOCKET_BLOCK = 4 | |
83 | }; | |
84 | ||
71622a7a | 85 | enum wxSocketType |
a64a02ef | 86 | { |
71622a7a GRG |
87 | wxSOCKET_UNINIT, |
88 | wxSOCKET_CLIENT, | |
89 | wxSOCKET_SERVER, | |
90 | wxSOCKET_BASE, | |
91 | wxSOCKET_DATAGRAM | |
a64a02ef VZ |
92 | }; |
93 | ||
71622a7a | 94 | typedef int wxSocketFlags; |
483249fc | 95 | |
aa8fb7a0 | 96 | |
71622a7a | 97 | #if WXWIN_COMPATIBILITY |
bffc1eaa GRG |
98 | typedef wxSocketType wxSockType; |
99 | typedef wxSocketFlags wxSockFlags; | |
71622a7a | 100 | #endif // WXWIN_COMPATIBILITY |
dc5c1114 | 101 | |
bffc1eaa | 102 | |
71622a7a GRG |
103 | // -------------------------------------------------------------------------- |
104 | // wxSocketBase | |
105 | // -------------------------------------------------------------------------- | |
106 | ||
107 | class WXDLLEXPORT wxSocketBase : public wxObject | |
f4ada568 GL |
108 | { |
109 | DECLARE_CLASS(wxSocketBase) | |
71622a7a | 110 | |
f4ada568 GL |
111 | public: |
112 | ||
71622a7a | 113 | #if WXWIN_COMPATIBILITY |
a64a02ef VZ |
114 | enum |
115 | { | |
483249fc GRG |
116 | NONE = wxSOCKET_NONE, |
117 | NOWAIT = wxSOCKET_NOWAIT, | |
118 | WAITALL = wxSOCKET_WAITALL, | |
119 | SPEED = wxSOCKET_BLOCK | |
120 | }; | |
121 | ||
71622a7a GRG |
122 | enum |
123 | { | |
124 | SOCK_UNINIT = wxSOCKET_UNINIT, | |
125 | SOCK_CLIENT = wxSOCKET_CLIENT, | |
126 | SOCK_SERVER = wxSOCKET_SERVER, | |
127 | SOCK_INTERNAL = wxSOCKET_BASE, | |
128 | SOCK_DATAGRAM = wxSOCKET_DATAGRAM | |
129 | }; | |
f4ada568 | 130 | |
71622a7a | 131 | typedef void (*wxSockCbk)(wxSocketBase& sock, wxSocketNotify evt, char *cdata); |
bffc1eaa | 132 | #endif // WXWIN_COMPATIBILITY |
81b92e17 | 133 | |
71622a7a | 134 | public: |
81b92e17 | 135 | |
71622a7a GRG |
136 | // Public interface |
137 | // ---------------- | |
65ccd2b8 | 138 | |
71622a7a | 139 | // ctors and dtors |
f4ada568 | 140 | wxSocketBase(); |
71622a7a | 141 | wxSocketBase(wxSocketFlags flags, wxSocketType type); |
f4ada568 | 142 | virtual ~wxSocketBase(); |
71622a7a GRG |
143 | void Init(); |
144 | bool Destroy(); | |
f4ada568 | 145 | |
71622a7a | 146 | // state |
a324a7bc | 147 | inline bool Ok() const { return (m_socket != NULL); }; |
7c395bf3 | 148 | inline bool Error() const { return m_error; }; |
f4ada568 | 149 | inline bool IsConnected() const { return m_connected; }; |
483249fc | 150 | inline bool IsData() { return WaitForRead(0, 0); }; |
71622a7a | 151 | inline bool IsDisconnected() const { return !IsConnected(); }; |
aa6d9706 | 152 | inline wxUint32 LastCount() const { return m_lcount; } |
aa8fb7a0 | 153 | inline wxSocketError LastError() const { return (wxSocketError)GSocket_GetError(m_socket); } |
71622a7a GRG |
154 | void SaveState(); |
155 | void RestoreState(); | |
65ccd2b8 | 156 | |
71622a7a | 157 | // addresses |
7c395bf3 | 158 | virtual bool GetLocal(wxSockAddress& addr_man) const; |
71622a7a | 159 | virtual bool GetPeer(wxSockAddress& addr_man) const; |
7c395bf3 | 160 | |
71622a7a GRG |
161 | // base IO |
162 | virtual bool Close(); | |
163 | wxSocketBase& Discard(); | |
f187448d GRG |
164 | wxSocketBase& Peek(void* buffer, wxUint32 nbytes); |
165 | wxSocketBase& Read(void* buffer, wxUint32 nbytes); | |
166 | wxSocketBase& ReadMsg(void *buffer, wxUint32 nbytes); | |
167 | wxSocketBase& Unread(const void *buffer, wxUint32 nbytes); | |
168 | wxSocketBase& Write(const void *buffer, wxUint32 nbytes); | |
169 | wxSocketBase& WriteMsg(const void *buffer, wxUint32 nbytes); | |
71622a7a | 170 | |
bffc1eaa | 171 | void InterruptWait() { m_interrupt = TRUE; }; |
aa6d9706 GL |
172 | bool Wait(long seconds = -1, long milliseconds = 0); |
173 | bool WaitForRead(long seconds = -1, long milliseconds = 0); | |
174 | bool WaitForWrite(long seconds = -1, long milliseconds = 0); | |
175 | bool WaitForLost(long seconds = -1, long milliseconds = 0); | |
65ccd2b8 | 176 | |
f187448d | 177 | inline wxSocketFlags GetFlags() const { return m_flags; } |
71622a7a GRG |
178 | void SetFlags(wxSocketFlags flags); |
179 | void SetTimeout(long seconds); | |
65ccd2b8 | 180 | |
71622a7a | 181 | // event handling |
f187448d GRG |
182 | void *GetClientData() const { return m_clientData; } |
183 | void SetClientData(void *data) { m_clientData = data; } | |
71622a7a | 184 | void SetEventHandler(wxEvtHandler& handler, int id = -1); |
aa8fb7a0 | 185 | void SetNotify(wxSocketEventFlags flags); |
7c395bf3 | 186 | void Notify(bool notify); |
7c395bf3 | 187 | |
bffc1eaa GRG |
188 | // callbacks are deprecated, use events instead |
189 | #if WXWIN_COMPATIBILITY | |
7c395bf3 GRG |
190 | wxSockCbk Callback(wxSockCbk cbk_); |
191 | char *CallbackData(char *data); | |
bffc1eaa | 192 | #endif // WXWIN_COMPATIBILITY |
f4ada568 | 193 | |
f4ada568 | 194 | |
71622a7a GRG |
195 | // Implementation from now on |
196 | // -------------------------- | |
f4ada568 | 197 | |
5c9eff30 | 198 | // do not use, should be private (called from GSocket) |
bffc1eaa | 199 | void OnRequest(wxSocketNotify notify); |
ce3ed50d | 200 | |
71622a7a | 201 | // do not use, not documented nor supported |
bffc1eaa | 202 | inline bool IsNoWait() const { return ((m_flags & wxSOCKET_NOWAIT) != 0); } |
71622a7a | 203 | inline wxSocketType GetType() const { return m_type; } |
ce3ed50d | 204 | |
fbf5995c GRG |
205 | private: |
206 | friend class wxSocketClient; | |
207 | friend class wxSocketServer; | |
208 | friend class wxDatagramSocket; | |
65ccd2b8 | 209 | |
71622a7a | 210 | // low level IO |
f187448d GRG |
211 | wxUint32 _Read(void* buffer, wxUint32 nbytes); |
212 | wxUint32 _Write(const void *buffer, wxUint32 nbytes); | |
5c9eff30 | 213 | bool _Wait(long seconds, long milliseconds, wxSocketEventFlags flags); |
f4ada568 | 214 | |
71622a7a | 215 | // pushback buffer |
5c9eff30 | 216 | void Pushback(const void *buffer, wxUint32 size); |
f187448d | 217 | wxUint32 GetPushback(void *buffer, wxUint32 size, bool peek); |
71622a7a | 218 | |
fbf5995c | 219 | private: |
5c9eff30 | 220 | // socket |
71622a7a GRG |
221 | GSocket *m_socket; // GSocket |
222 | wxSocketType m_type; // wxSocket type | |
223 | ||
224 | // state | |
225 | wxSocketFlags m_flags; // wxSocket flags | |
226 | bool m_connected; // connected? | |
227 | bool m_establishing; // establishing connection? | |
228 | bool m_reading; // busy reading? | |
229 | bool m_writing; // busy writing? | |
230 | bool m_error; // did last IO call fail? | |
5c9eff30 | 231 | wxSocketError m_lasterror; // last error (not cleared on success) |
71622a7a GRG |
232 | wxUint32 m_lcount; // last IO transaction size |
233 | unsigned long m_timeout; // IO timeout value | |
234 | wxList m_states; // stack of states | |
235 | bool m_interrupt; // interrupt ongoing wait operations? | |
236 | bool m_beingDeleted; // marked for delayed deletion? | |
237 | ||
238 | // pushback buffer | |
f187448d | 239 | void *m_unread; // pushback buffer |
71622a7a GRG |
240 | wxUint32 m_unrd_size; // pushback buffer size |
241 | wxUint32 m_unrd_cur; // pushback pointer (index into buffer) | |
242 | ||
243 | // events | |
71622a7a | 244 | int m_id; // socket id |
f187448d GRG |
245 | wxEvtHandler *m_handler; // event handler |
246 | void *m_clientData; // client data for events | |
bffc1eaa GRG |
247 | bool m_notify; // notify events to users? |
248 | wxSocketEventFlags m_eventmask; // which events to notify? | |
f187448d | 249 | |
bffc1eaa GRG |
250 | // callbacks are deprecated, use events instead |
251 | #if WXWIN_COMPATIBILITY | |
71622a7a GRG |
252 | wxSockCbk m_cbk; // callback |
253 | char *m_cdata; // callback data | |
bffc1eaa | 254 | #endif // WXWIN_COMPATIBILITY |
f4ada568 GL |
255 | }; |
256 | ||
71622a7a GRG |
257 | |
258 | // -------------------------------------------------------------------------- | |
259 | // wxSocketServer | |
260 | // -------------------------------------------------------------------------- | |
f4ada568 GL |
261 | |
262 | class WXDLLEXPORT wxSocketServer : public wxSocketBase | |
263 | { | |
264 | DECLARE_CLASS(wxSocketServer) | |
f4ada568 | 265 | |
71622a7a GRG |
266 | public: |
267 | wxSocketServer(wxSockAddress& addr, wxSocketFlags flags = wxSOCKET_NONE); | |
f4ada568 | 268 | |
35809fe3 | 269 | wxSocketBase* Accept(bool wait = TRUE); |
71622a7a | 270 | bool AcceptWith(wxSocketBase& socket, bool wait = TRUE); |
35809fe3 | 271 | |
7c395bf3 | 272 | bool WaitForAccept(long seconds = -1, long milliseconds = 0); |
f4ada568 GL |
273 | }; |
274 | ||
71622a7a GRG |
275 | |
276 | // -------------------------------------------------------------------------- | |
277 | // wxSocketClient | |
278 | // -------------------------------------------------------------------------- | |
f4ada568 GL |
279 | |
280 | class WXDLLEXPORT wxSocketClient : public wxSocketBase | |
281 | { | |
282 | DECLARE_CLASS(wxSocketClient) | |
f4ada568 | 283 | |
71622a7a GRG |
284 | public: |
285 | wxSocketClient(wxSocketFlags flags = wxSOCKET_NONE); | |
f4ada568 GL |
286 | virtual ~wxSocketClient(); |
287 | ||
71622a7a | 288 | virtual bool Connect(wxSockAddress& addr, bool wait = TRUE); |
f4ada568 | 289 | |
aa6d9706 | 290 | bool WaitOnConnect(long seconds = -1, long milliseconds = 0); |
f4ada568 GL |
291 | }; |
292 | ||
71622a7a GRG |
293 | |
294 | // -------------------------------------------------------------------------- | |
295 | // wxDatagramSocket | |
296 | // -------------------------------------------------------------------------- | |
297 | ||
298 | // WARNING: still in alpha stage | |
dc5c1114 GRG |
299 | |
300 | class wxDatagramSocket : public wxSocketBase | |
301 | { | |
302 | DECLARE_CLASS(wxDatagramSocket) | |
303 | ||
304 | public: | |
71622a7a | 305 | wxDatagramSocket(wxSockAddress& addr, wxSocketFlags flags = wxSOCKET_NONE); |
dc5c1114 GRG |
306 | |
307 | wxDatagramSocket& RecvFrom( wxSockAddress& addr, | |
f187448d | 308 | void* buf, |
dc5c1114 GRG |
309 | wxUint32 nBytes ); |
310 | wxDatagramSocket& SendTo( wxSockAddress& addr, | |
f187448d | 311 | const void* buf, |
dc5c1114 | 312 | wxUint32 nBytes ); |
5c9eff30 GRG |
313 | |
314 | /* TODO: | |
315 | bool Connect(wxSockAddress& addr); | |
316 | */ | |
dc5c1114 GRG |
317 | }; |
318 | ||
dc5c1114 | 319 | |
71622a7a GRG |
320 | // -------------------------------------------------------------------------- |
321 | // wxSocketEvent | |
322 | // -------------------------------------------------------------------------- | |
323 | ||
324 | class WXDLLEXPORT wxSocketEvent : public wxEvent | |
325 | { | |
f4ada568 | 326 | DECLARE_DYNAMIC_CLASS(wxSocketEvent) |
71622a7a | 327 | |
f4ada568 GL |
328 | public: |
329 | wxSocketEvent(int id = 0); | |
330 | ||
f187448d GRG |
331 | wxSocketNotify GetSocketEvent() const { return m_event; } |
332 | wxSocketBase *GetSocket() const { return (wxSocketBase *) GetEventObject(); } | |
333 | void *GetClientData() const { return m_clientData; } | |
334 | ||
335 | // backwards compatibility | |
5c9eff30 | 336 | #if WXWIN_COMPATIBILITY_2 |
f187448d GRG |
337 | wxSocketNotify SocketEvent() const { return m_event; } |
338 | wxSocketBase *Socket() const { return (wxSocketBase *) GetEventObject(); } | |
5c9eff30 | 339 | #endif // WXWIN_COMPATIBILITY_2 |
a737331d | 340 | |
71622a7a | 341 | void CopyObject(wxObject& object_dest) const; |
aadbdf11 | 342 | |
f4ada568 | 343 | public: |
71622a7a | 344 | wxSocketNotify m_event; |
f187448d | 345 | void *m_clientData; |
f4ada568 GL |
346 | }; |
347 | ||
71622a7a | 348 | |
f4ada568 GL |
349 | typedef void (wxEvtHandler::*wxSocketEventFunction)(wxSocketEvent&); |
350 | ||
2e4df4bf VZ |
351 | #define EVT_SOCKET(id, func) \ |
352 | DECLARE_EVENT_TABLE_ENTRY( wxEVT_SOCKET, id, -1, \ | |
353 | (wxObjectEventFunction) \ | |
354 | (wxEventFunction) \ | |
355 | (wxSocketEventFunction) & func, \ | |
356 | (wxObject *) NULL ), | |
f4ada568 | 357 | |
71622a7a | 358 | |
f4ada568 | 359 | #endif |
ce4169a4 RR |
360 | // wxUSE_SOCKETS |
361 | ||
362 | #endif | |
363 | // _WX_NETWORK_SOCKET_H |