2012-06-28 07:29:06 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2012 Nick Bolton
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CIpcClientProxy.h"
|
2012-07-01 21:18:21 +00:00
|
|
|
#include "IStream.h"
|
2012-07-02 13:45:52 +00:00
|
|
|
#include "TMethodEventJob.h"
|
|
|
|
#include "Ipc.h"
|
|
|
|
#include "CLog.h"
|
|
|
|
#include "CIpcMessage.h"
|
|
|
|
|
|
|
|
CEvent::Type CIpcClientProxy::s_messageReceivedEvent = CEvent::kUnknown;
|
2012-06-28 07:29:06 +00:00
|
|
|
|
2012-07-01 21:18:21 +00:00
|
|
|
CIpcClientProxy::CIpcClientProxy(IStream& stream) :
|
|
|
|
m_stream(stream)
|
2012-06-28 07:29:06 +00:00
|
|
|
{
|
2012-07-02 13:45:52 +00:00
|
|
|
EVENTQUEUE->adoptHandler(m_stream.getInputReadyEvent(),
|
|
|
|
stream.getEventTarget(),
|
|
|
|
new TMethodEventJob<CIpcClientProxy>(
|
|
|
|
this, &CIpcClientProxy::handleData, nullptr));
|
2012-06-28 07:29:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CIpcClientProxy::~CIpcClientProxy()
|
|
|
|
{
|
2012-07-02 13:45:52 +00:00
|
|
|
EVENTQUEUE->removeHandler(m_stream.getInputReadyEvent(),
|
|
|
|
m_stream.getEventTarget());
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CIpcClientProxy::handleData(const CEvent&, void*)
|
|
|
|
{
|
|
|
|
UInt8 code[1];
|
|
|
|
UInt32 n = m_stream.read(code, 1);
|
|
|
|
while (n != 0) {
|
|
|
|
|
|
|
|
CIpcMessage* m = new CIpcMessage();
|
|
|
|
m->m_type = code[1];
|
|
|
|
|
|
|
|
LOG((CLOG_DEBUG "ipc read message: %d", code[0]));
|
|
|
|
switch (code[0]) {
|
|
|
|
case kIpcCommand:
|
|
|
|
m->m_data = parseCommand();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
delete m;
|
|
|
|
disconnect();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// event deletes data.
|
|
|
|
EVENTQUEUE->addEvent(CEvent(getMessageReceivedEvent(), this, m));
|
|
|
|
|
|
|
|
n = m_stream.read(code, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
CIpcClientProxy::parseCommand()
|
|
|
|
{
|
|
|
|
UInt8 len[1];
|
|
|
|
m_stream.read(len, 1);
|
|
|
|
|
|
|
|
UInt8* buffer = new UInt8[len[0]];
|
|
|
|
m_stream.read(buffer, len[0]);
|
|
|
|
|
|
|
|
return new CString((const char*)buffer, len[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CIpcClientProxy::disconnect()
|
|
|
|
{
|
|
|
|
LOG((CLOG_NOTE "disconnect, closing stream"));
|
|
|
|
m_stream.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
CEvent::Type
|
|
|
|
CIpcClientProxy::getMessageReceivedEvent()
|
|
|
|
{
|
|
|
|
return EVENTQUEUE->registerTypeOnce(
|
|
|
|
s_messageReceivedEvent, "CIpcClientProxy::messageReceived");
|
2012-06-28 07:29:06 +00:00
|
|
|
}
|