barrier/lib/server/CServer.cpp

1817 lines
42 KiB
C++
Raw Normal View History

2002-08-02 19:57:46 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2002 Chris Schoeneman
*
* 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.
*/
2001-10-06 14:13:28 +00:00
#include "CServer.h"
#include "CHTTPServer.h"
#include "CPrimaryClient.h"
#include "IPrimaryScreenFactory.h"
2001-10-06 14:13:28 +00:00
#include "CInputPacketStream.h"
#include "COutputPacketStream.h"
#include "CProtocolUtil.h"
#include "CClientProxy1_0.h"
#include "OptionTypes.h"
2001-10-06 14:13:28 +00:00
#include "ProtocolTypes.h"
#include "XScreen.h"
#include "XSynergy.h"
#include "CTCPListenSocket.h"
#include "IDataSocket.h"
#include "ISocketFactory.h"
#include "XSocket.h"
#include "IStreamFilterFactory.h"
2001-10-06 14:13:28 +00:00
#include "CLock.h"
#include "CThread.h"
#include "CTimerThread.h"
#include "XMT.h"
#include "XThread.h"
#include "CFunctionJob.h"
#include "CLog.h"
#include "CStopwatch.h"
2001-10-06 14:13:28 +00:00
#include "TMethodJob.h"
#include "CArch.h"
2001-10-06 14:13:28 +00:00
//
// CServer
//
const SInt32 CServer::s_httpMaxSimultaneousRequests = 3;
2002-06-17 13:31:21 +00:00
CServer::CServer(const CString& serverName) :
m_name(serverName),
m_error(false),
m_bindTimeout(5.0 * 60.0),
m_screenFactory(NULL),
m_socketFactory(NULL),
m_streamFilterFactory(NULL),
m_acceptClientThread(NULL),
m_active(NULL),
m_primaryClient(NULL),
m_seqNum(0),
m_activeSaver(NULL),
m_httpServer(NULL),
m_httpAvailable(&m_mutex, s_httpMaxSimultaneousRequests)
2001-10-06 14:13:28 +00:00
{
// do nothing
2001-10-06 14:13:28 +00:00
}
CServer::~CServer()
{
delete m_screenFactory;
delete m_socketFactory;
delete m_streamFilterFactory;
2001-10-06 14:13:28 +00:00
}
void
2002-06-21 17:55:47 +00:00
CServer::open()
{
// open the screen
try {
LOG((CLOG_INFO "opening screen"));
2002-06-21 17:55:47 +00:00
openPrimaryScreen();
}
catch (XScreen&) {
// can't open screen
LOG((CLOG_INFO "failed to open screen"));
throw;
2002-06-21 17:55:47 +00:00
}
catch (XUnknownClient& e) {
// can't open screen
LOG((CLOG_CRIT "unknown screen name `%s'", e.getName().c_str()));
throw;
2002-06-21 17:55:47 +00:00
}
}
void
CServer::mainLoop()
2001-10-06 14:13:28 +00:00
{
2002-06-21 17:55:47 +00:00
// check preconditions
{
CLock lock(&m_mutex);
assert(m_primaryClient != NULL);
2002-06-21 17:55:47 +00:00
}
2001-10-06 14:13:28 +00:00
try {
LOG((CLOG_NOTE "starting server"));
2001-10-06 14:13:28 +00:00
// start listening for new clients
m_acceptClientThread = new CThread(startThread(
new TMethodJob<CServer>(this,
&CServer::acceptClients)));
2001-10-06 14:13:28 +00:00
// start listening for HTTP requests
if (m_config.getHTTPAddress().isValid()) {
m_httpServer = new CHTTPServer(this);
startThread(new TMethodJob<CServer>(this,
&CServer::acceptHTTPClients));
}
// handle events
m_primaryClient->mainLoop();
2001-10-06 14:13:28 +00:00
// clean up
LOG((CLOG_NOTE "stopping server"));
// use a macro to write the stuff that should go into a finally
// block so we can repeat it easily. stroustrup's view that
// "resource acquistion is initialization" is a better solution
// than a finally block is parochial. they both have their
// place. adding finally to C++ would've been a drop in a big
// bucket.
#define FINALLY do { \
stopThreads(); \
delete m_httpServer; \
m_httpServer = NULL; \
} while (false)
FINALLY;
2001-10-06 14:13:28 +00:00
}
catch (XMT& e) {
LOG((CLOG_ERR "server error: %s", e.what()));
// clean up
LOG((CLOG_NOTE "stopping server"));
FINALLY;
throw;
}
2001-10-06 14:13:28 +00:00
catch (XBase& e) {
LOG((CLOG_ERR "server error: %s", e.what()));
2001-10-06 14:13:28 +00:00
// clean up
LOG((CLOG_NOTE "stopping server"));
FINALLY;
}
catch (XThread&) {
// clean up
LOG((CLOG_NOTE "stopping server"));
FINALLY;
throw;
2001-10-06 14:13:28 +00:00
}
catch (...) {
LOG((CLOG_DEBUG "unknown server error"));
2001-10-06 14:13:28 +00:00
// clean up
LOG((CLOG_NOTE "stopping server"));
FINALLY;
2001-10-06 14:13:28 +00:00
throw;
}
#undef FINALLY
// throw if there was an error
if (m_error) {
LOG((CLOG_DEBUG "forwarding child thread exception"));
throw XServerRethrow();
}
2001-10-06 14:13:28 +00:00
}
void
CServer::exitMainLoop()
{
m_primaryClient->exitMainLoop();
}
void
CServer::exitMainLoopWithError()
{
{
CLock lock(&m_mutex);
m_error = true;
}
exitMainLoop();
}
void
CServer::close()
{
if (m_primaryClient != NULL) {
closePrimaryScreen();
}
LOG((CLOG_INFO "closed screen"));
}
bool
2002-06-17 13:31:21 +00:00
CServer::setConfig(const CConfig& config)
2001-10-06 14:13:28 +00:00
{
// refuse configuration if it doesn't include the primary screen
{
CLock lock(&m_mutex);
if (m_primaryClient != NULL &&
!config.isScreen(m_primaryClient->getName())) {
return false;
}
}
// close clients that are connected but being dropped from the
// configuration.
closeClients(config);
// cut over
CLock lock(&m_mutex);
m_config = config;
// tell primary screen about reconfiguration
if (m_primaryClient != NULL) {
2002-07-11 13:13:37 +00:00
m_primaryClient->reconfigure(getActivePrimarySides());
}
// FIXME -- tell all (connected) clients about current options
return true;
2001-10-06 14:13:28 +00:00
}
void
CServer::setScreenFactory(IPrimaryScreenFactory* adopted)
{
CLock lock(&m_mutex);
delete m_screenFactory;
m_screenFactory = adopted;
}
void
CServer::setSocketFactory(ISocketFactory* adopted)
{
CLock lock(&m_mutex);
delete m_socketFactory;
m_socketFactory = adopted;
}
void
CServer::setStreamFilterFactory(IStreamFilterFactory* adopted)
{
CLock lock(&m_mutex);
delete m_streamFilterFactory;
m_streamFilterFactory = adopted;
}
CString
CServer::getPrimaryScreenName() const
{
return m_name;
}
void
2002-06-17 13:31:21 +00:00
CServer::getConfig(CConfig* config) const
2001-10-06 14:13:28 +00:00
{
assert(config != NULL);
2001-10-06 14:13:28 +00:00
CLock lock(&m_mutex);
*config = m_config;
2001-10-06 14:13:28 +00:00
}
UInt32
CServer::getActivePrimarySides() const
{
2002-07-11 13:13:37 +00:00
// note -- m_mutex must be locked on entry
UInt32 sides = 0;
if (!m_config.getNeighbor(getPrimaryScreenName(), kLeft).empty()) {
sides |= kLeftMask;
}
if (!m_config.getNeighbor(getPrimaryScreenName(), kRight).empty()) {
sides |= kRightMask;
}
if (!m_config.getNeighbor(getPrimaryScreenName(), kTop).empty()) {
sides |= kTopMask;
}
if (!m_config.getNeighbor(getPrimaryScreenName(), kBottom).empty()) {
sides |= kBottomMask;
}
return sides;
}
void
CServer::onError()
{
// stop all running threads but don't wait too long since some
// threads may be unable to proceed until this thread returns.
stopThreads(3.0);
// done with the HTTP server
CLock lock(&m_mutex);
delete m_httpServer;
m_httpServer = NULL;
// note -- we do not attempt to close down the primary screen
}
void
CServer::onInfoChanged(const CString& name, const CClientInfo& info)
{
CLock lock(&m_mutex);
// look up client
CClientList::iterator index = m_clients.find(name);
if (index == m_clients.end()) {
2001-10-06 14:13:28 +00:00
throw XBadClient();
}
IClient* client = index->second;
assert(client != NULL);
2001-10-06 14:13:28 +00:00
// update the remote mouse coordinates
if (client == m_active) {
m_x = info.m_mx;
m_y = info.m_my;
2001-10-06 14:13:28 +00:00
}
LOG((CLOG_INFO "screen \"%s\" shape=%d,%d %dx%d zone=%d pos=%d,%d", name.c_str(), info.m_x, info.m_y, info.m_w, info.m_h, info.m_zoneSize, info.m_mx, info.m_my));
// handle resolution change to primary screen
if (client == m_primaryClient) {
if (client == m_active) {
onMouseMovePrimaryNoLock(m_x, m_y);
}
else {
onMouseMoveSecondaryNoLock(0, 0);
}
}
2001-10-06 14:13:28 +00:00
}
bool
CServer::onGrabClipboard(const CString& name, ClipboardID id, UInt32 seqNum)
{
CLock lock(&m_mutex);
// screen must be connected
CClientList::iterator grabber = m_clients.find(name);
if (grabber == m_clients.end()) {
throw XBadClient();
}
// ignore grab if sequence number is old. always allow primary
// screen to grab.
CClipboardInfo& clipboard = m_clipboards[id];
if (name != m_primaryClient->getName() &&
seqNum < clipboard.m_clipboardSeqNum) {
LOG((CLOG_INFO "ignored screen \"%s\" grab of clipboard %d", name.c_str(), id));
return false;
}
// mark screen as owning clipboard
LOG((CLOG_INFO "screen \"%s\" grabbed clipboard %d from \"%s\"", name.c_str(), id, clipboard.m_clipboardOwner.c_str()));
clipboard.m_clipboardOwner = name;
clipboard.m_clipboardSeqNum = seqNum;
// clear the clipboard data (since it's not known at this point)
if (clipboard.m_clipboard.open(0)) {
clipboard.m_clipboard.empty();
clipboard.m_clipboard.close();
}
clipboard.m_clipboardData = clipboard.m_clipboard.marshall();
// tell all other screens to take ownership of clipboard. tell the
// grabber that it's clipboard isn't dirty.
for (CClientList::iterator index = m_clients.begin();
index != m_clients.end(); ++index) {
IClient* client = index->second;
if (index == grabber) {
client->setClipboardDirty(id, false);
}
else {
client->grabClipboard(id);
}
}
return true;
}
void
CServer::onClipboardChanged(ClipboardID id, UInt32 seqNum, const CString& data)
{
CLock lock(&m_mutex);
onClipboardChangedNoLock(id, seqNum, data);
}
void
CServer::onClipboardChangedNoLock(ClipboardID id,
UInt32 seqNum, const CString& data)
{
CClipboardInfo& clipboard = m_clipboards[id];
// ignore update if sequence number is old
if (seqNum < clipboard.m_clipboardSeqNum) {
LOG((CLOG_INFO "ignored screen \"%s\" update of clipboard %d (missequenced)", clipboard.m_clipboardOwner.c_str(), id));
return;
}
// ignore if data hasn't changed
if (data == clipboard.m_clipboardData) {
LOG((CLOG_DEBUG "ignored screen \"%s\" update of clipboard %d (unchanged)", clipboard.m_clipboardOwner.c_str(), id));
return;
}
// unmarshall into our clipboard buffer
LOG((CLOG_INFO "screen \"%s\" updated clipboard %d", clipboard.m_clipboardOwner.c_str(), id));
clipboard.m_clipboardData = data;
clipboard.m_clipboard.unmarshall(clipboard.m_clipboardData, 0);
// tell all clients except the sender that the clipboard is dirty
CClientList::const_iterator sender =
m_clients.find(clipboard.m_clipboardOwner);
for (CClientList::const_iterator index = m_clients.begin();
index != m_clients.end(); ++index) {
IClient* client = index->second;
client->setClipboardDirty(id, index != sender);
}
// send the new clipboard to the active screen
m_active->setClipboard(id, m_clipboards[id].m_clipboardData);
}
void
CServer::onScreensaver(bool activated)
{
LOG((CLOG_DEBUG "onScreenSaver %s", activated ? "activated" : "deactivated"));
CLock lock(&m_mutex);
if (activated) {
// save current screen and position
m_activeSaver = m_active;
m_xSaver = m_x;
m_ySaver = m_y;
// jump to primary screen
if (m_active != m_primaryClient) {
switchScreen(m_primaryClient, 0, 0, true);
}
}
else {
// jump back to previous screen and position. we must check
// that the position is still valid since the screen may have
// changed resolutions while the screen saver was running.
if (m_activeSaver != NULL && m_activeSaver != m_primaryClient) {
// check position
IClient* screen = m_activeSaver;
SInt32 x, y, w, h;
screen->getShape(x, y, w, h);
SInt32 zoneSize = screen->getJumpZoneSize();
if (m_xSaver < x + zoneSize) {
m_xSaver = x + zoneSize;
}
else if (m_xSaver >= x + w - zoneSize) {
m_xSaver = x + w - zoneSize - 1;
}
if (m_ySaver < y + zoneSize) {
m_ySaver = y + zoneSize;
}
else if (m_ySaver >= y + h - zoneSize) {
m_ySaver = y + h - zoneSize - 1;
}
// jump
switchScreen(screen, m_xSaver, m_ySaver, false);
}
// reset state
m_activeSaver = NULL;
}
// send message to all clients
for (CClientList::const_iterator index = m_clients.begin();
index != m_clients.end(); ++index) {
IClient* client = index->second;
client->screensaver(activated);
}
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::onKeyDown(KeyID id, KeyModifierMask mask)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "onKeyDown id=%d mask=0x%04x", id, mask));
CLock lock(&m_mutex);
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
// handle command keys
if (onCommandKey(id, mask, true)) {
return;
}
// relay
m_active->keyDown(id, mask);
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::onKeyUp(KeyID id, KeyModifierMask mask)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "onKeyUp id=%d mask=0x%04x", id, mask));
CLock lock(&m_mutex);
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
// handle command keys
if (onCommandKey(id, mask, false)) {
return;
}
// relay
m_active->keyUp(id, mask);
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::onKeyRepeat(KeyID id, KeyModifierMask mask, SInt32 count)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "onKeyRepeat id=%d mask=0x%04x count=%d", id, mask, count));
CLock lock(&m_mutex);
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
// handle command keys
if (onCommandKey(id, mask, false)) {
onCommandKey(id, mask, true);
return;
}
// relay
m_active->keyRepeat(id, mask, count);
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::onMouseDown(ButtonID id)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "onMouseDown id=%d", id));
CLock lock(&m_mutex);
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
// relay
m_active->mouseDown(id);
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::onMouseUp(ButtonID id)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "onMouseUp id=%d", id));
CLock lock(&m_mutex);
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
// relay
m_active->mouseUp(id);
2001-10-06 14:13:28 +00:00
}
bool
2002-06-17 13:31:21 +00:00
CServer::onMouseMovePrimary(SInt32 x, SInt32 y)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG2 "onMouseMovePrimary %d,%d", x, y));
CLock lock(&m_mutex);
return onMouseMovePrimaryNoLock(x, y);
}
bool
2002-06-17 13:31:21 +00:00
CServer::onMouseMovePrimaryNoLock(SInt32 x, SInt32 y)
{
2001-10-06 14:13:28 +00:00
// mouse move on primary (server's) screen
assert(m_primaryClient != NULL);
assert(m_active == m_primaryClient);
2001-10-06 14:13:28 +00:00
// ignore if mouse is locked to screen
if (isLockedToScreenNoLock()) {
return false;
2001-10-06 14:13:28 +00:00
}
// get screen shape
SInt32 ax, ay, aw, ah;
m_active->getShape(ax, ay, aw, ah);
SInt32 zoneSize = m_active->getJumpZoneSize();
2001-10-06 14:13:28 +00:00
// see if we should change screens
EDirection dir;
if (x < ax + zoneSize) {
x -= zoneSize;
dir = kLeft;
LOG((CLOG_DEBUG1 "switch to left"));
2001-10-06 14:13:28 +00:00
}
else if (x >= ax + aw - zoneSize) {
x += zoneSize;
dir = kRight;
LOG((CLOG_DEBUG1 "switch to right"));
2001-10-06 14:13:28 +00:00
}
else if (y < ay + zoneSize) {
y -= zoneSize;
dir = kTop;
LOG((CLOG_DEBUG1 "switch to top"));
2001-10-06 14:13:28 +00:00
}
else if (y >= ay + ah - zoneSize) {
y += zoneSize;
dir = kBottom;
LOG((CLOG_DEBUG1 "switch to bottom"));
2001-10-06 14:13:28 +00:00
}
else {
// still on local screen
return false;
2001-10-06 14:13:28 +00:00
}
// get jump destination and, if no screen in jump direction,
// then ignore the move.
IClient* newScreen = getNeighbor(m_active, dir, x, y);
2001-10-06 14:13:28 +00:00
if (newScreen == NULL) {
return false;
2001-10-06 14:13:28 +00:00
}
// switch screen
switchScreen(newScreen, x, y, false);
return true;
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::onMouseMoveSecondary(SInt32 dx, SInt32 dy)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG2 "onMouseMoveSecondary %+d,%+d", dx, dy));
CLock lock(&m_mutex);
onMouseMoveSecondaryNoLock(dx, dy);
}
void
2002-06-17 13:31:21 +00:00
CServer::onMouseMoveSecondaryNoLock(SInt32 dx, SInt32 dy)
{
2001-10-06 14:13:28 +00:00
// mouse move on secondary (client's) screen
assert(m_active != NULL);
if (m_active == m_primaryClient) {
// we're actually on the primary screen. this can happen
// when the primary screen begins processing a mouse move
// for a secondary screen, then the active (secondary)
// screen disconnects causing us to jump to the primary
// screen, and finally the primary screen finishes
// processing the mouse move, still thinking it's for
// a secondary screen. we just ignore the motion.
return;
}
2001-10-06 14:13:28 +00:00
// save old position
const SInt32 xOld = m_x;
const SInt32 yOld = m_y;
// accumulate motion
m_x += dx;
m_y += dy;
// get screen shape
SInt32 ax, ay, aw, ah;
m_active->getShape(ax, ay, aw, ah);
2001-10-06 14:13:28 +00:00
// switch screens if the mouse is outside the screen and not
// locked to the screen
IClient* newScreen = NULL;
if (!isLockedToScreenNoLock()) {
2001-10-06 14:13:28 +00:00
// find direction of neighbor
EDirection dir;
if (m_x < ax) {
dir = kLeft;
}
else if (m_x > ax + aw - 1) {
dir = kRight;
}
else if (m_y < ay) {
dir = kTop;
}
else if (m_y > ay + ah - 1) {
dir = kBottom;
}
else {
2001-10-06 14:13:28 +00:00
newScreen = m_active;
// keep compiler quiet about unset variable
dir = kLeft;
}
2001-10-06 14:13:28 +00:00
// get neighbor if we should switch
if (newScreen == NULL) {
LOG((CLOG_DEBUG1 "leave \"%s\" on %s", m_active->getName().c_str(), CConfig::dirName(dir)));
2001-10-06 14:13:28 +00:00
// get new position or clamp to current screen
newScreen = getNeighbor(m_active, dir, m_x, m_y);
if (newScreen == NULL) {
LOG((CLOG_DEBUG1 "no neighbor; clamping"));
if (m_x < ax) {
m_x = ax;
}
else if (m_x > ax + aw - 1) {
m_x = ax + aw - 1;
}
if (m_y < ay) {
m_y = ay;
}
else if (m_y > ay + ah - 1) {
m_y = ay + ah - 1;
}
2001-10-06 14:13:28 +00:00
}
}
}
else {
// clamp to edge when locked
if (m_x < ax) {
m_x = ax;
LOG((CLOG_DEBUG1 "clamp to left of \"%s\"", m_active->getName().c_str()));
}
else if (m_x > ax + aw - 1) {
m_x = ax + aw - 1;
LOG((CLOG_DEBUG1 "clamp to right of \"%s\"", m_active->getName().c_str()));
}
if (m_y < ay) {
m_y = ay;
LOG((CLOG_DEBUG1 "clamp to top of \"%s\"", m_active->getName().c_str()));
}
else if (m_y > ay + ah - 1) {
m_y = ay + ah - 1;
LOG((CLOG_DEBUG1 "clamp to bottom of \"%s\"", m_active->getName().c_str()));
}
2001-10-06 14:13:28 +00:00
}
// warp cursor if on same screen
if (newScreen == NULL || newScreen == m_active) {
// do nothing if mouse didn't move
if (m_x != xOld || m_y != yOld) {
LOG((CLOG_DEBUG2 "move on %s to %d,%d", m_active->getName().c_str(), m_x, m_y));
m_active->mouseMove(m_x, m_y);
2001-10-06 14:13:28 +00:00
}
}
// otherwise screen screens
else {
switchScreen(newScreen, m_x, m_y, false);
2001-10-06 14:13:28 +00:00
}
}
void
2002-06-17 13:31:21 +00:00
CServer::onMouseWheel(SInt32 delta)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "onMouseWheel %+d", delta));
CLock lock(&m_mutex);
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
// relay
m_active->mouseWheel(delta);
2001-10-06 14:13:28 +00:00
}
bool
CServer::onCommandKey(KeyID /*id*/, KeyModifierMask /*mask*/, bool /*down*/)
{
return false;
}
bool
CServer::isLockedToScreenNoLock() const
2001-10-06 14:13:28 +00:00
{
// locked if primary says we're locked
if (m_primaryClient->isLockedToScreen()) {
return true;
}
// locked if scroll-lock is toggled on
if ((m_primaryClient->getToggleMask() & KeyModifierScrollLock) != 0) {
return true;
}
// not locked
2001-10-06 14:13:28 +00:00
return false;
}
void
CServer::switchScreen(IClient* dst, SInt32 x, SInt32 y, bool forScreensaver)
2001-10-06 14:13:28 +00:00
{
// note -- must be locked on entry
2001-10-06 14:13:28 +00:00
assert(dst != NULL);
#ifndef NDEBUG
{
SInt32 dx, dy, dw, dh;
dst->getShape(dx, dy, dw, dh);
assert(x >= dx && y >= dy && x < dx + dw && y < dy + dh);
}
#endif
2001-10-06 14:13:28 +00:00
assert(m_active != NULL);
LOG((CLOG_INFO "switch from \"%s\" to \"%s\" at %d,%d", m_active->getName().c_str(), dst->getName().c_str(), x, y));
2001-10-06 14:13:28 +00:00
// record new position
m_x = x;
m_y = y;
2001-10-06 14:13:28 +00:00
// wrapping means leaving the active screen and entering it again.
// since that's a waste of time we skip that and just warp the
// mouse.
if (m_active != dst) {
// leave active screen
if (!m_active->leave()) {
// cannot leave screen
LOG((CLOG_WARN "can't leave screen"));
return;
}
// update the primary client's clipboards if we're leaving the
// primary screen.
if (m_active == m_primaryClient) {
2002-07-11 13:13:37 +00:00
for (ClipboardID id = 0; id < kClipboardEnd; ++id) {
CClipboardInfo& clipboard = m_clipboards[id];
if (clipboard.m_clipboardOwner == m_primaryClient->getName()) {
CString clipboardData;
m_primaryClient->getClipboard(id, clipboardData);
onClipboardChangedNoLock(id,
clipboard.m_clipboardSeqNum, clipboardData);
}
}
}
2001-10-06 14:13:28 +00:00
// cut over
m_active = dst;
// increment enter sequence number
++m_seqNum;
2001-10-06 14:13:28 +00:00
// enter new screen
m_active->enter(x, y, m_seqNum,
m_primaryClient->getToggleMask(),
forScreensaver);
// send the clipboard data to new active screen
for (ClipboardID id = 0; id < kClipboardEnd; ++id) {
m_active->setClipboard(id, m_clipboards[id].m_clipboardData);
}
2001-10-06 14:13:28 +00:00
}
else {
m_active->mouseMove(x, y);
2001-10-06 14:13:28 +00:00
}
}
IClient*
CServer::getNeighbor(IClient* src, EDirection dir) const
2001-10-06 14:13:28 +00:00
{
// note -- must be locked on entry
2001-10-06 14:13:28 +00:00
assert(src != NULL);
// get source screen name
CString srcName = src->getName();
2001-10-06 14:13:28 +00:00
assert(!srcName.empty());
LOG((CLOG_DEBUG2 "find neighbor on %s of \"%s\"", CConfig::dirName(dir), srcName.c_str()));
2001-10-06 14:13:28 +00:00
// get first neighbor. if it's the source then the source jumps
// to itself and we return the source.
CString dstName(m_config.getNeighbor(srcName, dir));
if (dstName == srcName) {
LOG((CLOG_DEBUG2 "\"%s\" is on %s of \"%s\"", dstName.c_str(), CConfig::dirName(dir), srcName.c_str()));
return src;
}
// keep checking
for (;;) {
// if nothing in that direction then return NULL. if the
// destination is the source then we can make no more
// progress in this direction. since we haven't found a
// connected neighbor we return NULL.
if (dstName.empty() || dstName == srcName) {
LOG((CLOG_DEBUG2 "no neighbor on %s of \"%s\"", CConfig::dirName(dir), srcName.c_str()));
2001-10-06 14:13:28 +00:00
return NULL;
}
2001-10-06 14:13:28 +00:00
// look up neighbor cell. if the screen is connected and
// ready then we can stop.
CClientList::const_iterator index = m_clients.find(dstName);
if (index != m_clients.end()) {
LOG((CLOG_DEBUG2 "\"%s\" is on %s of \"%s\"", dstName.c_str(), CConfig::dirName(dir), srcName.c_str()));
2001-10-06 14:13:28 +00:00
return index->second;
}
// skip over unconnected screen
LOG((CLOG_DEBUG2 "ignored \"%s\" on %s of \"%s\"", dstName.c_str(), CConfig::dirName(dir), srcName.c_str()));
2001-10-06 14:13:28 +00:00
srcName = dstName;
// look up name of neighbor of skipped screen
dstName = m_config.getNeighbor(srcName, dir);
2001-10-06 14:13:28 +00:00
}
}
IClient*
CServer::getNeighbor(IClient* src,
EDirection srcSide, SInt32& x, SInt32& y) const
2001-10-06 14:13:28 +00:00
{
// note -- must be locked on entry
2001-10-06 14:13:28 +00:00
assert(src != NULL);
// get the first neighbor
IClient* dst = getNeighbor(src, srcSide);
if (dst == NULL) {
return NULL;
}
2001-10-06 14:13:28 +00:00
// get the source screen's size (needed for kRight and kBottom)
SInt32 sx, sy, sw, sh;
SInt32 dx, dy, dw, dh;
IClient* lastGoodScreen = src;
lastGoodScreen->getShape(sx, sy, sw, sh);
lastGoodScreen->getShape(dx, dy, dw, dh);
2001-10-06 14:13:28 +00:00
// find destination screen, adjusting x or y (but not both). the
// searches are done in a sort of canonical screen space where
// the upper-left corner is 0,0 for each screen. we adjust from
// actual to canonical position on entry to and from canonical to
// actual on exit from the search.
2001-10-06 14:13:28 +00:00
switch (srcSide) {
case kLeft:
x -= dx;
while (dst != NULL) {
2001-10-06 14:13:28 +00:00
lastGoodScreen = dst;
lastGoodScreen->getShape(dx, dy, dw, dh);
x += dw;
2001-10-06 14:13:28 +00:00
if (x >= 0) {
break;
}
LOG((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
2001-10-06 14:13:28 +00:00
dst = getNeighbor(lastGoodScreen, srcSide);
}
assert(lastGoodScreen != NULL);
x += dx;
2001-10-06 14:13:28 +00:00
break;
case kRight:
x -= dx;
2001-10-06 14:13:28 +00:00
while (dst != NULL) {
x -= dw;
2001-10-06 14:13:28 +00:00
lastGoodScreen = dst;
lastGoodScreen->getShape(dx, dy, dw, dh);
if (x < dw) {
2001-10-06 14:13:28 +00:00
break;
}
LOG((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
2001-10-06 14:13:28 +00:00
dst = getNeighbor(lastGoodScreen, srcSide);
}
assert(lastGoodScreen != NULL);
x += dx;
2001-10-06 14:13:28 +00:00
break;
case kTop:
y -= dy;
2001-10-06 14:13:28 +00:00
while (dst != NULL) {
lastGoodScreen = dst;
lastGoodScreen->getShape(dx, dy, dw, dh);
y += dh;
2001-10-06 14:13:28 +00:00
if (y >= 0) {
break;
}
LOG((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
2001-10-06 14:13:28 +00:00
dst = getNeighbor(lastGoodScreen, srcSide);
}
assert(lastGoodScreen != NULL);
y += dy;
2001-10-06 14:13:28 +00:00
break;
case kBottom:
y -= dy;
2001-10-06 14:13:28 +00:00
while (dst != NULL) {
y -= dh;
2001-10-06 14:13:28 +00:00
lastGoodScreen = dst;
lastGoodScreen->getShape(dx, dy, dw, dh);
if (y < sh) {
2001-10-06 14:13:28 +00:00
break;
}
LOG((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
2001-10-06 14:13:28 +00:00
dst = getNeighbor(lastGoodScreen, srcSide);
}
assert(lastGoodScreen != NULL);
y += dy;
2001-10-06 14:13:28 +00:00
break;
}
// save destination screen
assert(lastGoodScreen != NULL);
dst = lastGoodScreen;
2001-10-06 14:13:28 +00:00
// if entering primary screen then be sure to move in far enough
// to avoid the jump zone. if entering a side that doesn't have
// a neighbor (i.e. an asymmetrical side) then we don't need to
// move inwards because that side can't provoke a jump.
if (dst == m_primaryClient) {
const CString dstName(dst->getName());
2001-10-06 14:13:28 +00:00
switch (srcSide) {
case kLeft:
if (!m_config.getNeighbor(dstName, kRight).empty() &&
x > dx + dw - 1 - dst->getJumpZoneSize())
x = dx + dw - 1 - dst->getJumpZoneSize();
2001-10-06 14:13:28 +00:00
break;
case kRight:
if (!m_config.getNeighbor(dstName, kLeft).empty() &&
x < dx + dst->getJumpZoneSize())
x = dx + dst->getJumpZoneSize();
2001-10-06 14:13:28 +00:00
break;
case kTop:
if (!m_config.getNeighbor(dstName, kBottom).empty() &&
y > dy + dh - 1 - dst->getJumpZoneSize())
y = dy + dh - 1 - dst->getJumpZoneSize();
2001-10-06 14:13:28 +00:00
break;
case kBottom:
if (!m_config.getNeighbor(dstName, kTop).empty() &&
y < dy + dst->getJumpZoneSize())
y = dy + dst->getJumpZoneSize();
2001-10-06 14:13:28 +00:00
break;
}
}
// adjust the coordinate orthogonal to srcSide to account for
// resolution differences. for example, if y is 200 pixels from
// the top on a screen 1000 pixels high (20% from the top) when
// we cross the left edge onto a screen 600 pixels high then y
// should be set 120 pixels from the top (again 20% from the
// top).
2001-10-06 14:13:28 +00:00
switch (srcSide) {
case kLeft:
case kRight:
y -= sy;
if (y < 0) {
y = 0;
}
else if (y >= sh) {
y = dh - 1;
}
else {
y = static_cast<SInt32>(0.5 + y *
static_cast<double>(dh - 1) / (sh - 1));
}
y += dy;
2001-10-06 14:13:28 +00:00
break;
case kTop:
case kBottom:
x -= sx;
if (x < 0) {
x = 0;
}
else if (x >= sw) {
x = dw - 1;
}
else {
x = static_cast<SInt32>(0.5 + x *
static_cast<double>(dw - 1) / (sw - 1));
}
x += dx;
2001-10-06 14:13:28 +00:00
break;
}
return dst;
2001-10-06 14:13:28 +00:00
}
void
CServer::closeClients(const CConfig& config)
{
CThreadList threads;
{
CLock lock(&m_mutex);
// get the set of clients that are connected but are being
// dropped from the configuration (or who's canonical name
// is changing) and tell them to disconnect. note that
// since m_clientThreads doesn't include a thread for the
// primary client we will not close it.
for (CClientThreadList::iterator
index = m_clientThreads.begin();
index != m_clientThreads.end(); ) {
const CString& name = index->first;
if (!config.isCanonicalName(name)) {
// lookup IClient with name
CClientList::const_iterator index2 = m_clients.find(name);
assert(index2 != m_clients.end());
2002-07-11 13:13:37 +00:00
// save the thread and remove it from m_clientThreads
threads.push_back(index->second);
m_clientThreads.erase(index++);
// close that client
assert(index2->second != m_primaryClient);
index2->second->close();
}
else {
++index;
}
}
}
// wait a moment to allow each client to close its connection
// before we close it (to avoid having our socket enter TIME_WAIT).
if (threads.size() > 0) {
ARCH->sleep(1.0);
}
// cancel the old client threads
for (CThreadList::iterator index = threads.begin();
index != threads.end(); ++index) {
index->cancel();
}
// wait for old client threads to terminate. we must not hold
// the lock while we do this so those threads can finish any
// calls to this object.
for (CThreadList::iterator index = threads.begin();
index != threads.end(); ++index) {
index->wait();
}
// clean up thread list
reapThreads();
}
CThread
CServer::startThread(IJob* job)
{
CLock lock(&m_mutex);
// reap completed threads
doReapThreads(m_threads);
// add new thread to list
CThread thread(job);
m_threads.push_back(thread);
LOG((CLOG_DEBUG1 "started thread 0x%08x", thread.getID()));
return thread;
}
void
CServer::stopThreads(double timeout)
{
LOG((CLOG_DEBUG1 "stopping threads"));
// cancel the accept client thread to prevent more clients from
// connecting while we're shutting down.
CThread* acceptClientThread;
{
CLock lock(&m_mutex);
acceptClientThread = m_acceptClientThread;
m_acceptClientThread = NULL;
}
if (acceptClientThread != NULL) {
acceptClientThread->cancel();
acceptClientThread->wait(timeout);
delete acceptClientThread;
}
// close all clients (except the primary)
{
CConfig emptyConfig;
closeClients(emptyConfig);
}
// swap thread list so nobody can mess with it
CThreadList threads;
{
CLock lock(&m_mutex);
threads.swap(m_threads);
}
// cancel every thread
for (CThreadList::iterator index = threads.begin();
index != threads.end(); ++index) {
index->cancel();
}
// now wait for the threads
CStopwatch timer(true);
while (threads.size() > 0 && (timeout < 0.0 || timer.getTime() < timeout)) {
doReapThreads(threads);
ARCH->sleep(0.01);
}
// delete remaining threads
for (CThreadList::iterator index = threads.begin();
index != threads.end(); ++index) {
LOG((CLOG_DEBUG1 "reaped running thread 0x%08x", index->getID()));
}
LOG((CLOG_DEBUG1 "stopped threads"));
}
void
CServer::reapThreads()
{
CLock lock(&m_mutex);
doReapThreads(m_threads);
}
void
CServer::doReapThreads(CThreadList& threads)
{
for (CThreadList::iterator index = threads.begin();
index != threads.end(); ) {
if (index->wait(0.0)) {
// thread terminated
LOG((CLOG_DEBUG1 "reaped thread 0x%08x", index->getID()));
index = threads.erase(index);
}
else {
// thread is running
++index;
}
}
}
void
CServer::acceptClients(void*)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG1 "starting to wait for clients"));
IListenSocket* listen = NULL;
2001-10-06 14:13:28 +00:00
try {
// create socket listener
if (m_socketFactory != NULL) {
listen = m_socketFactory->createListen();
}
assert(listen != NULL);
2001-10-06 14:13:28 +00:00
// bind to the desired port. keep retrying if we can't bind
// the address immediately.
CStopwatch timer;
for (;;) {
try {
LOG((CLOG_DEBUG1 "binding listen socket"));
listen->bind(m_config.getSynergyAddress());
2001-10-06 14:13:28 +00:00
break;
}
catch (XSocketAddressInUse& e) {
LOG((CLOG_WARN "bind failed: %s", e.what()));
2001-10-06 14:13:28 +00:00
// give up if we've waited too long
if (timer.getTime() >= m_bindTimeout) {
LOG((CLOG_ERR "waited too long to bind, giving up"));
2001-10-06 14:13:28 +00:00
throw;
}
// wait a bit before retrying
ARCH->sleep(5.0);
2001-10-06 14:13:28 +00:00
}
}
// accept connections and begin processing them
LOG((CLOG_DEBUG1 "waiting for client connections"));
2001-10-06 14:13:28 +00:00
for (;;) {
// accept connection
CThread::testCancel();
IDataSocket* socket = listen->accept();
LOG((CLOG_NOTE "accepted client connection"));
2001-10-06 14:13:28 +00:00
CThread::testCancel();
// start handshake thread
startThread(new TMethodJob<CServer>(
this, &CServer::runClient, socket));
2001-10-06 14:13:28 +00:00
}
// clean up
delete listen;
2001-10-06 14:13:28 +00:00
}
catch (XBase& e) {
LOG((CLOG_ERR "cannot listen for clients: %s", e.what()));
delete listen;
exitMainLoopWithError();
2001-10-06 14:13:28 +00:00
}
catch (...) {
delete listen;
throw;
}
2001-10-06 14:13:28 +00:00
}
void
CServer::runClient(void* vsocket)
2001-10-06 14:13:28 +00:00
{
// get the socket pointer from the argument
assert(vsocket != NULL);
IDataSocket* socket = reinterpret_cast<IDataSocket*>(vsocket);
2001-10-06 14:13:28 +00:00
// create proxy
CClientProxy* proxy = NULL;
try {
proxy = handshakeClient(socket);
if (proxy == NULL) {
delete socket;
return;
}
}
catch (...) {
delete socket;
throw;
}
2001-10-06 14:13:28 +00:00
// add the connection
try {
addConnection(proxy);
2001-10-06 14:13:28 +00:00
// save this client's thread
CLock lock(&m_mutex);
m_clientThreads.insert(std::make_pair(proxy->getName(),
CThread::getCurrentThread()));
// send configuration options
sendOptions(proxy);
}
catch (XDuplicateClient& e) {
// client has duplicate name
LOG((CLOG_WARN "a client with name \"%s\" is already connected", e.getName().c_str()));
try {
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBusy);
}
catch (XSocket&) {
// ignore
}
delete proxy;
delete socket;
return;
}
catch (XUnknownClient& e) {
// client has unknown name
LOG((CLOG_WARN "a client with name \"%s\" is not in the map", e.getName().c_str()));
try {
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEUnknown);
}
catch (XSocket&) {
// ignore
}
delete proxy;
delete socket;
return;
}
catch (...) {
delete proxy;
delete socket;
throw;
}
2001-10-06 14:13:28 +00:00
// activate screen saver on new client if active on the primary screen
{
CLock lock(&m_mutex);
if (m_activeSaver != NULL) {
proxy->screensaver(true);
}
}
2001-10-06 14:13:28 +00:00
// handle client messages
try {
LOG((CLOG_NOTE "client \"%s\" has connected", proxy->getName().c_str()));
proxy->mainLoop();
}
catch (XBadClient&) {
// client not behaving
LOG((CLOG_WARN "protocol error from client \"%s\"", proxy->getName().c_str()));
try {
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBad);
}
2003-01-12 16:35:11 +00:00
catch (XSocket&) {
// ignore. client probably aborted the connection.
}
}
catch (XBase& e) {
// misc error
LOG((CLOG_WARN "error communicating with client \"%s\": %s", proxy->getName().c_str(), e.what()));
}
catch (...) {
// mainLoop() was probably cancelled
removeConnection(proxy->getName());
delete socket;
throw;
}
2001-10-06 14:13:28 +00:00
// clean up
removeConnection(proxy->getName());
delete socket;
}
2001-10-06 14:13:28 +00:00
CClientProxy*
CServer::handshakeClient(IDataSocket* socket)
{
LOG((CLOG_DEBUG1 "negotiating with new client"));
2001-10-06 14:13:28 +00:00
// get the input and output streams
IInputStream* input = socket->getInputStream();
IOutputStream* output = socket->getOutputStream();
bool own = false;
// attach filters
if (m_streamFilterFactory != NULL) {
input = m_streamFilterFactory->createInput(input, own);
output = m_streamFilterFactory->createOutput(output, own);
own = true;
}
2001-10-06 14:13:28 +00:00
// attach the packetizing filters
input = new CInputPacketStream(input, own);
output = new COutputPacketStream(output, own);
own = true;
2001-10-06 14:13:28 +00:00
CClientProxy* proxy = NULL;
CString name("<unknown>");
try {
// give the client a limited time to complete the handshake
CTimerThread timer(30.0);
// say hello
LOG((CLOG_DEBUG1 "saying hello"));
CProtocolUtil::writef(output, kMsgHello,
kProtocolMajorVersion,
kProtocolMinorVersion);
output->flush();
// wait for the reply
LOG((CLOG_DEBUG1 "waiting for hello reply"));
UInt32 n = input->getSize();
// limit the maximum length of the hello
if (n > kMaxHelloLength) {
throw XBadClient();
}
// get and parse the reply to hello
SInt16 major, minor;
try {
LOG((CLOG_DEBUG1 "parsing hello reply"));
CProtocolUtil::readf(input, kMsgHelloBack,
&major, &minor, &name);
}
catch (XIO&) {
throw XBadClient();
}
// disallow invalid version numbers
if (major < 0 || minor < 0) {
throw XIncompatibleClient(major, minor);
}
// disallow connection from test versions to release versions
if (major == 0 && kProtocolMajorVersion != 0) {
throw XIncompatibleClient(major, minor);
2001-10-06 14:13:28 +00:00
}
// hangup (with error) if version isn't supported
if (major > kProtocolMajorVersion ||
(major == kProtocolMajorVersion && minor > kProtocolMinorVersion)) {
throw XIncompatibleClient(major, minor);
}
2001-10-06 14:13:28 +00:00
// convert name to canonical form (if any)
if (m_config.isScreen(name)) {
name = m_config.getCanonicalName(name);
}
// create client proxy for highest version supported by the client
LOG((CLOG_DEBUG1 "creating proxy for client \"%s\" version %d.%d", name.c_str(), major, minor));
proxy = new CClientProxy1_0(this, name, input, output);
// negotiate
// FIXME
// ask and wait for the client's info
LOG((CLOG_DEBUG1 "waiting for info for client \"%s\"", name.c_str()));
proxy->open();
return proxy;
}
catch (XIncompatibleClient& e) {
// client is incompatible
LOG((CLOG_WARN "client \"%s\" has incompatible version %d.%d)", name.c_str(), e.getMajor(), e.getMinor()));
try {
CProtocolUtil::writef(output, kMsgEIncompatible,
kProtocolMajorVersion, kProtocolMinorVersion);
}
2003-01-12 16:35:11 +00:00
catch (XSocket&) {
// ignore
}
}
catch (XBadClient&) {
// client not behaving
LOG((CLOG_WARN "protocol error from client \"%s\"", name.c_str()));
try {
CProtocolUtil::writef(output, kMsgEBad);
}
2003-01-12 16:35:11 +00:00
catch (XSocket&) {
// ignore. client probably aborted the connection.
}
2001-10-06 14:13:28 +00:00
}
catch (XBase& e) {
// misc error
LOG((CLOG_WARN "error communicating with client \"%s\": %s", name.c_str(), e.what()));
2001-10-06 14:13:28 +00:00
}
catch (...) {
// probably timed out
if (proxy != NULL) {
delete proxy;
}
else if (own) {
delete input;
delete output;
}
throw;
}
// failed
if (proxy != NULL) {
delete proxy;
}
else if (own) {
delete input;
delete output;
}
return NULL;
2001-10-06 14:13:28 +00:00
}
void
CServer::acceptHTTPClients(void*)
{
LOG((CLOG_DEBUG1 "starting to wait for HTTP clients"));
IListenSocket* listen = NULL;
try {
// create socket listener
listen = new CTCPListenSocket;
// bind to the desired port. keep retrying if we can't bind
// the address immediately.
CStopwatch timer;
for (;;) {
try {
LOG((CLOG_DEBUG1 "binding HTTP listen socket"));
listen->bind(m_config.getHTTPAddress());
break;
}
catch (XSocketBind& e) {
LOG((CLOG_DEBUG1 "bind HTTP failed: %s", e.what()));
// give up if we've waited too long
if (timer.getTime() >= m_bindTimeout) {
LOG((CLOG_DEBUG1 "waited too long to bind HTTP, giving up"));
throw;
}
// wait a bit before retrying
ARCH->sleep(5.0);
}
}
// accept connections and begin processing them
LOG((CLOG_DEBUG1 "waiting for HTTP connections"));
for (;;) {
// limit the number of HTTP requests being handled at once
{
CLock lock(&m_httpAvailable);
while (m_httpAvailable == 0) {
m_httpAvailable.wait();
}
assert(m_httpAvailable > 0);
m_httpAvailable = m_httpAvailable - 1;
}
// accept connection
CThread::testCancel();
IDataSocket* socket = listen->accept();
LOG((CLOG_NOTE "accepted HTTP connection"));
CThread::testCancel();
// handle HTTP request
startThread(new TMethodJob<CServer>(
this, &CServer::processHTTPRequest, socket));
}
// clean up
delete listen;
}
catch (XBase& e) {
LOG((CLOG_ERR "cannot listen for HTTP clients: %s", e.what()));
delete listen;
exitMainLoopWithError();
}
catch (...) {
delete listen;
throw;
}
}
void
2002-06-17 13:31:21 +00:00
CServer::processHTTPRequest(void* vsocket)
{
IDataSocket* socket = reinterpret_cast<IDataSocket*>(vsocket);
try {
// process the request and force delivery
m_httpServer->processRequest(socket);
socket->getOutputStream()->flush();
// wait a moment to give the client a chance to hangup first
ARCH->sleep(3.0);
// clean up
socket->close();
delete socket;
// increment available HTTP handlers
{
CLock lock(&m_httpAvailable);
m_httpAvailable = m_httpAvailable + 1;
m_httpAvailable.signal();
}
}
catch (...) {
delete socket;
{
CLock lock(&m_httpAvailable);
m_httpAvailable = m_httpAvailable + 1;
m_httpAvailable.signal();
}
throw;
}
}
void
CServer::sendOptions(IClient* client) const
{
// note -- must be locked on entry
// look up options for client. we're done if there aren't any.
const CConfig::CScreenOptions* options =
m_config.getOptions(client->getName());
if (options == NULL || options->size() == 0) {
return;
}
// convert options to a more convenient form for sending
COptionsList optionsList;
optionsList.reserve(2 * options->size());
for (CConfig::CScreenOptions::const_iterator index = options->begin();
index != options->end(); ++index) {
optionsList.push_back(index->first);
optionsList.push_back(static_cast<UInt32>(index->second));
}
// send the options
client->setOptions(optionsList);
}
void
CServer::openPrimaryScreen()
2001-10-06 14:13:28 +00:00
{
assert(m_primaryClient == NULL);
2001-10-06 14:13:28 +00:00
// reset sequence number
m_seqNum = 0;
// canonicalize the primary screen name
CString primaryName = m_config.getCanonicalName(getPrimaryScreenName());
if (primaryName.empty()) {
throw XUnknownClient(getPrimaryScreenName());
}
// clear clipboards
for (ClipboardID id = 0; id < kClipboardEnd; ++id) {
CClipboardInfo& clipboard = m_clipboards[id];
clipboard.m_clipboardOwner = primaryName;
clipboard.m_clipboardSeqNum = m_seqNum;
if (clipboard.m_clipboard.open(0)) {
clipboard.m_clipboard.empty();
clipboard.m_clipboard.close();
}
clipboard.m_clipboardData = clipboard.m_clipboard.marshall();
}
try {
// create the primary client
m_primaryClient = new CPrimaryClient(m_screenFactory,
this, this, primaryName);
// add connection
addConnection(m_primaryClient);
m_active = m_primaryClient;
// open the screen
LOG((CLOG_DEBUG1 "opening primary screen"));
m_primaryClient->open();
2002-07-11 13:13:37 +00:00
// tell it about the active sides
m_primaryClient->reconfigure(getActivePrimarySides());
// tell primary client about its options
sendOptions(m_primaryClient);
}
catch (...) {
// if m_active is NULL then we haven't added the connection
// for the primary client so we don't try to remove it.
if (m_active != NULL) {
removeConnection(primaryName);
}
else {
delete m_primaryClient;
}
m_active = NULL;
m_primaryClient = NULL;
throw;
}
2001-10-06 14:13:28 +00:00
}
void
CServer::closePrimaryScreen()
2001-10-06 14:13:28 +00:00
{
assert(m_primaryClient != NULL);
2001-10-06 14:13:28 +00:00
// close the primary screen
try {
LOG((CLOG_DEBUG1 "closing primary screen"));
m_primaryClient->close();
2001-10-06 14:13:28 +00:00
}
catch (...) {
// ignore
}
// remove connection
removeConnection(m_primaryClient->getName());
m_primaryClient = NULL;
2001-10-06 14:13:28 +00:00
}
void
CServer::addConnection(IClient* client)
2001-10-06 14:13:28 +00:00
{
assert(client != NULL);
LOG((CLOG_DEBUG "adding connection \"%s\"", client->getName().c_str()));
2001-10-06 14:13:28 +00:00
CLock lock(&m_mutex);
// name must be in our configuration
if (!m_config.isScreen(client->getName())) {
throw XUnknownClient(client->getName());
}
// can only have one screen with a given name at any given time
if (m_clients.count(client->getName()) != 0) {
throw XDuplicateClient(client->getName());
}
// save screen info
m_clients.insert(std::make_pair(client->getName(), client));
LOG((CLOG_DEBUG "added connection \"%s\"", client->getName().c_str()));
2001-10-06 14:13:28 +00:00
}
void
2002-06-17 13:31:21 +00:00
CServer::removeConnection(const CString& name)
2001-10-06 14:13:28 +00:00
{
LOG((CLOG_DEBUG "removing connection \"%s\"", name.c_str()));
2001-10-06 14:13:28 +00:00
CLock lock(&m_mutex);
// find client
CClientList::iterator index = m_clients.find(name);
assert(index != m_clients.end());
// if this is active screen then we have to jump off of it
IClient* active = (m_activeSaver != NULL) ? m_activeSaver : m_active;
if (active == index->second && active != m_primaryClient) {
// record new position (center of primary screen)
m_primaryClient->getCursorCenter(m_x, m_y);
// don't notify active screen since it probably already disconnected
LOG((CLOG_INFO "jump from \"%s\" to \"%s\" at %d,%d", active->getName().c_str(), m_primaryClient->getName().c_str(), m_x, m_y));
// cut over
m_active = m_primaryClient;
// enter new screen (unless we already have because of the
// screen saver)
if (m_activeSaver == NULL) {
m_primaryClient->enter(m_x, m_y, m_seqNum,
m_primaryClient->getToggleMask(), false);
}
}
// if this screen had the cursor when the screen saver activated
// then we can't switch back to it when the screen saver
// deactivates.
if (m_activeSaver == index->second) {
m_activeSaver = NULL;
}
// done with client
2001-10-06 14:13:28 +00:00
delete index->second;
m_clients.erase(index);
2001-10-06 14:13:28 +00:00
// remove any thread for this client
m_clientThreads.erase(name);
2001-10-06 14:13:28 +00:00
}
//
// CServer::CClipboardInfo
//
CString
CServer::XServerRethrow::getWhat() const throw()
{
return format("XServerRethrow", "child thread failed");
}
//
// CServer::CClipboardInfo
//
CServer::CClipboardInfo::CClipboardInfo() :
m_clipboard(),
m_clipboardData(),
m_clipboardOwner(),
m_clipboardSeqNum(0)
{
// do nothing
}