]>
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 | |
47b378bd | 140 | void InterruptWait() { m_interrupt = true; } |
aa6d9706 GL |
141 | bool Wait(long seconds = -1, long milliseconds = 0); |
142 | bool WaitForRead(long seconds = -1, long milliseconds = 0); | |
143 | bool WaitForWrite(long seconds = -1, long milliseconds = 0); | |
144 | bool WaitForLost(long seconds = -1, long milliseconds = 0); | |
65ccd2b8 | 145 | |
dde65a60 | 146 | wxSocketFlags GetFlags() const { return m_flags; } |
71622a7a GRG |
147 | void SetFlags(wxSocketFlags flags); |
148 | void SetTimeout(long seconds); | |
65ccd2b8 | 149 | |
bfa7bf7d VZ |
150 | bool GetOption(int level, int optname, void *optval, int *optlen); |
151 | bool SetOption(int level, int optname, const void *optval, int optlen); | |
dde65a60 | 152 | wxUint32 GetLastIOSize() const { return m_lcount; } |
bfa7bf7d | 153 | |
71622a7a | 154 | // event handling |
f187448d GRG |
155 | void *GetClientData() const { return m_clientData; } |
156 | void SetClientData(void *data) { m_clientData = data; } | |
d775fa82 | 157 | void SetEventHandler(wxEvtHandler& handler, int id = wxID_ANY); |
aa8fb7a0 | 158 | void SetNotify(wxSocketEventFlags flags); |
7c395bf3 | 159 | void Notify(bool notify); |
7c395bf3 | 160 | |
6c0d0845 VZ |
161 | // initialize/shutdown the sockets (usually called automatically) |
162 | static bool IsInitialized(); | |
163 | static bool Initialize(); | |
164 | static void Shutdown(); | |
165 | ||
f4ada568 | 166 | |
71622a7a GRG |
167 | // Implementation from now on |
168 | // -------------------------- | |
f4ada568 | 169 | |
5c9eff30 | 170 | // do not use, should be private (called from GSocket) |
bffc1eaa | 171 | void OnRequest(wxSocketNotify notify); |
ce3ed50d | 172 | |
71622a7a | 173 | // do not use, not documented nor supported |
dde65a60 VZ |
174 | bool IsNoWait() const { return ((m_flags & wxSOCKET_NOWAIT) != 0); } |
175 | wxSocketType GetType() const { return m_type; } | |
ce3ed50d | 176 | |
fbf5995c GRG |
177 | private: |
178 | friend class wxSocketClient; | |
179 | friend class wxSocketServer; | |
180 | friend class wxDatagramSocket; | |
65ccd2b8 | 181 | |
71622a7a | 182 | // low level IO |
f187448d GRG |
183 | wxUint32 _Read(void* buffer, wxUint32 nbytes); |
184 | wxUint32 _Write(const void *buffer, wxUint32 nbytes); | |
5c9eff30 | 185 | bool _Wait(long seconds, long milliseconds, wxSocketEventFlags flags); |
f4ada568 | 186 | |
71622a7a | 187 | // pushback buffer |
5c9eff30 | 188 | void Pushback(const void *buffer, wxUint32 size); |
f187448d | 189 | wxUint32 GetPushback(void *buffer, wxUint32 size, bool peek); |
71622a7a | 190 | |
fbf5995c | 191 | private: |
5c9eff30 | 192 | // socket |
71622a7a GRG |
193 | GSocket *m_socket; // GSocket |
194 | wxSocketType m_type; // wxSocket type | |
195 | ||
196 | // state | |
197 | wxSocketFlags m_flags; // wxSocket flags | |
198 | bool m_connected; // connected? | |
199 | bool m_establishing; // establishing connection? | |
200 | bool m_reading; // busy reading? | |
201 | bool m_writing; // busy writing? | |
202 | bool m_error; // did last IO call fail? | |
c9157492 VZ |
203 | bool m_closed; // was the other end closed? |
204 | // (notice that m_error is also set then) | |
71622a7a GRG |
205 | wxUint32 m_lcount; // last IO transaction size |
206 | unsigned long m_timeout; // IO timeout value | |
207 | wxList m_states; // stack of states | |
208 | bool m_interrupt; // interrupt ongoing wait operations? | |
209 | bool m_beingDeleted; // marked for delayed deletion? | |
30bbf68d | 210 | wxIPV4address m_localAddress; // bind to local address? |
71622a7a GRG |
211 | |
212 | // pushback buffer | |
f187448d | 213 | void *m_unread; // pushback buffer |
71622a7a GRG |
214 | wxUint32 m_unrd_size; // pushback buffer size |
215 | wxUint32 m_unrd_cur; // pushback pointer (index into buffer) | |
216 | ||
217 | // events | |
71622a7a | 218 | int m_id; // socket id |
f187448d GRG |
219 | wxEvtHandler *m_handler; // event handler |
220 | void *m_clientData; // client data for events | |
bffc1eaa GRG |
221 | bool m_notify; // notify events to users? |
222 | wxSocketEventFlags m_eventmask; // which events to notify? | |
f187448d | 223 | |
6c0d0845 VZ |
224 | // the initialization count, GSocket is initialized if > 0 |
225 | static size_t m_countInit; | |
226 | ||
33d925b0 | 227 | DECLARE_NO_COPY_CLASS(wxSocketBase) |
f4ada568 GL |
228 | }; |
229 | ||
71622a7a GRG |
230 | |
231 | // -------------------------------------------------------------------------- | |
232 | // wxSocketServer | |
233 | // -------------------------------------------------------------------------- | |
f4ada568 | 234 | |
7c4728f6 | 235 | class WXDLLIMPEXP_NET wxSocketServer : public wxSocketBase |
f4ada568 GL |
236 | { |
237 | DECLARE_CLASS(wxSocketServer) | |
f4ada568 | 238 | |
71622a7a | 239 | public: |
fbfb8bcc | 240 | wxSocketServer(const wxSockAddress& addr, wxSocketFlags flags = wxSOCKET_NONE); |
f4ada568 | 241 | |
d775fa82 WS |
242 | wxSocketBase* Accept(bool wait = true); |
243 | bool AcceptWith(wxSocketBase& socket, bool wait = true); | |
35809fe3 | 244 | |
7c395bf3 | 245 | bool WaitForAccept(long seconds = -1, long milliseconds = 0); |
0fccfc51 MB |
246 | |
247 | DECLARE_NO_COPY_CLASS(wxSocketServer) | |
f4ada568 GL |
248 | }; |
249 | ||
71622a7a GRG |
250 | |
251 | // -------------------------------------------------------------------------- | |
252 | // wxSocketClient | |
253 | // -------------------------------------------------------------------------- | |
f4ada568 | 254 | |
7c4728f6 | 255 | class WXDLLIMPEXP_NET wxSocketClient : public wxSocketBase |
f4ada568 GL |
256 | { |
257 | DECLARE_CLASS(wxSocketClient) | |
f4ada568 | 258 | |
71622a7a GRG |
259 | public: |
260 | wxSocketClient(wxSocketFlags flags = wxSOCKET_NONE); | |
f4ada568 GL |
261 | virtual ~wxSocketClient(); |
262 | ||
72ac4e88 VZ |
263 | virtual bool Connect(const wxSockAddress& addr, bool wait = true); |
264 | bool Connect(const wxSockAddress& addr, const wxSockAddress& local, | |
265 | bool wait = true); | |
f4ada568 | 266 | |
aa6d9706 | 267 | bool WaitOnConnect(long seconds = -1, long milliseconds = 0); |
0fccfc51 | 268 | |
8c029a5b VZ |
269 | // Sets initial socket buffer sizes using the SO_SNDBUF and SO_RCVBUF options |
270 | // before calling connect (either one can be -1 to leave it unchanged) | |
271 | void SetInitialSocketBuffers(int recv, int send) | |
272 | { | |
273 | m_initialRecvBufferSize = recv; | |
274 | m_initialSendBufferSize = send; | |
275 | } | |
276 | ||
33d925b0 | 277 | private: |
72ac4e88 VZ |
278 | virtual bool DoConnect(const wxSockAddress& addr, |
279 | const wxSockAddress* local, | |
280 | bool wait = true); | |
8c029a5b VZ |
281 | |
282 | // buffer sizes, -1 if unset and defaults should be used | |
283 | int m_initialRecvBufferSize; | |
284 | int m_initialSendBufferSize; | |
33d925b0 | 285 | |
0fccfc51 | 286 | DECLARE_NO_COPY_CLASS(wxSocketClient) |
f4ada568 GL |
287 | }; |
288 | ||
71622a7a GRG |
289 | |
290 | // -------------------------------------------------------------------------- | |
291 | // wxDatagramSocket | |
292 | // -------------------------------------------------------------------------- | |
293 | ||
294 | // WARNING: still in alpha stage | |
dc5c1114 | 295 | |
7c4728f6 | 296 | class WXDLLIMPEXP_NET wxDatagramSocket : public wxSocketBase |
dc5c1114 GRG |
297 | { |
298 | DECLARE_CLASS(wxDatagramSocket) | |
299 | ||
300 | public: | |
fbfb8bcc | 301 | wxDatagramSocket(const wxSockAddress& addr, wxSocketFlags flags = wxSOCKET_NONE); |
dc5c1114 GRG |
302 | |
303 | wxDatagramSocket& RecvFrom( wxSockAddress& addr, | |
f187448d | 304 | void* buf, |
dc5c1114 | 305 | wxUint32 nBytes ); |
fbfb8bcc | 306 | wxDatagramSocket& SendTo( const wxSockAddress& addr, |
f187448d | 307 | const void* buf, |
dc5c1114 | 308 | wxUint32 nBytes ); |
5c9eff30 GRG |
309 | |
310 | /* TODO: | |
311 | bool Connect(wxSockAddress& addr); | |
312 | */ | |
0fccfc51 | 313 | DECLARE_NO_COPY_CLASS(wxDatagramSocket) |
dc5c1114 GRG |
314 | }; |
315 | ||
dc5c1114 | 316 | |
71622a7a GRG |
317 | // -------------------------------------------------------------------------- |
318 | // wxSocketEvent | |
319 | // -------------------------------------------------------------------------- | |
320 | ||
7c4728f6 | 321 | class WXDLLIMPEXP_NET wxSocketEvent : public wxEvent |
71622a7a | 322 | { |
f4ada568 | 323 | public: |
163f3154 VZ |
324 | wxSocketEvent(int id = 0) |
325 | : wxEvent(id, wxEVT_SOCKET) | |
326 | { | |
327 | } | |
f4ada568 | 328 | |
f187448d GRG |
329 | wxSocketNotify GetSocketEvent() const { return m_event; } |
330 | wxSocketBase *GetSocket() const { return (wxSocketBase *) GetEventObject(); } | |
331 | void *GetClientData() const { return m_clientData; } | |
332 | ||
163f3154 | 333 | virtual wxEvent *Clone() const { return new wxSocketEvent(*this); } |
aadbdf11 | 334 | |
f4ada568 | 335 | public: |
71622a7a | 336 | wxSocketNotify m_event; |
f187448d | 337 | void *m_clientData; |
163f3154 | 338 | |
a6cbc4db | 339 | DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSocketEvent) |
f4ada568 GL |
340 | }; |
341 | ||
71622a7a | 342 | |
f4ada568 GL |
343 | typedef void (wxEvtHandler::*wxSocketEventFunction)(wxSocketEvent&); |
344 | ||
7fa03f04 | 345 | #define wxSocketEventHandler(func) \ |
8bc3ec1f | 346 | (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxSocketEventFunction, &func) |
7fa03f04 | 347 | |
2e4df4bf | 348 | #define EVT_SOCKET(id, func) \ |
7fa03f04 | 349 | wx__DECLARE_EVT1(wxEVT_SOCKET, id, wxSocketEventHandler(func)) |
f4ada568 | 350 | |
7fa03f04 | 351 | #endif // wxUSE_SOCKETS |
71622a7a | 352 | |
7fa03f04 | 353 | #endif // _WX_SOCKET_H_ |
ce4169a4 | 354 |