log Unicode data correctly, extract the logging code in MyConnectionBase class instead of quadriplicating it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -33,6 +33,8 @@
|
|||||||
// we're using TCP/IP or real DDE.
|
// we're using TCP/IP or real DDE.
|
||||||
#include "ipcsetup.h"
|
#include "ipcsetup.h"
|
||||||
|
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
#include "wx/timer.h"
|
#include "wx/timer.h"
|
||||||
#include "wx/datetime.h"
|
#include "wx/datetime.h"
|
||||||
|
|
||||||
@@ -43,7 +45,6 @@
|
|||||||
|
|
||||||
// Define a new application
|
// Define a new application
|
||||||
class MyClient;
|
class MyClient;
|
||||||
class MyConnection;
|
|
||||||
|
|
||||||
class MyApp: public wxApp
|
class MyApp: public wxApp
|
||||||
{
|
{
|
||||||
@@ -55,20 +56,14 @@ protected:
|
|||||||
MyClient *m_client;
|
MyClient *m_client;
|
||||||
};
|
};
|
||||||
|
|
||||||
class MyConnection: public wxConnection
|
class MyConnection : public MyConnectionBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MyConnection();
|
|
||||||
virtual ~MyConnection();
|
|
||||||
virtual bool DoExecute(const void *data, size_t size, wxIPCFormat format);
|
virtual bool DoExecute(const void *data, size_t size, wxIPCFormat format);
|
||||||
virtual const void *Request(const wxString& item, size_t *size = NULL, wxIPCFormat format = wxIPC_TEXT);
|
virtual const void *Request(const wxString& item, size_t *size = NULL, wxIPCFormat format = wxIPC_TEXT);
|
||||||
virtual bool DoPoke(const wxString& item, const void* data, size_t size, wxIPCFormat format);
|
virtual bool DoPoke(const wxString& item, const void* data, size_t size, wxIPCFormat format);
|
||||||
virtual bool OnAdvise(const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
virtual bool OnAdvise(const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
||||||
virtual bool OnDisconnect();
|
virtual bool OnDisconnect();
|
||||||
|
|
||||||
protected:
|
|
||||||
void Log(const wxString& command, const wxString& topic,
|
|
||||||
const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class MyClient: public wxClient, public wxTimer
|
class MyClient: public wxClient, public wxTimer
|
||||||
@@ -194,12 +189,11 @@ void MyClient::Notify()
|
|||||||
wxString s = _T("Date");
|
wxString s = _T("Date");
|
||||||
m_connection->Execute(s);
|
m_connection->Execute(s);
|
||||||
m_connection->Execute((const char *)s.c_str(), s.length() + 1);
|
m_connection->Execute((const char *)s.c_str(), s.length() + 1);
|
||||||
#if wxUSE_DDE_FOR_IPC
|
|
||||||
wxLogMessage(_T("DDE Execute can only be used to send text strings, not arbitrary data.\nThe type argument will be ignored, text truncated, converted to Unicode and null terminated."));
|
|
||||||
#endif
|
|
||||||
char bytes[3];
|
char bytes[3];
|
||||||
bytes[0] = '1'; bytes[1] = '2'; bytes[2] = '3';
|
bytes[0] = '1';
|
||||||
m_connection->Execute(bytes, 3, wxIPC_PRIVATE);
|
bytes[1] = '2';
|
||||||
|
bytes[2] = '3';
|
||||||
|
m_connection->Execute(bytes, WXSIZEOF(bytes));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 3:
|
case 3:
|
||||||
@@ -220,55 +214,6 @@ void MyClient::Notify()
|
|||||||
// MyConnection
|
// MyConnection
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
MyConnection::MyConnection()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
MyConnection::~MyConnection()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void MyConnection::Log(const wxString& command, const wxString& topic,
|
|
||||||
const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
|
||||||
{
|
|
||||||
wxString s;
|
|
||||||
if (topic.IsEmpty() && item.IsEmpty())
|
|
||||||
s.Printf(_T("%s("), command.c_str());
|
|
||||||
else if (topic.IsEmpty())
|
|
||||||
s.Printf(_T("%s(item=\"%s\","), command.c_str(), item.c_str());
|
|
||||||
else if (item.IsEmpty())
|
|
||||||
s.Printf(_T("%s(topic=\"%s\","), command.c_str(), topic.c_str());
|
|
||||||
else
|
|
||||||
s.Printf(_T("%s(topic=\"%s\",item=\"%s\","), command.c_str(), topic.c_str(), item.c_str());
|
|
||||||
|
|
||||||
switch (format)
|
|
||||||
{
|
|
||||||
case wxIPC_TEXT:
|
|
||||||
case wxIPC_UTF8TEXT:
|
|
||||||
#if !wxUSE_UNICODE || wxUSE_UNICODE_UTF8
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), data, size);
|
|
||||||
#else
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), wxConvUTF8.cMB2WC((const char*)data), size);
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
case wxIPC_PRIVATE:
|
|
||||||
if (size == 3)
|
|
||||||
{
|
|
||||||
char *bytes = (char *)data;
|
|
||||||
wxLogMessage(_T("%s'%c%c%c',%d)"), s.c_str(), bytes[0], bytes[1], bytes[2], size);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
wxLogMessage(_T("%s...,%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
case wxIPC_INVALID:
|
|
||||||
wxLogMessage(_T("%s[invalid data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
wxLogMessage(_T("%s[unknown data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MyConnection::OnAdvise(const wxString& topic, const wxString& item, const void *data,
|
bool MyConnection::OnAdvise(const wxString& topic, const wxString& item, const void *data,
|
||||||
size_t size, wxIPCFormat format)
|
size_t size, wxIPCFormat format)
|
||||||
{
|
{
|
||||||
|
@@ -33,6 +33,8 @@
|
|||||||
// we're using TCP/IP or real DDE.
|
// we're using TCP/IP or real DDE.
|
||||||
#include "ipcsetup.h"
|
#include "ipcsetup.h"
|
||||||
|
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
#include "wx/timer.h"
|
#include "wx/timer.h"
|
||||||
#include "wx/datetime.h"
|
#include "wx/datetime.h"
|
||||||
|
|
||||||
@@ -42,7 +44,6 @@
|
|||||||
|
|
||||||
// Define a new application
|
// Define a new application
|
||||||
class MyServer;
|
class MyServer;
|
||||||
class MyConnection;
|
|
||||||
|
|
||||||
class MyApp : public wxApp
|
class MyApp : public wxApp
|
||||||
{
|
{
|
||||||
@@ -56,12 +57,9 @@ protected:
|
|||||||
|
|
||||||
DECLARE_APP(MyApp)
|
DECLARE_APP(MyApp)
|
||||||
|
|
||||||
class MyConnection : public wxConnection, public wxTimer
|
class MyConnection : public MyConnectionBase, public wxTimer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MyConnection();
|
|
||||||
virtual ~MyConnection();
|
|
||||||
|
|
||||||
virtual bool Disconnect() { return wxConnection::Disconnect(); }
|
virtual bool Disconnect() { return wxConnection::Disconnect(); }
|
||||||
virtual bool OnExecute(const wxString& topic, const void *data, size_t size, wxIPCFormat format);
|
virtual bool OnExecute(const wxString& topic, const void *data, size_t size, wxIPCFormat format);
|
||||||
virtual const void *OnRequest(const wxString& topic, const wxString& item, size_t *size, wxIPCFormat format);
|
virtual const void *OnRequest(const wxString& topic, const wxString& item, size_t *size, wxIPCFormat format);
|
||||||
@@ -72,10 +70,6 @@ public:
|
|||||||
virtual bool OnDisconnect();
|
virtual bool OnDisconnect();
|
||||||
virtual void Notify();
|
virtual void Notify();
|
||||||
|
|
||||||
protected:
|
|
||||||
void Log(const wxString& command, const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
|
||||||
|
|
||||||
public:
|
|
||||||
wxString m_sAdvise;
|
wxString m_sAdvise;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@@ -182,14 +176,6 @@ void MyServer::Disconnect()
|
|||||||
// MyConnection
|
// MyConnection
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
MyConnection::MyConnection()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
MyConnection::~MyConnection()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MyConnection::OnExecute(const wxString& topic,
|
bool MyConnection::OnExecute(const wxString& topic,
|
||||||
const void *data, size_t size, wxIPCFormat format)
|
const void *data, size_t size, wxIPCFormat format)
|
||||||
{
|
{
|
||||||
@@ -275,47 +261,6 @@ void MyConnection::Notify()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyConnection::Log(const wxString& command, const wxString& topic,
|
|
||||||
const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
|
||||||
{
|
|
||||||
wxString s;
|
|
||||||
if (topic.IsEmpty() && item.IsEmpty())
|
|
||||||
s.Printf(_T("%s("), command.c_str());
|
|
||||||
else if (topic.IsEmpty())
|
|
||||||
s.Printf(_T("%s(\"%s\","), command.c_str(), item.c_str());
|
|
||||||
else if (item.IsEmpty())
|
|
||||||
s.Printf(_T("%s(\"%s\","), command.c_str(), topic.c_str());
|
|
||||||
else
|
|
||||||
s.Printf(_T("%s(\"%s\",\"%s\","), command.c_str(), topic.c_str(), item.c_str());
|
|
||||||
|
|
||||||
switch (format)
|
|
||||||
{
|
|
||||||
case wxIPC_TEXT:
|
|
||||||
case wxIPC_UTF8TEXT:
|
|
||||||
#if !wxUSE_UNICODE || wxUSE_UNICODE_UTF8
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), data, size);
|
|
||||||
#else
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), wxConvUTF8.cMB2WC((const char*)data), size);
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
case wxIPC_PRIVATE:
|
|
||||||
if (size == 3)
|
|
||||||
{
|
|
||||||
char *bytes = (char *)data;
|
|
||||||
wxLogMessage(_T("%s'%c%c%c',%d)"), s.c_str(), bytes[0], bytes[1], bytes[2], size);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
wxLogMessage(_T("%s...,%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
case wxIPC_INVALID:
|
|
||||||
wxLogMessage(_T("%s[invalid data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
wxLogMessage(_T("%s[unknown data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MyConnection::DoAdvise(const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
bool MyConnection::DoAdvise(const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
||||||
{
|
{
|
||||||
Log(_T("Advise"), _T(""), item, data, size, format);
|
Log(_T("Advise"), _T(""), item, data, size, format);
|
||||||
|
@@ -339,12 +339,11 @@ void MyFrame::OnExecute(wxCommandEvent& WXUNUSED(event))
|
|||||||
|
|
||||||
m_client->GetConnection()->Execute(s);
|
m_client->GetConnection()->Execute(s);
|
||||||
m_client->GetConnection()->Execute((const char *)s.c_str(), s.length() + 1);
|
m_client->GetConnection()->Execute((const char *)s.c_str(), s.length() + 1);
|
||||||
#if wxUSE_DDE_FOR_IPC
|
|
||||||
wxLogMessage(_T("DDE Execute can only be used to send text strings, not arbitrary data.\nThe type argument will be ignored, text truncated, converted to Unicode and null terminated."));
|
|
||||||
#endif
|
|
||||||
char bytes[3];
|
char bytes[3];
|
||||||
bytes[0] = '1'; bytes[1] = '2'; bytes[2] = '3';
|
bytes[0] = '1';
|
||||||
m_client->GetConnection()->Execute(bytes, 3, wxIPC_PRIVATE);
|
bytes[1] = '2';
|
||||||
|
bytes[2] = '3';
|
||||||
|
m_client->GetConnection()->Execute(bytes, WXSIZEOF(bytes));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -416,47 +415,6 @@ MyClient::~MyClient()
|
|||||||
// MyConnection
|
// MyConnection
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
void MyConnection::Log(const wxString& command, const wxString& topic,
|
|
||||||
const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
|
||||||
{
|
|
||||||
wxString s;
|
|
||||||
if (topic.IsEmpty() && item.IsEmpty())
|
|
||||||
s.Printf(_T("%s("), command.c_str());
|
|
||||||
else if (topic.IsEmpty())
|
|
||||||
s.Printf(_T("%s(item=\"%s\","), command.c_str(), item.c_str());
|
|
||||||
else if (item.IsEmpty())
|
|
||||||
s.Printf(_T("%s(topic=\"%s\","), command.c_str(), topic.c_str());
|
|
||||||
else
|
|
||||||
s.Printf(_T("%s(topic=\"%s\",item=\"%s\","), command.c_str(), topic.c_str(), item.c_str());
|
|
||||||
|
|
||||||
switch (format)
|
|
||||||
{
|
|
||||||
case wxIPC_TEXT:
|
|
||||||
case wxIPC_UTF8TEXT:
|
|
||||||
#if !wxUSE_UNICODE || wxUSE_UNICODE_UTF8
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), data, size);
|
|
||||||
#else
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), wxConvUTF8.cMB2WC((const char*)data), size);
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
case wxIPC_PRIVATE:
|
|
||||||
if (size == 3)
|
|
||||||
{
|
|
||||||
char *bytes = (char *)data;
|
|
||||||
wxLogMessage(_T("%s'%c%c%c',%d)"), s.c_str(), bytes[0], bytes[1], bytes[2], size);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
wxLogMessage(_T("%s...,%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
case wxIPC_INVALID:
|
|
||||||
wxLogMessage(_T("%s[invalid data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
wxLogMessage(_T("%s[unknown data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MyConnection::OnAdvise(const wxString& topic, const wxString& item, const void *data,
|
bool MyConnection::OnAdvise(const wxString& topic, const wxString& item, const void *data,
|
||||||
size_t size, wxIPCFormat format)
|
size_t size, wxIPCFormat format)
|
||||||
{
|
{
|
||||||
|
@@ -9,6 +9,8 @@
|
|||||||
// Licence: wxWindows licence
|
// Licence: wxWindows licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
#define ID_START 10000
|
#define ID_START 10000
|
||||||
#define ID_DISCONNECT 10001
|
#define ID_DISCONNECT 10001
|
||||||
#define ID_STARTADVISE 10002
|
#define ID_STARTADVISE 10002
|
||||||
@@ -23,7 +25,6 @@
|
|||||||
|
|
||||||
// Define a new application
|
// Define a new application
|
||||||
class MyClient;
|
class MyClient;
|
||||||
class MyConnection;
|
|
||||||
class MyFrame;
|
class MyFrame;
|
||||||
|
|
||||||
class MyApp: public wxApp
|
class MyApp: public wxApp
|
||||||
@@ -78,7 +79,7 @@ protected:
|
|||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
|
||||||
class MyConnection: public wxConnection
|
class MyConnection : public MyConnectionBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual bool DoExecute(const void *data, size_t size, wxIPCFormat format);
|
virtual bool DoExecute(const void *data, size_t size, wxIPCFormat format);
|
||||||
@@ -86,9 +87,6 @@ public:
|
|||||||
virtual bool DoPoke(const wxString& item, const void* data, size_t size, wxIPCFormat format);
|
virtual bool DoPoke(const wxString& item, const void* data, size_t size, wxIPCFormat format);
|
||||||
virtual bool OnAdvise(const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
virtual bool OnAdvise(const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
||||||
virtual bool OnDisconnect();
|
virtual bool OnDisconnect();
|
||||||
protected:
|
|
||||||
void Log(const wxString& command, const wxString& topic,
|
|
||||||
const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class MyClient: public wxClient
|
class MyClient: public wxClient
|
||||||
|
@@ -304,15 +304,6 @@ void MyServer::Advise()
|
|||||||
// MyConnection
|
// MyConnection
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
MyConnection::MyConnection()
|
|
||||||
: wxConnection()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
MyConnection::~MyConnection()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MyConnection::OnExecute(const wxString& topic,
|
bool MyConnection::OnExecute(const wxString& topic,
|
||||||
const void *data, size_t size, wxIPCFormat format)
|
const void *data, size_t size, wxIPCFormat format)
|
||||||
{
|
{
|
||||||
@@ -378,47 +369,6 @@ bool MyConnection::OnStopAdvise(const wxString& topic,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MyConnection::Log(const wxString& command, const wxString& topic,
|
|
||||||
const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
|
||||||
{
|
|
||||||
wxString s;
|
|
||||||
if (topic.IsEmpty() && item.IsEmpty())
|
|
||||||
s.Printf(_T("%s("), command.c_str());
|
|
||||||
else if (topic.IsEmpty())
|
|
||||||
s.Printf(_T("%s(\"%s\","), command.c_str(), item.c_str());
|
|
||||||
else if (item.IsEmpty())
|
|
||||||
s.Printf(_T("%s(\"%s\","), command.c_str(), topic.c_str());
|
|
||||||
else
|
|
||||||
s.Printf(_T("%s(\"%s\",\"%s\","), command.c_str(), topic.c_str(), item.c_str());
|
|
||||||
|
|
||||||
switch (format)
|
|
||||||
{
|
|
||||||
case wxIPC_TEXT:
|
|
||||||
case wxIPC_UTF8TEXT:
|
|
||||||
#if !wxUSE_UNICODE || wxUSE_UNICODE_UTF8
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), data, size);
|
|
||||||
#else
|
|
||||||
wxLogMessage(_T("%s\"%s\",%d)"), s.c_str(), wxConvUTF8.cMB2WC((const char*)data), size);
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
case wxIPC_PRIVATE:
|
|
||||||
if (size == 3)
|
|
||||||
{
|
|
||||||
char *bytes = (char *)data;
|
|
||||||
wxLogMessage(_T("%s'%c%c%c',%d)"), s.c_str(), bytes[0], bytes[1], bytes[2], size);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
wxLogMessage(_T("%s...,%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
case wxIPC_INVALID:
|
|
||||||
wxLogMessage(_T("%s[invalid data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
wxLogMessage(_T("%s[unknown data],%d)"), s.c_str(), size);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool MyConnection::DoAdvise(const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
bool MyConnection::DoAdvise(const wxString& item, const void *data, size_t size, wxIPCFormat format)
|
||||||
{
|
{
|
||||||
Log(_T("Advise"), _T(""), item, data, size, format);
|
Log(_T("Advise"), _T(""), item, data, size, format);
|
||||||
|
@@ -9,6 +9,8 @@
|
|||||||
// Licence: wxWindows licence
|
// Licence: wxWindows licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "connection.h"
|
||||||
|
|
||||||
#define ID_START 10000
|
#define ID_START 10000
|
||||||
#define ID_DISCONNECT 10001
|
#define ID_DISCONNECT 10001
|
||||||
#define ID_ADVISE 10002
|
#define ID_ADVISE 10002
|
||||||
@@ -17,7 +19,6 @@
|
|||||||
|
|
||||||
// Define a new application
|
// Define a new application
|
||||||
class MyServer;
|
class MyServer;
|
||||||
class MyConnection;
|
|
||||||
class MyFrame;
|
class MyFrame;
|
||||||
|
|
||||||
class MyApp : public wxApp
|
class MyApp : public wxApp
|
||||||
@@ -63,12 +64,9 @@ protected:
|
|||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
|
||||||
class MyConnection : public wxConnection
|
class MyConnection : public MyConnectionBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
MyConnection();
|
|
||||||
~MyConnection();
|
|
||||||
|
|
||||||
virtual bool OnExecute(const wxString& topic, const void *data, size_t size, wxIPCFormat format);
|
virtual bool OnExecute(const wxString& topic, const void *data, size_t size, wxIPCFormat format);
|
||||||
virtual const void *OnRequest(const wxString& topic, const wxString& item, size_t *size, wxIPCFormat format);
|
virtual const void *OnRequest(const wxString& topic, const wxString& item, size_t *size, wxIPCFormat format);
|
||||||
virtual bool OnPoke(const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
virtual bool OnPoke(const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
||||||
@@ -76,10 +74,9 @@ public:
|
|||||||
virtual bool OnStopAdvise(const wxString& topic, const wxString& item);
|
virtual bool OnStopAdvise(const wxString& topic, const wxString& item);
|
||||||
virtual bool DoAdvise(const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
virtual bool DoAdvise(const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
||||||
virtual bool OnDisconnect();
|
virtual bool OnDisconnect();
|
||||||
protected:
|
|
||||||
void Log(const wxString& command, const wxString& topic, const wxString& item, const void *data, size_t size, wxIPCFormat format);
|
|
||||||
public:
|
|
||||||
wxString m_sAdvise;
|
wxString m_sAdvise;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
wxString m_sRequestDate;
|
wxString m_sRequestDate;
|
||||||
char m_achRequestBytes[3];
|
char m_achRequestBytes[3];
|
||||||
|
Reference in New Issue
Block a user