2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2014-11-02 12:12:05 +00:00
|
|
|
* Copyright (C) 2012 Synergy Si Ltd.
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "server/ClientProxy.h"
|
|
|
|
|
|
|
|
#include "synergy/ProtocolUtil.h"
|
|
|
|
#include "io/IStream.h"
|
|
|
|
#include "base/Log.h"
|
|
|
|
#include "base/EventQueue.h"
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//
|
2014-11-11 13:51:47 +00:00
|
|
|
// ClientProxy
|
2012-06-10 16:50:54 +00:00
|
|
|
//
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
ClientProxy::ClientProxy(const String& name, synergy::IStream* stream) :
|
|
|
|
BaseClientProxy(name),
|
2012-06-10 16:50:54 +00:00
|
|
|
m_stream(stream)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
ClientProxy::~ClientProxy()
|
2012-06-10 16:50:54 +00:00
|
|
|
{
|
|
|
|
delete m_stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-11-11 13:51:47 +00:00
|
|
|
ClientProxy::close(const char* msg)
|
2012-06-10 16:50:54 +00:00
|
|
|
{
|
|
|
|
LOG((CLOG_DEBUG1 "send close \"%s\" to \"%s\"", msg, getName().c_str()));
|
2014-11-11 13:51:47 +00:00
|
|
|
ProtocolUtil::writef(getStream(), msg);
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
// force the close to be sent before we return
|
|
|
|
getStream()->flush();
|
|
|
|
}
|
|
|
|
|
2012-07-05 18:05:35 +00:00
|
|
|
synergy::IStream*
|
2014-11-11 13:51:47 +00:00
|
|
|
ClientProxy::getStream() const
|
2012-06-10 16:50:54 +00:00
|
|
|
{
|
|
|
|
return m_stream;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
2014-11-11 13:51:47 +00:00
|
|
|
ClientProxy::getEventTarget() const
|
2012-06-10 16:50:54 +00:00
|
|
|
{
|
2014-11-11 13:51:47 +00:00
|
|
|
return static_cast<IScreen*>(const_cast<ClientProxy*>(this));
|
2012-06-10 16:50:54 +00:00
|
|
|
}
|