barrier/src/lib/ipc/IpcMessage.h

86 lines
2.0 KiB
C
Raw Normal View History

2012-07-02 13:45:52 +00:00
/*
* synergy -- mouse and keyboard sharing utility
* Copyright (C) 2012 Synergy Si 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 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.
*
* 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:
2014-11-11 13:51:47 +00:00
virtual ~IpcMessage();
2012-07-02 13:45:52 +00:00
//! Gets the message type ID.
UInt8 type() const { return m_type; }
protected:
2014-11-11 13:51:47 +00:00
IpcMessage(UInt8 type);
private:
2012-07-02 13:45:52 +00:00
UInt8 m_type;
};
2014-11-11 13:51:47 +00:00
class IpcHelloMessage : public IpcMessage {
public:
2014-11-11 13:51:47 +00:00
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:
2014-11-11 13:51:47 +00:00
IpcShutdownMessage();
virtual ~IpcShutdownMessage();
};
2014-11-11 13:51:47 +00:00
class IpcLogLineMessage : public IpcMessage {
public:
2014-11-11 13:51:47 +00:00
IpcLogLineMessage(const String& logLine);
virtual ~IpcLogLineMessage();
//! Gets the log line.
2014-11-11 13:51:47 +00:00
String logLine() const { return m_logLine; }
private:
2014-11-11 13:51:47 +00:00
String m_logLine;
};
2014-11-11 13:51:47 +00:00
class IpcCommandMessage : public IpcMessage {
public:
2014-11-11 13:51:47 +00:00
IpcCommandMessage(const String& command, bool elevate);
virtual ~IpcCommandMessage();
//! Gets the command.
2014-11-11 13:51:47 +00:00
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:
2014-11-11 13:51:47 +00:00
String m_command;
bool m_elevate;
2012-07-02 13:45:52 +00:00
};