2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
#include <moodycamel/blockingconcurrentqueue.h>
|
2019-10-21 04:20:45 -04:00
|
|
|
|
2016-12-22 23:10:05 -05:00
|
|
|
#include <thread>
|
2016-12-01 02:41:49 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "common.hpp"
|
2019-03-07 01:42:10 -05:00
|
|
|
#include "components/types.hpp"
|
2016-12-05 14:41:00 -05:00
|
|
|
#include "events/signal_fwd.hpp"
|
|
|
|
#include "events/signal_receiver.hpp"
|
2016-12-19 23:05:43 -05:00
|
|
|
#include "events/types.hpp"
|
2019-10-21 04:20:45 -04:00
|
|
|
#include "settings.hpp"
|
2016-12-26 22:58:41 -05:00
|
|
|
#include "utils/file.hpp"
|
2017-01-09 08:27:55 -05:00
|
|
|
#include "x11/types.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-20 17:04:31 -05:00
|
|
|
// fwd decl {{{
|
|
|
|
|
2017-01-19 05:11:28 -05:00
|
|
|
enum class alignment;
|
2016-11-20 17:04:31 -05:00
|
|
|
class bar;
|
2019-03-07 00:22:00 -05:00
|
|
|
template <output_policy>
|
2016-12-19 23:05:43 -05:00
|
|
|
class command;
|
2016-12-09 03:40:46 -05:00
|
|
|
class config;
|
|
|
|
class connection;
|
2016-12-19 23:05:43 -05:00
|
|
|
class inotify_watch;
|
|
|
|
class ipc;
|
2016-12-09 03:40:46 -05:00
|
|
|
class logger;
|
2016-12-19 23:05:43 -05:00
|
|
|
class signal_emitter;
|
|
|
|
namespace modules {
|
|
|
|
struct module_interface;
|
2016-12-23 14:43:52 -05:00
|
|
|
class input_handler;
|
2019-10-21 04:20:45 -04:00
|
|
|
} // namespace modules
|
|
|
|
using module_t = shared_ptr<modules::module_interface>;
|
2016-12-19 23:05:43 -05:00
|
|
|
using modulemap_t = std::map<alignment, vector<module_t>>;
|
2016-11-20 17:04:31 -05:00
|
|
|
|
|
|
|
// }}}
|
|
|
|
|
2019-10-21 04:20:45 -04: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> {
|
2016-12-05 14:41:00 -05:00
|
|
|
public:
|
2016-12-09 03:40:46 -05:00
|
|
|
using make_type = unique_ptr<controller>;
|
2016-12-19 23:05:43 -05:00
|
|
|
static make_type make(unique_ptr<ipc>&& ipc, unique_ptr<inotify_watch>&& config_watch);
|
2016-12-09 03:02:47 -05:00
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
explicit controller(connection&, signal_emitter&, const logger&, const config&, unique_ptr<bar>&&, unique_ptr<ipc>&&,
|
|
|
|
unique_ptr<inotify_watch>&&);
|
2016-11-02 15:22:45 -04:00
|
|
|
~controller();
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-24 00:59:58 -05:00
|
|
|
bool run(bool writeback, string snapshot_dst);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
bool enqueue(event&& evt);
|
2016-12-30 22:32:11 -05:00
|
|
|
bool enqueue(string&& input_data);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-05 14:41:00 -05:00
|
|
|
protected:
|
2016-12-19 23:05:43 -05:00
|
|
|
void read_events();
|
|
|
|
void process_eventqueue();
|
|
|
|
void process_inputdata();
|
2017-01-09 08:27:55 -05:00
|
|
|
bool process_update(bool force);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2017-01-12 10:34:14 -05:00
|
|
|
bool on(const signals::eventqueue::notify_change& evt);
|
|
|
|
bool on(const signals::eventqueue::notify_forcechange& evt);
|
|
|
|
bool on(const signals::eventqueue::exit_terminate& evt);
|
|
|
|
bool on(const signals::eventqueue::exit_reload& evt);
|
|
|
|
bool on(const signals::eventqueue::check_state& evt);
|
2017-01-18 23:38:42 -05:00
|
|
|
bool on(const signals::ui::ready& evt);
|
2017-01-12 10:34:14 -05:00
|
|
|
bool on(const signals::ui::button_press& evt);
|
|
|
|
bool on(const signals::ipc::action& evt);
|
|
|
|
bool on(const signals::ipc::command& evt);
|
|
|
|
bool on(const signals::ipc::hook& evt);
|
2017-05-23 15:32:34 -04:00
|
|
|
bool on(const signals::ui::update_background& evt);
|
2016-12-01 02:41:49 -05:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
private:
|
2019-10-21 04:20:45 -04:00
|
|
|
size_t setup_modules(alignment align);
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
connection& m_connection;
|
2016-12-05 14:41:00 -05:00
|
|
|
signal_emitter& m_sig;
|
2016-06-14 23:32:35 -04:00
|
|
|
const logger& m_log;
|
|
|
|
const config& m_conf;
|
|
|
|
unique_ptr<bar> m_bar;
|
2016-11-13 13:05:30 -05:00
|
|
|
unique_ptr<ipc> m_ipc;
|
2016-12-19 23:05:43 -05:00
|
|
|
unique_ptr<inotify_watch> m_confwatch;
|
2019-03-07 00:22:00 -05:00
|
|
|
unique_ptr<command<output_policy::IGNORED>> m_command;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-12-26 22:58:41 -05:00
|
|
|
array<unique_ptr<file_descriptor>, 2> m_queuefd{};
|
2016-12-22 23:10:05 -05:00
|
|
|
|
2017-01-18 23:38:42 -05:00
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief State flag
|
2017-01-18 23:38:42 -05:00
|
|
|
*/
|
|
|
|
std::atomic<bool> m_process_events{false};
|
|
|
|
|
2017-01-24 00:59:58 -05:00
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Destination path of generated snapshot
|
2017-01-24 00:59:58 -05:00
|
|
|
*/
|
|
|
|
string m_snapshot_dst;
|
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Controls weather the output gets printed to stdout
|
2016-12-19 23:05:43 -05:00
|
|
|
*/
|
2016-11-13 13:05:30 -05:00
|
|
|
bool m_writeback{false};
|
2016-12-19 23:05:43 -05:00
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Internal event queue
|
2016-12-19 23:05:43 -05:00
|
|
|
*/
|
2017-01-12 10:34:14 -05:00
|
|
|
moodycamel::BlockingConcurrentQueue<event> m_queue;
|
2016-12-19 23:05:43 -05:00
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Loaded modules
|
2016-12-19 23:05:43 -05:00
|
|
|
*/
|
2019-10-21 04:20:45 -04:00
|
|
|
vector<module_t> m_modules;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Loaded modules grouped by block
|
|
|
|
*/
|
|
|
|
modulemap_t m_blocks;
|
2016-12-19 23:05:43 -05:00
|
|
|
|
2016-12-22 18:54:09 -05:00
|
|
|
/**
|
2020-05-30 18:09:44 -04:00
|
|
|
* \brief Input handlers modules
|
|
|
|
*
|
|
|
|
* Maps the name of the input handler (module name) to the corresponding input
|
|
|
|
* handler
|
2016-12-22 18:54:09 -05:00
|
|
|
*/
|
2019-12-02 13:15:40 -05:00
|
|
|
std::vector<shared_ptr<modules::input_handler>> m_inputhandlers;
|
2016-12-22 18:54:09 -05:00
|
|
|
|
2016-12-19 23:05:43 -05:00
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Maximum number of subsequent events to swallow
|
2016-12-19 23:05:43 -05:00
|
|
|
*/
|
|
|
|
size_t m_swallow_limit{5U};
|
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Time to wait for subsequent events
|
2016-12-19 23:05:43 -05:00
|
|
|
*/
|
2017-01-12 10:34:14 -05:00
|
|
|
std::chrono::milliseconds m_swallow_update{10};
|
2016-12-19 23:05:43 -05:00
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Input data
|
2016-12-19 23:05:43 -05:00
|
|
|
*/
|
|
|
|
string m_inputdata;
|
2016-12-26 22:58:41 -05:00
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Thread for the eventqueue loop
|
2016-12-26 22:58:41 -05:00
|
|
|
*/
|
2017-01-12 10:34:14 -05:00
|
|
|
std::thread m_event_thread;
|
2017-01-24 00:59:58 -05:00
|
|
|
|
|
|
|
/**
|
2018-11-04 10:08:54 -05:00
|
|
|
* \brief Misc threads
|
2017-01-24 00:59:58 -05:00
|
|
|
*/
|
|
|
|
vector<std::thread> m_threads;
|
2016-06-14 23:32:35 -04:00
|
|
|
};
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|