]>
Commit | Line | Data |
---|---|---|
f4ada568 GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: socket.h | |
3 | // Purpose: Socket handling classes | |
4 | // Author: Guilhem Lavaux | |
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__ | |
0c32066b | 16 | #pragma interface "socket.h" |
f4ada568 GL |
17 | #endif |
18 | ||
ce4169a4 RR |
19 | #include "wx/defs.h" |
20 | ||
21 | #if wxUSE_SOCKETS | |
22 | ||
f4ada568 GL |
23 | // --------------------------------------------------------------------------- |
24 | // wxSocket headers (generic) | |
25 | // --------------------------------------------------------------------------- | |
26 | #ifdef WXPREC | |
ed58dbea | 27 | # include "wx/wxprec.h" |
f4ada568 | 28 | #else |
ed58dbea RR |
29 | # include "wx/event.h" |
30 | # include "wx/string.h" | |
f4ada568 | 31 | #endif |
57dde4bd | 32 | |
ed58dbea | 33 | #include "wx/sckaddr.h" |
65ccd2b8 | 34 | #include "wx/gsocket.h" |
f4ada568 | 35 | |
aa8fb7a0 GL |
36 | // ------------------------------------------------------------------------ |
37 | // GSocket type alias | |
38 | // ------------------------------------------------------------------------ | |
39 | ||
40 | typedef enum { | |
41 | wxSOCKET_INPUT = GSOCK_INPUT, | |
42 | wxSOCKET_OUTPUT = GSOCK_OUTPUT, | |
43 | wxSOCKET_CONNECTION = GSOCK_CONNECTION, | |
44 | wxSOCKET_LOST = GSOCK_LOST | |
45 | } wxSocketNotify; | |
46 | ||
47 | enum { | |
48 | wxSOCKET_INPUT_FLAG = GSOCK_INPUT_FLAG, | |
49 | wxSOCKET_OUTPUT_FLAG = GSOCK_OUTPUT_FLAG, | |
50 | wxSOCKET_CONNECTION_FLAG = GSOCK_CONNECTION_FLAG, | |
feeb8165 | 51 | wxSOCKET_LOST_FLAG = GSOCK_LOST_FLAG |
aa8fb7a0 GL |
52 | }; |
53 | ||
54 | typedef GSocketEventFlags wxSocketEventFlags; | |
55 | ||
56 | typedef enum { | |
57 | wxSOCKET_NOERROR = GSOCK_NOERROR, | |
58 | wxSOCKET_INPOP = GSOCK_INVOP, | |
59 | wxSOCKET_IOERR = GSOCK_IOERR, | |
60 | wxSOCKET_INVADDR = GSOCK_INVADDR, | |
61 | wxSOCKET_INVSOCK = GSOCK_INVSOCK, | |
62 | wxSOCKET_NOHOST = GSOCK_NOHOST, | |
63 | wxSOCKET_INVPORT = GSOCK_INVPORT, | |
64 | wxSOCKET_WOULDBLOCK = GSOCK_WOULDBLOCK, | |
aa6d9706 | 65 | wxSOCKET_TIMEDOUT = GSOCK_TIMEDOUT, |
aa8fb7a0 GL |
66 | wxSOCKET_MEMERR = GSOCK_MEMERR |
67 | } wxSocketError; | |
68 | ||
69 | // ------------------------------------------------------------------------ | |
70 | // wxSocket base | |
71 | // ------------------------------------------------------------------------ | |
72 | ||
39b91eca | 73 | class WXDLLEXPORT wxTimer; |
f4ada568 | 74 | class WXDLLEXPORT wxSocketEvent; |
f4ada568 GL |
75 | class WXDLLEXPORT wxSocketBase : public wxEvtHandler |
76 | { | |
77 | DECLARE_CLASS(wxSocketBase) | |
78 | public: | |
79 | ||
dbd300df GL |
80 | enum { NONE=0, NOWAIT=1, WAITALL=2, SPEED=4 }; |
81 | typedef int wxSockFlags; | |
f4ada568 | 82 | // Type of request |
f4ada568 | 83 | |
65ccd2b8 | 84 | enum wxSockType { SOCK_CLIENT, SOCK_SERVER, SOCK_INTERNAL, SOCK_UNINIT }; |
aa8fb7a0 | 85 | typedef void (*wxSockCbk)(wxSocketBase& sock,wxSocketNotify evt,char *cdata); |
f4ada568 GL |
86 | |
87 | protected: | |
a324a7bc GL |
88 | GSocket *m_socket; // wxSocket socket |
89 | wxSockFlags m_flags; // wxSocket flags | |
f4ada568 | 90 | wxSockType m_type; // wxSocket type |
de3131e7 | 91 | wxSocketEventFlags m_neededreq; // Specify which requet signals we need |
aa6d9706 | 92 | wxUint32 m_lcount; // Last IO request size |
a324a7bc | 93 | unsigned long m_timeout; // IO timeout value |
35809fe3 GRG |
94 | |
95 | char *m_unread; // Pushback buffer | |
aa6d9706 GL |
96 | wxUint32 m_unrd_size; // Pushback buffer size |
97 | wxUint32 m_unrd_cur; // Pushback pointer | |
a324a7bc | 98 | |
35809fe3 GRG |
99 | wxSockCbk m_cbk; // C callback |
100 | char *m_cdata; // C callback data | |
a324a7bc | 101 | |
35809fe3 GRG |
102 | bool m_connected; // Connected ? |
103 | bool m_establishing; // Pending connections? | |
a324a7bc | 104 | bool m_notify_state; // Notify state |
35809fe3 | 105 | int m_id; // Socket id (for event handler) |
a324a7bc | 106 | |
39b91eca | 107 | // Defering variables |
a324a7bc GL |
108 | enum { |
109 | DEFER_READ, DEFER_WRITE, NO_DEFER | |
39b91eca | 110 | } m_defering; // Defering state |
a324a7bc | 111 | char *m_defer_buffer; // Defering target buffer |
35809fe3 GRG |
112 | wxUint32 m_defer_nbytes; // Defering buffer size |
113 | wxTimer *m_defer_timer; // Timer for defering mode | |
a324a7bc | 114 | |
35809fe3 | 115 | wxList m_states; // Stack of states |
65ccd2b8 | 116 | |
f4ada568 GL |
117 | public: |
118 | wxSocketBase(); | |
119 | virtual ~wxSocketBase(); | |
120 | virtual bool Close(); | |
121 | ||
122 | // Base IO | |
aa6d9706 GL |
123 | wxSocketBase& Peek(char* buffer, wxUint32 nbytes); |
124 | wxSocketBase& Read(char* buffer, wxUint32 nbytes); | |
125 | wxSocketBase& Write(const char *buffer, wxUint32 nbytes); | |
126 | wxSocketBase& Unread(const char *buffer, wxUint32 nbytes); | |
127 | wxSocketBase& ReadMsg(char *buffer, wxUint32 nbytes); | |
128 | wxSocketBase& WriteMsg(const char *buffer, wxUint32 nbytes); | |
f4ada568 GL |
129 | void Discard(); |
130 | ||
35809fe3 | 131 | // Try not to use these two methods (they sould be protected) |
aa6d9706 GL |
132 | void CreatePushbackAfter(const char *buffer, wxUint32 size); |
133 | void CreatePushbackBefore(const char *buffer, wxUint32 size); | |
f4ada568 GL |
134 | |
135 | // Status | |
a324a7bc GL |
136 | inline bool Ok() const { return (m_socket != NULL); }; |
137 | inline bool Error() const | |
138 | { return (GSocket_GetError(m_socket) != GSOCK_NOERROR); }; | |
f4ada568 GL |
139 | inline bool IsConnected() const { return m_connected; }; |
140 | inline bool IsDisconnected() const { return !IsConnected(); }; | |
a324a7bc | 141 | inline bool IsNoWait() const { return ((m_flags & NOWAIT) != 0); }; |
f4ada568 | 142 | bool IsData() const; |
aa6d9706 | 143 | inline wxUint32 LastCount() const { return m_lcount; } |
aa8fb7a0 | 144 | inline wxSocketError LastError() const { return (wxSocketError)GSocket_GetError(m_socket); } |
a737331d | 145 | inline wxSockType GetType() const { return m_type; } |
65ccd2b8 | 146 | |
20e85460 | 147 | void SetFlags(wxSockFlags _flags); |
a737331d | 148 | wxSockFlags GetFlags() const; |
aa6d9706 | 149 | void SetTimeout(unsigned long sec); |
f4ada568 GL |
150 | |
151 | // seconds = -1 means infinite wait | |
35809fe3 GRG |
152 | // seconds, milliseconds = 0 means no wait |
153 | // seconds, milliseconds > 0 means specified wait | |
aa6d9706 GL |
154 | bool Wait(long seconds = -1, long milliseconds = 0); |
155 | bool WaitForRead(long seconds = -1, long milliseconds = 0); | |
156 | bool WaitForWrite(long seconds = -1, long milliseconds = 0); | |
157 | bool WaitForLost(long seconds = -1, long milliseconds = 0); | |
65ccd2b8 | 158 | |
f4ada568 GL |
159 | // Save the current state of Socket |
160 | void SaveState(); | |
161 | void RestoreState(); | |
162 | ||
163 | // Setup external callback | |
164 | wxSockCbk Callback(wxSockCbk cbk_); | |
165 | char *CallbackData(char *data); | |
166 | ||
167 | // Setup event handler | |
168 | void SetEventHandler(wxEvtHandler& evt_hdlr, int id = -1); | |
65ccd2b8 | 169 | |
f4ada568 | 170 | // Method called when it happens something on the socket |
aa8fb7a0 GL |
171 | void SetNotify(wxSocketEventFlags flags); |
172 | virtual void OnRequest(wxSocketNotify req_evt); | |
f4ada568 GL |
173 | |
174 | // Public internal callback | |
aa8fb7a0 | 175 | virtual void OldOnNotify(wxSocketNotify WXUNUSED(evt)); |
f4ada568 GL |
176 | |
177 | // Some info on the socket... | |
178 | virtual bool GetPeer(wxSockAddress& addr_man) const; | |
179 | virtual bool GetLocal(wxSockAddress& addr_man) const; | |
180 | ||
181 | // Install or uninstall callbacks | |
182 | void Notify(bool notify); | |
183 | ||
184 | // So you can know what the socket driver is looking for ... | |
aa8fb7a0 | 185 | inline wxSocketEventFlags NeededReq() const { return m_neededreq; } |
f4ada568 | 186 | |
aa8fb7a0 | 187 | static wxSocketEventFlags EventToNotify(wxSocketNotify evt); |
f4ada568 GL |
188 | |
189 | protected: | |
190 | friend class wxSocketServer; | |
191 | friend class wxSocketHandler; | |
a737331d | 192 | friend class wxSocketInternal; |
f4ada568 | 193 | |
ce3ed50d JS |
194 | #ifdef __SALFORDC__ |
195 | public: | |
196 | #endif | |
197 | ||
f4ada568 | 198 | wxSocketBase(wxSockFlags flags, wxSockType type); |
ce3ed50d JS |
199 | |
200 | #ifdef __SALFORDC__ | |
201 | protected: | |
202 | #endif | |
65ccd2b8 | 203 | |
aa6d9706 | 204 | bool _Wait(long seconds, long milliseconds, int type); |
f4ada568 | 205 | |
aa6d9706 GL |
206 | int DeferRead(char *buffer, wxUint32 nbytes); |
207 | int DeferWrite(const char *buffer, wxUint32 nbytes); | |
de3131e7 | 208 | void DoDefer(wxSocketNotify evt); |
65ccd2b8 | 209 | |
f4ada568 | 210 | // Pushback library |
aa6d9706 | 211 | wxUint32 GetPushback(char *buffer, wxUint32 size, bool peek); |
f4ada568 GL |
212 | }; |
213 | ||
214 | //////////////////////////////////////////////////////////////////////// | |
215 | ||
216 | class WXDLLEXPORT wxSocketServer : public wxSocketBase | |
217 | { | |
218 | DECLARE_CLASS(wxSocketServer) | |
219 | public: | |
220 | ||
221 | // 'service' can be a name or a port-number | |
222 | ||
223 | wxSocketServer(wxSockAddress& addr_man, wxSockFlags flags = wxSocketBase::NONE); | |
224 | ||
35809fe3 GRG |
225 | wxSocketBase* Accept(bool wait = TRUE); |
226 | bool AcceptWith(wxSocketBase& sock, bool wait = TRUE); | |
227 | ||
228 | bool WaitOnAccept(long seconds = -1, long milliseconds = 0); | |
f4ada568 GL |
229 | }; |
230 | ||
231 | //////////////////////////////////////////////////////////////////////// | |
232 | ||
233 | class WXDLLEXPORT wxSocketClient : public wxSocketBase | |
234 | { | |
235 | DECLARE_CLASS(wxSocketClient) | |
236 | public: | |
237 | ||
238 | wxSocketClient(wxSockFlags flags = wxSocketBase::NONE); | |
239 | virtual ~wxSocketClient(); | |
240 | ||
241 | virtual bool Connect(wxSockAddress& addr_man, bool wait = TRUE); | |
242 | ||
aa6d9706 | 243 | bool WaitOnConnect(long seconds = -1, long milliseconds = 0); |
f4ada568 | 244 | |
aa8fb7a0 | 245 | virtual void OnRequest(wxSocketNotify flags); |
f4ada568 GL |
246 | }; |
247 | ||
248 | class WXDLLEXPORT wxSocketEvent : public wxEvent { | |
249 | DECLARE_DYNAMIC_CLASS(wxSocketEvent) | |
250 | public: | |
251 | wxSocketEvent(int id = 0); | |
252 | ||
de3131e7 | 253 | wxSocketNotify SocketEvent() const { return m_skevt; } |
a737331d GL |
254 | wxSocketBase *Socket() const { return m_socket; } |
255 | ||
aadbdf11 GL |
256 | void CopyObject(wxObject& obj_d) const; |
257 | ||
f4ada568 | 258 | public: |
de3131e7 | 259 | wxSocketNotify m_skevt; |
a737331d | 260 | wxSocketBase *m_socket; |
f4ada568 GL |
261 | }; |
262 | ||
263 | typedef void (wxEvtHandler::*wxSocketEventFunction)(wxSocketEvent&); | |
264 | ||
a737331d | 265 | #define EVT_SOCKET(id, func) { wxEVT_SOCKET, id, -1, \ |
db131261 RR |
266 | (wxObjectEventFunction) (wxEventFunction) (wxSocketEventFunction) & func, \ |
267 | (wxObject *) NULL }, | |
f4ada568 GL |
268 | |
269 | #endif | |
ce4169a4 RR |
270 | // wxUSE_SOCKETS |
271 | ||
272 | #endif | |
273 | // _WX_NETWORK_SOCKET_H |