1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: ipcbase.h
|
|
|
|
// Purpose: Base classes for IPC
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 4/1/98
|
|
|
|
// RCS-ID: $Id$
|
2003-03-17 10:34:04 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_IPCBASEH__
|
|
|
|
#define _WX_IPCBASEH__
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-07-03 16:36:10 +00:00
|
|
|
#pragma interface "ipcbase.h"
|
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/string.h"
|
|
|
|
|
1999-01-19 16:33:16 +00:00
|
|
|
enum wxIPCFormat
|
|
|
|
{
|
|
|
|
wxIPC_INVALID = 0,
|
|
|
|
wxIPC_TEXT = 1, /* CF_TEXT */
|
|
|
|
wxIPC_BITMAP = 2, /* CF_BITMAP */
|
|
|
|
wxIPC_METAFILE = 3, /* CF_METAFILEPICT */
|
|
|
|
wxIPC_SYLK = 4,
|
|
|
|
wxIPC_DIF = 5,
|
|
|
|
wxIPC_TIFF = 6,
|
|
|
|
wxIPC_OEMTEXT = 7, /* CF_OEMTEXT */
|
|
|
|
wxIPC_DIB = 8, /* CF_DIB */
|
|
|
|
wxIPC_PALETTE = 9,
|
|
|
|
wxIPC_PENDATA = 10,
|
|
|
|
wxIPC_RIFF = 11,
|
|
|
|
wxIPC_WAVE = 12,
|
|
|
|
wxIPC_UNICODETEXT = 13,
|
|
|
|
wxIPC_ENHMETAFILE = 14,
|
|
|
|
wxIPC_FILENAME = 15, /* CF_HDROP */
|
|
|
|
wxIPC_LOCALE = 16,
|
|
|
|
wxIPC_PRIVATE = 20
|
|
|
|
};
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxServerBase;
|
|
|
|
class WXDLLIMPEXP_BASE wxClientBase;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxConnectionBase: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxConnectionBase)
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
public:
|
Applied patch [ 600051 ] DDE and TCP improvements and fixes
By Michael Fielding
As discussed on wx-dev. some fixes and improvements for Interprocess Communication (IPC), using DDE and TCP.
1. DDE buffers were using a global buffer
2. TCP buffers were allocated each time needed, and Request would have caused memory leaks had it been used.
Fixed these both by using a self-resizing buffer in wxConnectionBase. Changed samples and docs to reflect the improved (but backward compatible) internal buffer management. wxConnectionBase could (in future) use wxMemoryBuffer.
3. IPC sample had trouble closing, causing crash, when closing server using window X button.
Because it was (effectively) trying to delete a window in OnExit, when that window was already destroyed. Fixed by making IPCDialog and MyConnection remember if they'd destroyed each other. It's not elegant, but either the connection or the window could be deleted first.
4. Docs for wxDDE... and wxTCP... duplicated eachother, supposed to have same API. Some parts unclear.
Patch removes dde and tcp-specific files (including from tipc.tex and classes.tex), and explains how ipc.h selects for you which one to use based on platform. Some other misc clarifications.
6. Client sample was suffering apparent memory leak because of not deleting connection object, and had a hack in there to do that.
In fact this was due to the derived OnDisconnect not deleting itself, as it does in base class. Mentioned need to do it in docs, fixed sample so that it does.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16907 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-01 14:48:16 +00:00
|
|
|
wxConnectionBase(wxChar *buffer, int size); // use external buffer
|
|
|
|
wxConnectionBase(); // use internal, adaptive buffer
|
|
|
|
wxConnectionBase(wxConnectionBase& copy);
|
|
|
|
~wxConnectionBase(void);
|
|
|
|
|
|
|
|
void SetConnected( bool c ) { m_connected = c; }
|
|
|
|
bool GetConnected() { return m_connected; }
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Calls that CLIENT can make
|
1999-10-04 20:15:38 +00:00
|
|
|
virtual bool Execute(const wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT ) = 0;
|
|
|
|
virtual bool Execute(const wxString& str) { return Execute(str, -1, wxIPC_TEXT); }
|
2002-09-03 11:22:56 +00:00
|
|
|
virtual wxChar *Request(const wxString& item, int *size = (int *) NULL, wxIPCFormat format = wxIPC_TEXT) = 0;
|
1999-04-12 22:20:19 +00:00
|
|
|
virtual bool Poke(const wxString& item, wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT) = 0;
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual bool StartAdvise(const wxString& item) = 0;
|
|
|
|
virtual bool StopAdvise(const wxString& item) = 0;
|
|
|
|
|
|
|
|
// Calls that SERVER can make
|
1999-04-12 22:20:19 +00:00
|
|
|
virtual bool Advise(const wxString& item, wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT) = 0;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Calls that both can make
|
|
|
|
virtual bool Disconnect(void) = 0;
|
|
|
|
|
|
|
|
// Callbacks to SERVER - override at will
|
2000-01-06 19:05:02 +00:00
|
|
|
virtual bool OnExecute ( const wxString& WXUNUSED(topic),
|
2002-09-03 11:22:56 +00:00
|
|
|
wxChar *WXUNUSED(data),
|
2000-01-06 19:05:02 +00:00
|
|
|
int WXUNUSED(size),
|
|
|
|
wxIPCFormat WXUNUSED(format) )
|
2004-09-16 18:13:32 +00:00
|
|
|
{ return false; };
|
2000-01-06 19:05:02 +00:00
|
|
|
|
2002-09-03 11:22:56 +00:00
|
|
|
virtual wxChar *OnRequest ( const wxString& WXUNUSED(topic),
|
2000-01-06 19:05:02 +00:00
|
|
|
const wxString& WXUNUSED(item),
|
|
|
|
int *WXUNUSED(size),
|
|
|
|
wxIPCFormat WXUNUSED(format) )
|
2002-09-03 11:22:56 +00:00
|
|
|
{ return (wxChar *) NULL; };
|
2000-01-06 19:05:02 +00:00
|
|
|
|
|
|
|
virtual bool OnPoke ( const wxString& WXUNUSED(topic),
|
|
|
|
const wxString& WXUNUSED(item),
|
|
|
|
wxChar *WXUNUSED(data),
|
|
|
|
int WXUNUSED(size),
|
|
|
|
wxIPCFormat WXUNUSED(format) )
|
2004-09-16 18:13:32 +00:00
|
|
|
{ return false; };
|
2000-01-06 19:05:02 +00:00
|
|
|
|
|
|
|
virtual bool OnStartAdvise ( const wxString& WXUNUSED(topic),
|
|
|
|
const wxString& WXUNUSED(item) )
|
2004-09-16 18:13:32 +00:00
|
|
|
{ return false; };
|
2000-01-06 19:05:02 +00:00
|
|
|
|
|
|
|
virtual bool OnStopAdvise ( const wxString& WXUNUSED(topic),
|
|
|
|
const wxString& WXUNUSED(item) )
|
2004-09-16 18:13:32 +00:00
|
|
|
{ return false; };
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
// Callbacks to CLIENT - override at will
|
2000-01-06 19:05:02 +00:00
|
|
|
virtual bool OnAdvise ( const wxString& WXUNUSED(topic),
|
|
|
|
const wxString& WXUNUSED(item),
|
2002-09-03 11:22:56 +00:00
|
|
|
wxChar *WXUNUSED(data),
|
2000-01-06 19:05:02 +00:00
|
|
|
int WXUNUSED(size),
|
|
|
|
wxIPCFormat WXUNUSED(format) )
|
2004-09-16 18:13:32 +00:00
|
|
|
{ return false; };
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// Callbacks to BOTH - override at will
|
2004-09-16 18:13:32 +00:00
|
|
|
// Default behaviour is to delete connection and return true
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual bool OnDisconnect(void) = 0;
|
Applied patch [ 600051 ] DDE and TCP improvements and fixes
By Michael Fielding
As discussed on wx-dev. some fixes and improvements for Interprocess Communication (IPC), using DDE and TCP.
1. DDE buffers were using a global buffer
2. TCP buffers were allocated each time needed, and Request would have caused memory leaks had it been used.
Fixed these both by using a self-resizing buffer in wxConnectionBase. Changed samples and docs to reflect the improved (but backward compatible) internal buffer management. wxConnectionBase could (in future) use wxMemoryBuffer.
3. IPC sample had trouble closing, causing crash, when closing server using window X button.
Because it was (effectively) trying to delete a window in OnExit, when that window was already destroyed. Fixed by making IPCDialog and MyConnection remember if they'd destroyed each other. It's not elegant, but either the connection or the window could be deleted first.
4. Docs for wxDDE... and wxTCP... duplicated eachother, supposed to have same API. Some parts unclear.
Patch removes dde and tcp-specific files (including from tipc.tex and classes.tex), and explains how ipc.h selects for you which one to use based on platform. Some other misc clarifications.
6. Client sample was suffering apparent memory leak because of not deleting connection object, and had a hack in there to do that.
In fact this was due to the derived OnDisconnect not deleting itself, as it does in base class. Mentioned need to do it in docs, fixed sample so that it does.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16907 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-01 14:48:16 +00:00
|
|
|
|
|
|
|
// return a buffer at least this size, reallocating buffer if needed
|
|
|
|
// returns NULL if using an inadequate user buffer - it can't be resized
|
|
|
|
wxChar * GetBufferAtLeast( size_t bytes );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool m_connected;
|
|
|
|
private:
|
|
|
|
wxChar * m_buffer;
|
|
|
|
size_t m_buffersize;
|
|
|
|
bool m_deletebufferwhendone;
|
2003-01-02 23:38:11 +00:00
|
|
|
|
2003-01-02 23:46:08 +00:00
|
|
|
// can't use DECLARE_NO_COPY_CLASS(wxConnectionBase) because we already
|
|
|
|
// have copy ctor but still forbid the default assignment operator
|
|
|
|
wxConnectionBase& operator=(const wxConnectionBase&);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
Applied patch [ 600051 ] DDE and TCP improvements and fixes
By Michael Fielding
As discussed on wx-dev. some fixes and improvements for Interprocess Communication (IPC), using DDE and TCP.
1. DDE buffers were using a global buffer
2. TCP buffers were allocated each time needed, and Request would have caused memory leaks had it been used.
Fixed these both by using a self-resizing buffer in wxConnectionBase. Changed samples and docs to reflect the improved (but backward compatible) internal buffer management. wxConnectionBase could (in future) use wxMemoryBuffer.
3. IPC sample had trouble closing, causing crash, when closing server using window X button.
Because it was (effectively) trying to delete a window in OnExit, when that window was already destroyed. Fixed by making IPCDialog and MyConnection remember if they'd destroyed each other. It's not elegant, but either the connection or the window could be deleted first.
4. Docs for wxDDE... and wxTCP... duplicated eachother, supposed to have same API. Some parts unclear.
Patch removes dde and tcp-specific files (including from tipc.tex and classes.tex), and explains how ipc.h selects for you which one to use based on platform. Some other misc clarifications.
6. Client sample was suffering apparent memory leak because of not deleting connection object, and had a hack in there to do that.
In fact this was due to the derived OnDisconnect not deleting itself, as it does in base class. Mentioned need to do it in docs, fixed sample so that it does.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16907 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-09-01 14:48:16 +00:00
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxServerBase: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxServerBase)
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
inline wxServerBase(void) {}
|
2004-10-13 14:04:19 +00:00
|
|
|
inline ~wxServerBase(void) {}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2004-09-16 18:13:32 +00:00
|
|
|
// Returns false on error (e.g. port number is already in use)
|
2000-07-15 19:51:35 +00:00
|
|
|
virtual bool Create(const wxString& serverName) = 0;
|
|
|
|
|
|
|
|
// Callbacks to SERVER - override at will
|
|
|
|
virtual wxConnectionBase *OnAcceptConnection(const wxString& topic) = 0;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2003-07-02 01:59:24 +00:00
|
|
|
class WXDLLIMPEXP_BASE wxClientBase: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
DECLARE_CLASS(wxClientBase)
|
2000-07-15 19:51:35 +00:00
|
|
|
|
|
|
|
public:
|
2004-10-13 14:04:19 +00:00
|
|
|
inline wxClientBase(void) {}
|
|
|
|
inline ~wxClientBase(void) {}
|
2000-07-15 19:51:35 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
virtual bool ValidHost(const wxString& host) = 0;
|
|
|
|
|
2000-07-15 19:51:35 +00:00
|
|
|
// Call this to make a connection. Returns NULL if cannot.
|
|
|
|
virtual wxConnectionBase *MakeConnection(const wxString& host,
|
|
|
|
const wxString& server,
|
|
|
|
const wxString& topic) = 0;
|
|
|
|
|
|
|
|
// Callbacks to CLIENT - override at will
|
|
|
|
virtual wxConnectionBase *OnMakeConnection(void) = 0;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_IPCBASEH__
|