barrier/src/lib/ipc/IpcMessage.h

86 lines
2.2 KiB
C
Raw Normal View History

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
* 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
#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:
virtual ~IpcMessage();
2012-07-02 13:45:52 +00:00
//! Gets the message type ID.
UInt8 type() const { return m_type; }
protected:
IpcMessage(UInt8 type);
private:
UInt8 m_type;
};
2014-11-11 13:51:47 +00:00
class IpcHelloMessage : public IpcMessage {
public:
IpcHelloMessage(EIpcClientType clientType);
virtual ~IpcHelloMessage();
//! Gets the message type ID.
EIpcClientType clientType() const { return m_clientType; }
private:
EIpcClientType m_clientType;
};
2014-11-11 13:51:47 +00:00
class IpcShutdownMessage : public IpcMessage {
public:
IpcShutdownMessage();
virtual ~IpcShutdownMessage();
};
2014-11-11 13:51:47 +00:00
class IpcLogLineMessage : public IpcMessage {
public:
IpcLogLineMessage(const String& logLine);
virtual ~IpcLogLineMessage();
//! Gets the log line.
String logLine() const { return m_logLine; }
private:
String m_logLine;
};
2014-11-11 13:51:47 +00:00
class IpcCommandMessage : public IpcMessage {
public:
IpcCommandMessage(const String& command, bool elevate);
virtual ~IpcCommandMessage();
//! Gets the command.
String command() const { return m_command; }
//! Gets whether or not the process should be elevated on MS Windows.
bool elevate() const { return m_elevate; }
private:
String m_command;
bool m_elevate;
2012-07-02 13:45:52 +00:00
};