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-08 19:24:46 +00:00
|
|
|
#include "CClient.h"
|
2004-02-15 17:32:11 +00:00
|
|
|
#include "CScreen.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "ProtocolTypes.h"
|
|
|
|
#include "Version.h"
|
2002-07-31 12:39:34 +00:00
|
|
|
#include "XScreen.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "CNetworkAddress.h"
|
2004-02-15 17:32:11 +00:00
|
|
|
#include "CSocketMultiplexer.h"
|
2002-07-30 18:31:00 +00:00
|
|
|
#include "CTCPSocketFactory.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "XSocket.h"
|
2001-10-14 18:29:43 +00:00
|
|
|
#include "CThread.h"
|
2004-02-15 17:32:11 +00:00
|
|
|
#include "CEventQueue.h"
|
|
|
|
#include "CFunctionEventJob.h"
|
2004-03-13 17:13:55 +00:00
|
|
|
#include "CFunctionJob.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include "CLog.h"
|
|
|
|
#include "CString.h"
|
2004-02-28 12:19:49 +00:00
|
|
|
#include "CStringUtil.h"
|
2004-02-15 17:32:11 +00:00
|
|
|
#include "LogOutputters.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "CArch.h"
|
2004-02-15 17:32:11 +00:00
|
|
|
#include "XArch.h"
|
2002-06-10 22:06:45 +00:00
|
|
|
#include <cstring>
|
2001-10-08 19:24:46 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
#define DAEMON_RUNNING(running_)
|
2004-04-11 14:58:08 +00:00
|
|
|
#if WINAPI_MSWINDOWS
|
2003-03-21 19:34:08 +00:00
|
|
|
#include "CArchMiscWindows.h"
|
2004-02-28 12:19:49 +00:00
|
|
|
#include "CMSWindowsScreen.h"
|
|
|
|
#include "CMSWindowsUtil.h"
|
2003-03-12 22:34:07 +00:00
|
|
|
#include "CMSWindowsClientTaskBarReceiver.h"
|
2002-08-11 11:49:36 +00:00
|
|
|
#include "resource.h"
|
2003-01-04 22:01:32 +00:00
|
|
|
#undef DAEMON_RUNNING
|
|
|
|
#define DAEMON_RUNNING(running_) CArchMiscWindows::daemonRunning(running_)
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif WINAPI_XWINDOWS
|
2003-09-02 22:05:47 +00:00
|
|
|
#include "CXWindowsScreen.h"
|
2003-03-12 22:34:07 +00:00
|
|
|
#include "CXWindowsClientTaskBarReceiver.h"
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif WINAPI_CARBON
|
|
|
|
#include "COSXScreen.h"
|
|
|
|
#include "COSXClientTaskBarReceiver.h"
|
2002-07-30 18:31:00 +00:00
|
|
|
#endif
|
|
|
|
|
2002-06-08 21:48:00 +00:00
|
|
|
// platform dependent name of a daemon
|
2004-04-11 14:58:08 +00:00
|
|
|
#if SYSAPI_WIN32
|
2002-06-08 21:48:00 +00:00
|
|
|
#define DAEMON_NAME "Synergy Client"
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif SYSAPI_UNIX
|
2002-08-11 22:43:07 +00:00
|
|
|
#define DAEMON_NAME "synergyc"
|
2002-06-08 21:48:00 +00:00
|
|
|
#endif
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
typedef int (*StartupFunc)(int, char**);
|
2004-03-13 17:13:55 +00:00
|
|
|
static bool startClient();
|
2004-02-28 12:19:49 +00:00
|
|
|
static void parse(int argc, const char* const* argv);
|
2004-04-11 14:58:08 +00:00
|
|
|
#if WINAPI_MSWINDOWS
|
2004-03-13 17:13:55 +00:00
|
|
|
static void handleSystemSuspend(void*);
|
|
|
|
static void handleSystemResume(void*);
|
|
|
|
#endif
|
2004-02-28 12:19:49 +00:00
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
//
|
|
|
|
// program arguments
|
|
|
|
//
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
#define ARG CArgs::s_instance
|
2002-06-04 11:06:26 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
class CArgs {
|
|
|
|
public:
|
|
|
|
CArgs() :
|
|
|
|
m_pname(NULL),
|
|
|
|
m_backend(false),
|
|
|
|
m_restartable(true),
|
|
|
|
m_daemon(true),
|
2004-02-28 12:19:49 +00:00
|
|
|
m_logFilter(NULL),
|
|
|
|
m_serverAddress(NULL)
|
2003-01-04 22:01:32 +00:00
|
|
|
{ s_instance = this; }
|
|
|
|
~CArgs() { s_instance = NULL; }
|
2002-06-04 11:06:26 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
public:
|
|
|
|
static CArgs* s_instance;
|
|
|
|
const char* m_pname;
|
|
|
|
bool m_backend;
|
|
|
|
bool m_restartable;
|
|
|
|
bool m_daemon;
|
|
|
|
const char* m_logFilter;
|
|
|
|
CString m_name;
|
2004-02-28 12:19:49 +00:00
|
|
|
CNetworkAddress* m_serverAddress;
|
2003-01-04 22:01:32 +00:00
|
|
|
};
|
2002-05-31 14:25:26 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
CArgs* CArgs::s_instance = NULL;
|
2002-05-31 14:25:26 +00:00
|
|
|
|
|
|
|
|
2002-07-30 18:31:00 +00:00
|
|
|
//
|
|
|
|
// platform dependent factories
|
|
|
|
//
|
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
CScreen*
|
|
|
|
createScreen()
|
2002-07-30 18:31:00 +00:00
|
|
|
{
|
2004-04-11 14:58:08 +00:00
|
|
|
#if WINAPI_MSWINDOWS
|
2004-03-13 17:13:55 +00:00
|
|
|
return new CScreen(new CMSWindowsScreen(false,
|
|
|
|
new CFunctionJob(&handleSystemSuspend),
|
|
|
|
new CFunctionJob(&handleSystemResume)));
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif WINAPI_XWINDOWS
|
2004-02-15 17:32:11 +00:00
|
|
|
return new CScreen(new CXWindowsScreen(false));
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif WINAPI_CARBON
|
|
|
|
return new CScreen(new COSXScreen(false));
|
2002-07-30 18:31:00 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
static
|
|
|
|
CClientTaskBarReceiver*
|
|
|
|
createTaskBarReceiver(const CBufferedLogOutputter* logBuffer)
|
|
|
|
{
|
2004-04-11 14:58:08 +00:00
|
|
|
#if WINAPI_MSWINDOWS
|
2004-02-28 12:19:49 +00:00
|
|
|
return new CMSWindowsClientTaskBarReceiver(
|
|
|
|
CMSWindowsScreen::getInstance(), logBuffer);
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif WINAPI_XWINDOWS
|
2004-02-28 12:19:49 +00:00
|
|
|
return new CXWindowsClientTaskBarReceiver(logBuffer);
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif WINAPI_CARBON
|
|
|
|
return new COSXClientTaskBarReceiver(logBuffer);
|
2004-02-28 12:19:49 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2002-07-30 18:31:00 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
//
|
|
|
|
// platform independent main
|
|
|
|
//
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static CClient* s_client = NULL;
|
|
|
|
static CScreen* s_clientScreen = NULL;
|
|
|
|
static CClientTaskBarReceiver* s_taskBarReceiver = NULL;
|
|
|
|
static double s_retryTime = 0.0;
|
2004-03-13 17:13:55 +00:00
|
|
|
static bool s_suspened = false;
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
updateStatus()
|
|
|
|
{
|
|
|
|
s_taskBarReceiver->updateStatus(s_client, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
updateStatus(const CString& msg)
|
|
|
|
{
|
|
|
|
s_taskBarReceiver->updateStatus(s_client, msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
resetRestartTimeout()
|
|
|
|
{
|
|
|
|
s_retryTime = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
double
|
|
|
|
nextRestartTimeout()
|
|
|
|
{
|
|
|
|
// choose next restart timeout. we start with rapid retries
|
|
|
|
// then slow down.
|
|
|
|
if (s_retryTime < 1.0) {
|
|
|
|
s_retryTime = 1.0;
|
|
|
|
}
|
|
|
|
else if (s_retryTime < 3.0) {
|
|
|
|
s_retryTime = 3.0;
|
|
|
|
}
|
|
|
|
else if (s_retryTime < 5.0) {
|
|
|
|
s_retryTime = 5.0;
|
|
|
|
}
|
|
|
|
else if (s_retryTime < 15.0) {
|
|
|
|
s_retryTime = 15.0;
|
|
|
|
}
|
|
|
|
else if (s_retryTime < 30.0) {
|
|
|
|
s_retryTime = 30.0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
s_retryTime = 60.0;
|
|
|
|
}
|
|
|
|
return s_retryTime;
|
|
|
|
}
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
handleScreenError(const CEvent&, void*)
|
2003-03-12 22:34:07 +00:00
|
|
|
{
|
2004-02-15 17:32:11 +00:00
|
|
|
LOG((CLOG_CRIT "error on screen"));
|
|
|
|
EVENTQUEUE->addEvent(CEvent(CEvent::kQuit));
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
|
|
|
|
2004-04-11 14:58:08 +00:00
|
|
|
#if WINAPI_MSWINDOWS
|
2004-03-13 17:13:55 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
handleSystemSuspend(void*)
|
|
|
|
{
|
|
|
|
LOG((CLOG_NOTE "system suspending"));
|
|
|
|
s_suspened = true;
|
|
|
|
s_client->disconnect(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
handleSystemResume(void*)
|
|
|
|
{
|
|
|
|
LOG((CLOG_NOTE "system resuming"));
|
|
|
|
s_suspened = false;
|
|
|
|
startClient();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
CScreen*
|
|
|
|
openClientScreen()
|
2003-03-12 22:34:07 +00:00
|
|
|
{
|
2004-02-15 17:32:11 +00:00
|
|
|
CScreen* screen = createScreen();
|
|
|
|
EVENTQUEUE->adoptHandler(IScreen::getErrorEvent(),
|
|
|
|
screen->getEventTarget(),
|
|
|
|
new CFunctionEventJob(
|
|
|
|
&handleScreenError));
|
|
|
|
return screen;
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
2003-03-12 22:34:07 +00:00
|
|
|
void
|
2004-02-15 17:32:11 +00:00
|
|
|
closeClientScreen(CScreen* screen)
|
2003-03-12 22:34:07 +00:00
|
|
|
{
|
2004-02-15 17:32:11 +00:00
|
|
|
if (screen != NULL) {
|
|
|
|
EVENTQUEUE->removeHandler(IScreen::getErrorEvent(),
|
|
|
|
screen->getEventTarget());
|
|
|
|
delete screen;
|
|
|
|
}
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
handleClientRestart(const CEvent&, void* vtimer)
|
|
|
|
{
|
|
|
|
// discard old timer
|
|
|
|
CEventQueueTimer* timer = reinterpret_cast<CEventQueueTimer*>(vtimer);
|
|
|
|
EVENTQUEUE->deleteTimer(timer);
|
2004-03-13 17:13:55 +00:00
|
|
|
EVENTQUEUE->removeHandler(CEvent::kTimer, timer);
|
2004-02-15 17:32:11 +00:00
|
|
|
|
|
|
|
// reconnect
|
2004-03-13 17:13:55 +00:00
|
|
|
if (!s_suspened) {
|
|
|
|
startClient();
|
|
|
|
}
|
2004-02-15 17:32:11 +00:00
|
|
|
}
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
scheduleClientRestart(double retryTime)
|
|
|
|
{
|
|
|
|
// install a timer and handler to retry later
|
|
|
|
LOG((CLOG_DEBUG "retry in %.0f seconds", retryTime));
|
|
|
|
CEventQueueTimer* timer = EVENTQUEUE->newOneShotTimer(retryTime, NULL);
|
|
|
|
EVENTQUEUE->adoptHandler(CEvent::kTimer, timer,
|
|
|
|
new CFunctionEventJob(&handleClientRestart, timer));
|
|
|
|
}
|
2002-05-31 14:25:26 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
handleClientConnected(const CEvent&, void*)
|
|
|
|
{
|
2004-05-17 21:55:55 +00:00
|
|
|
LOG((CLOG_NOTE "connected to server"));
|
2004-02-15 17:32:11 +00:00
|
|
|
resetRestartTimeout();
|
|
|
|
updateStatus();
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
handleClientFailed(const CEvent& e, void*)
|
|
|
|
{
|
|
|
|
CClient::CFailInfo* info =
|
|
|
|
reinterpret_cast<CClient::CFailInfo*>(e.getData());
|
|
|
|
|
|
|
|
updateStatus(CString("Failed to connect to server: ") + info->m_what);
|
|
|
|
if (!ARG->m_restartable || !info->m_retry) {
|
|
|
|
LOG((CLOG_ERR "failed to connect to server: %s", info->m_what));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
LOG((CLOG_WARN "failed to connect to server: %s", info->m_what));
|
2004-03-13 17:13:55 +00:00
|
|
|
if (!s_suspened) {
|
|
|
|
scheduleClientRestart(nextRestartTimeout());
|
|
|
|
}
|
2004-02-15 17:32:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
handleClientDisconnected(const CEvent&, void*)
|
|
|
|
{
|
|
|
|
LOG((CLOG_NOTE "disconnected from server"));
|
|
|
|
if (!ARG->m_restartable) {
|
|
|
|
EVENTQUEUE->addEvent(CEvent(CEvent::kQuit));
|
|
|
|
}
|
2004-03-13 17:13:55 +00:00
|
|
|
else if (!s_suspened) {
|
2004-02-15 17:32:11 +00:00
|
|
|
s_client->connect();
|
|
|
|
}
|
|
|
|
updateStatus();
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
CClient*
|
|
|
|
openClient(const CString& name, const CNetworkAddress& address, CScreen* screen)
|
|
|
|
{
|
|
|
|
CClient* client = new CClient(name, address,
|
|
|
|
new CTCPSocketFactory, NULL, screen);
|
|
|
|
EVENTQUEUE->adoptHandler(CClient::getConnectedEvent(),
|
|
|
|
client->getEventTarget(),
|
|
|
|
new CFunctionEventJob(handleClientConnected));
|
|
|
|
EVENTQUEUE->adoptHandler(CClient::getConnectionFailedEvent(),
|
|
|
|
client->getEventTarget(),
|
|
|
|
new CFunctionEventJob(handleClientFailed));
|
|
|
|
EVENTQUEUE->adoptHandler(CClient::getDisconnectedEvent(),
|
|
|
|
client->getEventTarget(),
|
|
|
|
new CFunctionEventJob(handleClientDisconnected));
|
|
|
|
return client;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
closeClient(CClient* client)
|
|
|
|
{
|
|
|
|
if (client == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
EVENTQUEUE->removeHandler(CClient::getConnectedEvent(), client);
|
|
|
|
EVENTQUEUE->removeHandler(CClient::getConnectionFailedEvent(), client);
|
|
|
|
EVENTQUEUE->removeHandler(CClient::getDisconnectedEvent(), client);
|
|
|
|
delete client;
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
bool
|
|
|
|
startClient()
|
|
|
|
{
|
|
|
|
double retryTime;
|
|
|
|
CScreen* clientScreen = NULL;
|
|
|
|
try {
|
2004-03-13 17:13:55 +00:00
|
|
|
if (s_clientScreen == NULL) {
|
|
|
|
clientScreen = openClientScreen();
|
|
|
|
s_client = openClient(ARG->m_name,
|
2004-02-28 12:19:49 +00:00
|
|
|
*ARG->m_serverAddress, clientScreen);
|
2004-03-13 17:13:55 +00:00
|
|
|
s_clientScreen = clientScreen;
|
|
|
|
LOG((CLOG_NOTE "started client"));
|
|
|
|
}
|
2004-02-15 17:32:11 +00:00
|
|
|
s_client->connect();
|
|
|
|
updateStatus();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
catch (XScreenUnavailable& e) {
|
|
|
|
LOG((CLOG_WARN "cannot open secondary screen: %s", e.what()));
|
|
|
|
closeClientScreen(clientScreen);
|
|
|
|
updateStatus(CString("Cannot open secondary screen: ") + e.what());
|
|
|
|
retryTime = e.getRetryTime();
|
|
|
|
}
|
|
|
|
catch (XScreenOpenFailure& e) {
|
|
|
|
LOG((CLOG_CRIT "cannot open secondary screen: %s", e.what()));
|
|
|
|
closeClientScreen(clientScreen);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (XBase& e) {
|
|
|
|
LOG((CLOG_CRIT "failed to start client: %s", e.what()));
|
|
|
|
closeClientScreen(clientScreen);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ARG->m_restartable) {
|
|
|
|
scheduleClientRestart(retryTime);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// don't try again
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void
|
|
|
|
stopClient()
|
|
|
|
{
|
|
|
|
closeClient(s_client);
|
|
|
|
closeClientScreen(s_clientScreen);
|
|
|
|
s_client = NULL;
|
|
|
|
s_clientScreen = NULL;
|
|
|
|
}
|
2002-05-31 14:25:26 +00:00
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
int
|
2004-02-28 12:19:49 +00:00
|
|
|
mainLoop()
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
2004-02-28 17:49:29 +00:00
|
|
|
// create socket multiplexer. this must happen after daemonization
|
|
|
|
// on unix because threads evaporate across a fork().
|
|
|
|
CSocketMultiplexer multiplexer;
|
|
|
|
|
|
|
|
// create the event queue
|
|
|
|
CEventQueue eventQueue;
|
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
// start the client. if this return false then we've failed and
|
|
|
|
// we shouldn't retry.
|
|
|
|
LOG((CLOG_DEBUG1 "starting client"));
|
|
|
|
if (!startClient()) {
|
|
|
|
return kExitFailed;
|
|
|
|
}
|
2002-07-24 13:01:18 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
// run event loop. if startClient() failed we're supposed to retry
|
|
|
|
// later. the timer installed by startClient() will take care of
|
|
|
|
// that.
|
|
|
|
CEvent event;
|
2004-02-28 12:19:49 +00:00
|
|
|
DAEMON_RUNNING(true);
|
2004-02-15 17:32:11 +00:00
|
|
|
EVENTQUEUE->getEvent(event);
|
|
|
|
while (event.getType() != CEvent::kQuit) {
|
|
|
|
EVENTQUEUE->dispatchEvent(event);
|
|
|
|
CEvent::deleteData(event);
|
|
|
|
EVENTQUEUE->getEvent(event);
|
|
|
|
}
|
|
|
|
DAEMON_RUNNING(false);
|
2002-08-11 11:49:36 +00:00
|
|
|
|
2004-02-15 17:32:11 +00:00
|
|
|
// close down
|
|
|
|
LOG((CLOG_DEBUG1 "stopping client"));
|
|
|
|
stopClient();
|
|
|
|
updateStatus();
|
|
|
|
LOG((CLOG_NOTE "stopped client"));
|
|
|
|
|
|
|
|
return kExitSuccess;
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2003-03-12 22:34:07 +00:00
|
|
|
static
|
2004-02-28 12:19:49 +00:00
|
|
|
int
|
|
|
|
daemonMainLoop(int, const char**)
|
2003-03-12 22:34:07 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
CSystemLogger sysLogger(DAEMON_NAME);
|
|
|
|
return mainLoop();
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
int
|
2004-02-28 12:19:49 +00:00
|
|
|
standardStartup(int argc, char** argv)
|
2003-03-12 22:34:07 +00:00
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
// parse command line
|
|
|
|
parse(argc, argv);
|
|
|
|
|
|
|
|
// daemonize if requested
|
|
|
|
if (ARG->m_daemon) {
|
|
|
|
return ARCH->daemonize(DAEMON_NAME, &daemonMainLoop);
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
else {
|
|
|
|
return mainLoop();
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
|
|
|
|
static
|
|
|
|
int
|
|
|
|
run(int argc, char** argv, ILogOutputter* outputter, StartupFunc startup)
|
|
|
|
{
|
|
|
|
// general initialization
|
|
|
|
ARG->m_serverAddress = new CNetworkAddress;
|
|
|
|
ARG->m_pname = ARCH->getBasename(argv[0]);
|
|
|
|
|
|
|
|
// install caller's output filter
|
|
|
|
if (outputter != NULL) {
|
|
|
|
CLOG->insert(outputter);
|
|
|
|
}
|
|
|
|
|
|
|
|
// save log messages
|
|
|
|
CBufferedLogOutputter logBuffer(1000);
|
|
|
|
CLOG->insert(&logBuffer, true);
|
|
|
|
|
|
|
|
// make the task bar receiver. the user can control this app
|
|
|
|
// through the task bar.
|
|
|
|
s_taskBarReceiver = createTaskBarReceiver(&logBuffer);
|
|
|
|
|
|
|
|
// run
|
|
|
|
int result = startup(argc, argv);
|
|
|
|
|
|
|
|
// done with task bar receiver
|
|
|
|
delete s_taskBarReceiver;
|
|
|
|
|
|
|
|
// done with log buffer
|
|
|
|
CLOG->remove(&logBuffer);
|
|
|
|
|
|
|
|
delete ARG->m_serverAddress;
|
|
|
|
return result;
|
|
|
|
}
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2002-05-31 14:25:26 +00:00
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
//
|
|
|
|
// command line parsing
|
|
|
|
//
|
|
|
|
|
2002-06-08 21:48:00 +00:00
|
|
|
#define BYE "\nTry `%s --help' for more information."
|
|
|
|
|
|
|
|
static void (*bye)(int) = &exit;
|
2002-06-04 11:06:26 +00:00
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
version()
|
2002-06-04 11:06:26 +00:00
|
|
|
{
|
2004-02-15 17:32:11 +00:00
|
|
|
LOG((CLOG_PRINT "%s %s, protocol version %d.%d\n%s",
|
|
|
|
ARG->m_pname,
|
|
|
|
kVersion,
|
|
|
|
kProtocolMajorVersion,
|
|
|
|
kProtocolMinorVersion,
|
|
|
|
kCopyright));
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
help()
|
2002-06-04 11:06:26 +00:00
|
|
|
{
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT
|
2002-06-04 11:06:26 +00:00
|
|
|
"Usage: %s"
|
2002-06-14 18:08:20 +00:00
|
|
|
" [--daemon|--no-daemon]"
|
2002-06-09 17:59:32 +00:00
|
|
|
" [--debug <level>]"
|
|
|
|
" [--name <screen-name>]"
|
2002-06-04 11:06:26 +00:00
|
|
|
" [--restart|--no-restart]"
|
2002-09-02 17:30:04 +00:00
|
|
|
" <server-address>\n"
|
2002-06-14 18:08:20 +00:00
|
|
|
"\n"
|
2002-06-04 11:06:26 +00:00
|
|
|
"Start the synergy mouse/keyboard sharing server.\n"
|
|
|
|
"\n"
|
|
|
|
" -d, --debug <level> filter out log messages with priorty below level.\n"
|
|
|
|
" level may be: FATAL, ERROR, WARNING, NOTE, INFO,\n"
|
|
|
|
" DEBUG, DEBUG1, DEBUG2.\n"
|
2002-06-14 18:08:20 +00:00
|
|
|
" -f, --no-daemon run the client in the foreground.\n"
|
|
|
|
"* --daemon run the client as a daemon.\n"
|
2002-06-09 17:59:32 +00:00
|
|
|
" -n, --name <screen-name> use screen-name instead the hostname to identify\n"
|
|
|
|
" ourself to the server.\n"
|
2002-06-04 11:06:26 +00:00
|
|
|
" -1, --no-restart do not try to restart the client if it fails for\n"
|
|
|
|
" some reason.\n"
|
2002-07-24 13:01:18 +00:00
|
|
|
"* --restart restart the client automatically if it fails.\n"
|
2002-06-04 11:06:26 +00:00
|
|
|
" -h, --help display this help and exit.\n"
|
|
|
|
" --version display version information and exit.\n"
|
|
|
|
"\n"
|
2002-06-08 21:48:00 +00:00
|
|
|
"* marks defaults.\n"
|
2002-06-04 11:06:26 +00:00
|
|
|
"\n"
|
2002-06-09 16:53:25 +00:00
|
|
|
"The server address is of the form: [<hostname>][:<port>]. The hostname\n"
|
|
|
|
"must be the address or hostname of the server. The port overrides the\n"
|
|
|
|
"default port, %d.\n"
|
|
|
|
"\n"
|
2002-06-04 11:06:26 +00:00
|
|
|
"Where log messages go depends on the platform and whether or not the\n"
|
2002-06-14 18:08:20 +00:00
|
|
|
"client is running as a daemon.",
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, kDefaultPort));
|
2002-06-04 11:06:26 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
bool
|
2003-03-12 22:34:07 +00:00
|
|
|
isArg(int argi, int argc, const char* const* argv,
|
2002-06-17 13:31:21 +00:00
|
|
|
const char* name1, const char* name2,
|
|
|
|
int minRequiredParameters = 0)
|
2002-06-04 11:06:26 +00:00
|
|
|
{
|
|
|
|
if ((name1 != NULL && strcmp(argv[argi], name1) == 0) ||
|
|
|
|
(name2 != NULL && strcmp(argv[argi], name2) == 0)) {
|
|
|
|
// match. check args left.
|
|
|
|
if (argi + minRequiredParameters >= argc) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT "%s: missing arguments for `%s'" BYE,
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, argv[argi], ARG->m_pname));
|
2002-07-24 13:01:18 +00:00
|
|
|
bye(kExitArgs);
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// no match
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
void
|
2003-03-12 22:34:07 +00:00
|
|
|
parse(int argc, const char* const* argv)
|
2002-06-04 11:06:26 +00:00
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
assert(ARG->m_pname != NULL);
|
|
|
|
assert(argv != NULL);
|
|
|
|
assert(argc >= 1);
|
2002-06-04 11:06:26 +00:00
|
|
|
|
2002-06-09 17:59:32 +00:00
|
|
|
// set defaults
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_name = ARCH->getHostName();
|
2002-06-09 17:59:32 +00:00
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
// parse options
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < argc; ++i) {
|
|
|
|
if (isArg(i, argc, argv, "-d", "--debug", 1)) {
|
|
|
|
// change logging level
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_logFilter = argv[++i];
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
2002-06-09 17:59:32 +00:00
|
|
|
else if (isArg(i, argc, argv, "-n", "--name", 1)) {
|
|
|
|
// save screen name
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_name = argv[++i];
|
2002-06-09 17:59:32 +00:00
|
|
|
}
|
|
|
|
|
2002-06-09 22:20:28 +00:00
|
|
|
else if (isArg(i, argc, argv, NULL, "--camp")) {
|
2003-07-12 17:57:31 +00:00
|
|
|
// ignore -- included for backwards compatibility
|
2002-06-09 22:20:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (isArg(i, argc, argv, NULL, "--no-camp")) {
|
2003-07-12 17:57:31 +00:00
|
|
|
// ignore -- included for backwards compatibility
|
2002-06-09 22:20:28 +00:00
|
|
|
}
|
|
|
|
|
2002-06-14 18:08:20 +00:00
|
|
|
else if (isArg(i, argc, argv, "-f", "--no-daemon")) {
|
2002-06-04 11:06:26 +00:00
|
|
|
// not a daemon
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_daemon = false;
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
2002-06-14 18:08:20 +00:00
|
|
|
else if (isArg(i, argc, argv, NULL, "--daemon")) {
|
2002-06-04 11:06:26 +00:00
|
|
|
// daemonize
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_daemon = true;
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (isArg(i, argc, argv, "-1", "--no-restart")) {
|
|
|
|
// don't try to restart
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_restartable = false;
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (isArg(i, argc, argv, NULL, "--restart")) {
|
|
|
|
// try to restart
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_restartable = true;
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
2002-08-11 11:49:36 +00:00
|
|
|
else if (isArg(i, argc, argv, "-z", NULL)) {
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_backend = true;
|
2002-08-11 11:49:36 +00:00
|
|
|
}
|
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
else if (isArg(i, argc, argv, "-h", "--help")) {
|
|
|
|
help();
|
2002-07-24 13:01:18 +00:00
|
|
|
bye(kExitSuccess);
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else if (isArg(i, argc, argv, NULL, "--version")) {
|
|
|
|
version();
|
2002-07-24 13:01:18 +00:00
|
|
|
bye(kExitSuccess);
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
else if (isArg(i, argc, argv, "--", NULL)) {
|
|
|
|
// remaining arguments are not options
|
|
|
|
++i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (argv[i][0] == '-') {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT "%s: unrecognized option `%s'" BYE,
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, argv[i], ARG->m_pname));
|
2002-07-24 13:01:18 +00:00
|
|
|
bye(kExitArgs);
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
// this and remaining arguments are not options
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-02 17:30:04 +00:00
|
|
|
// exactly one non-option argument (server-address)
|
|
|
|
if (i == argc) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT "%s: a server address or name is required" BYE,
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, ARG->m_pname));
|
2002-09-02 17:30:04 +00:00
|
|
|
bye(kExitArgs);
|
|
|
|
}
|
|
|
|
if (i + 1 != argc) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT "%s: unrecognized option `%s'" BYE,
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, argv[i], ARG->m_pname));
|
2002-09-02 17:30:04 +00:00
|
|
|
bye(kExitArgs);
|
|
|
|
}
|
2002-06-09 16:53:25 +00:00
|
|
|
|
2002-09-02 17:30:04 +00:00
|
|
|
// save server address
|
|
|
|
try {
|
2004-02-28 12:19:49 +00:00
|
|
|
*ARG->m_serverAddress = CNetworkAddress(argv[i], kDefaultPort);
|
2002-09-02 17:30:04 +00:00
|
|
|
}
|
|
|
|
catch (XSocketAddress& e) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT "%s: %s" BYE,
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, e.what(), ARG->m_pname));
|
2002-09-02 17:30:04 +00:00
|
|
|
bye(kExitFailed);
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// increase default filter level for daemon. the user must
|
|
|
|
// explicitly request another level for a daemon.
|
2003-01-04 22:01:32 +00:00
|
|
|
if (ARG->m_daemon && ARG->m_logFilter == NULL) {
|
2004-04-11 14:58:08 +00:00
|
|
|
#if SYSAPI_WIN32
|
2003-01-04 22:01:32 +00:00
|
|
|
if (CArchMiscWindows::isWindows95Family()) {
|
2002-06-08 21:48:00 +00:00
|
|
|
// windows 95 has no place for logging so avoid showing
|
|
|
|
// the log console window.
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_logFilter = "FATAL";
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_logFilter = "NOTE";
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// set log filter
|
2003-01-04 22:01:32 +00:00
|
|
|
if (!CLOG->setFilter(ARG->m_logFilter)) {
|
2002-10-15 21:29:44 +00:00
|
|
|
LOG((CLOG_PRINT "%s: unrecognized log level `%s'" BYE,
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_pname, ARG->m_logFilter, ARG->m_pname));
|
2002-07-24 13:01:18 +00:00
|
|
|
bye(kExitArgs);
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
|
2002-05-31 14:25:26 +00:00
|
|
|
//
|
|
|
|
// platform dependent entry points
|
|
|
|
//
|
|
|
|
|
2004-04-11 14:58:08 +00:00
|
|
|
#if SYSAPI_WIN32
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-09-14 12:03:43 +00:00
|
|
|
static bool s_hasImportantLogMessages = false;
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
//
|
|
|
|
// CMessageBoxOutputter
|
|
|
|
//
|
|
|
|
// This class writes severe log messages to a message box
|
|
|
|
//
|
|
|
|
|
|
|
|
class CMessageBoxOutputter : public ILogOutputter {
|
|
|
|
public:
|
|
|
|
CMessageBoxOutputter() { }
|
|
|
|
virtual ~CMessageBoxOutputter() { }
|
|
|
|
|
|
|
|
// ILogOutputter overrides
|
|
|
|
virtual void open(const char*) { }
|
|
|
|
virtual void close() { }
|
|
|
|
virtual bool write(ELevel level, const char* message);
|
|
|
|
virtual const char* getNewline() const { return ""; }
|
|
|
|
};
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
bool
|
2003-01-04 22:01:32 +00:00
|
|
|
CMessageBoxOutputter::write(ELevel level, const char* message)
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
2002-09-14 12:03:43 +00:00
|
|
|
// note any important messages the user may need to know about
|
2003-01-04 22:01:32 +00:00
|
|
|
if (level <= CLog::kWARNING) {
|
2002-09-14 12:03:43 +00:00
|
|
|
s_hasImportantLogMessages = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FATAL and PRINT messages get a dialog box if not running as
|
|
|
|
// backend. if we're running as a backend the user will have
|
|
|
|
// a chance to see the messages when we exit.
|
2003-01-04 22:01:32 +00:00
|
|
|
if (!ARG->m_backend && level <= CLog::kFATAL) {
|
|
|
|
MessageBox(NULL, message, ARG->m_pname, MB_OK | MB_ICONWARNING);
|
|
|
|
return false;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
else {
|
2003-01-04 22:01:32 +00:00
|
|
|
return true;
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
void
|
|
|
|
byeThrow(int x)
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
2003-01-04 22:01:32 +00:00
|
|
|
CArchMiscWindows::daemonFailed(x);
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
|
|
|
int
|
2004-02-28 12:19:49 +00:00
|
|
|
daemonNTMainLoop(int argc, const char** argv)
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
|
|
|
parse(argc, argv);
|
2003-01-04 22:01:32 +00:00
|
|
|
ARG->m_backend = false;
|
2004-02-28 12:19:49 +00:00
|
|
|
return CArchMiscWindows::runDaemon(mainLoop);
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
static
|
2002-06-17 15:44:45 +00:00
|
|
|
int
|
2004-02-28 12:19:49 +00:00
|
|
|
daemonNTStartup(int, char**)
|
2002-06-08 21:48:00 +00:00
|
|
|
{
|
2003-03-12 22:34:07 +00:00
|
|
|
CSystemLogger sysLogger(DAEMON_NAME);
|
2004-02-28 12:19:49 +00:00
|
|
|
bye = &byeThrow;
|
|
|
|
return ARCH->daemonize(DAEMON_NAME, &daemonNTMainLoop);
|
2002-06-08 21:48:00 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2003-03-12 22:34:07 +00:00
|
|
|
static
|
2004-02-28 12:19:49 +00:00
|
|
|
void
|
|
|
|
showError(HINSTANCE instance, const char* title, UINT id, const char* arg)
|
|
|
|
{
|
|
|
|
CString fmt = CMSWindowsUtil::getString(instance, id);
|
|
|
|
CString msg = CStringUtil::format(fmt.c_str(), arg);
|
|
|
|
MessageBox(NULL, msg.c_str(), title, MB_OK | MB_ICONWARNING);
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int WINAPI
|
|
|
|
WinMain(HINSTANCE instance, HINSTANCE, LPSTR, int)
|
|
|
|
{
|
2004-02-28 12:19:49 +00:00
|
|
|
try {
|
|
|
|
CArch arch(instance);
|
|
|
|
CMSWindowsScreen::init(instance);
|
|
|
|
CLOG;
|
2004-02-28 17:51:55 +00:00
|
|
|
CThread::getCurrentThread().setPriority(-14);
|
2004-02-28 12:19:49 +00:00
|
|
|
CArgs args;
|
|
|
|
|
|
|
|
// windows NT family starts services using no command line options.
|
|
|
|
// since i'm not sure how to tell the difference between that and
|
|
|
|
// a user providing no options we'll assume that if there are no
|
|
|
|
// arguments and we're on NT then we're being invoked as a service.
|
|
|
|
// users on NT can use `--daemon' or `--no-daemon' to force us out
|
|
|
|
// of the service code path.
|
|
|
|
StartupFunc startup = &standardStartup;
|
|
|
|
if (__argc <= 1 && !CArchMiscWindows::isWindows95Family()) {
|
|
|
|
startup = &daemonNTStartup;
|
|
|
|
}
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
// send PRINT and FATAL output to a message box
|
|
|
|
int result = run(__argc, __argv, new CMessageBoxOutputter, startup);
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
// let user examine any messages if we're running as a backend
|
|
|
|
// by putting up a dialog box before exiting.
|
|
|
|
if (args.m_backend && s_hasImportantLogMessages) {
|
|
|
|
showError(instance, args.m_pname, IDS_FAILED, "");
|
|
|
|
}
|
2003-03-12 22:34:07 +00:00
|
|
|
|
2004-02-28 12:19:49 +00:00
|
|
|
delete CLOG;
|
|
|
|
return result;
|
2002-06-02 18:49:35 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
catch (XBase& e) {
|
|
|
|
showError(instance, __argv[0], IDS_UNCAUGHT_EXCEPTION, e.what());
|
|
|
|
throw;
|
2003-03-12 22:34:07 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
catch (XArch& e) {
|
|
|
|
showError(instance, __argv[0], IDS_INIT_FAILED, e.what().c_str());
|
|
|
|
return kExitFailed;
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
showError(instance, __argv[0], IDS_UNCAUGHT_EXCEPTION, "<unknown>");
|
|
|
|
throw;
|
2002-09-14 12:03:43 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
}
|
|
|
|
|
2004-04-11 14:58:08 +00:00
|
|
|
#elif SYSAPI_UNIX
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-06-10 22:06:45 +00:00
|
|
|
int
|
2002-06-17 13:31:21 +00:00
|
|
|
main(int argc, char** argv)
|
2002-06-04 11:06:26 +00:00
|
|
|
{
|
2004-02-15 17:32:11 +00:00
|
|
|
CArgs args;
|
2004-02-28 12:19:49 +00:00
|
|
|
try {
|
|
|
|
int result;
|
|
|
|
CArch arch;
|
|
|
|
CLOG;
|
|
|
|
CArgs args;
|
|
|
|
result = run(argc, argv, NULL, &standardStartup);
|
|
|
|
delete CLOG;
|
|
|
|
return result;
|
2002-06-04 11:06:26 +00:00
|
|
|
}
|
2004-02-28 12:19:49 +00:00
|
|
|
catch (XBase& e) {
|
|
|
|
LOG((CLOG_CRIT "Uncaught exception: %s\n", e.what()));
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
catch (XArch& e) {
|
|
|
|
LOG((CLOG_CRIT "Initialization failed: %s" BYE, e.what().c_str()));
|
|
|
|
return kExitFailed;
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
LOG((CLOG_CRIT "Uncaught exception: <unknown exception>\n"));
|
|
|
|
throw;
|
2002-06-02 18:49:35 +00:00
|
|
|
}
|
2001-10-08 19:24:46 +00:00
|
|
|
}
|
2001-11-19 00:33:36 +00:00
|
|
|
|
2002-06-04 11:06:26 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#error no main() for platform
|
|
|
|
|
2001-11-19 00:33:36 +00:00
|
|
|
#endif
|