]>
Commit | Line | Data |
---|---|---|
f4ada568 | 1 | ///////////////////////////////////////////////////////////////////////////// |
d5da0ce7 | 2 | // Name: src/common/sckipc.cpp |
f4ada568 | 3 | // Purpose: Interprocess communication implementation (wxSocket version) |
0834112f | 4 | // Author: Julian Smart |
f4ada568 | 5 | // Modified by: Guilhem Lavaux (big rewrite) May 1997, 1998 |
0834112f | 6 | // Guillermo Rodriguez (updated for wxSocket v2) Jan 2000 |
cdc59bb6 | 7 | // (callbacks deprecated) Mar 2000 |
0dbfd66d | 8 | // Vadim Zeitlin (added support for Unix sockets) Apr 2002 |
f4ada568 GL |
9 | // Created: 1993 |
10 | // RCS-ID: $Id$ | |
0834112f GRG |
11 | // Copyright: (c) Julian Smart 1993 |
12 | // (c) Guilhem Lavaux 1997, 1998 | |
13 | // (c) 2000 Guillermo Rodriguez <guille@iies.es> | |
65571936 | 14 | // Licence: wxWindows licence |
f4ada568 GL |
15 | ///////////////////////////////////////////////////////////////////////////// |
16 | ||
cdc59bb6 GRG |
17 | // ========================================================================== |
18 | // declarations | |
19 | // ========================================================================== | |
20 | ||
21 | // -------------------------------------------------------------------------- | |
22 | // headers | |
23 | // -------------------------------------------------------------------------- | |
24 | ||
fcc6dddd JS |
25 | // For compilers that support precompilation, includes "wx.h". |
26 | #include "wx/wxprec.h" | |
f4ada568 | 27 | |
fcc6dddd | 28 | #ifdef __BORLANDC__ |
d5da0ce7 | 29 | #pragma hdrstop |
f4ada568 GL |
30 | #endif |
31 | ||
d5da0ce7 WS |
32 | #if wxUSE_SOCKETS && wxUSE_IPC && wxUSE_STREAMS |
33 | ||
34 | #include "wx/sckipc.h" | |
35 | ||
fcc6dddd | 36 | #ifndef WX_PRECOMP |
d5da0ce7 WS |
37 | #include "wx/log.h" |
38 | #include "wx/event.h" | |
02761f6c | 39 | #include "wx/module.h" |
fcc6dddd JS |
40 | #endif |
41 | ||
42 | #include <stdlib.h> | |
43 | #include <stdio.h> | |
0dbfd66d | 44 | #include <errno.h> |
fcc6dddd | 45 | |
f4ada568 | 46 | #include "wx/socket.h" |
f4ada568 | 47 | |
cdc59bb6 GRG |
48 | // -------------------------------------------------------------------------- |
49 | // macros and constants | |
50 | // -------------------------------------------------------------------------- | |
f4ada568 GL |
51 | |
52 | // It seems to be already defined somewhere in the Xt includes. | |
53 | #ifndef __XT__ | |
54 | // Message codes | |
cdc59bb6 GRG |
55 | enum |
56 | { | |
f4ada568 GL |
57 | IPC_EXECUTE = 1, |
58 | IPC_REQUEST, | |
59 | IPC_POKE, | |
60 | IPC_ADVISE_START, | |
61 | IPC_ADVISE_REQUEST, | |
62 | IPC_ADVISE, | |
63 | IPC_ADVISE_STOP, | |
64 | IPC_REQUEST_REPLY, | |
65 | IPC_FAIL, | |
66 | IPC_CONNECT, | |
67 | IPC_DISCONNECT | |
68 | }; | |
69 | #endif | |
70 | ||
d3ea6527 | 71 | // All sockets will be created with the following flags |
a24cc774 | 72 | #define SCKIPC_FLAGS (wxSOCKET_WAITALL) |
d3ea6527 | 73 | |
0dbfd66d VZ |
74 | // headers needed for umask() |
75 | #ifdef __UNIX_LIKE__ | |
76 | #include <sys/types.h> | |
77 | #include <sys/stat.h> | |
78 | #endif // __UNIX_LIKE__ | |
79 | ||
80 | // ---------------------------------------------------------------------------- | |
81 | // private functions | |
82 | // ---------------------------------------------------------------------------- | |
83 | ||
84 | // get the address object for the given server name, the caller must delete it | |
85 | static wxSockAddress * | |
525d8583 | 86 | GetAddressFromName(const wxString& serverName, const wxString& host = wxEmptyString) |
0dbfd66d VZ |
87 | { |
88 | // we always use INET sockets under non-Unix systems | |
7a59be6d | 89 | #if defined(__UNIX__) && !defined(__WINDOWS__) && !defined(__WINE__) && (!defined(__WXMAC__) || defined(__DARWIN__)) |
0dbfd66d VZ |
90 | // under Unix, if the server name looks like a path, create a AF_UNIX |
91 | // socket instead of AF_INET one | |
92 | if ( serverName.Find(_T('/')) != wxNOT_FOUND ) | |
93 | { | |
94 | wxUNIXaddress *addr = new wxUNIXaddress; | |
95 | addr->Filename(serverName); | |
96 | ||
97 | return addr; | |
98 | } | |
99 | #endif // Unix/!Unix | |
100 | { | |
101 | wxIPV4address *addr = new wxIPV4address; | |
102 | addr->Service(serverName); | |
103 | if ( !host.empty() ) | |
104 | { | |
105 | addr->Hostname(host); | |
106 | } | |
107 | ||
108 | return addr; | |
109 | } | |
110 | } | |
111 | ||
cdc59bb6 GRG |
112 | // -------------------------------------------------------------------------- |
113 | // wxTCPEventHandler stuff (private class) | |
114 | // -------------------------------------------------------------------------- | |
115 | ||
116 | class wxTCPEventHandler : public wxEvtHandler | |
117 | { | |
118 | public: | |
d9e9fb52 | 119 | wxTCPEventHandler() : wxEvtHandler() {} |
cdc59bb6 GRG |
120 | |
121 | void Client_OnRequest(wxSocketEvent& event); | |
122 | void Server_OnRequest(wxSocketEvent& event); | |
123 | ||
124 | DECLARE_EVENT_TABLE() | |
fc7a2a60 | 125 | DECLARE_NO_COPY_CLASS(wxTCPEventHandler) |
cdc59bb6 GRG |
126 | }; |
127 | ||
128 | enum | |
129 | { | |
130 | _CLIENT_ONREQUEST_ID = 1000, | |
131 | _SERVER_ONREQUEST_ID | |
132 | }; | |
133 | ||
134 | static wxTCPEventHandler *gs_handler = NULL; | |
135 | ||
136 | // ========================================================================== | |
137 | // implementation | |
138 | // ========================================================================== | |
139 | ||
140 | IMPLEMENT_DYNAMIC_CLASS(wxTCPServer, wxServerBase) | |
141 | IMPLEMENT_DYNAMIC_CLASS(wxTCPClient, wxClientBase) | |
142 | IMPLEMENT_CLASS(wxTCPConnection, wxConnectionBase) | |
143 | ||
144 | // -------------------------------------------------------------------------- | |
f4ada568 | 145 | // wxTCPClient |
cdc59bb6 | 146 | // -------------------------------------------------------------------------- |
f4ada568 | 147 | |
cdc59bb6 | 148 | wxTCPClient::wxTCPClient () : wxClientBase() |
f4ada568 GL |
149 | { |
150 | } | |
151 | ||
6e31e940 | 152 | wxTCPClient::~wxTCPClient () |
f4ada568 GL |
153 | { |
154 | } | |
155 | ||
156 | bool wxTCPClient::ValidHost(const wxString& host) | |
157 | { | |
158 | wxIPV4address addr; | |
159 | ||
160 | return addr.Hostname(host); | |
161 | } | |
162 | ||
163 | wxConnectionBase *wxTCPClient::MakeConnection (const wxString& host, | |
0dbfd66d | 164 | const wxString& serverName, |
f4ada568 GL |
165 | const wxString& topic) |
166 | { | |
e1026179 VZ |
167 | wxSockAddress *addr = GetAddressFromName(serverName, host); |
168 | if ( !addr ) | |
169 | return NULL; | |
170 | ||
d3ea6527 | 171 | wxSocketClient *client = new wxSocketClient(SCKIPC_FLAGS); |
f4ada568 | 172 | wxSocketStream *stream = new wxSocketStream(*client); |
0834112f GRG |
173 | wxDataInputStream *data_is = new wxDataInputStream(*stream); |
174 | wxDataOutputStream *data_os = new wxDataOutputStream(*stream); | |
175 | ||
0dbfd66d VZ |
176 | bool ok = client->Connect(*addr); |
177 | delete addr; | |
f4ada568 | 178 | |
0dbfd66d | 179 | if ( ok ) |
0834112f GRG |
180 | { |
181 | unsigned char msg; | |
26a25f95 | 182 | |
0834112f GRG |
183 | // Send topic name, and enquire whether this has succeeded |
184 | data_os->Write8(IPC_CONNECT); | |
185 | data_os->WriteString(topic); | |
26a25f95 | 186 | |
0834112f GRG |
187 | msg = data_is->Read8(); |
188 | ||
189 | // OK! Confirmation. | |
190 | if (msg == IPC_CONNECT) | |
191 | { | |
192 | wxTCPConnection *connection = (wxTCPConnection *)OnMakeConnection (); | |
193 | ||
194 | if (connection) | |
195 | { | |
3adb47a9 | 196 | if (connection->IsKindOf(CLASSINFO(wxTCPConnection))) |
0834112f GRG |
197 | { |
198 | connection->m_topic = topic; | |
199 | connection->m_sock = client; | |
200 | connection->m_sockstrm = stream; | |
201 | connection->m_codeci = data_is; | |
202 | connection->m_codeco = data_os; | |
cdc59bb6 GRG |
203 | client->SetEventHandler(*gs_handler, _CLIENT_ONREQUEST_ID); |
204 | client->SetClientData(connection); | |
0834112f | 205 | client->SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG); |
d775fa82 | 206 | client->Notify(true); |
0834112f GRG |
207 | return connection; |
208 | } | |
3adb47a9 GRG |
209 | else |
210 | { | |
211 | delete connection; | |
212 | // and fall through to delete everything else | |
213 | } | |
f4ada568 | 214 | } |
f4ada568 | 215 | } |
f4ada568 | 216 | } |
0834112f | 217 | |
3adb47a9 | 218 | // Something went wrong, delete everything |
0834112f GRG |
219 | delete data_is; |
220 | delete data_os; | |
221 | delete stream; | |
3adb47a9 GRG |
222 | client->Destroy(); |
223 | ||
0834112f | 224 | return NULL; |
f4ada568 GL |
225 | } |
226 | ||
227 | wxConnectionBase *wxTCPClient::OnMakeConnection() | |
228 | { | |
e5b502f3 | 229 | return new wxTCPConnection(); |
f4ada568 GL |
230 | } |
231 | ||
cdc59bb6 | 232 | // -------------------------------------------------------------------------- |
f4ada568 | 233 | // wxTCPServer |
cdc59bb6 | 234 | // -------------------------------------------------------------------------- |
f4ada568 | 235 | |
cdc59bb6 | 236 | wxTCPServer::wxTCPServer () : wxServerBase() |
f4ada568 | 237 | { |
f6bcfd97 | 238 | m_server = NULL; |
f4ada568 GL |
239 | } |
240 | ||
f6bcfd97 | 241 | bool wxTCPServer::Create(const wxString& serverName) |
f4ada568 | 242 | { |
f6bcfd97 BP |
243 | // Destroy previous server, if any |
244 | if (m_server) | |
245 | { | |
246 | m_server->SetClientData(NULL); | |
247 | m_server->Destroy(); | |
248 | m_server = NULL; | |
249 | } | |
f4ada568 | 250 | |
0dbfd66d VZ |
251 | wxSockAddress *addr = GetAddressFromName(serverName); |
252 | if ( !addr ) | |
d775fa82 | 253 | return false; |
0dbfd66d VZ |
254 | |
255 | #ifdef __UNIX_LIKE__ | |
256 | mode_t umaskOld; | |
257 | if ( addr->Type() == wxSockAddress::UNIX ) | |
258 | { | |
259 | // ensure that the file doesn't exist as otherwise calling socket() would | |
260 | // fail | |
401eb3de | 261 | int rc = remove(serverName.fn_str()); |
0dbfd66d VZ |
262 | if ( rc < 0 && errno != ENOENT ) |
263 | { | |
264 | delete addr; | |
265 | ||
d775fa82 | 266 | return false; |
0dbfd66d VZ |
267 | } |
268 | ||
269 | // also set the umask to prevent the others from reading our file | |
270 | umaskOld = umask(077); | |
271 | } | |
272 | else | |
273 | { | |
274 | // unused anyhow but shut down the compiler warnings | |
275 | umaskOld = 0; | |
276 | } | |
277 | #endif // __UNIX_LIKE__ | |
f4ada568 | 278 | |
f6bcfd97 | 279 | // Create a socket listening on the specified port |
0dbfd66d VZ |
280 | m_server = new wxSocketServer(*addr, SCKIPC_FLAGS); |
281 | ||
282 | #ifdef __UNIX_LIKE__ | |
283 | if ( addr->Type() == wxSockAddress::UNIX ) | |
284 | { | |
285 | // restore the umask | |
286 | umask(umaskOld); | |
287 | ||
288 | // save the file name to remove it later | |
289 | m_filename = serverName; | |
290 | } | |
291 | #endif // __UNIX_LIKE__ | |
292 | ||
293 | delete addr; | |
f6bcfd97 BP |
294 | |
295 | if (!m_server->Ok()) | |
296 | { | |
297 | m_server->Destroy(); | |
298 | m_server = NULL; | |
299 | ||
d775fa82 | 300 | return false; |
f6bcfd97 BP |
301 | } |
302 | ||
303 | m_server->SetEventHandler(*gs_handler, _SERVER_ONREQUEST_ID); | |
304 | m_server->SetClientData(this); | |
305 | m_server->SetNotify(wxSOCKET_CONNECTION_FLAG); | |
d775fa82 | 306 | m_server->Notify(true); |
f4ada568 | 307 | |
d775fa82 | 308 | return true; |
f4ada568 GL |
309 | } |
310 | ||
6e31e940 | 311 | wxTCPServer::~wxTCPServer() |
f4ada568 | 312 | { |
0dbfd66d VZ |
313 | if (m_server) |
314 | { | |
315 | m_server->SetClientData(NULL); | |
316 | m_server->Destroy(); | |
317 | } | |
318 | ||
319 | #ifdef __UNIX_LIKE__ | |
320 | if ( !m_filename.empty() ) | |
321 | { | |
401eb3de | 322 | if ( remove(m_filename.fn_str()) != 0 ) |
0dbfd66d VZ |
323 | { |
324 | wxLogDebug(_T("Stale AF_UNIX file '%s' left."), m_filename.c_str()); | |
325 | } | |
326 | } | |
327 | #endif // __UNIX_LIKE__ | |
f4ada568 GL |
328 | } |
329 | ||
e22036dc | 330 | wxConnectionBase *wxTCPServer::OnAcceptConnection( const wxString& WXUNUSED(topic) ) |
f4ada568 GL |
331 | { |
332 | return new wxTCPConnection(); | |
333 | } | |
334 | ||
cdc59bb6 | 335 | // -------------------------------------------------------------------------- |
f4ada568 | 336 | // wxTCPConnection |
cdc59bb6 | 337 | // -------------------------------------------------------------------------- |
f4ada568 | 338 | |
cdc59bb6 | 339 | wxTCPConnection::wxTCPConnection () : wxConnectionBase() |
f4ada568 | 340 | { |
cdc59bb6 GRG |
341 | m_sock = NULL; |
342 | m_sockstrm = NULL; | |
343 | m_codeci = NULL; | |
344 | m_codeco = NULL; | |
f4ada568 GL |
345 | } |
346 | ||
b814b812 JS |
347 | wxTCPConnection::wxTCPConnection(wxChar *buffer, int size) |
348 | : wxConnectionBase(buffer, size) | |
7921cf2b | 349 | { |
b814b812 JS |
350 | m_sock = NULL; |
351 | m_sockstrm = NULL; | |
352 | m_codeci = NULL; | |
353 | m_codeco = NULL; | |
7921cf2b JS |
354 | } |
355 | ||
6e31e940 | 356 | wxTCPConnection::~wxTCPConnection () |
f4ada568 | 357 | { |
b814b812 | 358 | Disconnect(); |
3adb47a9 | 359 | |
e5b502f3 GRG |
360 | if (m_sock) |
361 | { | |
362 | m_sock->SetClientData(NULL); | |
363 | m_sock->Destroy(); | |
364 | } | |
8913c40c RR |
365 | |
366 | /* Delete after destroy */ | |
367 | wxDELETE(m_codeci); | |
368 | wxDELETE(m_codeco); | |
369 | wxDELETE(m_sockstrm); | |
f4ada568 GL |
370 | } |
371 | ||
cb43b372 | 372 | void wxTCPConnection::Compress(bool WXUNUSED(on)) |
f4ada568 GL |
373 | { |
374 | // Use wxLZWStream | |
375 | } | |
376 | ||
377 | // Calls that CLIENT can make. | |
6e31e940 | 378 | bool wxTCPConnection::Disconnect () |
f4ada568 | 379 | { |
b814b812 | 380 | if ( !GetConnected() ) |
d775fa82 | 381 | return true; |
f4ada568 | 382 | // Send the the disconnect message to the peer. |
75ed1d15 | 383 | m_codeco->Write8(IPC_DISCONNECT); |
d775fa82 | 384 | m_sock->Notify(false); |
f4ada568 | 385 | m_sock->Close(); |
d775fa82 | 386 | SetConnected(false); |
f4ada568 | 387 | |
d775fa82 | 388 | return true; |
f4ada568 GL |
389 | } |
390 | ||
0834112f | 391 | bool wxTCPConnection::Execute(const wxChar *data, int size, wxIPCFormat format) |
f4ada568 GL |
392 | { |
393 | if (!m_sock->IsConnected()) | |
d775fa82 | 394 | return false; |
f4ada568 GL |
395 | |
396 | // Prepare EXECUTE message | |
75ed1d15 GL |
397 | m_codeco->Write8(IPC_EXECUTE); |
398 | m_codeco->Write8(format); | |
0834112f | 399 | |
f4ada568 | 400 | if (size < 0) |
9d860992 | 401 | size = (wxStrlen(data) + 1) * sizeof(wxChar); // includes final NUL |
0834112f GRG |
402 | |
403 | m_codeco->Write32(size); | |
404 | m_sockstrm->Write(data, size); | |
f4ada568 | 405 | |
d775fa82 | 406 | return true; |
f4ada568 GL |
407 | } |
408 | ||
d38e8d5f | 409 | wxChar *wxTCPConnection::Request (const wxString& item, int *size, wxIPCFormat format) |
f4ada568 GL |
410 | { |
411 | if (!m_sock->IsConnected()) | |
412 | return NULL; | |
413 | ||
75ed1d15 GL |
414 | m_codeco->Write8(IPC_REQUEST); |
415 | m_codeco->WriteString(item); | |
416 | m_codeco->Write8(format); | |
f4ada568 GL |
417 | |
418 | // If Unpack doesn't initialize it. | |
419 | int ret; | |
420 | ||
75ed1d15 | 421 | ret = m_codeci->Read8(); |
f4ada568 GL |
422 | if (ret == IPC_FAIL) |
423 | return NULL; | |
0834112f GRG |
424 | else |
425 | { | |
f4ada568 | 426 | size_t s; |
f4ada568 | 427 | |
75ed1d15 | 428 | s = m_codeci->Read32(); |
8913c40c | 429 | |
b814b812 JS |
430 | wxChar *data = GetBufferAtLeast( s ); |
431 | wxASSERT_MSG(data != NULL, | |
432 | _T("Buffer too small in wxTCPConnection::Request") ); | |
fae05df5 | 433 | m_sockstrm->Read(data, s); |
f4ada568 GL |
434 | |
435 | if (size) | |
436 | *size = s; | |
437 | return data; | |
438 | } | |
439 | } | |
440 | ||
783b6cfd | 441 | bool wxTCPConnection::Poke (const wxString& item, wxChar *data, int size, wxIPCFormat format) |
f4ada568 GL |
442 | { |
443 | if (!m_sock->IsConnected()) | |
d775fa82 | 444 | return false; |
f4ada568 | 445 | |
75ed1d15 GL |
446 | m_codeco->Write8(IPC_POKE); |
447 | m_codeco->WriteString(item); | |
448 | m_codeco->Write8(format); | |
0834112f | 449 | |
f4ada568 | 450 | if (size < 0) |
9d860992 | 451 | size = (wxStrlen(data) + 1) * sizeof(wxChar); // includes final NUL |
0834112f GRG |
452 | |
453 | m_codeco->Write32(size); | |
454 | m_sockstrm->Write(data, size); | |
f4ada568 | 455 | |
d775fa82 | 456 | return true; |
f4ada568 GL |
457 | } |
458 | ||
459 | bool wxTCPConnection::StartAdvise (const wxString& item) | |
460 | { | |
461 | int ret; | |
462 | ||
463 | if (!m_sock->IsConnected()) | |
d775fa82 | 464 | return false; |
f4ada568 | 465 | |
75ed1d15 GL |
466 | m_codeco->Write8(IPC_ADVISE_START); |
467 | m_codeco->WriteString(item); | |
f4ada568 | 468 | |
75ed1d15 | 469 | ret = m_codeci->Read8(); |
f4ada568 GL |
470 | |
471 | if (ret != IPC_FAIL) | |
d775fa82 | 472 | return true; |
f4ada568 | 473 | else |
d775fa82 | 474 | return false; |
f4ada568 GL |
475 | } |
476 | ||
477 | bool wxTCPConnection::StopAdvise (const wxString& item) | |
478 | { | |
479 | int msg; | |
480 | ||
481 | if (!m_sock->IsConnected()) | |
d775fa82 | 482 | return false; |
f4ada568 | 483 | |
75ed1d15 GL |
484 | m_codeco->Write8(IPC_ADVISE_STOP); |
485 | m_codeco->WriteString(item); | |
f4ada568 | 486 | |
75ed1d15 | 487 | msg = m_codeci->Read8(); |
f4ada568 GL |
488 | |
489 | if (msg != IPC_FAIL) | |
d775fa82 | 490 | return true; |
f4ada568 | 491 | else |
d775fa82 | 492 | return false; |
f4ada568 GL |
493 | } |
494 | ||
495 | // Calls that SERVER can make | |
496 | bool wxTCPConnection::Advise (const wxString& item, | |
783b6cfd | 497 | wxChar *data, int size, wxIPCFormat format) |
f4ada568 GL |
498 | { |
499 | if (!m_sock->IsConnected()) | |
d775fa82 | 500 | return false; |
f4ada568 | 501 | |
75ed1d15 GL |
502 | m_codeco->Write8(IPC_ADVISE); |
503 | m_codeco->WriteString(item); | |
504 | m_codeco->Write8(format); | |
0834112f | 505 | |
f4ada568 | 506 | if (size < 0) |
9d860992 | 507 | size = (wxStrlen(data) + 1) * sizeof(wxChar); // includes final NUL |
0834112f GRG |
508 | |
509 | m_codeco->Write32(size); | |
510 | m_sockstrm->Write(data, size); | |
f4ada568 | 511 | |
d775fa82 | 512 | return true; |
f4ada568 GL |
513 | } |
514 | ||
cdc59bb6 GRG |
515 | // -------------------------------------------------------------------------- |
516 | // wxTCPEventHandler (private class) | |
517 | // -------------------------------------------------------------------------- | |
518 | ||
519 | BEGIN_EVENT_TABLE(wxTCPEventHandler, wxEvtHandler) | |
520 | EVT_SOCKET(_CLIENT_ONREQUEST_ID, wxTCPEventHandler::Client_OnRequest) | |
521 | EVT_SOCKET(_SERVER_ONREQUEST_ID, wxTCPEventHandler::Server_OnRequest) | |
522 | END_EVENT_TABLE() | |
523 | ||
524 | void wxTCPEventHandler::Client_OnRequest(wxSocketEvent &event) | |
f4ada568 | 525 | { |
cdc59bb6 | 526 | wxSocketBase *sock = event.GetSocket(); |
8913c40c RR |
527 | if (!sock) { /* No socket, no glory */ |
528 | return ; | |
529 | } | |
cdc59bb6 | 530 | wxSocketNotify evt = event.GetSocketEvent(); |
1f0500b3 | 531 | wxTCPConnection *connection = (wxTCPConnection *)(sock->GetClientData()); |
cdc59bb6 | 532 | |
e5b502f3 GRG |
533 | // This socket is being deleted; skip this event |
534 | if (!connection) | |
535 | return; | |
536 | ||
75ed1d15 | 537 | wxDataInputStream *codeci; |
26a25f95 | 538 | wxDataOutputStream *codeco; |
fae05df5 | 539 | wxSocketStream *sockstrm; |
f4ada568 GL |
540 | wxString topic_name = connection->m_topic; |
541 | wxString item; | |
542 | ||
e5b502f3 | 543 | // We lost the connection: destroy everything |
0834112f GRG |
544 | if (evt == wxSOCKET_LOST) |
545 | { | |
d775fa82 | 546 | sock->Notify(false); |
cdc59bb6 | 547 | sock->Close(); |
f4ada568 GL |
548 | connection->OnDisconnect(); |
549 | return; | |
550 | } | |
551 | ||
552 | // Receive message number. | |
75ed1d15 GL |
553 | codeci = connection->m_codeci; |
554 | codeco = connection->m_codeco; | |
fae05df5 | 555 | sockstrm = connection->m_sockstrm; |
999836aa | 556 | int msg = codeci->Read8(); |
f4ada568 | 557 | |
0834112f GRG |
558 | switch (msg) |
559 | { | |
560 | case IPC_EXECUTE: | |
561 | { | |
d38e8d5f | 562 | wxChar *data; |
26a25f95 | 563 | size_t size; |
0d2a2b60 | 564 | wxIPCFormat format; |
26a25f95 | 565 | |
0d2a2b60 | 566 | format = (wxIPCFormat)codeci->Read8(); |
75ed1d15 | 567 | size = codeci->Read32(); |
8913c40c | 568 | |
b814b812 JS |
569 | data = connection->GetBufferAtLeast( size ); |
570 | wxASSERT_MSG(data != NULL, | |
571 | _T("Buffer too small in wxTCPEventHandler::Client_OnRequest") ); | |
fae05df5 | 572 | sockstrm->Read(data, size); |
f4ada568 | 573 | |
e0fbcda6 | 574 | connection->OnExecute (topic_name, data, size, format); |
f4ada568 | 575 | |
f4ada568 GL |
576 | break; |
577 | } | |
0834112f GRG |
578 | case IPC_ADVISE: |
579 | { | |
d38e8d5f | 580 | wxChar *data; |
f4ada568 | 581 | size_t size; |
0d2a2b60 | 582 | wxIPCFormat format; |
f4ada568 | 583 | |
75ed1d15 | 584 | item = codeci->ReadString(); |
0d2a2b60 | 585 | format = (wxIPCFormat)codeci->Read8(); |
75ed1d15 | 586 | size = codeci->Read32(); |
b814b812 JS |
587 | data = connection->GetBufferAtLeast( size ); |
588 | wxASSERT_MSG(data != NULL, | |
589 | _T("Buffer too small in wxTCPEventHandler::Client_OnRequest") ); | |
fae05df5 | 590 | sockstrm->Read(data, size); |
26a25f95 | 591 | |
e0fbcda6 | 592 | connection->OnAdvise (topic_name, item, data, size, format); |
f4ada568 | 593 | |
f4ada568 GL |
594 | break; |
595 | } | |
0834112f GRG |
596 | case IPC_ADVISE_START: |
597 | { | |
75ed1d15 | 598 | item = codeci->ReadString(); |
f4ada568 GL |
599 | |
600 | bool ok = connection->OnStartAdvise (topic_name, item); | |
601 | if (ok) | |
75ed1d15 | 602 | codeco->Write8(IPC_ADVISE_START); |
f4ada568 | 603 | else |
75ed1d15 | 604 | codeco->Write8(IPC_FAIL); |
f4ada568 GL |
605 | |
606 | break; | |
607 | } | |
0834112f GRG |
608 | case IPC_ADVISE_STOP: |
609 | { | |
75ed1d15 | 610 | item = codeci->ReadString(); |
f4ada568 GL |
611 | |
612 | bool ok = connection->OnStopAdvise (topic_name, item); | |
613 | if (ok) | |
75ed1d15 | 614 | codeco->Write8(IPC_ADVISE_STOP); |
f4ada568 | 615 | else |
75ed1d15 | 616 | codeco->Write8(IPC_FAIL); |
f4ada568 GL |
617 | |
618 | break; | |
619 | } | |
0834112f GRG |
620 | case IPC_POKE: |
621 | { | |
0d2a2b60 | 622 | wxIPCFormat format; |
f4ada568 | 623 | size_t size; |
783b6cfd | 624 | wxChar *data; |
f4ada568 | 625 | |
75ed1d15 | 626 | item = codeci->ReadString(); |
0d2a2b60 | 627 | format = (wxIPCFormat)codeci->Read8(); |
75ed1d15 | 628 | size = codeci->Read32(); |
b814b812 JS |
629 | data = connection->GetBufferAtLeast( size ); |
630 | wxASSERT_MSG(data != NULL, | |
631 | _T("Buffer too small in wxTCPEventHandler::Client_OnRequest") ); | |
fae05df5 | 632 | sockstrm->Read(data, size); |
26a25f95 | 633 | |
f4ada568 GL |
634 | connection->OnPoke (topic_name, item, data, size, format); |
635 | ||
f4ada568 GL |
636 | break; |
637 | } | |
0834112f GRG |
638 | case IPC_REQUEST: |
639 | { | |
0d2a2b60 | 640 | wxIPCFormat format; |
f4ada568 | 641 | |
75ed1d15 | 642 | item = codeci->ReadString(); |
0d2a2b60 | 643 | format = (wxIPCFormat)codeci->Read8(); |
f4ada568 GL |
644 | |
645 | int user_size = -1; | |
d38e8d5f | 646 | wxChar *user_data = connection->OnRequest (topic_name, item, &user_size, format); |
f4ada568 | 647 | |
0834112f GRG |
648 | if (user_data) |
649 | { | |
75ed1d15 | 650 | codeco->Write8(IPC_REQUEST_REPLY); |
0834112f GRG |
651 | |
652 | if (user_size == -1) | |
9d860992 | 653 | user_size = (wxStrlen(user_data) + 1) * sizeof(wxChar); // includes final NUL |
0834112f GRG |
654 | |
655 | codeco->Write32(user_size); | |
656 | sockstrm->Write(user_data, user_size); | |
657 | } | |
658 | else | |
75ed1d15 | 659 | codeco->Write8(IPC_FAIL); |
f4ada568 GL |
660 | |
661 | break; | |
662 | } | |
0834112f GRG |
663 | case IPC_DISCONNECT: |
664 | { | |
d775fa82 | 665 | sock->Notify(false); |
cdc59bb6 | 666 | sock->Close(); |
d775fa82 | 667 | connection->SetConnected(false); |
f4ada568 GL |
668 | connection->OnDisconnect(); |
669 | break; | |
670 | } | |
671 | default: | |
75ed1d15 | 672 | codeco->Write8(IPC_FAIL); |
f4ada568 GL |
673 | break; |
674 | } | |
675 | } | |
676 | ||
cdc59bb6 | 677 | void wxTCPEventHandler::Server_OnRequest(wxSocketEvent &event) |
f4ada568 | 678 | { |
cdc59bb6 | 679 | wxSocketServer *server = (wxSocketServer *) event.GetSocket(); |
8913c40c RR |
680 | if (!server) { /* No server, Then exit */ |
681 | return ; | |
682 | } | |
f6bcfd97 | 683 | wxTCPServer *ipcserv = (wxTCPServer *) server->GetClientData(); |
f4ada568 | 684 | |
e5b502f3 GRG |
685 | // This socket is being deleted; skip this event |
686 | if (!ipcserv) | |
687 | return; | |
688 | ||
cdc59bb6 | 689 | if (event.GetSocketEvent() != wxSOCKET_CONNECTION) |
f4ada568 GL |
690 | return; |
691 | ||
3adb47a9 | 692 | // Accept the connection, getting a new socket |
cdc59bb6 | 693 | wxSocketBase *sock = server->Accept(); |
8913c40c RR |
694 | if (!sock) { /* No socket, no glory */ |
695 | return ; | |
696 | } | |
0834112f | 697 | if (!sock->Ok()) |
3adb47a9 GRG |
698 | { |
699 | sock->Destroy(); | |
0834112f | 700 | return; |
3adb47a9 | 701 | } |
f4ada568 | 702 | |
cdc59bb6 GRG |
703 | wxSocketStream *stream = new wxSocketStream(*sock); |
704 | wxDataInputStream *codeci = new wxDataInputStream(*stream); | |
705 | wxDataOutputStream *codeco = new wxDataOutputStream(*stream); | |
f4ada568 | 706 | |
f4ada568 | 707 | int msg; |
75ed1d15 | 708 | msg = codeci->Read8(); |
f4ada568 | 709 | |
0834112f GRG |
710 | if (msg == IPC_CONNECT) |
711 | { | |
f4ada568 | 712 | wxString topic_name; |
75ed1d15 | 713 | topic_name = codeci->ReadString(); |
f4ada568 | 714 | |
f4ada568 GL |
715 | wxTCPConnection *new_connection = |
716 | (wxTCPConnection *)ipcserv->OnAcceptConnection (topic_name); | |
3adb47a9 | 717 | |
0834112f GRG |
718 | if (new_connection) |
719 | { | |
3adb47a9 | 720 | if (new_connection->IsKindOf(CLASSINFO(wxTCPConnection))) |
0834112f | 721 | { |
3adb47a9 GRG |
722 | // Acknowledge success |
723 | codeco->Write8(IPC_CONNECT); | |
724 | new_connection->m_topic = topic_name; | |
26a25f95 | 725 | new_connection->m_sock = sock; |
3adb47a9 GRG |
726 | new_connection->m_sockstrm = stream; |
727 | new_connection->m_codeci = codeci; | |
728 | new_connection->m_codeco = codeco; | |
cdc59bb6 GRG |
729 | sock->SetEventHandler(*gs_handler, _CLIENT_ONREQUEST_ID); |
730 | sock->SetClientData(new_connection); | |
3adb47a9 | 731 | sock->SetNotify(wxSOCKET_INPUT_FLAG | wxSOCKET_LOST_FLAG); |
d775fa82 | 732 | sock->Notify(true); |
f4ada568 GL |
733 | return; |
734 | } | |
3adb47a9 GRG |
735 | else |
736 | { | |
737 | delete new_connection; | |
738 | // and fall through to delete everything else | |
739 | } | |
f4ada568 GL |
740 | } |
741 | } | |
3adb47a9 GRG |
742 | |
743 | // Something went wrong, send failure message and delete everything | |
744 | codeco->Write8(IPC_FAIL); | |
745 | ||
746 | delete codeco; | |
747 | delete codeci; | |
748 | delete stream; | |
749 | sock->Destroy(); | |
f4ada568 | 750 | } |
35a4dab7 | 751 | |
cdc59bb6 GRG |
752 | // -------------------------------------------------------------------------- |
753 | // wxTCPEventHandlerModule (private class) | |
754 | // -------------------------------------------------------------------------- | |
755 | ||
ed4c6c69 | 756 | class wxTCPEventHandlerModule: public wxModule |
cdc59bb6 GRG |
757 | { |
758 | DECLARE_DYNAMIC_CLASS(wxTCPEventHandlerModule) | |
759 | ||
760 | public: | |
d775fa82 | 761 | bool OnInit() { gs_handler = new wxTCPEventHandler(); return true; } |
cdc59bb6 GRG |
762 | void OnExit() { wxDELETE(gs_handler); } |
763 | }; | |
764 | ||
765 | IMPLEMENT_DYNAMIC_CLASS(wxTCPEventHandlerModule, wxModule) | |
766 | ||
767 | ||
35a4dab7 | 768 | #endif |
d5da0ce7 | 769 | // wxUSE_SOCKETS && wxUSE_IPC && wxUSE_STREAMS |