]>
git.saurik.com Git - wxWidgets.git/blob - src/common/sckipc.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/sckipc.cpp
3 // Purpose: Interprocess communication implementation (wxSocket version)
4 // Author: Julian Smart
5 // Modified by: Guilhem Lavaux (big rewrite) May 1997, 1998
6 // Guillermo Rodriguez (updated for wxSocket v2) Jan 2000
7 // (callbacks deprecated) Mar 2000
8 // Vadim Zeitlin (added support for Unix sockets) Apr 2002
11 // Copyright: (c) Julian Smart 1993
12 // (c) Guilhem Lavaux 1997, 1998
13 // (c) 2000 Guillermo Rodriguez <guille@iies.es>
14 // Licence: wxWindows licence
15 /////////////////////////////////////////////////////////////////////////////
17 // ==========================================================================
19 // ==========================================================================
21 // --------------------------------------------------------------------------
23 // --------------------------------------------------------------------------
25 // For compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
32 #if wxUSE_SOCKETS && wxUSE_IPC && wxUSE_STREAMS
34 #include "wx/sckipc.h"
39 #include "wx/module.h"
46 #include "wx/socket.h"
48 // --------------------------------------------------------------------------
49 // macros and constants
50 // --------------------------------------------------------------------------
52 // It seems to be already defined somewhere in the Xt includes.
71 // All sockets will be created with the following flags
72 #define SCKIPC_FLAGS (wxSOCKET_WAITALL|wxSOCKET_REUSEADDR)
74 // headers needed for umask()
76 #include <sys/types.h>
78 #endif // __UNIX_LIKE__
80 // ----------------------------------------------------------------------------
82 // ----------------------------------------------------------------------------
84 // get the address object for the given server name, the caller must delete it
85 static wxSockAddress
*
86 GetAddressFromName(const wxString
& serverName
, const wxString
& host
= wxEmptyString
)
88 // we always use INET sockets under non-Unix systems
89 #if defined(__UNIX__) && !defined(__WINDOWS__) && !defined(__WINE__)
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
)
94 wxUNIXaddress
*addr
= new wxUNIXaddress
;
95 addr
->Filename(serverName
);
101 wxIPV4address
*addr
= new wxIPV4address
;
102 addr
->Service(serverName
);
105 addr
->Hostname(host
);
112 // --------------------------------------------------------------------------
113 // wxTCPEventHandler stuff (private class)
114 // --------------------------------------------------------------------------
116 class wxTCPEventHandler
: public wxEvtHandler
119 wxTCPEventHandler() : wxEvtHandler() {}
121 void Client_OnRequest(wxSocketEvent
& event
);
122 void Server_OnRequest(wxSocketEvent
& event
);
124 DECLARE_EVENT_TABLE()
125 DECLARE_NO_COPY_CLASS(wxTCPEventHandler
)
130 _CLIENT_ONREQUEST_ID
= 1000,
134 static wxTCPEventHandler
*gs_handler
= NULL
;
136 // ==========================================================================
138 // ==========================================================================
140 IMPLEMENT_DYNAMIC_CLASS(wxTCPServer
, wxServerBase
)
141 IMPLEMENT_DYNAMIC_CLASS(wxTCPClient
, wxClientBase
)
142 IMPLEMENT_CLASS(wxTCPConnection
, wxConnectionBase
)
144 // --------------------------------------------------------------------------
146 // --------------------------------------------------------------------------
148 wxTCPClient::wxTCPClient () : wxClientBase()
152 wxTCPClient::~wxTCPClient ()
156 bool wxTCPClient::ValidHost(const wxString
& host
)
160 return addr
.Hostname(host
);
163 wxConnectionBase
*wxTCPClient::MakeConnection (const wxString
& host
,
164 const wxString
& serverName
,
165 const wxString
& topic
)
167 wxSockAddress
*addr
= GetAddressFromName(serverName
, host
);
171 wxSocketClient
*client
= new wxSocketClient(SCKIPC_FLAGS
);
172 wxSocketStream
*stream
= new wxSocketStream(*client
);
173 wxDataInputStream
*data_is
= new wxDataInputStream(*stream
);
174 wxDataOutputStream
*data_os
= new wxDataOutputStream(*stream
);
176 bool ok
= client
->Connect(*addr
);
183 // Send topic name, and enquire whether this has succeeded
184 data_os
->Write8(IPC_CONNECT
);
185 data_os
->WriteString(topic
);
187 msg
= data_is
->Read8();
190 if (msg
== IPC_CONNECT
)
192 wxTCPConnection
*connection
= (wxTCPConnection
*)OnMakeConnection ();
196 if (connection
->IsKindOf(CLASSINFO(wxTCPConnection
)))
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
;
203 client
->SetEventHandler(*gs_handler
, _CLIENT_ONREQUEST_ID
);
204 client
->SetClientData(connection
);
205 client
->SetNotify(wxSOCKET_INPUT_FLAG
| wxSOCKET_LOST_FLAG
);
206 client
->Notify(true);
212 // and fall through to delete everything else
218 // Something went wrong, delete everything
227 wxConnectionBase
*wxTCPClient::OnMakeConnection()
229 return new wxTCPConnection();
232 // --------------------------------------------------------------------------
234 // --------------------------------------------------------------------------
236 wxTCPServer::wxTCPServer () : wxServerBase()
241 bool wxTCPServer::Create(const wxString
& serverName
)
243 // Destroy previous server, if any
246 m_server
->SetClientData(NULL
);
251 wxSockAddress
*addr
= GetAddressFromName(serverName
);
257 if ( addr
->Type() == wxSockAddress::UNIX
)
259 // ensure that the file doesn't exist as otherwise calling socket() would
261 int rc
= remove(serverName
.fn_str());
262 if ( rc
< 0 && errno
!= ENOENT
)
269 // also set the umask to prevent the others from reading our file
270 umaskOld
= umask(077);
274 // unused anyhow but shut down the compiler warnings
277 #endif // __UNIX_LIKE__
279 // Create a socket listening on the specified port
280 m_server
= new wxSocketServer(*addr
, SCKIPC_FLAGS
);
283 if ( addr
->Type() == wxSockAddress::UNIX
)
288 // save the file name to remove it later
289 m_filename
= serverName
;
291 #endif // __UNIX_LIKE__
303 m_server
->SetEventHandler(*gs_handler
, _SERVER_ONREQUEST_ID
);
304 m_server
->SetClientData(this);
305 m_server
->SetNotify(wxSOCKET_CONNECTION_FLAG
);
306 m_server
->Notify(true);
311 wxTCPServer::~wxTCPServer()
315 m_server
->SetClientData(NULL
);
320 if ( !m_filename
.empty() )
322 if ( remove(m_filename
.fn_str()) != 0 )
324 wxLogDebug(_T("Stale AF_UNIX file '%s' left."), m_filename
.c_str());
327 #endif // __UNIX_LIKE__
330 wxConnectionBase
*wxTCPServer::OnAcceptConnection( const wxString
& WXUNUSED(topic
) )
332 return new wxTCPConnection();
335 // --------------------------------------------------------------------------
337 // --------------------------------------------------------------------------
339 wxTCPConnection::wxTCPConnection () : wxConnectionBase()
347 wxTCPConnection::wxTCPConnection(void *buffer
, size_t size
)
348 : wxConnectionBase(buffer
, size
)
356 wxTCPConnection::~wxTCPConnection ()
362 m_sock
->SetClientData(NULL
);
366 /* Delete after destroy */
369 wxDELETE(m_sockstrm
);
372 void wxTCPConnection::Compress(bool WXUNUSED(on
))
377 // Calls that CLIENT can make.
378 bool wxTCPConnection::Disconnect ()
380 if ( !GetConnected() )
382 // Send the the disconnect message to the peer.
383 m_codeco
->Write8(IPC_DISCONNECT
);
387 m_sock
->Notify(false);
396 bool wxTCPConnection::DoExecute(const void *data
, size_t size
, wxIPCFormat format
)
398 if (!m_sock
->IsConnected())
401 // Prepare EXECUTE message
402 m_codeco
->Write8(IPC_EXECUTE
);
403 m_codeco
->Write8(format
);
405 m_codeco
->Write32(size
);
406 m_sockstrm
->Write(data
, size
);
411 const void *wxTCPConnection::Request (const wxString
& item
, size_t *size
, wxIPCFormat format
)
413 if (!m_sock
->IsConnected())
416 m_codeco
->Write8(IPC_REQUEST
);
417 m_codeco
->WriteString(item
);
418 m_codeco
->Write8(format
);
420 // If Unpack doesn't initialize it.
423 ret
= m_codeci
->Read8();
428 size_t s
= m_codeci
->Read32();
430 void *data
= GetBufferAtLeast( s
);
431 wxASSERT_MSG(data
!= NULL
,
432 _T("Buffer too small in wxTCPConnection::Request") );
433 m_sockstrm
->Read(data
, s
);
441 bool wxTCPConnection::DoPoke (const wxString
& item
, const void *data
, size_t size
, wxIPCFormat format
)
443 if (!m_sock
->IsConnected())
446 m_codeco
->Write8(IPC_POKE
);
447 m_codeco
->WriteString(item
);
448 m_codeco
->Write8(format
);
450 m_codeco
->Write32(size
);
451 m_sockstrm
->Write(data
, size
);
456 bool wxTCPConnection::StartAdvise (const wxString
& item
)
460 if (!m_sock
->IsConnected())
463 m_codeco
->Write8(IPC_ADVISE_START
);
464 m_codeco
->WriteString(item
);
466 ret
= m_codeci
->Read8();
474 bool wxTCPConnection::StopAdvise (const wxString
& item
)
478 if (!m_sock
->IsConnected())
481 m_codeco
->Write8(IPC_ADVISE_STOP
);
482 m_codeco
->WriteString(item
);
484 msg
= m_codeci
->Read8();
492 // Calls that SERVER can make
493 bool wxTCPConnection::DoAdvise (const wxString
& item
,
494 const void *data
, size_t size
, wxIPCFormat format
)
496 if (!m_sock
->IsConnected())
499 m_codeco
->Write8(IPC_ADVISE
);
500 m_codeco
->WriteString(item
);
501 m_codeco
->Write8(format
);
503 m_codeco
->Write32(size
);
504 m_sockstrm
->Write(data
, size
);
509 // --------------------------------------------------------------------------
510 // wxTCPEventHandler (private class)
511 // --------------------------------------------------------------------------
513 BEGIN_EVENT_TABLE(wxTCPEventHandler
, wxEvtHandler
)
514 EVT_SOCKET(_CLIENT_ONREQUEST_ID
, wxTCPEventHandler::Client_OnRequest
)
515 EVT_SOCKET(_SERVER_ONREQUEST_ID
, wxTCPEventHandler::Server_OnRequest
)
518 void wxTCPEventHandler::Client_OnRequest(wxSocketEvent
&event
)
520 wxSocketBase
*sock
= event
.GetSocket();
521 if (!sock
) { /* No socket, no glory */
524 wxSocketNotify evt
= event
.GetSocketEvent();
525 wxTCPConnection
*connection
= (wxTCPConnection
*)(sock
->GetClientData());
527 // This socket is being deleted; skip this event
531 wxDataInputStream
*codeci
;
532 wxDataOutputStream
*codeco
;
533 wxSocketStream
*sockstrm
;
534 wxString topic_name
= connection
->m_topic
;
537 // We lost the connection: destroy everything
538 if (evt
== wxSOCKET_LOST
)
542 connection
->OnDisconnect();
546 // Receive message number.
547 codeci
= connection
->m_codeci
;
548 codeco
= connection
->m_codeco
;
549 sockstrm
= connection
->m_sockstrm
;
550 int msg
= codeci
->Read8();
560 format
= (wxIPCFormat
)codeci
->Read8();
561 size
= codeci
->Read32();
563 data
= connection
->GetBufferAtLeast( size
);
564 wxASSERT_MSG(data
!= NULL
,
565 _T("Buffer too small in wxTCPEventHandler::Client_OnRequest") );
566 sockstrm
->Read(data
, size
);
568 connection
->OnExecute (topic_name
, data
, size
, format
);
574 item
= codeci
->ReadString();
575 wxIPCFormat format
= (wxIPCFormat
)codeci
->Read8();
576 size_t size
= codeci
->Read32();
577 void *data
= connection
->GetBufferAtLeast( size
);
578 wxASSERT_MSG(data
!= NULL
,
579 _T("Buffer too small in wxTCPEventHandler::Client_OnRequest") );
580 sockstrm
->Read(data
, size
);
582 connection
->OnAdvise (topic_name
, item
, data
, size
, format
);
586 case IPC_ADVISE_START
:
588 item
= codeci
->ReadString();
590 bool ok
= connection
->OnStartAdvise (topic_name
, item
);
592 codeco
->Write8(IPC_ADVISE_START
);
594 codeco
->Write8(IPC_FAIL
);
598 case IPC_ADVISE_STOP
:
600 item
= codeci
->ReadString();
602 bool ok
= connection
->OnStopAdvise (topic_name
, item
);
604 codeco
->Write8(IPC_ADVISE_STOP
);
606 codeco
->Write8(IPC_FAIL
);
612 item
= codeci
->ReadString();
613 wxIPCFormat format
= (wxIPCFormat
)codeci
->Read8();
614 size_t size
= codeci
->Read32();
615 void *data
= connection
->GetBufferAtLeast( size
);
616 wxASSERT_MSG(data
!= NULL
,
617 _T("Buffer too small in wxTCPEventHandler::Client_OnRequest") );
618 sockstrm
->Read(data
, size
);
620 connection
->OnPoke (topic_name
, item
, data
, size
, format
);
628 item
= codeci
->ReadString();
629 format
= (wxIPCFormat
)codeci
->Read8();
631 size_t user_size
= wxNO_LEN
;
632 const void *user_data
= connection
->OnRequest (topic_name
, item
, &user_size
, format
);
636 codeco
->Write8(IPC_REQUEST_REPLY
);
638 if (user_size
== wxNO_LEN
)
644 user_size
= strlen((const char *)user_data
) + 1; // includes final NUL
646 case wxIPC_UNICODETEXT
:
647 user_size
= (wcslen((const wchar_t *)user_data
) + 1) * sizeof(wchar_t); // includes final NUL
654 codeco
->Write32(user_size
);
655 sockstrm
->Write(user_data
, user_size
);
658 codeco
->Write8(IPC_FAIL
);
666 connection
->SetConnected(false);
667 connection
->OnDisconnect();
671 codeco
->Write8(IPC_FAIL
);
676 void wxTCPEventHandler::Server_OnRequest(wxSocketEvent
&event
)
678 wxSocketServer
*server
= (wxSocketServer
*) event
.GetSocket();
679 if (!server
) { /* No server, Then exit */
682 wxTCPServer
*ipcserv
= (wxTCPServer
*) server
->GetClientData();
684 // This socket is being deleted; skip this event
688 if (event
.GetSocketEvent() != wxSOCKET_CONNECTION
)
691 // Accept the connection, getting a new socket
692 wxSocketBase
*sock
= server
->Accept();
693 if (!sock
) { /* No socket, no glory */
702 wxSocketStream
*stream
= new wxSocketStream(*sock
);
703 wxDataInputStream
*codeci
= new wxDataInputStream(*stream
);
704 wxDataOutputStream
*codeco
= new wxDataOutputStream(*stream
);
707 msg
= codeci
->Read8();
709 if (msg
== IPC_CONNECT
)
712 topic_name
= codeci
->ReadString();
714 wxTCPConnection
*new_connection
=
715 (wxTCPConnection
*)ipcserv
->OnAcceptConnection (topic_name
);
719 if (new_connection
->IsKindOf(CLASSINFO(wxTCPConnection
)))
721 // Acknowledge success
722 codeco
->Write8(IPC_CONNECT
);
723 new_connection
->m_topic
= topic_name
;
724 new_connection
->m_sock
= sock
;
725 new_connection
->m_sockstrm
= stream
;
726 new_connection
->m_codeci
= codeci
;
727 new_connection
->m_codeco
= codeco
;
728 sock
->SetEventHandler(*gs_handler
, _CLIENT_ONREQUEST_ID
);
729 sock
->SetClientData(new_connection
);
730 sock
->SetNotify(wxSOCKET_INPUT_FLAG
| wxSOCKET_LOST_FLAG
);
736 delete new_connection
;
737 // and fall through to delete everything else
742 // Something went wrong, send failure message and delete everything
743 codeco
->Write8(IPC_FAIL
);
751 // --------------------------------------------------------------------------
752 // wxTCPEventHandlerModule (private class)
753 // --------------------------------------------------------------------------
755 class wxTCPEventHandlerModule
: public wxModule
757 DECLARE_DYNAMIC_CLASS(wxTCPEventHandlerModule
)
760 bool OnInit() { gs_handler
= new wxTCPEventHandler(); return true; }
761 void OnExit() { wxDELETE(gs_handler
); }
764 IMPLEMENT_DYNAMIC_CLASS(wxTCPEventHandlerModule
, wxModule
)
768 // wxUSE_SOCKETS && wxUSE_IPC && wxUSE_STREAMS