polybar/include/components/controller.hpp

88 lines
2.2 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
2016-12-01 07:41:49 +00:00
#include <csignal>
2016-06-15 03:32:35 +00:00
#include "common.hpp"
#include "components/bar.hpp"
2016-06-15 03:32:35 +00:00
#include "components/config.hpp"
#include "components/eventloop.hpp"
2016-11-13 18:05:30 +00:00
#include "components/ipc.hpp"
2016-06-15 03:32:35 +00:00
#include "components/logger.hpp"
#include "components/types.hpp"
2016-06-15 03:32:35 +00:00
#include "config.hpp"
#include "events/signal_emitter.hpp"
#include "events/signal_fwd.hpp"
#include "events/signal_receiver.hpp"
2016-11-02 19:22:45 +00:00
#include "utils/command.hpp"
2016-06-15 03:32:35 +00:00
#include "utils/inotify.hpp"
2016-11-02 19:22:45 +00:00
#include "x11/connection.hpp"
#include "x11/types.hpp"
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
2016-11-20 22:04:31 +00:00
// fwd decl {{{
class bar;
struct bar_settings;
2016-11-20 22:04:31 +00:00
// }}}
using watch_t = inotify_util::watch_t;
namespace sig_ev = signals::eventloop;
namespace sig_ui = signals::ui;
namespace sig_ipc = signals::ipc;
2016-06-15 03:32:35 +00:00
class controller : public signal_receiver<SIGN_PRIORITY_CONTROLLER, sig_ev::process_update, sig_ev::process_input,
sig_ev::process_quit, sig_ui::button_press, sig_ipc::process_action, sig_ipc::process_command,
sig_ipc::process_hook> {
public:
2016-12-09 08:02:47 +00:00
static unique_ptr<controller> make(watch_t&& confwatch, bool enable_ipc = false, bool writeback = false);
explicit controller(connection& conn, signal_emitter& emitter, const logger& logger, const config& config,
unique_ptr<eventloop> eventloop, unique_ptr<bar> bar, unique_ptr<ipc> ipc, watch_t confwatch, bool writeback);
2016-11-02 19:22:45 +00:00
~controller();
2016-06-15 03:32:35 +00:00
void setup();
2016-12-03 14:46:48 +00:00
bool run();
2016-06-15 03:32:35 +00:00
const bar_settings opts() const;
2016-06-15 03:32:35 +00:00
protected:
2016-11-02 19:22:45 +00:00
void wait_for_signal();
void wait_for_xevent();
2016-12-01 07:41:49 +00:00
void wait_for_eventloop();
void wait_for_configwatch();
2016-06-15 03:32:35 +00:00
bool on(const sig_ev::process_update& evt);
bool on(const sig_ev::process_input& evt);
bool on(const sig_ev::process_quit& evt);
bool on(const sig_ui::button_press& evt);
bool on(const sig_ipc::process_action& evt);
bool on(const sig_ipc::process_command& evt);
bool on(const sig_ipc::process_hook& evt);
2016-12-01 07:41:49 +00:00
2016-06-15 03:32:35 +00:00
private:
connection& m_connection;
signal_emitter& m_sig;
2016-06-15 03:32:35 +00:00
const logger& m_log;
const config& m_conf;
unique_ptr<eventloop> m_eventloop;
2016-06-15 03:32:35 +00:00
unique_ptr<bar> m_bar;
2016-11-13 18:05:30 +00:00
unique_ptr<ipc> m_ipc;
2016-06-15 03:32:35 +00:00
stateflag m_running{false};
stateflag m_reload{false};
stateflag m_waiting{false};
2016-06-15 03:32:35 +00:00
sigset_t m_waitmask;
vector<thread> m_threads;
watch_t m_confwatch;
command_t m_command;
2016-06-15 03:32:35 +00:00
2016-11-13 18:05:30 +00:00
bool m_writeback{false};
2016-06-15 03:32:35 +00:00
};
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END