]>
Commit | Line | Data |
---|---|---|
56d8adc0 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f4ada568 GL |
2 | // Name: socket.cpp |
3 | // Purpose: Socket handler classes | |
56d8adc0 | 4 | // Authors: Guilhem Lavaux, Guillermo Rodriguez Garcia |
f4ada568 | 5 | // Created: April 1997 |
d3ea6527 GRG |
6 | // Copyright: (C) 1999-1997, Guilhem Lavaux |
7 | // (C) 2000-1999, Guillermo Rodriguez Garcia | |
f4ada568 | 8 | // RCS_ID: $Id$ |
55d99c7a | 9 | // License: see wxWindows licence |
56d8adc0 GRG |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bffc1eaa GRG |
12 | // ========================================================================== |
13 | // Declarations | |
14 | // ========================================================================== | |
15 | ||
14f355c2 | 16 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
f4ada568 | 17 | #pragma implementation "socket.h" |
f4ada568 GL |
18 | #endif |
19 | ||
fcc6dddd JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
35a4dab7 GL |
27 | #if wxUSE_SOCKETS |
28 | ||
dc5c1114 | 29 | #include "wx/app.h" |
e2478fde | 30 | #include "wx/apptrait.h" |
56d8adc0 GRG |
31 | #include "wx/defs.h" |
32 | #include "wx/object.h" | |
33 | #include "wx/string.h" | |
2be028e2 | 34 | #include "wx/timer.h" |
56d8adc0 GRG |
35 | #include "wx/utils.h" |
36 | #include "wx/module.h" | |
37 | #include "wx/log.h" | |
58c837a4 | 38 | #include "wx/intl.h" |
f187448d | 39 | #include "wx/event.h" |
52a07708 | 40 | |
56d8adc0 GRG |
41 | #include "wx/sckaddr.h" |
42 | #include "wx/socket.h" | |
3b4183d8 | 43 | |
34fdf762 VS |
44 | // DLL options compatibility check: |
45 | #include "wx/build.h" | |
46 | WX_CHECK_BUILD_OPTIONS("wxNet") | |
47 | ||
bffc1eaa GRG |
48 | // -------------------------------------------------------------------------- |
49 | // macros and constants | |
50 | // -------------------------------------------------------------------------- | |
ef57d866 | 51 | |
dc5c1114 GRG |
52 | // discard buffer |
53 | #define MAX_DISCARD_SIZE (10 * 1024) | |
96db102a | 54 | |
e2478fde VZ |
55 | // what to do within waits: we have 2 cases: from the main thread itself we |
56 | // have to call wxYield() to let the events (including the GUI events and the | |
57 | // low-level (not wxWindows) events from GSocket) be processed. From another | |
58 | // thread it is enough to just call wxThread::Yield() which will give away the | |
59 | // rest of our time slice: the explanation is that the events will be processed | |
60 | // by the main thread anyhow, without calling wxYield(), but we don't want to | |
61 | // eat the CPU time uselessly while sitting in the loop waiting for the data | |
62 | #if wxUSE_THREADS | |
63 | #define PROCESS_EVENTS() \ | |
64 | { \ | |
65 | if ( wxThread::IsMain() ) \ | |
66 | wxYield(); \ | |
67 | else \ | |
68 | wxThread::Yield(); \ | |
69 | } | |
70 | #else // !wxUSE_THREADS | |
71 | #define PROCESS_EVENTS() wxYield() | |
72 | #endif // wxUSE_THREADS/!wxUSE_THREADS | |
96db102a | 73 | |
007c77ab RL |
74 | #define wxTRACE_Socket _T("wxSocket") |
75 | ||
ef57d866 | 76 | // -------------------------------------------------------------------------- |
bffc1eaa | 77 | // wxWin macros |
ef57d866 | 78 | // -------------------------------------------------------------------------- |
81b92e17 | 79 | |
a737331d GL |
80 | IMPLEMENT_CLASS(wxSocketBase, wxObject) |
81 | IMPLEMENT_CLASS(wxSocketServer, wxSocketBase) | |
82 | IMPLEMENT_CLASS(wxSocketClient, wxSocketBase) | |
dc5c1114 | 83 | IMPLEMENT_CLASS(wxDatagramSocket, wxSocketBase) |
a737331d | 84 | IMPLEMENT_DYNAMIC_CLASS(wxSocketEvent, wxEvent) |
f4ada568 | 85 | |
bffc1eaa GRG |
86 | // -------------------------------------------------------------------------- |
87 | // private classes | |
88 | // -------------------------------------------------------------------------- | |
89 | ||
56d8adc0 GRG |
90 | class wxSocketState : public wxObject |
91 | { | |
a324a7bc | 92 | public: |
71622a7a | 93 | wxSocketFlags m_flags; |
bffc1eaa GRG |
94 | wxSocketEventFlags m_eventmask; |
95 | bool m_notify; | |
96 | void *m_clientData; | |
a324a7bc GL |
97 | |
98 | public: | |
99 | wxSocketState() : wxObject() {} | |
22f3361e VZ |
100 | |
101 | DECLARE_NO_COPY_CLASS(wxSocketState) | |
a324a7bc GL |
102 | }; |
103 | ||
ef57d866 GRG |
104 | // ========================================================================== |
105 | // wxSocketBase | |
106 | // ========================================================================== | |
107 | ||
6c0d0845 VZ |
108 | // -------------------------------------------------------------------------- |
109 | // Initialization and shutdown | |
110 | // -------------------------------------------------------------------------- | |
111 | ||
112 | // FIXME-MT: all this is MT-unsafe, of course, we should protect all accesses | |
113 | // to m_countInit with a crit section | |
114 | size_t wxSocketBase::m_countInit = 0; | |
115 | ||
116 | bool wxSocketBase::IsInitialized() | |
117 | { | |
118 | return m_countInit > 0; | |
119 | } | |
120 | ||
121 | bool wxSocketBase::Initialize() | |
122 | { | |
123 | if ( !m_countInit++ ) | |
124 | { | |
38bb138f VS |
125 | wxAppTraits *traits = wxAppConsole::GetInstance() ? |
126 | wxAppConsole::GetInstance()->GetTraits() : NULL; | |
127 | GSocketGUIFunctionsTable *functions = | |
128 | traits ? traits->GetSocketGUIFunctionsTable() : NULL; | |
129 | GSocket_SetGUIFunctions(functions); | |
130 | ||
6c0d0845 VZ |
131 | if ( !GSocket_Init() ) |
132 | { | |
133 | m_countInit--; | |
134 | ||
135 | return FALSE; | |
136 | } | |
137 | } | |
138 | ||
139 | return TRUE; | |
140 | } | |
141 | ||
142 | void wxSocketBase::Shutdown() | |
143 | { | |
144 | // we should be initialized | |
145 | wxASSERT_MSG( m_countInit, _T("extra call to Shutdown()") ); | |
146 | if ( !--m_countInit ) | |
147 | { | |
148 | GSocket_Cleanup(); | |
149 | } | |
150 | } | |
151 | ||
ef57d866 GRG |
152 | // -------------------------------------------------------------------------- |
153 | // Ctor and dtor | |
154 | // -------------------------------------------------------------------------- | |
56d8adc0 | 155 | |
71622a7a | 156 | void wxSocketBase::Init() |
f4ada568 | 157 | { |
71622a7a GRG |
158 | m_socket = NULL; |
159 | m_type = wxSOCKET_UNINIT; | |
160 | ||
161 | // state | |
162 | m_flags = 0; | |
163 | m_connected = | |
164 | m_establishing = | |
165 | m_reading = | |
166 | m_writing = | |
167 | m_error = FALSE; | |
168 | m_lcount = 0; | |
169 | m_timeout = 600; | |
170 | m_beingDeleted = FALSE; | |
171 | ||
172 | // pushback buffer | |
173 | m_unread = NULL; | |
174 | m_unrd_size = 0; | |
175 | m_unrd_cur = 0; | |
176 | ||
177 | // events | |
71622a7a | 178 | m_id = -1; |
f187448d GRG |
179 | m_handler = NULL; |
180 | m_clientData = NULL; | |
bffc1eaa GRG |
181 | m_notify = FALSE; |
182 | m_eventmask = 0; | |
6c0d0845 VZ |
183 | |
184 | if ( !IsInitialized() ) | |
185 | { | |
186 | // this Initialize() will be undone by wxSocketModule::OnExit(), all the | |
187 | // other calls to it should be matched by a call to Shutdown() | |
188 | Initialize(); | |
189 | } | |
f4ada568 GL |
190 | } |
191 | ||
f187448d GRG |
192 | wxSocketBase::wxSocketBase() |
193 | { | |
194 | Init(); | |
195 | } | |
71622a7a GRG |
196 | |
197 | wxSocketBase::wxSocketBase(wxSocketFlags flags, wxSocketType type) | |
f4ada568 | 198 | { |
71622a7a GRG |
199 | Init(); |
200 | ||
201 | m_flags = flags; | |
202 | m_type = type; | |
f4ada568 GL |
203 | } |
204 | ||
f4ada568 GL |
205 | wxSocketBase::~wxSocketBase() |
206 | { | |
9181a383 GRG |
207 | // Just in case the app called Destroy() *and* then deleted |
208 | // the socket immediately: don't leave dangling pointers. | |
e2478fde VZ |
209 | wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits() : NULL; |
210 | if ( traits ) | |
211 | traits->RemoveFromPendingDelete(this); | |
a737331d | 212 | |
56d8adc0 | 213 | // Shutdown and close the socket |
9181a383 GRG |
214 | if (!m_beingDeleted) |
215 | Close(); | |
f4ada568 | 216 | |
56d8adc0 | 217 | // Destroy the GSocket object |
a324a7bc GL |
218 | if (m_socket) |
219 | GSocket_destroy(m_socket); | |
9181a383 GRG |
220 | |
221 | // Free the pushback buffer | |
222 | if (m_unread) | |
223 | free(m_unread); | |
f4ada568 GL |
224 | } |
225 | ||
ef57d866 GRG |
226 | bool wxSocketBase::Destroy() |
227 | { | |
228 | // Delayed destruction: the socket will be deleted during the next | |
229 | // idle loop iteration. This ensures that all pending events have | |
230 | // been processed. | |
ef57d866 | 231 | m_beingDeleted = TRUE; |
9181a383 GRG |
232 | |
233 | // Shutdown and close the socket | |
ef57d866 GRG |
234 | Close(); |
235 | ||
bffc1eaa GRG |
236 | // Supress events from now on |
237 | Notify(FALSE); | |
238 | ||
e2478fde VZ |
239 | // schedule this object for deletion |
240 | wxAppTraits *traits = wxTheApp ? wxTheApp->GetTraits() : NULL; | |
241 | if ( traits ) | |
242 | { | |
243 | // let the traits object decide what to do with us | |
244 | traits->ScheduleForDestroy(this); | |
245 | } | |
246 | else // no app or no traits | |
247 | { | |
248 | // in wxBase we might have no app object at all, don't leak memory | |
249 | delete this; | |
250 | } | |
ef57d866 GRG |
251 | |
252 | return TRUE; | |
253 | } | |
9181a383 | 254 | |
ef57d866 | 255 | // -------------------------------------------------------------------------- |
bffc1eaa | 256 | // Basic IO calls |
ef57d866 GRG |
257 | // -------------------------------------------------------------------------- |
258 | ||
259 | // The following IO operations update m_error and m_lcount: | |
260 | // {Read, Write, ReadMsg, WriteMsg, Peek, Unread, Discard} | |
261 | // | |
262 | // TODO: Should Connect, Accept and AcceptWith update m_error? | |
263 | ||
f4ada568 GL |
264 | bool wxSocketBase::Close() |
265 | { | |
81b92e17 | 266 | // Interrupt pending waits |
02d15cad | 267 | InterruptWait(); |
81b92e17 | 268 | |
31528cd3 | 269 | if (m_socket) |
8c14576d | 270 | { |
56d8adc0 GRG |
271 | // Disable callbacks |
272 | GSocket_UnsetCallback(m_socket, GSOCK_INPUT_FLAG | GSOCK_OUTPUT_FLAG | | |
273 | GSOCK_LOST_FLAG | GSOCK_CONNECTION_FLAG); | |
f4ada568 | 274 | |
56d8adc0 | 275 | // Shutdown the connection |
a324a7bc | 276 | GSocket_Shutdown(m_socket); |
f4ada568 GL |
277 | } |
278 | ||
ef57d866 | 279 | m_connected = FALSE; |
04e1eb03 | 280 | m_establishing = FALSE; |
f4ada568 GL |
281 | return TRUE; |
282 | } | |
283 | ||
f187448d | 284 | wxSocketBase& wxSocketBase::Read(void* buffer, wxUint32 nbytes) |
f4ada568 | 285 | { |
96db102a GRG |
286 | // Mask read events |
287 | m_reading = TRUE; | |
a324a7bc | 288 | |
96db102a | 289 | m_lcount = _Read(buffer, nbytes); |
17aa2bec | 290 | |
d3ea6527 GRG |
291 | // If in wxSOCKET_WAITALL mode, all bytes should have been read. |
292 | if (m_flags & wxSOCKET_WAITALL) | |
96db102a GRG |
293 | m_error = (m_lcount != nbytes); |
294 | else | |
295 | m_error = (m_lcount == 0); | |
f4ada568 | 296 | |
dc5c1114 | 297 | // Allow read events from now on |
96db102a | 298 | m_reading = FALSE; |
17aa2bec | 299 | |
96db102a GRG |
300 | return *this; |
301 | } | |
302 | ||
f187448d | 303 | wxUint32 wxSocketBase::_Read(void* buffer, wxUint32 nbytes) |
96db102a GRG |
304 | { |
305 | int total; | |
a324a7bc | 306 | |
04e1eb03 | 307 | // Try the pushback buffer first |
96db102a GRG |
308 | total = GetPushback(buffer, nbytes, FALSE); |
309 | nbytes -= total; | |
f187448d | 310 | buffer = (char *)buffer + total; |
96db102a | 311 | |
5f3629ba GRG |
312 | // Return now in one of the following cases: |
313 | // - the socket is invalid, | |
314 | // - we got all the data, | |
315 | // - we got *some* data and we are not using wxSOCKET_WAITALL. | |
316 | if ( !m_socket || | |
317 | !nbytes || | |
318 | ((total != 0) && !(m_flags & wxSOCKET_WAITALL)) ) | |
96db102a | 319 | return total; |
f4ada568 | 320 | |
af2fd961 | 321 | // Possible combinations (they are checked in this order) |
81b92e17 | 322 | // wxSOCKET_NOWAIT |
5c9eff30 | 323 | // wxSOCKET_WAITALL (with or without wxSOCKET_BLOCK) |
81b92e17 GRG |
324 | // wxSOCKET_BLOCK |
325 | // wxSOCKET_NONE | |
af2fd961 | 326 | // |
999836aa | 327 | int ret; |
81b92e17 | 328 | if (m_flags & wxSOCKET_NOWAIT) |
af2fd961 | 329 | { |
5c9eff30 | 330 | GSocket_SetNonBlocking(m_socket, 1); |
f187448d | 331 | ret = GSocket_Read(m_socket, (char *)buffer, nbytes); |
5c9eff30 | 332 | GSocket_SetNonBlocking(m_socket, 0); |
af2fd961 GRG |
333 | |
334 | if (ret > 0) | |
96db102a | 335 | total += ret; |
af2fd961 | 336 | } |
5c9eff30 | 337 | else |
56d8adc0 | 338 | { |
5c9eff30 GRG |
339 | bool more = TRUE; |
340 | ||
341 | while (more) | |
56d8adc0 | 342 | { |
5c9eff30 GRG |
343 | if ( !(m_flags & wxSOCKET_BLOCK) && !WaitForRead() ) |
344 | break; | |
81b92e17 | 345 | |
f187448d | 346 | ret = GSocket_Read(m_socket, (char *)buffer, nbytes); |
a324a7bc | 347 | |
81b92e17 GRG |
348 | if (ret > 0) |
349 | { | |
350 | total += ret; | |
81b92e17 | 351 | nbytes -= ret; |
f187448d | 352 | buffer = (char *)buffer + ret; |
81b92e17 | 353 | } |
a324a7bc | 354 | |
5c9eff30 GRG |
355 | // If we got here and wxSOCKET_WAITALL is not set, we can leave |
356 | // now. Otherwise, wait until we recv all the data or until there | |
357 | // is an error. | |
358 | // | |
359 | more = (ret > 0 && nbytes > 0 && (m_flags & wxSOCKET_WAITALL)); | |
81b92e17 | 360 | } |
a324a7bc | 361 | } |
f4ada568 | 362 | |
96db102a | 363 | return total; |
f4ada568 GL |
364 | } |
365 | ||
f187448d | 366 | wxSocketBase& wxSocketBase::ReadMsg(void* buffer, wxUint32 nbytes) |
062c4861 | 367 | { |
96db102a GRG |
368 | wxUint32 len, len2, sig, total; |
369 | bool error; | |
17aa2bec | 370 | int old_flags; |
17aa2bec GRG |
371 | struct |
372 | { | |
96db102a GRG |
373 | unsigned char sig[4]; |
374 | unsigned char len[4]; | |
062c4861 GL |
375 | } msg; |
376 | ||
96db102a GRG |
377 | // Mask read events |
378 | m_reading = TRUE; | |
062c4861 | 379 | |
96db102a GRG |
380 | total = 0; |
381 | error = TRUE; | |
17aa2bec | 382 | old_flags = m_flags; |
81b92e17 | 383 | SetFlags((m_flags & wxSOCKET_BLOCK) | wxSOCKET_WAITALL); |
17aa2bec | 384 | |
f187448d | 385 | if (_Read(&msg, sizeof(msg)) != sizeof(msg)) |
96db102a | 386 | goto exit; |
062c4861 | 387 | |
f187448d | 388 | sig = (wxUint32)msg.sig[0]; |
96db102a GRG |
389 | sig |= (wxUint32)(msg.sig[1] << 8); |
390 | sig |= (wxUint32)(msg.sig[2] << 16); | |
391 | sig |= (wxUint32)(msg.sig[3] << 24); | |
062c4861 GL |
392 | |
393 | if (sig != 0xfeeddead) | |
17aa2bec | 394 | { |
5c9eff30 | 395 | wxLogWarning(_("wxSocket: invalid signature in ReadMsg.")); |
96db102a | 396 | goto exit; |
17aa2bec GRG |
397 | } |
398 | ||
96db102a GRG |
399 | len = (wxUint32)msg.len[0]; |
400 | len |= (wxUint32)(msg.len[1] << 8); | |
401 | len |= (wxUint32)(msg.len[2] << 16); | |
402 | len |= (wxUint32)(msg.len[3] << 24); | |
403 | ||
17aa2bec GRG |
404 | if (len > nbytes) |
405 | { | |
062c4861 GL |
406 | len2 = len - nbytes; |
407 | len = nbytes; | |
408 | } | |
409 | else | |
410 | len2 = 0; | |
411 | ||
04e1eb03 | 412 | // Don't attemp to read if the msg was zero bytes long. |
96db102a | 413 | if (len) |
17aa2bec | 414 | { |
96db102a GRG |
415 | total = _Read(buffer, len); |
416 | ||
417 | if (total != len) | |
418 | goto exit; | |
17aa2bec GRG |
419 | } |
420 | if (len2) | |
421 | { | |
96db102a | 422 | char *discard_buffer = new char[MAX_DISCARD_SIZE]; |
17aa2bec GRG |
423 | long discard_len; |
424 | ||
96db102a | 425 | // NOTE: discarded bytes don't add to m_lcount. |
17aa2bec GRG |
426 | do |
427 | { | |
96db102a | 428 | discard_len = ((len2 > MAX_DISCARD_SIZE)? MAX_DISCARD_SIZE : len2); |
479cd5de VZ |
429 | discard_len = _Read(discard_buffer, (wxUint32)discard_len); |
430 | len2 -= (wxUint32)discard_len; | |
17aa2bec GRG |
431 | } |
432 | while ((discard_len > 0) && len2); | |
433 | ||
434 | delete [] discard_buffer; | |
435 | ||
436 | if (len2 != 0) | |
96db102a | 437 | goto exit; |
17aa2bec | 438 | } |
f187448d | 439 | if (_Read(&msg, sizeof(msg)) != sizeof(msg)) |
96db102a | 440 | goto exit; |
062c4861 | 441 | |
96db102a GRG |
442 | sig = (wxUint32)msg.sig[0]; |
443 | sig |= (wxUint32)(msg.sig[1] << 8); | |
444 | sig |= (wxUint32)(msg.sig[2] << 16); | |
445 | sig |= (wxUint32)(msg.sig[3] << 24); | |
a324a7bc | 446 | |
062c4861 | 447 | if (sig != 0xdeadfeed) |
17aa2bec | 448 | { |
5c9eff30 | 449 | wxLogWarning(_("wxSocket: invalid signature in ReadMsg.")); |
96db102a | 450 | goto exit; |
17aa2bec | 451 | } |
062c4861 | 452 | |
96db102a GRG |
453 | // everything was OK |
454 | error = FALSE; | |
455 | ||
456 | exit: | |
457 | m_error = error; | |
458 | m_lcount = total; | |
459 | m_reading = FALSE; | |
17aa2bec | 460 | SetFlags(old_flags); |
96db102a | 461 | |
062c4861 GL |
462 | return *this; |
463 | } | |
464 | ||
f187448d | 465 | wxSocketBase& wxSocketBase::Peek(void* buffer, wxUint32 nbytes) |
f4ada568 | 466 | { |
96db102a GRG |
467 | // Mask read events |
468 | m_reading = TRUE; | |
469 | ||
470 | m_lcount = _Read(buffer, nbytes); | |
dc5c1114 | 471 | Pushback(buffer, m_lcount); |
96db102a | 472 | |
81b92e17 GRG |
473 | // If in wxSOCKET_WAITALL mode, all bytes should have been read. |
474 | if (m_flags & wxSOCKET_WAITALL) | |
96db102a GRG |
475 | m_error = (m_lcount != nbytes); |
476 | else | |
477 | m_error = (m_lcount == 0); | |
478 | ||
dc5c1114 | 479 | // Allow read events again |
96db102a | 480 | m_reading = FALSE; |
f4ada568 GL |
481 | |
482 | return *this; | |
483 | } | |
484 | ||
f187448d | 485 | wxSocketBase& wxSocketBase::Write(const void *buffer, wxUint32 nbytes) |
f4ada568 | 486 | { |
96db102a GRG |
487 | // Mask write events |
488 | m_writing = TRUE; | |
56d8adc0 | 489 | |
96db102a GRG |
490 | m_lcount = _Write(buffer, nbytes); |
491 | ||
81b92e17 GRG |
492 | // If in wxSOCKET_WAITALL mode, all bytes should have been written. |
493 | if (m_flags & wxSOCKET_WAITALL) | |
96db102a GRG |
494 | m_error = (m_lcount != nbytes); |
495 | else | |
496 | m_error = (m_lcount == 0); | |
497 | ||
dc5c1114 | 498 | // Allow write events again |
96db102a GRG |
499 | m_writing = FALSE; |
500 | ||
96db102a GRG |
501 | return *this; |
502 | } | |
503 | ||
f187448d | 504 | wxUint32 wxSocketBase::_Write(const void *buffer, wxUint32 nbytes) |
96db102a GRG |
505 | { |
506 | wxUint32 total = 0; | |
56d8adc0 | 507 | |
5c9eff30 GRG |
508 | // If the socket is invalid or parameters are ill, return immediately |
509 | if (!m_socket || !buffer || !nbytes) | |
96db102a | 510 | return 0; |
a324a7bc | 511 | |
af2fd961 | 512 | // Possible combinations (they are checked in this order) |
81b92e17 | 513 | // wxSOCKET_NOWAIT |
5c9eff30 | 514 | // wxSOCKET_WAITALL (with or without wxSOCKET_BLOCK) |
81b92e17 GRG |
515 | // wxSOCKET_BLOCK |
516 | // wxSOCKET_NONE | |
af2fd961 | 517 | // |
999836aa | 518 | int ret; |
81b92e17 | 519 | if (m_flags & wxSOCKET_NOWAIT) |
af2fd961 | 520 | { |
5c9eff30 | 521 | GSocket_SetNonBlocking(m_socket, 1); |
f187448d | 522 | ret = GSocket_Write(m_socket, (const char *)buffer, nbytes); |
5c9eff30 | 523 | GSocket_SetNonBlocking(m_socket, 0); |
af2fd961 GRG |
524 | |
525 | if (ret > 0) | |
96db102a | 526 | total = ret; |
af2fd961 | 527 | } |
5c9eff30 | 528 | else |
56d8adc0 | 529 | { |
5c9eff30 GRG |
530 | bool more = TRUE; |
531 | ||
c3e646b4 | 532 | while (more) |
56d8adc0 | 533 | { |
5c9eff30 GRG |
534 | if ( !(m_flags & wxSOCKET_BLOCK) && !WaitForWrite() ) |
535 | break; | |
81b92e17 | 536 | |
f187448d | 537 | ret = GSocket_Write(m_socket, (const char *)buffer, nbytes); |
5c9eff30 | 538 | |
81b92e17 GRG |
539 | if (ret > 0) |
540 | { | |
541 | total += ret; | |
81b92e17 | 542 | nbytes -= ret; |
f187448d | 543 | buffer = (const char *)buffer + ret; |
81b92e17 | 544 | } |
a324a7bc | 545 | |
5c9eff30 GRG |
546 | // If we got here and wxSOCKET_WAITALL is not set, we can leave |
547 | // now. Otherwise, wait until we send all the data or until there | |
548 | // is an error. | |
549 | // | |
550 | more = (ret > 0 && nbytes > 0 && (m_flags & wxSOCKET_WAITALL)); | |
81b92e17 | 551 | } |
56d8adc0 | 552 | } |
a324a7bc | 553 | |
96db102a | 554 | return total; |
f4ada568 GL |
555 | } |
556 | ||
f187448d | 557 | wxSocketBase& wxSocketBase::WriteMsg(const void *buffer, wxUint32 nbytes) |
062c4861 | 558 | { |
96db102a GRG |
559 | wxUint32 total; |
560 | bool error; | |
f187448d GRG |
561 | struct |
562 | { | |
96db102a GRG |
563 | unsigned char sig[4]; |
564 | unsigned char len[4]; | |
062c4861 GL |
565 | } msg; |
566 | ||
96db102a GRG |
567 | // Mask write events |
568 | m_writing = TRUE; | |
569 | ||
570 | error = TRUE; | |
571 | total = 0; | |
81b92e17 | 572 | SetFlags((m_flags & wxSOCKET_BLOCK) | wxSOCKET_WAITALL); |
96db102a | 573 | |
96db102a GRG |
574 | msg.sig[0] = (unsigned char) 0xad; |
575 | msg.sig[1] = (unsigned char) 0xde; | |
576 | msg.sig[2] = (unsigned char) 0xed; | |
577 | msg.sig[3] = (unsigned char) 0xfe; | |
062c4861 | 578 | |
04e1eb03 GRG |
579 | msg.len[0] = (unsigned char) (nbytes & 0xff); |
580 | msg.len[1] = (unsigned char) ((nbytes >> 8) & 0xff); | |
581 | msg.len[2] = (unsigned char) ((nbytes >> 16) & 0xff); | |
582 | msg.len[3] = (unsigned char) ((nbytes >> 24) & 0xff); | |
17aa2bec | 583 | |
f187448d | 584 | if (_Write(&msg, sizeof(msg)) < sizeof(msg)) |
96db102a GRG |
585 | goto exit; |
586 | ||
587 | total = _Write(buffer, nbytes); | |
588 | ||
589 | if (total < nbytes) | |
590 | goto exit; | |
062c4861 | 591 | |
96db102a GRG |
592 | msg.sig[0] = (unsigned char) 0xed; |
593 | msg.sig[1] = (unsigned char) 0xfe; | |
594 | msg.sig[2] = (unsigned char) 0xad; | |
595 | msg.sig[3] = (unsigned char) 0xde; | |
062c4861 | 596 | msg.len[0] = msg.len[1] = msg.len[2] = msg.len[3] = (char) 0; |
062c4861 | 597 | |
f187448d | 598 | if ((_Write(&msg, sizeof(msg))) < sizeof(msg)) |
96db102a | 599 | goto exit; |
17aa2bec | 600 | |
96db102a GRG |
601 | // everything was OK |
602 | error = FALSE; | |
603 | ||
604 | exit: | |
605 | m_error = error; | |
606 | m_lcount = total; | |
607 | m_writing = FALSE; | |
608 | ||
062c4861 | 609 | return *this; |
062c4861 GL |
610 | } |
611 | ||
f187448d | 612 | wxSocketBase& wxSocketBase::Unread(const void *buffer, wxUint32 nbytes) |
f4ada568 | 613 | { |
56d8adc0 | 614 | if (nbytes != 0) |
96db102a | 615 | Pushback(buffer, nbytes); |
f4ada568 | 616 | |
96db102a GRG |
617 | m_error = FALSE; |
618 | m_lcount = nbytes; | |
f4ada568 | 619 | |
96db102a | 620 | return *this; |
a324a7bc GL |
621 | } |
622 | ||
96db102a | 623 | wxSocketBase& wxSocketBase::Discard() |
f4ada568 | 624 | { |
04e1eb03 GRG |
625 | char *buffer = new char[MAX_DISCARD_SIZE]; |
626 | wxUint32 ret; | |
17aa2bec | 627 | wxUint32 total = 0; |
f4ada568 | 628 | |
96db102a GRG |
629 | // Mask read events |
630 | m_reading = TRUE; | |
631 | ||
81b92e17 | 632 | SetFlags(wxSOCKET_NOWAIT); |
384b4373 | 633 | |
04e1eb03 | 634 | do |
8c14576d | 635 | { |
04e1eb03 GRG |
636 | ret = _Read(buffer, MAX_DISCARD_SIZE); |
637 | total += ret; | |
f4ada568 | 638 | } |
04e1eb03 | 639 | while (ret == MAX_DISCARD_SIZE); |
f4ada568 | 640 | |
04e1eb03 | 641 | delete[] buffer; |
17aa2bec | 642 | m_lcount = total; |
04e1eb03 | 643 | m_error = FALSE; |
17aa2bec | 644 | |
dc5c1114 | 645 | // Allow read events again |
96db102a GRG |
646 | m_reading = FALSE; |
647 | ||
96db102a | 648 | return *this; |
f4ada568 GL |
649 | } |
650 | ||
ef57d866 GRG |
651 | // -------------------------------------------------------------------------- |
652 | // Wait functions | |
653 | // -------------------------------------------------------------------------- | |
f4ada568 | 654 | |
ef57d866 GRG |
655 | // All Wait functions poll the socket using GSocket_Select() to |
656 | // check for the specified combination of conditions, until one | |
657 | // of these conditions become true, an error occurs, or the | |
658 | // timeout elapses. The polling loop calls PROCESS_EVENTS(), so | |
659 | // this won't block the GUI. | |
f4ada568 | 660 | |
bffc1eaa GRG |
661 | bool wxSocketBase::_Wait(long seconds, |
662 | long milliseconds, | |
d3ea6527 | 663 | wxSocketEventFlags flags) |
375abe3d | 664 | { |
56d8adc0 | 665 | GSocketEventFlags result; |
56d8adc0 | 666 | long timeout; |
375abe3d | 667 | |
81b92e17 GRG |
668 | // Set this to TRUE to interrupt ongoing waits |
669 | m_interrupt = FALSE; | |
670 | ||
ef57d866 | 671 | // Check for valid socket |
af2fd961 GRG |
672 | if (!m_socket) |
673 | return FALSE; | |
674 | ||
71622a7a | 675 | // Check for valid timeout value. |
56d8adc0 GRG |
676 | if (seconds != -1) |
677 | timeout = seconds * 1000 + milliseconds; | |
678 | else | |
679 | timeout = m_timeout * 1000; | |
a324a7bc | 680 | |
b1a8a610 JS |
681 | #if !defined(wxUSE_GUI) || !wxUSE_GUI |
682 | GSocket_SetTimeout(m_socket, timeout); | |
683 | #endif | |
684 | ||
bffc1eaa | 685 | // Wait in an active polling loop. |
af2fd961 | 686 | // |
bffc1eaa GRG |
687 | // NOTE: We duplicate some of the code in OnRequest, but this doesn't |
688 | // hurt. It has to be here because the (GSocket) event might arrive | |
689 | // a bit delayed, and it has to be in OnRequest as well because we | |
690 | // don't know whether the Wait functions are being used. | |
af2fd961 | 691 | // |
96db102a | 692 | // Do this at least once (important if timeout == 0, when |
d3ea6527 | 693 | // we are just polling). Also, if just polling, do not yield. |
ef57d866 | 694 | |
71622a7a GRG |
695 | wxStopWatch chrono; |
696 | bool done = FALSE; | |
697 | ||
698 | while (!done) | |
56d8adc0 | 699 | { |
af2fd961 GRG |
700 | result = GSocket_Select(m_socket, flags | GSOCK_LOST_FLAG); |
701 | ||
af2fd961 GRG |
702 | // Incoming connection (server) or connection established (client) |
703 | if (result & GSOCK_CONNECTION_FLAG) | |
704 | { | |
af2fd961 GRG |
705 | m_connected = TRUE; |
706 | m_establishing = FALSE; | |
707 | return TRUE; | |
708 | } | |
709 | ||
04e1eb03 | 710 | // Data available or output buffer ready |
81b92e17 | 711 | if ((result & GSOCK_INPUT_FLAG) || (result & GSOCK_OUTPUT_FLAG)) |
af2fd961 | 712 | { |
81b92e17 | 713 | return TRUE; |
af2fd961 GRG |
714 | } |
715 | ||
c0043a50 GRG |
716 | // Connection lost |
717 | if (result & GSOCK_LOST_FLAG) | |
718 | { | |
ef57d866 | 719 | m_connected = FALSE; |
04e1eb03 | 720 | m_establishing = FALSE; |
378d2bd3 | 721 | return (flags & GSOCK_LOST_FLAG) != 0; |
c0043a50 GRG |
722 | } |
723 | ||
81b92e17 | 724 | // Wait more? |
71622a7a GRG |
725 | if ((!timeout) || (chrono.Time() > timeout) || (m_interrupt)) |
726 | done = TRUE; | |
d3ea6527 GRG |
727 | else |
728 | PROCESS_EVENTS(); | |
56d8adc0 | 729 | } |
f4ada568 | 730 | |
af2fd961 | 731 | return FALSE; |
f4ada568 | 732 | } |
f4ada568 | 733 | |
a737331d | 734 | bool wxSocketBase::Wait(long seconds, long milliseconds) |
f4ada568 | 735 | { |
d80d1aba GRG |
736 | return _Wait(seconds, milliseconds, GSOCK_INPUT_FLAG | |
737 | GSOCK_OUTPUT_FLAG | | |
738 | GSOCK_CONNECTION_FLAG | | |
739 | GSOCK_LOST_FLAG); | |
f4ada568 | 740 | } |
f4ada568 | 741 | |
a737331d | 742 | bool wxSocketBase::WaitForRead(long seconds, long milliseconds) |
f4ada568 | 743 | { |
ef57d866 | 744 | // Check pushback buffer before entering _Wait |
96db102a GRG |
745 | if (m_unread) |
746 | return TRUE; | |
747 | ||
ef57d866 GRG |
748 | // Note that GSOCK_INPUT_LOST has to be explicitly passed to |
749 | // _Wait becuase of the semantics of WaitForRead: a return | |
750 | // value of TRUE means that a GSocket_Read call will return | |
751 | // immediately, not that there is actually data to read. | |
752 | ||
753 | return _Wait(seconds, milliseconds, GSOCK_INPUT_FLAG | | |
754 | GSOCK_LOST_FLAG); | |
f4ada568 GL |
755 | } |
756 | ||
a737331d | 757 | bool wxSocketBase::WaitForWrite(long seconds, long milliseconds) |
f4ada568 | 758 | { |
af2fd961 | 759 | return _Wait(seconds, milliseconds, GSOCK_OUTPUT_FLAG); |
a737331d | 760 | } |
f4ada568 | 761 | |
a737331d GL |
762 | bool wxSocketBase::WaitForLost(long seconds, long milliseconds) |
763 | { | |
a324a7bc | 764 | return _Wait(seconds, milliseconds, GSOCK_LOST_FLAG); |
f4ada568 | 765 | } |
a737331d | 766 | |
ef57d866 GRG |
767 | // -------------------------------------------------------------------------- |
768 | // Miscellaneous | |
769 | // -------------------------------------------------------------------------- | |
770 | ||
771 | // | |
772 | // Get local or peer address | |
773 | // | |
774 | ||
775 | bool wxSocketBase::GetPeer(wxSockAddress& addr_man) const | |
776 | { | |
777 | GAddress *peer; | |
778 | ||
779 | if (!m_socket) | |
780 | return FALSE; | |
781 | ||
782 | peer = GSocket_GetPeer(m_socket); | |
007c77ab RL |
783 | |
784 | // copying a null address would just trigger an assert anyway | |
785 | ||
786 | if (!peer) | |
787 | return FALSE; | |
788 | ||
ef57d866 GRG |
789 | addr_man.SetAddress(peer); |
790 | GAddress_destroy(peer); | |
791 | ||
792 | return TRUE; | |
793 | } | |
794 | ||
795 | bool wxSocketBase::GetLocal(wxSockAddress& addr_man) const | |
796 | { | |
797 | GAddress *local; | |
798 | ||
799 | if (!m_socket) | |
800 | return FALSE; | |
801 | ||
802 | local = GSocket_GetLocal(m_socket); | |
803 | addr_man.SetAddress(local); | |
804 | GAddress_destroy(local); | |
805 | ||
806 | return TRUE; | |
807 | } | |
808 | ||
809 | // | |
810 | // Save and restore socket state | |
811 | // | |
812 | ||
813 | void wxSocketBase::SaveState() | |
814 | { | |
815 | wxSocketState *state; | |
816 | ||
817 | state = new wxSocketState(); | |
818 | ||
bffc1eaa GRG |
819 | state->m_flags = m_flags; |
820 | state->m_notify = m_notify; | |
821 | state->m_eventmask = m_eventmask; | |
822 | state->m_clientData = m_clientData; | |
ef57d866 GRG |
823 | |
824 | m_states.Append(state); | |
825 | } | |
826 | ||
827 | void wxSocketBase::RestoreState() | |
828 | { | |
df5168c4 | 829 | wxList::compatibility_iterator node; |
ef57d866 GRG |
830 | wxSocketState *state; |
831 | ||
b1d4dd7a | 832 | node = m_states.GetLast(); |
ef57d866 GRG |
833 | if (!node) |
834 | return; | |
835 | ||
b1d4dd7a | 836 | state = (wxSocketState *)node->GetData(); |
ef57d866 | 837 | |
bffc1eaa GRG |
838 | m_flags = state->m_flags; |
839 | m_notify = state->m_notify; | |
840 | m_eventmask = state->m_eventmask; | |
841 | m_clientData = state->m_clientData; | |
a3bf7524 | 842 | |
df5168c4 | 843 | m_states.Erase(node); |
ef57d866 GRG |
844 | delete state; |
845 | } | |
846 | ||
847 | // | |
848 | // Timeout and flags | |
849 | // | |
850 | ||
17aa2bec GRG |
851 | void wxSocketBase::SetTimeout(long seconds) |
852 | { | |
853 | m_timeout = seconds; | |
854 | ||
855 | if (m_socket) | |
e8f4c584 | 856 | GSocket_SetTimeout(m_socket, m_timeout * 1000); |
17aa2bec GRG |
857 | } |
858 | ||
71622a7a | 859 | void wxSocketBase::SetFlags(wxSocketFlags flags) |
f4ada568 | 860 | { |
71622a7a | 861 | m_flags = flags; |
f4ada568 | 862 | } |
f0a56ab0 | 863 | |
f187448d | 864 | |
ef57d866 | 865 | // -------------------------------------------------------------------------- |
f187448d | 866 | // Event handling |
ef57d866 | 867 | // -------------------------------------------------------------------------- |
a324a7bc | 868 | |
bffc1eaa GRG |
869 | // A note on how events are processed, which is probably the most |
870 | // difficult thing to get working right while keeping the same API | |
871 | // and functionality for all platforms. | |
872 | // | |
873 | // When GSocket detects an event, it calls wx_socket_callback, which in | |
874 | // turn just calls wxSocketBase::OnRequest in the corresponding wxSocket | |
875 | // object. OnRequest does some housekeeping, and if the event is to be | |
876 | // propagated to the user, it creates a new wxSocketEvent object and | |
877 | // posts it. The event is not processed immediately, but delayed with | |
878 | // AddPendingEvent instead. This is necessary in order to decouple the | |
879 | // event processing from wx_socket_callback; otherwise, subsequent IO | |
880 | // calls made from the user event handler would fail, as gtk callbacks | |
881 | // are not reentrant. | |
882 | // | |
883 | // Note that, unlike events, user callbacks (now deprecated) are _not_ | |
884 | // decoupled from wx_socket_callback and thus they suffer from a variety | |
885 | // of problems. Avoid them where possible and use events instead. | |
96db102a | 886 | |
90350682 VZ |
887 | extern "C" |
888 | void LINKAGEMODE wx_socket_callback(GSocket * WXUNUSED(socket), | |
889 | GSocketEvent notification, | |
890 | char *cdata) | |
a324a7bc GL |
891 | { |
892 | wxSocketBase *sckobj = (wxSocketBase *)cdata; | |
893 | ||
bffc1eaa | 894 | sckobj->OnRequest((wxSocketNotify) notification); |
56d8adc0 | 895 | } |
a324a7bc | 896 | |
bffc1eaa | 897 | void wxSocketBase::OnRequest(wxSocketNotify notification) |
f4ada568 | 898 | { |
bffc1eaa GRG |
899 | // NOTE: We duplicate some of the code in _Wait, but this doesn't |
900 | // hurt. It has to be here because the (GSocket) event might arrive | |
901 | // a bit delayed, and it has to be in _Wait as well because we don't | |
902 | // know whether the Wait functions are being used. | |
ef57d866 | 903 | |
bffc1eaa | 904 | switch(notification) |
d80d1aba | 905 | { |
04e1eb03 GRG |
906 | case wxSOCKET_CONNECTION: |
907 | m_establishing = FALSE; | |
908 | m_connected = TRUE; | |
909 | break; | |
910 | ||
d3ea6527 GRG |
911 | // If we are in the middle of a R/W operation, do not |
912 | // propagate events to users. Also, filter 'late' events | |
913 | // which are no longer valid. | |
ef57d866 | 914 | |
04e1eb03 GRG |
915 | case wxSOCKET_INPUT: |
916 | if (m_reading || !GSocket_Select(m_socket, GSOCK_INPUT_FLAG)) | |
917 | return; | |
918 | break; | |
919 | ||
920 | case wxSOCKET_OUTPUT: | |
921 | if (m_writing || !GSocket_Select(m_socket, GSOCK_OUTPUT_FLAG)) | |
922 | return; | |
923 | break; | |
924 | ||
925 | case wxSOCKET_LOST: | |
926 | m_connected = FALSE; | |
927 | m_establishing = FALSE; | |
928 | break; | |
929 | ||
930 | default: | |
931 | break; | |
96db102a GRG |
932 | } |
933 | ||
f187448d GRG |
934 | // Schedule the event |
935 | ||
52fbdb58 | 936 | wxSocketEventFlags flag = 0; |
999836aa | 937 | wxUnusedVar(flag); |
bffc1eaa | 938 | switch (notification) |
f187448d GRG |
939 | { |
940 | case GSOCK_INPUT: flag = GSOCK_INPUT_FLAG; break; | |
941 | case GSOCK_OUTPUT: flag = GSOCK_OUTPUT_FLAG; break; | |
942 | case GSOCK_CONNECTION: flag = GSOCK_CONNECTION_FLAG; break; | |
943 | case GSOCK_LOST: flag = GSOCK_LOST_FLAG; break; | |
52fbdb58 | 944 | default: |
5c9eff30 | 945 | wxLogWarning(_("wxSocket: unknown event!.")); |
52fbdb58 | 946 | return; |
f187448d GRG |
947 | } |
948 | ||
bffc1eaa | 949 | if (((m_eventmask & flag) == flag) && m_notify) |
d80d1aba | 950 | { |
f187448d | 951 | if (m_handler) |
bffc1eaa GRG |
952 | { |
953 | wxSocketEvent event(m_id); | |
954 | event.m_event = notification; | |
955 | event.m_clientData = m_clientData; | |
956 | event.SetEventObject(this); | |
957 | ||
f187448d | 958 | m_handler->AddPendingEvent(event); |
bffc1eaa | 959 | } |
f4ada568 | 960 | } |
f4ada568 GL |
961 | } |
962 | ||
f187448d GRG |
963 | void wxSocketBase::Notify(bool notify) |
964 | { | |
bffc1eaa | 965 | m_notify = notify; |
f187448d GRG |
966 | } |
967 | ||
968 | void wxSocketBase::SetNotify(wxSocketEventFlags flags) | |
969 | { | |
bffc1eaa | 970 | m_eventmask = flags; |
f187448d GRG |
971 | } |
972 | ||
71622a7a | 973 | void wxSocketBase::SetEventHandler(wxEvtHandler& handler, int id) |
f4ada568 | 974 | { |
71622a7a GRG |
975 | m_handler = &handler; |
976 | m_id = id; | |
f4ada568 GL |
977 | } |
978 | ||
ef57d866 GRG |
979 | // -------------------------------------------------------------------------- |
980 | // Pushback buffer | |
981 | // -------------------------------------------------------------------------- | |
db131261 | 982 | |
f187448d | 983 | void wxSocketBase::Pushback(const void *buffer, wxUint32 size) |
f4ada568 | 984 | { |
dc5c1114 GRG |
985 | if (!size) return; |
986 | ||
a324a7bc | 987 | if (m_unread == NULL) |
f187448d | 988 | m_unread = malloc(size); |
dc5c1114 GRG |
989 | else |
990 | { | |
f187448d | 991 | void *tmp; |
f4ada568 | 992 | |
f187448d GRG |
993 | tmp = malloc(m_unrd_size + size); |
994 | memcpy((char *)tmp + size, m_unread, m_unrd_size); | |
41895a05 | 995 | free(m_unread); |
a324a7bc GL |
996 | |
997 | m_unread = tmp; | |
41895a05 | 998 | } |
31528cd3 | 999 | |
f4ada568 | 1000 | m_unrd_size += size; |
a324a7bc GL |
1001 | |
1002 | memcpy(m_unread, buffer, size); | |
f4ada568 GL |
1003 | } |
1004 | ||
f187448d | 1005 | wxUint32 wxSocketBase::GetPushback(void *buffer, wxUint32 size, bool peek) |
f4ada568 GL |
1006 | { |
1007 | if (!m_unrd_size) | |
1008 | return 0; | |
1009 | ||
a324a7bc GL |
1010 | if (size > (m_unrd_size-m_unrd_cur)) |
1011 | size = m_unrd_size-m_unrd_cur; | |
96db102a | 1012 | |
f187448d | 1013 | memcpy(buffer, (char *)m_unread + m_unrd_cur, size); |
f4ada568 | 1014 | |
dc5c1114 GRG |
1015 | if (!peek) |
1016 | { | |
a324a7bc | 1017 | m_unrd_cur += size; |
dc5c1114 GRG |
1018 | if (m_unrd_size == m_unrd_cur) |
1019 | { | |
f4ada568 GL |
1020 | free(m_unread); |
1021 | m_unread = NULL; | |
a324a7bc GL |
1022 | m_unrd_size = 0; |
1023 | m_unrd_cur = 0; | |
f4ada568 GL |
1024 | } |
1025 | } | |
1026 | ||
1027 | return size; | |
1028 | } | |
1029 | ||
f187448d | 1030 | |
ef57d866 | 1031 | // ========================================================================== |
c3e646b4 | 1032 | // wxSocketServer |
ef57d866 | 1033 | // ========================================================================== |
f4ada568 | 1034 | |
ef57d866 GRG |
1035 | // -------------------------------------------------------------------------- |
1036 | // Ctor | |
1037 | // -------------------------------------------------------------------------- | |
56d8adc0 | 1038 | |
f4ada568 | 1039 | wxSocketServer::wxSocketServer(wxSockAddress& addr_man, |
71622a7a GRG |
1040 | wxSocketFlags flags) |
1041 | : wxSocketBase(flags, wxSOCKET_SERVER) | |
f4ada568 | 1042 | { |
007c77ab | 1043 | wxLogTrace( wxTRACE_Socket, _T("Opening wxSocketServer") ); |
f4ada568 | 1044 | |
007c77ab | 1045 | m_socket = GSocket_new(); |
384b4373 | 1046 | |
007c77ab RL |
1047 | if (!m_socket) |
1048 | { | |
1049 | wxLogTrace( wxTRACE_Socket, _T("*** GSocket_new failed") ); | |
1050 | return; | |
1051 | } | |
a737331d | 1052 | |
007c77ab | 1053 | // Setup the socket as server |
56d8adc0 | 1054 | |
007c77ab RL |
1055 | GSocket_SetLocal(m_socket, addr_man.GetAddress()); |
1056 | if (GSocket_SetServer(m_socket) != GSOCK_NOERROR) | |
1057 | { | |
1058 | GSocket_destroy(m_socket); | |
1059 | m_socket = NULL; | |
1060 | ||
1061 | wxLogTrace( wxTRACE_Socket, _T("*** GSocket_SetServer failed") ); | |
1062 | return; | |
1063 | } | |
1064 | ||
1065 | GSocket_SetTimeout(m_socket, m_timeout * 1000); | |
1066 | GSocket_SetCallback(m_socket, GSOCK_INPUT_FLAG | GSOCK_OUTPUT_FLAG | | |
1067 | GSOCK_LOST_FLAG | GSOCK_CONNECTION_FLAG, | |
1068 | wx_socket_callback, (char *)this); | |
f4ada568 GL |
1069 | } |
1070 | ||
ef57d866 GRG |
1071 | // -------------------------------------------------------------------------- |
1072 | // Accept | |
1073 | // -------------------------------------------------------------------------- | |
8c14576d | 1074 | |
d80d1aba | 1075 | bool wxSocketServer::AcceptWith(wxSocketBase& sock, bool wait) |
f4ada568 | 1076 | { |
a324a7bc | 1077 | GSocket *child_socket; |
f4ada568 | 1078 | |
17aa2bec GRG |
1079 | if (!m_socket) |
1080 | return FALSE; | |
1081 | ||
04e1eb03 | 1082 | // If wait == FALSE, then the call should be nonblocking. |
56d8adc0 GRG |
1083 | // When we are finished, we put the socket to blocking mode |
1084 | // again. | |
d80d1aba GRG |
1085 | |
1086 | if (!wait) | |
5c9eff30 | 1087 | GSocket_SetNonBlocking(m_socket, 1); |
d80d1aba | 1088 | |
a324a7bc | 1089 | child_socket = GSocket_WaitConnection(m_socket); |
384b4373 | 1090 | |
d80d1aba | 1091 | if (!wait) |
5c9eff30 | 1092 | GSocket_SetNonBlocking(m_socket, 0); |
d80d1aba | 1093 | |
04e1eb03 | 1094 | if (!child_socket) |
d80d1aba GRG |
1095 | return FALSE; |
1096 | ||
71622a7a | 1097 | sock.m_type = wxSOCKET_BASE; |
a324a7bc | 1098 | sock.m_socket = child_socket; |
f4ada568 GL |
1099 | sock.m_connected = TRUE; |
1100 | ||
e8f4c584 | 1101 | GSocket_SetTimeout(sock.m_socket, sock.m_timeout * 1000); |
56d8adc0 GRG |
1102 | GSocket_SetCallback(sock.m_socket, GSOCK_INPUT_FLAG | GSOCK_OUTPUT_FLAG | |
1103 | GSOCK_LOST_FLAG | GSOCK_CONNECTION_FLAG, | |
1104 | wx_socket_callback, (char *)&sock); | |
1105 | ||
f4ada568 GL |
1106 | return TRUE; |
1107 | } | |
1108 | ||
d80d1aba | 1109 | wxSocketBase *wxSocketServer::Accept(bool wait) |
f4ada568 GL |
1110 | { |
1111 | wxSocketBase* sock = new wxSocketBase(); | |
1112 | ||
71622a7a | 1113 | sock->SetFlags(m_flags); |
f4ada568 | 1114 | |
d80d1aba | 1115 | if (!AcceptWith(*sock, wait)) |
c3e646b4 VZ |
1116 | { |
1117 | sock->Destroy(); | |
1118 | sock = NULL; | |
1119 | } | |
f4ada568 | 1120 | |
f4ada568 GL |
1121 | return sock; |
1122 | } | |
1123 | ||
17aa2bec | 1124 | bool wxSocketServer::WaitForAccept(long seconds, long milliseconds) |
d80d1aba | 1125 | { |
af2fd961 | 1126 | return _Wait(seconds, milliseconds, GSOCK_CONNECTION_FLAG); |
d80d1aba GRG |
1127 | } |
1128 | ||
ef57d866 | 1129 | // ========================================================================== |
8c14576d | 1130 | // wxSocketClient |
ef57d866 | 1131 | // ========================================================================== |
f4ada568 | 1132 | |
ef57d866 GRG |
1133 | // -------------------------------------------------------------------------- |
1134 | // Ctor and dtor | |
1135 | // -------------------------------------------------------------------------- | |
56d8adc0 | 1136 | |
71622a7a GRG |
1137 | wxSocketClient::wxSocketClient(wxSocketFlags flags) |
1138 | : wxSocketBase(flags, wxSOCKET_CLIENT) | |
f4ada568 GL |
1139 | { |
1140 | } | |
1141 | ||
f4ada568 GL |
1142 | wxSocketClient::~wxSocketClient() |
1143 | { | |
1144 | } | |
1145 | ||
ef57d866 GRG |
1146 | // -------------------------------------------------------------------------- |
1147 | // Connect | |
1148 | // -------------------------------------------------------------------------- | |
dc5c1114 | 1149 | |
791b24c4 | 1150 | bool wxSocketClient::Connect(wxSockAddress& addr_man, bool wait) |
f4ada568 | 1151 | { |
791b24c4 GRG |
1152 | GSocketError err; |
1153 | ||
ef57d866 | 1154 | if (m_socket) |
04e1eb03 GRG |
1155 | { |
1156 | // Shutdown and destroy the socket | |
f4ada568 | 1157 | Close(); |
a324a7bc | 1158 | GSocket_destroy(m_socket); |
04e1eb03 | 1159 | } |
a324a7bc | 1160 | |
a324a7bc | 1161 | m_socket = GSocket_new(); |
d80d1aba GRG |
1162 | m_connected = FALSE; |
1163 | m_establishing = FALSE; | |
384b4373 | 1164 | |
a324a7bc | 1165 | if (!m_socket) |
f4ada568 | 1166 | return FALSE; |
384b4373 | 1167 | |
e8f4c584 | 1168 | GSocket_SetTimeout(m_socket, m_timeout * 1000); |
96db102a GRG |
1169 | GSocket_SetCallback(m_socket, GSOCK_INPUT_FLAG | GSOCK_OUTPUT_FLAG | |
1170 | GSOCK_LOST_FLAG | GSOCK_CONNECTION_FLAG, | |
1171 | wx_socket_callback, (char *)this); | |
56d8adc0 | 1172 | |
04e1eb03 | 1173 | // If wait == FALSE, then the call should be nonblocking. |
56d8adc0 GRG |
1174 | // When we are finished, we put the socket to blocking mode |
1175 | // again. | |
f4ada568 | 1176 | |
791b24c4 | 1177 | if (!wait) |
5c9eff30 | 1178 | GSocket_SetNonBlocking(m_socket, 1); |
791b24c4 | 1179 | |
a324a7bc | 1180 | GSocket_SetPeer(m_socket, addr_man.GetAddress()); |
791b24c4 GRG |
1181 | err = GSocket_Connect(m_socket, GSOCK_STREAMED); |
1182 | ||
1183 | if (!wait) | |
5c9eff30 | 1184 | GSocket_SetNonBlocking(m_socket, 0); |
791b24c4 GRG |
1185 | |
1186 | if (err != GSOCK_NOERROR) | |
56d8adc0 GRG |
1187 | { |
1188 | if (err == GSOCK_WOULDBLOCK) | |
1189 | m_establishing = TRUE; | |
1190 | ||
f4ada568 | 1191 | return FALSE; |
56d8adc0 | 1192 | } |
9111db68 | 1193 | |
f4ada568 GL |
1194 | m_connected = TRUE; |
1195 | return TRUE; | |
1196 | } | |
1197 | ||
d80d1aba | 1198 | bool wxSocketClient::WaitOnConnect(long seconds, long milliseconds) |
f4ada568 | 1199 | { |
af2fd961 | 1200 | if (m_connected) // Already connected |
d80d1aba GRG |
1201 | return TRUE; |
1202 | ||
af2fd961 | 1203 | if (!m_establishing || !m_socket) // No connection in progress |
d80d1aba GRG |
1204 | return FALSE; |
1205 | ||
2b396caa GRG |
1206 | return _Wait(seconds, milliseconds, GSOCK_CONNECTION_FLAG | |
1207 | GSOCK_LOST_FLAG); | |
f4ada568 GL |
1208 | } |
1209 | ||
ef57d866 | 1210 | // ========================================================================== |
dc5c1114 | 1211 | // wxDatagramSocket |
ef57d866 | 1212 | // ========================================================================== |
dc5c1114 GRG |
1213 | |
1214 | /* NOTE: experimental stuff - might change */ | |
1215 | ||
71622a7a GRG |
1216 | wxDatagramSocket::wxDatagramSocket( wxSockAddress& addr, |
1217 | wxSocketFlags flags ) | |
1218 | : wxSocketBase( flags, wxSOCKET_DATAGRAM ) | |
dc5c1114 GRG |
1219 | { |
1220 | // Create the socket | |
1221 | m_socket = GSocket_new(); | |
1222 | ||
1223 | if(!m_socket) | |
1224 | return; | |
1225 | ||
1226 | // Setup the socket as non connection oriented | |
1227 | GSocket_SetLocal(m_socket, addr.GetAddress()); | |
1228 | if( GSocket_SetNonOriented(m_socket) != GSOCK_NOERROR ) | |
1229 | { | |
1230 | GSocket_destroy(m_socket); | |
1231 | m_socket = NULL; | |
1232 | return; | |
1233 | } | |
1234 | ||
1235 | // Initialize all stuff | |
1236 | m_connected = FALSE; | |
1237 | m_establishing = FALSE; | |
1238 | GSocket_SetTimeout( m_socket, m_timeout ); | |
1239 | GSocket_SetCallback( m_socket, GSOCK_INPUT_FLAG | GSOCK_OUTPUT_FLAG | | |
1240 | GSOCK_LOST_FLAG | GSOCK_CONNECTION_FLAG, | |
1241 | wx_socket_callback, (char*)this ); | |
1242 | ||
1243 | } | |
1244 | ||
1245 | wxDatagramSocket& wxDatagramSocket::RecvFrom( wxSockAddress& addr, | |
f187448d | 1246 | void* buf, |
dc5c1114 GRG |
1247 | wxUint32 nBytes ) |
1248 | { | |
1249 | Read(buf, nBytes); | |
1250 | GetPeer(addr); | |
1251 | return (*this); | |
1252 | } | |
1253 | ||
1254 | wxDatagramSocket& wxDatagramSocket::SendTo( wxSockAddress& addr, | |
f187448d | 1255 | const void* buf, |
dc5c1114 GRG |
1256 | wxUint32 nBytes ) |
1257 | { | |
1258 | GSocket_SetPeer(m_socket, addr.GetAddress()); | |
1259 | Write(buf, nBytes); | |
1260 | return (*this); | |
1261 | } | |
1262 | ||
ef57d866 | 1263 | // ========================================================================== |
a58d5df4 | 1264 | // wxSocketModule |
ef57d866 | 1265 | // ========================================================================== |
dc5c1114 | 1266 | |
ed4c6c69 | 1267 | class wxSocketModule : public wxModule |
dc5c1114 | 1268 | { |
dc5c1114 | 1269 | public: |
6c0d0845 VZ |
1270 | virtual bool OnInit() |
1271 | { | |
1272 | // wxSocketBase will call GSocket_Init() itself when/if needed | |
1273 | return TRUE; | |
1274 | } | |
1275 | ||
1276 | virtual void OnExit() | |
1277 | { | |
1278 | if ( wxSocketBase::IsInitialized() ) | |
1279 | wxSocketBase::Shutdown(); | |
1280 | } | |
1281 | ||
1282 | private: | |
1283 | DECLARE_DYNAMIC_CLASS(wxSocketModule) | |
a58d5df4 GL |
1284 | }; |
1285 | ||
1286 | IMPLEMENT_DYNAMIC_CLASS(wxSocketModule, wxModule) | |
1287 | ||
35a4dab7 GL |
1288 | #endif |
1289 | // wxUSE_SOCKETS | |
007c77ab RL |
1290 | |
1291 | // vi:sts=4:sw=4:et |