2012-07-02 13:45:52 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2016-09-07 14:24:00 +00:00
|
|
|
* Copyright (C) 2012-2016 Symless Ltd.
|
2012-07-02 13:45:52 +00:00
|
|
|
* Copyright (C) 2012 Nick Bolton
|
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2015-05-03 02:33:52 +00:00
|
|
|
* found in the file LICENSE that should have accompanied this file.
|
2012-07-02 13:45:52 +00:00
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "ipc/Ipc.h"
|
|
|
|
#include "base/EventTypes.h"
|
|
|
|
#include "base/String.h"
|
|
|
|
#include "base/Event.h"
|
2012-07-02 13:45:52 +00:00
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class IpcMessage : public EventData {
|
2012-07-02 13:45:52 +00:00
|
|
|
public:
|
2016-12-28 11:50:32 +00:00
|
|
|
virtual ~IpcMessage();
|
2012-07-02 13:45:52 +00:00
|
|
|
|
2016-12-28 11:50:32 +00:00
|
|
|
//! Gets the message type ID.
|
|
|
|
UInt8 type() const { return m_type; }
|
2012-07-10 01:51:51 +00:00
|
|
|
|
|
|
|
protected:
|
2016-12-28 11:50:32 +00:00
|
|
|
IpcMessage(UInt8 type);
|
2012-07-10 01:51:51 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-28 11:50:32 +00:00
|
|
|
UInt8 m_type;
|
2012-07-10 01:51:51 +00:00
|
|
|
};
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class IpcHelloMessage : public IpcMessage {
|
2012-07-10 01:51:51 +00:00
|
|
|
public:
|
2016-12-28 11:50:32 +00:00
|
|
|
IpcHelloMessage(EIpcClientType clientType);
|
|
|
|
virtual ~IpcHelloMessage();
|
2012-07-10 01:51:51 +00:00
|
|
|
|
2016-12-28 11:50:32 +00:00
|
|
|
//! Gets the message type ID.
|
|
|
|
EIpcClientType clientType() const { return m_clientType; }
|
2012-07-10 01:51:51 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-28 11:50:32 +00:00
|
|
|
EIpcClientType m_clientType;
|
2012-07-10 01:51:51 +00:00
|
|
|
};
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class IpcShutdownMessage : public IpcMessage {
|
2012-07-10 01:51:51 +00:00
|
|
|
public:
|
2016-12-28 11:50:32 +00:00
|
|
|
IpcShutdownMessage();
|
|
|
|
virtual ~IpcShutdownMessage();
|
2012-07-10 01:51:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class IpcLogLineMessage : public IpcMessage {
|
2012-07-10 01:51:51 +00:00
|
|
|
public:
|
2016-12-28 11:50:32 +00:00
|
|
|
IpcLogLineMessage(const String& logLine);
|
|
|
|
virtual ~IpcLogLineMessage();
|
2012-07-10 01:51:51 +00:00
|
|
|
|
2016-12-28 11:50:32 +00:00
|
|
|
//! Gets the log line.
|
|
|
|
String logLine() const { return m_logLine; }
|
2012-07-10 01:51:51 +00:00
|
|
|
|
|
|
|
private:
|
2016-12-28 11:50:32 +00:00
|
|
|
String m_logLine;
|
2012-07-10 01:51:51 +00:00
|
|
|
};
|
|
|
|
|
2014-11-11 13:51:47 +00:00
|
|
|
class IpcCommandMessage : public IpcMessage {
|
2012-07-10 01:51:51 +00:00
|
|
|
public:
|
2016-12-28 11:50:32 +00:00
|
|
|
IpcCommandMessage(const String& command, bool elevate);
|
|
|
|
virtual ~IpcCommandMessage();
|
2012-07-10 01:51:51 +00:00
|
|
|
|
2016-12-28 11:50:32 +00:00
|
|
|
//! Gets the command.
|
|
|
|
String command() const { return m_command; }
|
2012-07-10 01:51:51 +00:00
|
|
|
|
2016-12-28 11:50:32 +00:00
|
|
|
//! Gets whether or not the process should be elevated on MS Windows.
|
|
|
|
bool elevate() const { return m_elevate; }
|
2012-07-28 02:59:20 +00:00
|
|
|
|
2012-07-10 01:51:51 +00:00
|
|
|
private:
|
2016-12-28 11:50:32 +00:00
|
|
|
String m_command;
|
|
|
|
bool m_elevate;
|
2012-07-02 13:45:52 +00:00
|
|
|
};
|