2001-10-06 14:13:28 +00:00
|
|
|
#include "CServer.h"
|
2002-05-30 16:13:16 +00:00
|
|
|
#include "CHTTPServer.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "CInputPacketStream.h"
|
|
|
|
#include "COutputPacketStream.h"
|
2002-07-09 21:22:31 +00:00
|
|
|
#include "CPrimaryClient.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "CProtocolUtil.h"
|
2002-07-09 21:22:31 +00:00
|
|
|
#include "CClientProxy1_0.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "ProtocolTypes.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "XScreen.h"
|
|
|
|
#include "XSynergy.h"
|
2002-06-17 12:02:26 +00:00
|
|
|
#include "IDataSocket.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "IListenSocket.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "ISocketFactory.h"
|
|
|
|
#include "XSocket.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "CLock.h"
|
|
|
|
#include "CThread.h"
|
|
|
|
#include "CTimerThread.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "XThread.h"
|
2002-05-30 16:13:16 +00:00
|
|
|
#include "CFunctionJob.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "CLog.h"
|
|
|
|
#include "CStopwatch.h"
|
2001-10-06 14:13:28 +00:00
|
|
|
#include "TMethodJob.h"
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
//
|
|
|
|
// CServer
|
|
|
|
//
|
|
|
|
|
2002-06-02 11:49:46 +00:00
|
|
|
const SInt32 CServer::s_httpMaxSimultaneousRequests = 3;
|
|
|
|
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::CServer(const CString& serverName) :
|
2002-06-10 22:06:45 +00:00
|
|
|
m_name(serverName),
|
2002-07-18 17:00:48 +00:00
|
|
|
m_bindTimeout(5.0 * 60.0),
|
|
|
|
m_socketFactory(NULL),
|
|
|
|
m_securityFactory(NULL),
|
|
|
|
m_acceptClientThread(NULL),
|
2002-06-10 22:06:45 +00:00
|
|
|
m_active(NULL),
|
2002-07-09 21:22:31 +00:00
|
|
|
m_primaryClient(NULL),
|
2002-06-10 22:06:45 +00:00
|
|
|
m_seqNum(0),
|
2002-06-26 16:31:48 +00:00
|
|
|
m_activeSaver(NULL),
|
2002-06-10 22:06:45 +00:00
|
|
|
m_httpServer(NULL),
|
|
|
|
m_httpAvailable(&m_mutex, s_httpMaxSimultaneousRequests)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-18 17:00:48 +00:00
|
|
|
// do nothing
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CServer::~CServer()
|
|
|
|
{
|
2002-06-03 18:53:18 +00:00
|
|
|
// do nothing
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-21 17:55:47 +00:00
|
|
|
bool
|
|
|
|
CServer::open()
|
|
|
|
{
|
|
|
|
// open the screen
|
|
|
|
try {
|
|
|
|
log((CLOG_INFO "opening screen"));
|
|
|
|
openPrimaryScreen();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (XScreenOpenFailure&) {
|
|
|
|
// can't open screen yet. wait a few seconds to retry.
|
|
|
|
log((CLOG_INFO "failed to open screen"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (XUnknownClient& e) {
|
|
|
|
// can't open screen yet. wait a few seconds to retry.
|
|
|
|
log((CLOG_CRIT "unknown screen name `%s'", e.getName().c_str()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-30 15:17:44 +00:00
|
|
|
CServer::mainLoop()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-06-21 17:55:47 +00:00
|
|
|
// check preconditions
|
|
|
|
{
|
|
|
|
CLock lock(&m_mutex);
|
2002-07-09 21:22:31 +00:00
|
|
|
assert(m_primaryClient != NULL);
|
2002-06-21 17:55:47 +00:00
|
|
|
}
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
try {
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_NOTE "starting server"));
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// start listening for new clients
|
2002-07-18 17:00:48 +00:00
|
|
|
m_acceptClientThread = new CThread(startThread(
|
|
|
|
new TMethodJob<CServer>(this,
|
|
|
|
&CServer::acceptClients)));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-06-09 16:53:25 +00:00
|
|
|
// start listening for HTTP requests
|
|
|
|
if (m_config.getHTTPAddress().isValid()) {
|
|
|
|
m_httpServer = new CHTTPServer(this);
|
2002-06-21 15:18:01 +00:00
|
|
|
startThread(new TMethodJob<CServer>(this,
|
|
|
|
&CServer::acceptHTTPClients));
|
2002-06-09 16:53:25 +00:00
|
|
|
}
|
|
|
|
|
2001-11-19 00:33:36 +00:00
|
|
|
// handle events
|
2002-07-30 15:17:44 +00:00
|
|
|
m_primaryClient->mainLoop();
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// clean up
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_NOTE "stopping server"));
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// 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 (XBase& e) {
|
2001-11-25 18:32:41 +00:00
|
|
|
log((CLOG_ERR "server error: %s", e.what()));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// clean up
|
2002-06-02 18:49:35 +00:00
|
|
|
log((CLOG_NOTE "stopping server"));
|
2002-07-09 21:22:31 +00:00
|
|
|
FINALLY;
|
2002-06-02 18:49:35 +00:00
|
|
|
}
|
|
|
|
catch (XThread&) {
|
|
|
|
// clean up
|
|
|
|
log((CLOG_NOTE "stopping server"));
|
2002-07-09 21:22:31 +00:00
|
|
|
FINALLY;
|
2002-06-02 18:49:35 +00:00
|
|
|
throw;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
catch (...) {
|
2001-11-19 00:33:36 +00:00
|
|
|
log((CLOG_DEBUG "unknown server error"));
|
2001-10-14 14:37:41 +00:00
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// clean up
|
2002-06-02 18:49:35 +00:00
|
|
|
log((CLOG_NOTE "stopping server"));
|
2002-07-09 21:22:31 +00:00
|
|
|
FINALLY;
|
2001-10-06 14:13:28 +00:00
|
|
|
throw;
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
#undef FINALLY
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-30 15:17:44 +00:00
|
|
|
CServer::exitMainLoop()
|
2002-04-29 13:31:44 +00:00
|
|
|
{
|
2002-07-30 15:17:44 +00:00
|
|
|
m_primaryClient->exitMainLoop();
|
2002-06-03 13:45:30 +00:00
|
|
|
}
|
|
|
|
|
2002-07-13 22:00:38 +00:00
|
|
|
void
|
|
|
|
CServer::close()
|
|
|
|
{
|
|
|
|
if (m_primaryClient != NULL) {
|
|
|
|
closePrimaryScreen();
|
|
|
|
}
|
|
|
|
log((CLOG_INFO "closed screen"));
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
bool
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::setConfig(const CConfig& config)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-09 21:22:31 +00:00
|
|
|
// refuse configuration if it doesn't include the primary screen
|
2002-05-31 18:09:43 +00:00
|
|
|
{
|
|
|
|
CLock lock(&m_mutex);
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_primaryClient != NULL &&
|
|
|
|
!config.isScreen(m_primaryClient->getName())) {
|
2002-05-31 18:09:43 +00:00
|
|
|
return false;
|
|
|
|
}
|
2002-06-08 23:24:40 +00:00
|
|
|
}
|
2002-06-01 10:52:02 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// close clients that are connected but being dropped from the
|
|
|
|
// configuration.
|
|
|
|
closeClients(config);
|
2002-06-21 15:18:01 +00:00
|
|
|
|
2002-06-08 23:24:40 +00:00
|
|
|
// cut over
|
|
|
|
CLock lock(&m_mutex);
|
|
|
|
m_config = config;
|
|
|
|
|
|
|
|
// tell primary screen about reconfiguration
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_primaryClient != NULL) {
|
2002-07-11 13:13:37 +00:00
|
|
|
m_primaryClient->reconfigure(getActivePrimarySides());
|
2002-06-08 23:24:40 +00:00
|
|
|
}
|
|
|
|
|
2002-05-31 18:09:43 +00:00
|
|
|
return true;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
CString
|
|
|
|
CServer::getPrimaryScreenName() const
|
2002-05-30 16:13:16 +00:00
|
|
|
{
|
2002-06-09 17:59:32 +00:00
|
|
|
return m_name;
|
2002-05-30 16:13:16 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::getConfig(CConfig* config) const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-05-31 14:43:23 +00:00
|
|
|
assert(config != NULL);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
CLock lock(&m_mutex);
|
2002-05-31 14:43:23 +00:00
|
|
|
*config = m_config;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
UInt32
|
|
|
|
CServer::getActivePrimarySides() const
|
2001-11-19 00:33:36 +00:00
|
|
|
{
|
2002-07-11 13:13:37 +00:00
|
|
|
// note -- m_mutex must be locked on entry
|
2001-11-19 00:33:36 +00:00
|
|
|
UInt32 sides = 0;
|
2002-07-15 15:01:36 +00:00
|
|
|
if (!m_config.getNeighbor(getPrimaryScreenName(), kLeft).empty()) {
|
|
|
|
sides |= kLeftMask;
|
2002-05-31 18:09:43 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
if (!m_config.getNeighbor(getPrimaryScreenName(), kRight).empty()) {
|
|
|
|
sides |= kRightMask;
|
2002-05-31 18:09:43 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
if (!m_config.getNeighbor(getPrimaryScreenName(), kTop).empty()) {
|
|
|
|
sides |= kTopMask;
|
2002-05-31 18:09:43 +00:00
|
|
|
}
|
2002-07-15 15:01:36 +00:00
|
|
|
if (!m_config.getNeighbor(getPrimaryScreenName(), kBottom).empty()) {
|
|
|
|
sides |= kBottomMask;
|
2002-05-31 18:09:43 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
return sides;
|
|
|
|
}
|
|
|
|
|
2002-07-16 16:52:26 +00:00
|
|
|
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
|
2002-07-18 17:00:48 +00:00
|
|
|
CLock lock(&m_mutex);
|
2002-07-16 16:52:26 +00:00
|
|
|
delete m_httpServer;
|
|
|
|
m_httpServer = NULL;
|
|
|
|
|
|
|
|
// note -- we do not attempt to close down the primary screen
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-10 14:15:17 +00:00
|
|
|
CServer::onInfoChanged(const CString& name, const CClientInfo& info)
|
2002-06-01 10:52:02 +00:00
|
|
|
{
|
2002-07-09 21:22:31 +00:00
|
|
|
CLock lock(&m_mutex);
|
2002-04-29 14:25:24 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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();
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient* client = index->second;
|
|
|
|
assert(client != NULL);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// update the remote mouse coordinates
|
|
|
|
if (client == m_active) {
|
2002-07-10 14:15:17 +00:00
|
|
|
m_x = info.m_mx;
|
|
|
|
m_y = info.m_my;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-07-10 14:15:17 +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));
|
2002-05-24 17:54:28 +00:00
|
|
|
|
|
|
|
// handle resolution change to primary screen
|
2002-07-09 21:22:31 +00:00
|
|
|
if (client == m_primaryClient) {
|
|
|
|
if (client == m_active) {
|
|
|
|
onMouseMovePrimaryNoLock(m_x, m_y);
|
2002-05-24 17:54:28 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-06-01 10:52:02 +00:00
|
|
|
onMouseMoveSecondaryNoLock(0, 0);
|
2002-05-24 17:54:28 +00:00
|
|
|
}
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
bool
|
2002-07-10 14:15:17 +00:00
|
|
|
CServer::onGrabClipboard(const CString& name, ClipboardID id, UInt32 seqNum)
|
2001-11-25 18:32:41 +00:00
|
|
|
{
|
|
|
|
CLock lock(&m_mutex);
|
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// screen must be connected
|
2002-07-09 21:22:31 +00:00
|
|
|
CClientList::iterator grabber = m_clients.find(name);
|
|
|
|
if (grabber == m_clients.end()) {
|
2001-11-25 18:32:41 +00:00
|
|
|
throw XBadClient();
|
|
|
|
}
|
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// ignore grab if sequence number is old. always allow primary
|
|
|
|
// screen to grab.
|
2002-07-10 14:15:17 +00:00
|
|
|
CClipboardInfo& clipboard = m_clipboards[id];
|
2002-07-09 21:22:31 +00:00
|
|
|
if (name != m_primaryClient->getName() &&
|
2002-04-29 13:31:44 +00:00
|
|
|
seqNum < clipboard.m_clipboardSeqNum) {
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_INFO "ignored screen \"%s\" grab of clipboard %d", name.c_str(), id));
|
|
|
|
return false;
|
2002-04-29 13:31:44 +00:00
|
|
|
}
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// mark screen as owning clipboard
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_INFO "screen \"%s\" grabbed clipboard %d from \"%s\"", name.c_str(), id, clipboard.m_clipboardOwner.c_str()));
|
|
|
|
clipboard.m_clipboardOwner = name;
|
2002-04-29 13:31:44 +00:00
|
|
|
clipboard.m_clipboardSeqNum = seqNum;
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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();
|
2002-04-29 13:31:44 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
clipboard.m_clipboardData = clipboard.m_clipboard.marshall();
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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);
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
return true;
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-10 14:15:17 +00:00
|
|
|
CServer::onClipboardChanged(ClipboardID id, UInt32 seqNum, const CString& data)
|
2001-11-25 18:32:41 +00:00
|
|
|
{
|
|
|
|
CLock lock(&m_mutex);
|
2002-07-09 21:22:31 +00:00
|
|
|
onClipboardChangedNoLock(id, seqNum, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CServer::onClipboardChangedNoLock(ClipboardID id,
|
|
|
|
UInt32 seqNum, const CString& data)
|
|
|
|
{
|
2002-04-29 13:31:44 +00:00
|
|
|
CClipboardInfo& clipboard = m_clipboards[id];
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// ignore update if sequence number is old
|
|
|
|
if (seqNum < clipboard.m_clipboardSeqNum) {
|
2002-07-09 21:22:31 +00:00
|
|
|
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));
|
2002-04-29 13:31:44 +00:00
|
|
|
return;
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
2002-04-29 13:31:44 +00:00
|
|
|
|
|
|
|
// unmarshall into our clipboard buffer
|
2002-06-08 21:48:00 +00:00
|
|
|
log((CLOG_INFO "screen \"%s\" updated clipboard %d", clipboard.m_clipboardOwner.c_str(), id));
|
2002-07-09 21:22:31 +00:00
|
|
|
clipboard.m_clipboardData = data;
|
2002-04-29 13:31:44 +00:00
|
|
|
clipboard.m_clipboard.unmarshall(clipboard.m_clipboardData, 0);
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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);
|
2002-04-29 13:31:44 +00:00
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// send the new clipboard to the active screen
|
|
|
|
m_active->setClipboard(id, m_clipboards[id].m_clipboardData);
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
|
|
|
|
2002-07-13 22:00:38 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +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
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "onKeyDown id=%d mask=0x%04x", id, mask));
|
2002-06-01 10:52:02 +00:00
|
|
|
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
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->keyDown(id, mask);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +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
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "onKeyUp id=%d mask=0x%04x", id, mask));
|
2002-06-01 10:52:02 +00:00
|
|
|
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
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->keyUp(id, mask);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +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
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "onKeyRepeat id=%d mask=0x%04x count=%d", id, mask, count));
|
2002-06-01 10:52:02 +00:00
|
|
|
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
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->keyRepeat(id, mask, count);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::onMouseDown(ButtonID id)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "onMouseDown id=%d", id));
|
2002-06-01 10:52:02 +00:00
|
|
|
CLock lock(&m_mutex);
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(m_active != NULL);
|
|
|
|
|
|
|
|
// relay
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->mouseDown(id);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::onMouseUp(ButtonID id)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "onMouseUp id=%d", id));
|
2002-06-01 10:52:02 +00:00
|
|
|
CLock lock(&m_mutex);
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(m_active != NULL);
|
|
|
|
|
|
|
|
// relay
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->mouseUp(id);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +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
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG2 "onMouseMovePrimary %d,%d", x, y));
|
2002-06-01 10:52:02 +00:00
|
|
|
CLock lock(&m_mutex);
|
|
|
|
return onMouseMovePrimaryNoLock(x, y);
|
|
|
|
}
|
2001-10-14 14:37:41 +00:00
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
bool
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::onMouseMovePrimaryNoLock(SInt32 x, SInt32 y)
|
2002-06-01 10:52:02 +00:00
|
|
|
{
|
2001-10-06 14:13:28 +00:00
|
|
|
// mouse move on primary (server's) screen
|
2002-07-09 21:22:31 +00:00
|
|
|
assert(m_primaryClient != NULL);
|
|
|
|
assert(m_active == m_primaryClient);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// ignore if mouse is locked to screen
|
2002-06-01 10:52:02 +00:00
|
|
|
if (isLockedToScreenNoLock()) {
|
2001-11-19 00:33:36 +00:00
|
|
|
return false;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +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
|
2002-07-15 15:01:36 +00:00
|
|
|
EDirection dir;
|
2002-07-09 21:22:31 +00:00
|
|
|
if (x < ax + zoneSize) {
|
|
|
|
x -= zoneSize;
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kLeft;
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "switch to left"));
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (x >= ax + aw - zoneSize) {
|
|
|
|
x += zoneSize;
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kRight;
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "switch to right"));
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (y < ay + zoneSize) {
|
|
|
|
y -= zoneSize;
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kTop;
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "switch to top"));
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (y >= ay + ah - zoneSize) {
|
|
|
|
y += zoneSize;
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kBottom;
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "switch to bottom"));
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// still on local screen
|
2001-11-19 00:33:36 +00:00
|
|
|
return false;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-19 17:03:29 +00:00
|
|
|
// get jump destination and, if no screen in jump direction,
|
|
|
|
// then ignore the move.
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient* newScreen = getNeighbor(m_active, dir, x, y);
|
2001-10-06 14:13:28 +00:00
|
|
|
if (newScreen == NULL) {
|
2001-11-19 00:33:36 +00:00
|
|
|
return false;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// switch screen
|
2002-06-23 23:24:22 +00:00
|
|
|
switchScreen(newScreen, x, y, false);
|
2001-11-19 00:33:36 +00:00
|
|
|
return true;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +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
|
|
|
{
|
2002-05-01 14:36:52 +00:00
|
|
|
log((CLOG_DEBUG2 "onMouseMoveSecondary %+d,%+d", dx, dy));
|
2002-06-01 10:52:02 +00:00
|
|
|
CLock lock(&m_mutex);
|
|
|
|
onMouseMoveSecondaryNoLock(dx, dy);
|
|
|
|
}
|
2001-10-14 14:37:41 +00:00
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::onMouseMoveSecondaryNoLock(SInt32 dx, SInt32 dy)
|
2002-06-01 10:52:02 +00:00
|
|
|
{
|
2001-10-06 14:13:28 +00:00
|
|
|
// mouse move on secondary (client's) screen
|
|
|
|
assert(m_active != NULL);
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_active == m_primaryClient) {
|
2002-06-01 10:52:02 +00:00
|
|
|
// 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;
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient* newScreen = NULL;
|
2002-06-01 10:52:02 +00:00
|
|
|
if (!isLockedToScreenNoLock()) {
|
2001-10-06 14:13:28 +00:00
|
|
|
// find direction of neighbor
|
2002-07-15 15:01:36 +00:00
|
|
|
EDirection dir;
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_x < ax) {
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kLeft;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (m_x > ax + aw - 1) {
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kRight;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (m_y < ay) {
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kTop;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (m_y > ay + ah - 1) {
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kBottom;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-10-06 14:13:28 +00:00
|
|
|
newScreen = m_active;
|
|
|
|
|
2002-06-08 21:48:00 +00:00
|
|
|
// keep compiler quiet about unset variable
|
2002-07-15 15:01:36 +00:00
|
|
|
dir = kLeft;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// get neighbor if we should switch
|
|
|
|
if (newScreen == NULL) {
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG1 "leave \"%s\" on %s", m_active->getName().c_str(), CConfig::dirName(dir)));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-06-19 17:03:29 +00:00
|
|
|
// get new position or clamp to current screen
|
|
|
|
newScreen = getNeighbor(m_active, dir, m_x, m_y);
|
|
|
|
if (newScreen == NULL) {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "no neighbor; clamping"));
|
2002-07-09 21:22:31 +00:00
|
|
|
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
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG1 "clamp to \"%s\"", m_active->getName().c_str()));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
// 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) {
|
2002-07-09 21:22:31 +00:00
|
|
|
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 {
|
2002-06-23 23:24:22 +00:00
|
|
|
switchScreen(newScreen, m_x, m_y, false);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::onMouseWheel(SInt32 delta)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "onMouseWheel %+d", delta));
|
2002-06-01 10:52:02 +00:00
|
|
|
CLock lock(&m_mutex);
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(m_active != NULL);
|
|
|
|
|
|
|
|
// relay
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->mouseWheel(delta);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-07-13 22:00:38 +00:00
|
|
|
bool
|
|
|
|
CServer::onCommandKey(KeyID /*id*/, KeyModifierMask /*mask*/, bool /*down*/)
|
2002-06-22 19:20:21 +00:00
|
|
|
{
|
2002-07-13 22:00:38 +00:00
|
|
|
return false;
|
2002-06-22 19:20:21 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
bool
|
|
|
|
CServer::isLockedToScreenNoLock() const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-05-24 14:37:12 +00:00
|
|
|
// locked if primary says we're locked
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_primaryClient->isLockedToScreen()) {
|
2002-05-24 14:37:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// locked if scroll-lock is toggled on
|
2002-07-09 21:22:31 +00:00
|
|
|
if ((m_primaryClient->getToggleMask() & KeyModifierScrollLock) != 0) {
|
2002-05-24 14:37:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// not locked
|
2001-10-06 14:13:28 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-13 22:00:38 +00:00
|
|
|
CServer::switchScreen(IClient* dst, SInt32 x, SInt32 y, bool forScreensaver)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
assert(dst != NULL);
|
2002-07-09 21:22:31 +00:00
|
|
|
#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);
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_INFO "switch from \"%s\" to \"%s\" at %d,%d", m_active->getName().c_str(), dst->getName().c_str(), x, y));
|
2001-11-25 18:32:41 +00:00
|
|
|
// FIXME -- we're not locked here but we probably should be
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-06-03 18:53:18 +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) {
|
2002-06-03 18:53:18 +00:00
|
|
|
// leave active screen
|
2002-07-09 21:22:31 +00:00
|
|
|
if (!m_active->leave()) {
|
|
|
|
// cannot leave screen
|
|
|
|
log((CLOG_WARN "can't leave screen"));
|
|
|
|
return;
|
|
|
|
}
|
2002-06-03 18:53:18 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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) {
|
2002-07-09 21:22:31 +00:00
|
|
|
CClipboardInfo& clipboard = m_clipboards[id];
|
|
|
|
if (clipboard.m_clipboardOwner == m_primaryClient->getName()) {
|
|
|
|
CString clipboardData;
|
|
|
|
m_primaryClient->getClipboard(id, clipboardData);
|
2002-07-10 14:15:17 +00:00
|
|
|
onClipboardChangedNoLock(id,
|
|
|
|
clipboard.m_clipboardSeqNum, clipboardData);
|
2002-07-09 21:22:31 +00:00
|
|
|
}
|
2002-04-29 13:31:44 +00:00
|
|
|
}
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// cut over
|
|
|
|
m_active = dst;
|
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// increment enter sequence number
|
|
|
|
++m_seqNum;
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// enter new screen
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->enter(x, y, m_seqNum,
|
2002-07-13 22:00:38 +00:00
|
|
|
m_primaryClient->getToggleMask(),
|
|
|
|
forScreensaver);
|
2001-11-25 18:32:41 +00:00
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// send the clipboard data to new active screen
|
2002-04-27 14:19:53 +00:00
|
|
|
for (ClipboardID id = 0; id < kClipboardEnd; ++id) {
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->setClipboard(id, m_clipboards[id].m_clipboardData);
|
2001-11-25 18:32:41 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active->mouseMove(x, y);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient*
|
2002-07-15 15:01:36 +00:00
|
|
|
CServer::getNeighbor(IClient* src, EDirection dir) const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
assert(src != NULL);
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
CString srcName = src->getName();
|
2001-10-06 14:13:28 +00:00
|
|
|
assert(!srcName.empty());
|
2002-05-31 14:43:23 +00:00
|
|
|
log((CLOG_DEBUG2 "find neighbor on %s of \"%s\"", CConfig::dirName(dir), srcName.c_str()));
|
2001-10-06 14:13:28 +00:00
|
|
|
for (;;) {
|
|
|
|
// look up name of neighbor
|
2002-05-31 14:43:23 +00:00
|
|
|
const CString dstName(m_config.getNeighbor(srcName, dir));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// if nothing in that direction then return NULL
|
2001-10-14 14:37:41 +00:00
|
|
|
if (dstName.empty()) {
|
2002-05-31 14:43:23 +00:00
|
|
|
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-14 14:37:41 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-06-01 10:52:02 +00:00
|
|
|
// look up neighbor cell. if the screen is connected and
|
|
|
|
// ready then we can stop. otherwise we skip over an
|
|
|
|
// unconnected screen.
|
2002-07-09 21:22:31 +00:00
|
|
|
CClientList::const_iterator index = m_clients.find(dstName);
|
|
|
|
if (index != m_clients.end()) {
|
2002-05-31 14:43:23 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2002-05-31 14:43:23 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient*
|
|
|
|
CServer::getNeighbor(IClient* src,
|
2002-07-15 15:01:36 +00:00
|
|
|
EDirection srcSide, SInt32& x, SInt32& y) const
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
assert(src != NULL);
|
|
|
|
|
|
|
|
// get the first neighbor
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient* dst = getNeighbor(src, srcSide);
|
2002-06-11 18:31:06 +00:00
|
|
|
if (dst == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// get the source screen's size (needed for kRight and kBottom)
|
2002-07-09 21:22:31 +00:00
|
|
|
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
|
|
|
|
2002-06-19 17:03:29 +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) {
|
2002-07-15 15:01:36 +00:00
|
|
|
case kLeft:
|
2002-07-09 21:22:31 +00:00
|
|
|
x -= dx;
|
2002-06-11 18:31:06 +00:00
|
|
|
while (dst != NULL && dst != lastGoodScreen) {
|
2001-10-06 14:13:28 +00:00
|
|
|
lastGoodScreen = dst;
|
2002-07-09 21:22:31 +00:00
|
|
|
lastGoodScreen->getShape(dx, dy, dw, dh);
|
|
|
|
x += dw;
|
2001-10-06 14:13:28 +00:00
|
|
|
if (x >= 0) {
|
|
|
|
break;
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
|
2001-10-06 14:13:28 +00:00
|
|
|
dst = getNeighbor(lastGoodScreen, srcSide);
|
|
|
|
}
|
2002-06-19 17:03:29 +00:00
|
|
|
assert(lastGoodScreen != NULL);
|
2002-07-09 21:22:31 +00:00
|
|
|
x += dx;
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kRight:
|
2002-07-09 21:22:31 +00:00
|
|
|
x -= dx;
|
2001-10-06 14:13:28 +00:00
|
|
|
while (dst != NULL) {
|
2002-07-09 21:22:31 +00:00
|
|
|
x -= dw;
|
2001-10-06 14:13:28 +00:00
|
|
|
lastGoodScreen = dst;
|
2002-07-09 21:22:31 +00:00
|
|
|
lastGoodScreen->getShape(dx, dy, dw, dh);
|
|
|
|
if (x < dw) {
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
|
2001-10-06 14:13:28 +00:00
|
|
|
dst = getNeighbor(lastGoodScreen, srcSide);
|
|
|
|
}
|
2002-06-19 17:03:29 +00:00
|
|
|
assert(lastGoodScreen != NULL);
|
2002-07-09 21:22:31 +00:00
|
|
|
x += dx;
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kTop:
|
2002-07-09 21:22:31 +00:00
|
|
|
y -= dy;
|
2001-10-06 14:13:28 +00:00
|
|
|
while (dst != NULL) {
|
|
|
|
lastGoodScreen = dst;
|
2002-07-09 21:22:31 +00:00
|
|
|
lastGoodScreen->getShape(dx, dy, dw, dh);
|
|
|
|
y += dh;
|
2001-10-06 14:13:28 +00:00
|
|
|
if (y >= 0) {
|
|
|
|
break;
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
|
2001-10-06 14:13:28 +00:00
|
|
|
dst = getNeighbor(lastGoodScreen, srcSide);
|
|
|
|
}
|
2002-06-19 17:03:29 +00:00
|
|
|
assert(lastGoodScreen != NULL);
|
2002-07-09 21:22:31 +00:00
|
|
|
y += dy;
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kBottom:
|
2002-07-09 21:22:31 +00:00
|
|
|
y -= dy;
|
2001-10-06 14:13:28 +00:00
|
|
|
while (dst != NULL) {
|
2002-07-09 21:22:31 +00:00
|
|
|
y -= dh;
|
2001-10-06 14:13:28 +00:00
|
|
|
lastGoodScreen = dst;
|
2002-07-09 21:22:31 +00:00
|
|
|
lastGoodScreen->getShape(dx, dy, dw, dh);
|
|
|
|
if (y < sh) {
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG2 "skipping over screen %s", dst->getName().c_str()));
|
2001-10-06 14:13:28 +00:00
|
|
|
dst = getNeighbor(lastGoodScreen, srcSide);
|
|
|
|
}
|
2002-06-19 17:03:29 +00:00
|
|
|
assert(lastGoodScreen != NULL);
|
2002-07-09 21:22:31 +00:00
|
|
|
y += dy;
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-10-23 21:13:08 +00:00
|
|
|
|
2002-06-19 17:03:29 +00:00
|
|
|
// 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.
|
2002-07-09 21:22:31 +00:00
|
|
|
if (dst == m_primaryClient) {
|
|
|
|
const CString dstName(dst->getName());
|
2001-10-06 14:13:28 +00:00
|
|
|
switch (srcSide) {
|
2002-07-15 15:01:36 +00:00
|
|
|
case kLeft:
|
|
|
|
if (!m_config.getNeighbor(dstName, kRight).empty() &&
|
2002-07-09 21:22:31 +00:00
|
|
|
x > dx + dw - 1 - dst->getJumpZoneSize())
|
|
|
|
x = dx + dw - 1 - dst->getJumpZoneSize();
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kRight:
|
|
|
|
if (!m_config.getNeighbor(dstName, kLeft).empty() &&
|
2002-07-09 21:22:31 +00:00
|
|
|
x < dx + dst->getJumpZoneSize())
|
|
|
|
x = dx + dst->getJumpZoneSize();
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kTop:
|
|
|
|
if (!m_config.getNeighbor(dstName, kBottom).empty() &&
|
2002-07-09 21:22:31 +00:00
|
|
|
y > dy + dh - 1 - dst->getJumpZoneSize())
|
|
|
|
y = dy + dh - 1 - dst->getJumpZoneSize();
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kBottom:
|
|
|
|
if (!m_config.getNeighbor(dstName, kTop).empty() &&
|
2002-07-09 21:22:31 +00:00
|
|
|
y < dy + dst->getJumpZoneSize())
|
|
|
|
y = dy + dst->getJumpZoneSize();
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-19 17:03:29 +00:00
|
|
|
// 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) {
|
2002-07-15 15:01:36 +00:00
|
|
|
case kLeft:
|
|
|
|
case kRight:
|
2002-07-09 21:22:31 +00:00
|
|
|
y -= sy;
|
2002-06-10 22:06:45 +00:00
|
|
|
if (y < 0) {
|
2001-10-24 23:29:29 +00:00
|
|
|
y = 0;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (y >= sh) {
|
|
|
|
y = dh - 1;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-10-24 23:29:29 +00:00
|
|
|
y = static_cast<SInt32>(0.5 + y *
|
2002-07-09 21:22:31 +00:00
|
|
|
static_cast<double>(dh - 1) / (sh - 1));
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
y += dy;
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
|
2002-07-15 15:01:36 +00:00
|
|
|
case kTop:
|
|
|
|
case kBottom:
|
2002-07-09 21:22:31 +00:00
|
|
|
x -= sx;
|
2002-06-10 22:06:45 +00:00
|
|
|
if (x < 0) {
|
2001-10-24 23:29:29 +00:00
|
|
|
x = 0;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else if (x >= sw) {
|
|
|
|
x = dw - 1;
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-10-24 23:29:29 +00:00
|
|
|
x = static_cast<SInt32>(0.5 + x *
|
2002-07-09 21:22:31 +00:00
|
|
|
static_cast<double>(dw - 1) / (sw - 1));
|
2002-06-10 22:06:45 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
x += dx;
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-06-19 17:03:29 +00:00
|
|
|
|
|
|
|
return dst;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +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++);
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// 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) {
|
|
|
|
CThread::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();
|
|
|
|
}
|
|
|
|
|
2002-07-18 17:00:48 +00:00
|
|
|
CThread
|
2002-06-21 15:18:01 +00:00
|
|
|
CServer::startThread(IJob* job)
|
|
|
|
{
|
|
|
|
CLock lock(&m_mutex);
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// reap completed threads
|
2002-06-21 15:18:01 +00:00
|
|
|
doReapThreads(m_threads);
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// add new thread to list. use the job as user data for logging.
|
2002-07-18 17:00:48 +00:00
|
|
|
CThread thread(job, job);
|
|
|
|
m_threads.push_back(thread);
|
|
|
|
log((CLOG_DEBUG1 "started thread %p", thread.getUserData()));
|
|
|
|
return thread;
|
2002-06-21 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
CServer::stopThreads(double timeout)
|
|
|
|
{
|
|
|
|
log((CLOG_DEBUG1 "stopping threads"));
|
|
|
|
|
2002-07-18 17:00:48 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// close all clients (except the primary)
|
|
|
|
{
|
|
|
|
CConfig emptyConfig;
|
|
|
|
closeClients(emptyConfig);
|
|
|
|
}
|
|
|
|
|
2002-06-21 15:18:01 +00:00
|
|
|
// 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) {
|
2002-07-09 21:22:31 +00:00
|
|
|
index->cancel();
|
2002-06-21 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// now wait for the threads
|
|
|
|
CStopwatch timer(true);
|
|
|
|
while (threads.size() > 0 && (timeout < 0.0 || timer.getTime() < timeout)) {
|
|
|
|
doReapThreads(threads);
|
|
|
|
CThread::sleep(0.01);
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete remaining threads
|
|
|
|
for (CThreadList::iterator index = threads.begin();
|
|
|
|
index != threads.end(); ++index) {
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG1 "reaped running thread %p", index->getUserData()));
|
2002-06-21 15:18:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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(); ) {
|
2002-07-09 21:22:31 +00:00
|
|
|
if (index->wait(0.0)) {
|
2002-06-21 15:18:01 +00:00
|
|
|
// thread terminated
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_DEBUG1 "reaped thread %p", index->getUserData()));
|
2002-06-21 15:18:01 +00:00
|
|
|
index = threads.erase(index);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// thread is running
|
|
|
|
++index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-08 19:24:46 +00:00
|
|
|
#include "CTCPListenSocket.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
|
|
|
CServer::acceptClients(void*)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "starting to wait for clients"));
|
2001-10-14 14:37:41 +00:00
|
|
|
|
2002-07-10 20:18:32 +00:00
|
|
|
IListenSocket* listen = NULL;
|
2001-10-06 14:13:28 +00:00
|
|
|
try {
|
|
|
|
// create socket listener
|
2001-11-19 00:33:36 +00:00
|
|
|
// listen = std::auto_ptr<IListenSocket>(m_socketFactory->createListen());
|
2002-07-10 20:18:32 +00:00
|
|
|
listen = new CTCPListenSocket; // FIXME -- use factory
|
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 {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "binding listen socket"));
|
2002-06-09 16:53:25 +00:00
|
|
|
listen->bind(m_config.getSynergyAddress());
|
2001-10-06 14:13:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-07-24 13:01:18 +00:00
|
|
|
catch (XSocketBind& e) {
|
|
|
|
log((CLOG_DEBUG1 "bind failed: %s", e.getErrstr()));
|
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
// give up if we've waited too long
|
|
|
|
if (timer.getTime() >= m_bindTimeout) {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "waited too long to bind, giving up"));
|
2001-10-06 14:13:28 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// wait a bit before retrying
|
|
|
|
CThread::sleep(5.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// accept connections and begin processing them
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "waiting for client connections"));
|
2001-10-06 14:13:28 +00:00
|
|
|
for (;;) {
|
|
|
|
// accept connection
|
|
|
|
CThread::testCancel();
|
2002-06-17 12:02:26 +00:00
|
|
|
IDataSocket* socket = listen->accept();
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_NOTE "accepted client connection"));
|
2001-10-06 14:13:28 +00:00
|
|
|
CThread::testCancel();
|
|
|
|
|
|
|
|
// start handshake thread
|
2002-06-21 15:18:01 +00:00
|
|
|
startThread(new TMethodJob<CServer>(
|
2002-07-09 21:22:31 +00:00
|
|
|
this, &CServer::runClient, socket));
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-07-10 20:18:32 +00:00
|
|
|
|
|
|
|
// clean up
|
|
|
|
delete listen;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
catch (XBase& e) {
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_ERR "cannot listen for clients: %s", e.what()));
|
2002-07-10 20:18:32 +00:00
|
|
|
delete listen;
|
2002-07-30 15:17:44 +00:00
|
|
|
exitMainLoop();
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-07-10 20:18:32 +00:00
|
|
|
catch (...) {
|
|
|
|
delete listen;
|
|
|
|
throw;
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-07-09 21:22:31 +00:00
|
|
|
CServer::runClient(void* vsocket)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
|
|
|
// get the socket pointer from the argument
|
|
|
|
assert(vsocket != NULL);
|
2002-07-10 20:18:32 +00:00
|
|
|
IDataSocket* socket = reinterpret_cast<IDataSocket*>(vsocket);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// create proxy
|
2002-07-10 20:18:32 +00:00
|
|
|
CClientProxy* proxy = NULL;
|
|
|
|
try {
|
|
|
|
proxy = handshakeClient(socket);
|
|
|
|
if (proxy == NULL) {
|
|
|
|
delete socket;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
delete socket;
|
|
|
|
throw;
|
2002-07-09 21:22:31 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// add the connection
|
|
|
|
try {
|
|
|
|
addConnection(proxy);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// save this client's thread
|
|
|
|
CLock lock(&m_mutex);
|
|
|
|
m_clientThreads.insert(std::make_pair(proxy->getName(),
|
|
|
|
CThread::getCurrentThread()));
|
|
|
|
}
|
|
|
|
catch (XDuplicateClient& e) {
|
|
|
|
// client has duplicate name
|
|
|
|
log((CLOG_WARN "a client with name \"%s\" is already connected", e.getName().c_str()));
|
|
|
|
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBusy);
|
|
|
|
delete proxy;
|
2002-07-10 20:18:32 +00:00
|
|
|
delete socket;
|
2002-07-09 21:22:31 +00:00
|
|
|
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()));
|
|
|
|
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEUnknown);
|
|
|
|
delete proxy;
|
2002-07-10 20:18:32 +00:00
|
|
|
delete socket;
|
2002-07-09 21:22:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
delete proxy;
|
2002-07-10 20:18:32 +00:00
|
|
|
delete socket;
|
2002-07-09 21:22:31 +00:00
|
|
|
throw;
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// activate screen saver on new client if active on the primary screen
|
|
|
|
{
|
|
|
|
CLock lock(&m_mutex);
|
|
|
|
if (m_activeSaver != NULL) {
|
2002-07-13 22:00:38 +00:00
|
|
|
proxy->screensaver(true);
|
2002-07-09 21:22:31 +00:00
|
|
|
}
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// handle client messages
|
|
|
|
try {
|
|
|
|
log((CLOG_NOTE "client \"%s\" has connected", proxy->getName().c_str()));
|
2002-07-30 15:17:44 +00:00
|
|
|
proxy->mainLoop();
|
2002-07-09 21:22:31 +00:00
|
|
|
}
|
|
|
|
catch (XBadClient&) {
|
|
|
|
// client not behaving
|
|
|
|
// FIXME -- could print network address if socket had suitable method
|
|
|
|
log((CLOG_WARN "protocol error from client \"%s\"", proxy->getName().c_str()));
|
|
|
|
CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBad);
|
|
|
|
}
|
|
|
|
catch (XBase& e) {
|
|
|
|
// misc error
|
|
|
|
log((CLOG_WARN "error communicating with client \"%s\": %s", proxy->getName().c_str(), e.what()));
|
|
|
|
// FIXME -- could print network address if socket had suitable method
|
|
|
|
}
|
|
|
|
catch (...) {
|
2002-07-30 15:17:44 +00:00
|
|
|
// mainLoop() was probably cancelled
|
2002-07-09 21:22:31 +00:00
|
|
|
removeConnection(proxy->getName());
|
2002-07-10 20:18:32 +00:00
|
|
|
delete socket;
|
2002-07-09 21:22:31 +00:00
|
|
|
throw;
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-10 20:18:32 +00:00
|
|
|
// clean up
|
2002-07-09 21:22:31 +00:00
|
|
|
removeConnection(proxy->getName());
|
2002-07-10 20:18:32 +00:00
|
|
|
delete socket;
|
2002-07-09 21:22:31 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
CClientProxy*
|
|
|
|
CServer::handshakeClient(IDataSocket* socket)
|
|
|
|
{
|
|
|
|
log((CLOG_DEBUG1 "negotiating with new client"));
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// get the input and output streams
|
|
|
|
IInputStream* input = socket->getInputStream();
|
|
|
|
IOutputStream* output = socket->getOutputStream();
|
|
|
|
bool own = false;
|
2002-06-09 17:21:33 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// attach the encryption layer
|
|
|
|
if (m_securityFactory != NULL) {
|
|
|
|
/* FIXME -- implement ISecurityFactory
|
|
|
|
input = m_securityFactory->createInputFilter(input, own);
|
|
|
|
output = m_securityFactory->createOutputFilter(output, own);
|
2002-07-10 20:18:32 +00:00
|
|
|
own = true;
|
2002-07-09 21:22:31 +00:00
|
|
|
*/
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// attach the packetizing filters
|
|
|
|
input = new CInputPacketStream(input, own);
|
|
|
|
output = new COutputPacketStream(output, own);
|
2002-07-10 20:18:32 +00:00
|
|
|
own = true;
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
CClientProxy* proxy = NULL;
|
|
|
|
CString name("<unknown>");
|
|
|
|
try {
|
|
|
|
// give the client a limited time to complete the handshake
|
|
|
|
CTimerThread timer(30.0);
|
2002-05-23 14:56:03 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// limit the maximum length of the hello
|
|
|
|
// FIXME -- should be in protocol types; may become obsolete anyway
|
|
|
|
static const UInt32 maxHelloLen = 1024;
|
2002-05-23 14:56:03 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// say hello
|
|
|
|
log((CLOG_DEBUG1 "saying hello"));
|
|
|
|
CProtocolUtil::writef(output, "Synergy%2i%2i",
|
|
|
|
kProtocolMajorVersion,
|
|
|
|
kProtocolMinorVersion);
|
|
|
|
output->flush();
|
2002-06-23 15:43:40 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// wait for the reply
|
|
|
|
log((CLOG_DEBUG1 "waiting for hello reply"));
|
|
|
|
UInt32 n = input->getSize();
|
|
|
|
if (n > maxHelloLen) {
|
|
|
|
throw XBadClient();
|
2002-05-23 14:56:03 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// get and parse the reply to hello
|
|
|
|
SInt16 major, minor;
|
|
|
|
try {
|
|
|
|
log((CLOG_DEBUG1 "parsing hello reply"));
|
|
|
|
CProtocolUtil::readf(input, "Synergy%2i%2i%s",
|
|
|
|
&major, &minor, &name);
|
2002-05-23 14:56:03 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
catch (XIO&) {
|
|
|
|
throw XBadClient();
|
2002-05-31 18:18:29 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// disallow invalid version numbers
|
|
|
|
if (major < 0 || minor < 0) {
|
|
|
|
throw XIncompatibleClient(major, minor);
|
2002-05-23 14:56:03 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// hangup (with error) if version isn't supported
|
|
|
|
if (major > kProtocolMajorVersion ||
|
|
|
|
(major == kProtocolMajorVersion && minor > kProtocolMinorVersion)) {
|
|
|
|
throw XIncompatibleClient(major, minor);
|
2002-06-21 15:18:01 +00:00
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// convert name to canonical form (if any)
|
|
|
|
if (m_config.isScreen(name)) {
|
|
|
|
name = m_config.getCanonicalName(name);
|
2002-06-21 15:18:01 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
|
// FIXME -- could print network address if socket had suitable method
|
|
|
|
log((CLOG_WARN "client \"%s\" has incompatible version %d.%d)", name.c_str(), e.getMajor(), e.getMinor()));
|
|
|
|
CProtocolUtil::writef(output, kMsgEIncompatible,
|
|
|
|
kProtocolMajorVersion, kProtocolMinorVersion);
|
|
|
|
}
|
|
|
|
catch (XBadClient&) {
|
|
|
|
// client not behaving
|
|
|
|
// FIXME -- could print network address if socket had suitable method
|
|
|
|
log((CLOG_WARN "protocol error from client \"%s\"", name.c_str()));
|
|
|
|
CProtocolUtil::writef(output, kMsgEBad);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
catch (XBase& e) {
|
|
|
|
// misc error
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_WARN "error communicating with client \"%s\": %s", name.c_str(), e.what()));
|
2001-10-06 14:13:28 +00:00
|
|
|
// FIXME -- could print network address if socket had suitable method
|
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
catch (...) {
|
|
|
|
// probably timed out
|
|
|
|
if (proxy != NULL) {
|
|
|
|
delete proxy;
|
|
|
|
}
|
2002-07-10 20:18:32 +00:00
|
|
|
else if (own) {
|
2002-07-09 21:22:31 +00:00
|
|
|
delete input;
|
|
|
|
delete output;
|
|
|
|
}
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// failed
|
|
|
|
if (proxy != NULL) {
|
|
|
|
delete proxy;
|
|
|
|
}
|
2002-07-10 20:18:32 +00:00
|
|
|
else if (own) {
|
2002-07-09 21:22:31 +00:00
|
|
|
delete input;
|
|
|
|
delete output;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
|
|
|
CServer::acceptHTTPClients(void*)
|
2002-05-30 16:13:16 +00:00
|
|
|
{
|
|
|
|
log((CLOG_DEBUG1 "starting to wait for HTTP clients"));
|
|
|
|
|
2002-07-10 20:18:32 +00:00
|
|
|
IListenSocket* listen = NULL;
|
2002-05-30 16:13:16 +00:00
|
|
|
try {
|
|
|
|
// create socket listener
|
|
|
|
// listen = std::auto_ptr<IListenSocket>(m_socketFactory->createListen());
|
2002-07-10 20:18:32 +00:00
|
|
|
listen = new CTCPListenSocket; // FIXME -- use factory
|
2002-05-30 16:13:16 +00:00
|
|
|
|
|
|
|
// bind to the desired port. keep retrying if we can't bind
|
|
|
|
// the address immediately.
|
|
|
|
CStopwatch timer;
|
|
|
|
for (;;) {
|
|
|
|
try {
|
2002-06-09 16:53:25 +00:00
|
|
|
log((CLOG_DEBUG1 "binding HTTP listen socket"));
|
|
|
|
listen->bind(m_config.getHTTPAddress());
|
2002-05-30 16:13:16 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-07-24 13:01:18 +00:00
|
|
|
catch (XSocketBind& e) {
|
|
|
|
log((CLOG_DEBUG1 "bind HTTP failed: %s", e.getErrstr()));
|
|
|
|
|
2002-05-30 16:13:16 +00:00
|
|
|
// 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
|
|
|
|
CThread::sleep(5.0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// accept connections and begin processing them
|
|
|
|
log((CLOG_DEBUG1 "waiting for HTTP connections"));
|
|
|
|
for (;;) {
|
2002-06-02 11:49:46 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2002-05-30 16:13:16 +00:00
|
|
|
// accept connection
|
|
|
|
CThread::testCancel();
|
2002-06-17 12:02:26 +00:00
|
|
|
IDataSocket* socket = listen->accept();
|
2002-05-30 16:13:16 +00:00
|
|
|
log((CLOG_NOTE "accepted HTTP connection"));
|
|
|
|
CThread::testCancel();
|
|
|
|
|
|
|
|
// handle HTTP request
|
2002-06-21 15:18:01 +00:00
|
|
|
startThread(new TMethodJob<CServer>(
|
2002-05-30 16:13:16 +00:00
|
|
|
this, &CServer::processHTTPRequest, socket));
|
|
|
|
}
|
2002-07-10 20:18:32 +00:00
|
|
|
|
|
|
|
// clean up
|
|
|
|
delete listen;
|
2002-05-30 16:13:16 +00:00
|
|
|
}
|
|
|
|
catch (XBase& e) {
|
|
|
|
log((CLOG_ERR "cannot listen for HTTP clients: %s", e.what()));
|
2002-07-10 20:18:32 +00:00
|
|
|
delete listen;
|
2002-06-02 11:49:46 +00:00
|
|
|
// FIXME -- quit?
|
2002-07-30 15:17:44 +00:00
|
|
|
exitMainLoop();
|
2002-05-30 16:13:16 +00:00
|
|
|
}
|
2002-07-10 20:18:32 +00:00
|
|
|
catch (...) {
|
|
|
|
delete listen;
|
|
|
|
throw;
|
|
|
|
}
|
2002-05-30 16:13:16 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::processHTTPRequest(void* vsocket)
|
2002-05-30 16:13:16 +00:00
|
|
|
{
|
2002-06-17 12:02:26 +00:00
|
|
|
IDataSocket* socket = reinterpret_cast<IDataSocket*>(vsocket);
|
2002-05-30 16:13:16 +00:00
|
|
|
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
|
|
|
|
CThread::sleep(3.0);
|
|
|
|
|
|
|
|
// clean up
|
|
|
|
socket->close();
|
|
|
|
delete socket;
|
2002-06-02 11:49:46 +00:00
|
|
|
|
|
|
|
// increment available HTTP handlers
|
|
|
|
{
|
|
|
|
CLock lock(&m_httpAvailable);
|
|
|
|
m_httpAvailable = m_httpAvailable + 1;
|
|
|
|
m_httpAvailable.signal();
|
|
|
|
}
|
2002-05-30 16:13:16 +00:00
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
delete socket;
|
2002-06-02 11:49:46 +00:00
|
|
|
{
|
|
|
|
CLock lock(&m_httpAvailable);
|
|
|
|
m_httpAvailable = m_httpAvailable + 1;
|
|
|
|
m_httpAvailable.signal();
|
|
|
|
}
|
2002-05-30 16:13:16 +00:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
|
|
|
CServer::openPrimaryScreen()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-09 21:22:31 +00:00
|
|
|
assert(m_primaryClient == NULL);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
// reset sequence number
|
|
|
|
m_seqNum = 0;
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// canonicalize the primary screen name
|
|
|
|
CString primary = m_config.getCanonicalName(getPrimaryScreenName());
|
2002-06-09 17:59:32 +00:00
|
|
|
if (primary.empty()) {
|
2002-07-09 21:22:31 +00:00
|
|
|
throw XUnknownClient(getPrimaryScreenName());
|
2002-06-09 17:59:32 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
|
|
|
|
// clear clipboards
|
|
|
|
for (ClipboardID id = 0; id < kClipboardEnd; ++id) {
|
|
|
|
CClipboardInfo& clipboard = m_clipboards[id];
|
|
|
|
clipboard.m_clipboardOwner = primary;
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the primary client and open it
|
2002-06-03 13:45:30 +00:00
|
|
|
try {
|
2002-07-13 22:00:38 +00:00
|
|
|
m_primaryClient = new CPrimaryClient(this, this, primary);
|
2002-07-09 21:22:31 +00:00
|
|
|
|
2002-06-03 13:45:30 +00:00
|
|
|
// add connection
|
2002-07-09 21:22:31 +00:00
|
|
|
addConnection(m_primaryClient);
|
|
|
|
m_active = m_primaryClient;
|
|
|
|
|
|
|
|
// open the screen
|
2002-06-03 13:45:30 +00:00
|
|
|
log((CLOG_DEBUG1 "opening primary screen"));
|
2002-07-09 21:22:31 +00:00
|
|
|
m_primaryClient->open();
|
2002-07-11 13:13:37 +00:00
|
|
|
|
|
|
|
// tell it about the active sides
|
|
|
|
m_primaryClient->reconfigure(getActivePrimarySides());
|
2002-06-03 13:45:30 +00:00
|
|
|
}
|
|
|
|
catch (...) {
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_active != NULL) {
|
2002-06-09 17:21:33 +00:00
|
|
|
removeConnection(primary);
|
2002-06-03 18:53:18 +00:00
|
|
|
}
|
2002-07-09 21:22:31 +00:00
|
|
|
else {
|
|
|
|
delete m_primaryClient;
|
|
|
|
}
|
|
|
|
m_active = NULL;
|
|
|
|
m_primaryClient = NULL;
|
2002-06-03 13:45:30 +00:00
|
|
|
throw;
|
|
|
|
}
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
|
|
|
CServer::closePrimaryScreen()
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-09 21:22:31 +00:00
|
|
|
assert(m_primaryClient != NULL);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
|
|
|
// close the primary screen
|
|
|
|
try {
|
2002-04-27 18:49:03 +00:00
|
|
|
log((CLOG_DEBUG1 "closing primary screen"));
|
2002-07-09 21:22:31 +00:00
|
|
|
m_primaryClient->close();
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// remove connection
|
|
|
|
removeConnection(m_primaryClient->getName());
|
|
|
|
m_primaryClient = NULL;
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
void
|
|
|
|
CServer::addConnection(IClient* client)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2002-07-09 21:22:31 +00:00
|
|
|
assert(client != NULL);
|
|
|
|
|
|
|
|
log((CLOG_DEBUG "adding connection \"%s\"", client->getName().c_str()));
|
2002-05-23 14:56:03 +00:00
|
|
|
|
2001-10-06 14:13:28 +00:00
|
|
|
CLock lock(&m_mutex);
|
2002-05-23 14:56:03 +00:00
|
|
|
|
2002-05-31 18:18:29 +00:00
|
|
|
// name must be in our configuration
|
2002-07-09 21:22:31 +00:00
|
|
|
if (!m_config.isScreen(client->getName())) {
|
|
|
|
throw XUnknownClient(client->getName());
|
2002-05-31 18:18:29 +00:00
|
|
|
}
|
2002-06-08 23:24:40 +00:00
|
|
|
|
|
|
|
// can only have one screen with a given name at any given time
|
2002-07-09 21:22:31 +00:00
|
|
|
if (m_clients.count(client->getName()) != 0) {
|
|
|
|
throw XDuplicateClient(client->getName());
|
2002-06-08 23:24:40 +00:00
|
|
|
}
|
2002-05-31 18:09:43 +00:00
|
|
|
|
2002-05-23 14:56:03 +00:00
|
|
|
// save screen info
|
2002-07-09 21:22:31 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
void
|
2002-06-17 13:31:21 +00:00
|
|
|
CServer::removeConnection(const CString& name)
|
2001-10-06 14:13:28 +00:00
|
|
|
{
|
2001-10-14 14:37:41 +00:00
|
|
|
log((CLOG_DEBUG "removing connection \"%s\"", name.c_str()));
|
2001-10-06 14:13:28 +00:00
|
|
|
CLock lock(&m_mutex);
|
2001-10-24 23:29:29 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// find client
|
|
|
|
CClientList::iterator index = m_clients.find(name);
|
|
|
|
assert(index != m_clients.end());
|
2001-10-24 23:29:29 +00:00
|
|
|
|
|
|
|
// if this is active screen then we have to jump off of it
|
2002-07-09 21:22:31 +00:00
|
|
|
IClient* active = (m_activeSaver != NULL) ? m_activeSaver : m_active;
|
|
|
|
if (active == index->second && active != m_primaryClient) {
|
2001-10-24 23:29:29 +00:00
|
|
|
// record new position (center of primary screen)
|
2002-07-13 22:00:38 +00:00
|
|
|
m_primaryClient->getCursorCenter(m_x, m_y);
|
2001-10-24 23:29:29 +00:00
|
|
|
|
|
|
|
// don't notify active screen since it probably already disconnected
|
2002-07-09 21:22:31 +00:00
|
|
|
log((CLOG_INFO "jump from \"%s\" to \"%s\" at %d,%d", active->getName().c_str(), m_primaryClient->getName().c_str(), m_x, m_y));
|
2001-10-24 23:29:29 +00:00
|
|
|
|
|
|
|
// cut over
|
2002-07-09 21:22:31 +00:00
|
|
|
m_active = m_primaryClient;
|
2001-10-24 23:29:29 +00:00
|
|
|
|
2002-06-23 23:24:22 +00:00
|
|
|
// enter new screen (unless we already have because of the
|
|
|
|
// screen saver)
|
|
|
|
if (m_activeSaver == NULL) {
|
2002-07-09 21:22:31 +00:00
|
|
|
m_primaryClient->enter(m_x, m_y, m_seqNum,
|
|
|
|
m_primaryClient->getToggleMask(), false);
|
2002-06-23 23:24:22 +00:00
|
|
|
}
|
2001-10-24 23:29:29 +00:00
|
|
|
}
|
|
|
|
|
2002-06-22 19:20:21 +00:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// done with client
|
2001-10-06 14:13:28 +00:00
|
|
|
delete index->second;
|
2002-07-09 21:22:31 +00:00
|
|
|
m_clients.erase(index);
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-07-09 21:22:31 +00:00
|
|
|
// remove any thread for this client
|
|
|
|
m_clientThreads.erase(name);
|
2001-10-06 14:13:28 +00:00
|
|
|
}
|
2002-04-27 14:19:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
//
|
2002-04-29 13:31:44 +00:00
|
|
|
// CServer::CClipboardInfo
|
2002-04-27 14:19:53 +00:00
|
|
|
//
|
|
|
|
|
2002-04-29 13:31:44 +00:00
|
|
|
CServer::CClipboardInfo::CClipboardInfo() :
|
2002-06-10 22:06:45 +00:00
|
|
|
m_clipboard(),
|
|
|
|
m_clipboardData(),
|
|
|
|
m_clipboardOwner(),
|
2002-07-09 21:22:31 +00:00
|
|
|
m_clipboardSeqNum(0)
|
2002-04-27 14:19:53 +00:00
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|