]> git.saurik.com Git - wxWidgets.git/blame - include/wx/ipcbase.h
0.1.6-1
[wxWidgets.git] / include / wx / ipcbase.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: ipcbase.h
3// Purpose: Base classes for IPC
4// Author: Julian Smart
5// Modified by:
6// Created: 4/1/98
7// RCS-ID: $Id$
371a5b4e 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_IPCBASEH__
13#define _WX_IPCBASEH__
c801d85f 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
0d3820b3
JS
16#pragma interface "ipcbase.h"
17#endif
18
c801d85f
KB
19#include "wx/defs.h"
20#include "wx/object.h"
21#include "wx/string.h"
22
0d2a2b60
RR
23enum wxIPCFormat
24{
25 wxIPC_INVALID = 0,
26 wxIPC_TEXT = 1, /* CF_TEXT */
27 wxIPC_BITMAP = 2, /* CF_BITMAP */
28 wxIPC_METAFILE = 3, /* CF_METAFILEPICT */
29 wxIPC_SYLK = 4,
30 wxIPC_DIF = 5,
31 wxIPC_TIFF = 6,
32 wxIPC_OEMTEXT = 7, /* CF_OEMTEXT */
33 wxIPC_DIB = 8, /* CF_DIB */
34 wxIPC_PALETTE = 9,
35 wxIPC_PENDATA = 10,
36 wxIPC_RIFF = 11,
37 wxIPC_WAVE = 12,
38 wxIPC_UNICODETEXT = 13,
39 wxIPC_ENHMETAFILE = 14,
40 wxIPC_FILENAME = 15, /* CF_HDROP */
41 wxIPC_LOCALE = 16,
42 wxIPC_PRIVATE = 20
43};
44
bddd7a8d
VZ
45class WXDLLIMPEXP_BASE wxServerBase;
46class WXDLLIMPEXP_BASE wxClientBase;
c801d85f 47
bddd7a8d 48class WXDLLIMPEXP_BASE wxConnectionBase: public wxObject
c801d85f
KB
49{
50 DECLARE_CLASS(wxConnectionBase)
f6bcfd97
BP
51
52public:
f010ad48
JS
53 wxConnectionBase(wxChar *buffer, int size); // use external buffer
54 wxConnectionBase(); // use internal, adaptive buffer
55 wxConnectionBase(wxConnectionBase& copy);
56 ~wxConnectionBase(void);
57
58 void SetConnected( bool c ) { m_connected = c; }
59 bool GetConnected() { return m_connected; }
c801d85f
KB
60
61 // Calls that CLIENT can make
e90c1d2a
VZ
62 virtual bool Execute(const wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT ) = 0;
63 virtual bool Execute(const wxString& str) { return Execute(str, -1, wxIPC_TEXT); }
d38e8d5f 64 virtual wxChar *Request(const wxString& item, int *size = (int *) NULL, wxIPCFormat format = wxIPC_TEXT) = 0;
9d2f3c71 65 virtual bool Poke(const wxString& item, wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT) = 0;
c801d85f
KB
66 virtual bool StartAdvise(const wxString& item) = 0;
67 virtual bool StopAdvise(const wxString& item) = 0;
68
69 // Calls that SERVER can make
9d2f3c71 70 virtual bool Advise(const wxString& item, wxChar *data, int size = -1, wxIPCFormat format = wxIPC_TEXT) = 0;
c801d85f
KB
71
72 // Calls that both can make
73 virtual bool Disconnect(void) = 0;
74
75 // Callbacks to SERVER - override at will
85ac091e 76 virtual bool OnExecute ( const wxString& WXUNUSED(topic),
d38e8d5f 77 wxChar *WXUNUSED(data),
85ac091e
GRG
78 int WXUNUSED(size),
79 wxIPCFormat WXUNUSED(format) )
7beb59f3 80 { return false; };
85ac091e 81
d38e8d5f 82 virtual wxChar *OnRequest ( const wxString& WXUNUSED(topic),
85ac091e
GRG
83 const wxString& WXUNUSED(item),
84 int *WXUNUSED(size),
85 wxIPCFormat WXUNUSED(format) )
d38e8d5f 86 { return (wxChar *) NULL; };
85ac091e
GRG
87
88 virtual bool OnPoke ( const wxString& WXUNUSED(topic),
89 const wxString& WXUNUSED(item),
90 wxChar *WXUNUSED(data),
91 int WXUNUSED(size),
92 wxIPCFormat WXUNUSED(format) )
7beb59f3 93 { return false; };
85ac091e
GRG
94
95 virtual bool OnStartAdvise ( const wxString& WXUNUSED(topic),
96 const wxString& WXUNUSED(item) )
7beb59f3 97 { return false; };
85ac091e
GRG
98
99 virtual bool OnStopAdvise ( const wxString& WXUNUSED(topic),
100 const wxString& WXUNUSED(item) )
7beb59f3 101 { return false; };
c801d85f
KB
102
103 // Callbacks to CLIENT - override at will
85ac091e
GRG
104 virtual bool OnAdvise ( const wxString& WXUNUSED(topic),
105 const wxString& WXUNUSED(item),
d38e8d5f 106 wxChar *WXUNUSED(data),
85ac091e
GRG
107 int WXUNUSED(size),
108 wxIPCFormat WXUNUSED(format) )
7beb59f3 109 { return false; };
c801d85f 110
f6bcfd97 111 // Callbacks to BOTH - override at will
7beb59f3 112 // Default behaviour is to delete connection and return true
c801d85f 113 virtual bool OnDisconnect(void) = 0;
f010ad48
JS
114
115 // return a buffer at least this size, reallocating buffer if needed
116 // returns NULL if using an inadequate user buffer - it can't be resized
117 wxChar * GetBufferAtLeast( size_t bytes );
118
119protected:
120 bool m_connected;
121private:
122 wxChar * m_buffer;
123 size_t m_buffersize;
124 bool m_deletebufferwhendone;
22f3361e 125
00e7a427
VZ
126 // can't use DECLARE_NO_COPY_CLASS(wxConnectionBase) because we already
127 // have copy ctor but still forbid the default assignment operator
128 wxConnectionBase& operator=(const wxConnectionBase&);
c801d85f
KB
129};
130
f010ad48 131
bddd7a8d 132class WXDLLIMPEXP_BASE wxServerBase: public wxObject
c801d85f
KB
133{
134 DECLARE_CLASS(wxServerBase)
c801d85f 135
f6bcfd97 136public:
c801d85f 137 inline wxServerBase(void) {}
6fb99eb3 138 inline ~wxServerBase(void) {}
c801d85f 139
7beb59f3 140 // Returns false on error (e.g. port number is already in use)
f6bcfd97
BP
141 virtual bool Create(const wxString& serverName) = 0;
142
143 // Callbacks to SERVER - override at will
144 virtual wxConnectionBase *OnAcceptConnection(const wxString& topic) = 0;
c801d85f
KB
145};
146
bddd7a8d 147class WXDLLIMPEXP_BASE wxClientBase: public wxObject
c801d85f
KB
148{
149 DECLARE_CLASS(wxClientBase)
f6bcfd97
BP
150
151public:
6fb99eb3
WS
152 inline wxClientBase(void) {}
153 inline ~wxClientBase(void) {}
f6bcfd97 154
c801d85f 155 virtual bool ValidHost(const wxString& host) = 0;
c801d85f 156
f6bcfd97
BP
157 // Call this to make a connection. Returns NULL if cannot.
158 virtual wxConnectionBase *MakeConnection(const wxString& host,
159 const wxString& server,
160 const wxString& topic) = 0;
161
162 // Callbacks to CLIENT - override at will
163 virtual wxConnectionBase *OnMakeConnection(void) = 0;
c801d85f
KB
164};
165
166#endif
34138703 167 // _WX_IPCBASEH__