1 /////////////////////////////////////////////////////////////////////////////
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
10 // Copyright: (c) Julian Smart 1993
11 // (c) Guilhem Lavaux 1997, 1998
12 // (c) 2000 Guillermo Rodriguez <guille@iies.es>
13 // Licence: wxWindows licence
14 /////////////////////////////////////////////////////////////////////////////
21 #if wxUSE_SOCKETS && wxUSE_IPC
23 #include "wx/ipcbase.h"
24 #include "wx/socket.h"
25 #include "wx/sckstrm.h"
26 #include "wx/datstrm.h"
29 * Mini-DDE implementation
31 Most transactions involve a topic name and an item name (choose these
32 as befits your application).
36 - ask the server to execute commands (data) associated with a topic
37 - request data from server by topic and item
38 - poke data into the server
39 - ask the server to start an advice loop on topic/item
40 - ask the server to stop an advice loop
44 - respond to execute, request, poke and advice start/stop
45 - send advise data to client
47 Note that this limits the server in the ways it can send data to the
48 client, i.e. it can't send unsolicited information.
52 class WXDLLIMPEXP_FWD_NET wxTCPServer
;
53 class WXDLLIMPEXP_FWD_NET wxTCPClient
;
55 class WXDLLIMPEXP_NET wxTCPConnection
: public wxConnectionBase
58 wxTCPConnection(void *buffer
, size_t size
);
60 virtual ~wxTCPConnection();
62 // To enable the compressor (NOTE: not implemented!)
63 void Compress(bool on
);
66 // implement base class pure virtual methods
67 virtual const void *Request(const wxString
& item
,
69 wxIPCFormat format
= wxIPC_TEXT
);
70 virtual bool StartAdvise(const wxString
& item
);
71 virtual bool StopAdvise(const wxString
& item
);
72 virtual bool Disconnect(void);
75 virtual bool DoExecute(const void *data
, size_t size
, wxIPCFormat format
);
76 virtual bool DoPoke(const wxString
& item
, const void *data
, size_t size
,
78 virtual bool DoAdvise(const wxString
& item
, const void *data
, size_t size
,
83 wxSocketStream
*m_sockstrm
;
84 wxDataInputStream
*m_codeci
;
85 wxDataOutputStream
*m_codeco
;
88 friend class wxTCPServer
;
89 friend class wxTCPClient
;
90 friend class wxTCPEventHandler
;
92 DECLARE_NO_COPY_CLASS(wxTCPConnection
)
93 DECLARE_DYNAMIC_CLASS(wxTCPConnection
)
96 class WXDLLIMPEXP_NET wxTCPServer
: public wxServerBase
100 virtual ~wxTCPServer();
102 // Returns false on error (e.g. port number is already in use)
103 virtual bool Create(const wxString
& serverName
);
105 virtual wxConnectionBase
*OnAcceptConnection(const wxString
& topic
);
107 wxTCPConnection
*topLevelConnection
;
110 wxSocketServer
*m_server
;
113 // the name of the file associated to the Unix domain socket, may be empty
115 #endif // __UNIX_LIKE__
117 DECLARE_NO_COPY_CLASS(wxTCPServer
)
118 DECLARE_DYNAMIC_CLASS(wxTCPServer
)
121 class WXDLLIMPEXP_NET wxTCPClient
: public wxClientBase
125 virtual ~wxTCPClient();
127 virtual bool ValidHost(const wxString
& host
);
129 // Call this to make a connection. Returns NULL if cannot.
130 virtual wxConnectionBase
*MakeConnection(const wxString
& host
,
131 const wxString
& server
,
132 const wxString
& topic
);
134 // Callbacks to CLIENT - override at will
135 virtual wxConnectionBase
*OnMakeConnection();
138 DECLARE_DYNAMIC_CLASS(wxTCPClient
)
141 #endif // wxUSE_SOCKETS && wxUSE_IPC
143 #endif // _WX_SCKIPC_H