2016-11-13 13:05:30 -05:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "components/logger.hpp"
|
|
|
|
|
|
|
|
LEMONBUDDY_NS
|
|
|
|
|
2016-11-14 03:21:18 -05:00
|
|
|
/**
|
|
|
|
* Message types
|
|
|
|
*/
|
|
|
|
struct ipc_command {
|
|
|
|
static constexpr auto prefix{"cmd:"};
|
|
|
|
string payload;
|
|
|
|
};
|
|
|
|
struct ipc_hook {
|
|
|
|
static constexpr auto prefix{"hook:"};
|
|
|
|
string payload;
|
|
|
|
};
|
|
|
|
|
2016-11-13 13:05:30 -05:00
|
|
|
/**
|
|
|
|
* Component used for inter-process communication.
|
|
|
|
*
|
|
|
|
* A unique messaging channel will be setup for each
|
|
|
|
* running process which will allow messages and
|
|
|
|
* events to be sent to the process externally.
|
|
|
|
*/
|
|
|
|
class ipc {
|
|
|
|
public:
|
|
|
|
explicit ipc(const logger& logger) : m_log(logger) {}
|
|
|
|
~ipc();
|
|
|
|
|
2016-11-14 03:21:18 -05:00
|
|
|
void attach_callback(callback<const ipc_command&>&& cb);
|
|
|
|
void attach_callback(callback<const ipc_hook&>&& cb);
|
2016-11-13 13:05:30 -05:00
|
|
|
void receive_messages();
|
|
|
|
|
|
|
|
protected:
|
2016-11-14 03:21:18 -05:00
|
|
|
void parse(const string& payload) const;
|
|
|
|
void delegate(const ipc_command& msg) const;
|
|
|
|
void delegate(const ipc_hook& msg) const;
|
2016-11-13 13:05:30 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
const logger& m_log;
|
|
|
|
|
2016-11-14 03:21:18 -05:00
|
|
|
vector<callback<const ipc_command&>> m_command_callbacks;
|
|
|
|
vector<callback<const ipc_hook&>> m_hook_callbacks;
|
|
|
|
|
2016-11-13 13:05:30 -05:00
|
|
|
stateflag m_running{false};
|
|
|
|
|
|
|
|
string m_fifo;
|
|
|
|
int m_fd;
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
/**
|
|
|
|
* Configure injection module
|
|
|
|
*/
|
|
|
|
template <typename T = unique_ptr<ipc>>
|
|
|
|
di::injector<T> configure_ipc() {
|
|
|
|
return di::make_injector(configure_logger());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
LEMONBUDDY_NS_END
|