polybar/include/components/controller.hpp

153 lines
3.8 KiB
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#include <moodycamel/blockingconcurrentqueue.h>
#include <thread>
2016-12-01 07:41:49 +00:00
2016-06-15 03:32:35 +00:00
#include "common.hpp"
2021-02-20 20:26:45 +00:00
#include "components/eventloop.hpp"
2019-03-07 06:42:10 +00:00
#include "components/types.hpp"
#include "events/signal_fwd.hpp"
#include "events/signal_receiver.hpp"
#include "events/types.hpp"
#include "settings.hpp"
2020-11-25 09:16:26 +00:00
#include "utils/actions.hpp"
2016-12-27 03:58:41 +00:00
#include "utils/file.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 {{{
2017-01-19 10:11:28 +00:00
enum class alignment;
2016-11-20 22:04:31 +00:00
class bar;
2016-12-09 08:40:46 +00:00
class config;
class connection;
class inotify_watch;
class ipc;
2016-12-09 08:40:46 +00:00
class logger;
class signal_emitter;
namespace modules {
struct module_interface;
} // namespace modules
using module_t = shared_ptr<modules::module_interface>;
using modulemap_t = std::map<alignment, vector<module_t>>;
2016-11-20 22:04:31 +00:00
// }}}
class controller
: public signal_receiver<SIGN_PRIORITY_CONTROLLER, signals::eventqueue::exit_terminate,
signals::eventqueue::exit_reload, signals::eventqueue::notify_change, signals::eventqueue::notify_forcechange,
signals::eventqueue::check_state, signals::ipc::action, signals::ipc::command, signals::ipc::hook,
signals::ui::ready, signals::ui::button_press, signals::ui::update_background> {
public:
2016-12-09 08:40:46 +00:00
using make_type = unique_ptr<controller>;
static make_type make(unique_ptr<ipc>&& ipc, unique_ptr<inotify_watch>&& config_watch);
2016-12-09 08:02:47 +00:00
explicit controller(connection&, signal_emitter&, const logger&, const config&, unique_ptr<bar>&&, unique_ptr<ipc>&&,
unique_ptr<inotify_watch>&&);
2016-11-02 19:22:45 +00:00
~controller();
2016-06-15 03:32:35 +00:00
2017-01-24 05:59:58 +00:00
bool run(bool writeback, string snapshot_dst);
2016-06-15 03:32:35 +00:00
bool enqueue(event&& evt);
2016-12-31 03:32:11 +00:00
bool enqueue(string&& input_data);
2016-06-15 03:32:35 +00:00
void signal_handler(int signum);
void conn_cb(int status, int events);
2021-02-20 20:26:45 +00:00
void ipc_cb(string buf);
2021-03-10 23:54:24 +00:00
void confwatch_handler(const char* fname, int events, int status);
protected:
void read_events();
void process_eventqueue();
void process_inputdata();
bool process_update(bool force);
2016-06-15 03:32:35 +00:00
bool on(const signals::eventqueue::notify_change& evt) override;
bool on(const signals::eventqueue::notify_forcechange& evt) override;
bool on(const signals::eventqueue::exit_terminate& evt) override;
bool on(const signals::eventqueue::exit_reload& evt) override;
bool on(const signals::eventqueue::check_state& evt) override;
bool on(const signals::ui::ready& evt) override;
bool on(const signals::ui::button_press& evt) override;
bool on(const signals::ipc::action& evt) override;
bool on(const signals::ipc::command& evt) override;
bool on(const signals::ipc::hook& evt) override;
bool on(const signals::ui::update_background& evt) override;
2016-12-01 07:41:49 +00:00
2016-06-15 03:32:35 +00:00
private:
size_t setup_modules(alignment align);
2020-11-25 09:16:26 +00:00
bool forward_action(const actions_util::action& cmd);
2020-05-31 19:11:36 +00:00
bool try_forward_legacy_action(const string& cmd);
2016-06-15 03:32:35 +00:00
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<bar> m_bar;
2016-11-13 18:05:30 +00:00
unique_ptr<ipc> m_ipc;
unique_ptr<inotify_watch> m_confwatch;
2016-06-15 03:32:35 +00:00
std::unique_ptr<eventloop> eloop;
2021-02-20 20:26:45 +00:00
2017-01-19 04:38:42 +00:00
/**
* \brief State flag
2017-01-19 04:38:42 +00:00
*/
std::atomic<bool> m_process_events{false};
2017-01-24 05:59:58 +00:00
/**
* \brief Destination path of generated snapshot
2017-01-24 05:59:58 +00:00
*/
string m_snapshot_dst;
/**
* \brief Controls weather the output gets printed to stdout
*/
2016-11-13 18:05:30 +00:00
bool m_writeback{false};
/**
* \brief Internal event queue
*/
2017-01-12 15:34:14 +00:00
moodycamel::BlockingConcurrentQueue<event> m_queue;
/**
* \brief Loaded modules
*/
vector<module_t> m_modules;
/**
* \brief Loaded modules grouped by block
*/
modulemap_t m_blocks;
/**
* \brief Maximum number of subsequent events to swallow
*/
size_t m_swallow_limit{5U};
/**
* \brief Time to wait for subsequent events
*/
2017-01-12 15:34:14 +00:00
std::chrono::milliseconds m_swallow_update{10};
/**
* \brief Input data
*/
string m_inputdata;
2016-12-27 03:58:41 +00:00
/**
* \brief Thread for the eventqueue loop
2016-12-27 03:58:41 +00:00
*/
2017-01-12 15:34:14 +00:00
std::thread m_event_thread;
2017-01-24 05:59:58 +00:00
/**
* \brief Misc threads
2017-01-24 05:59:58 +00:00
*/
vector<std::thread> m_threads;
2016-06-15 03:32:35 +00:00
};
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END