2016-06-15 03:32:35 +00:00
|
|
|
#pragma once
|
|
|
|
|
2016-12-20 04:05:43 +00:00
|
|
|
#include <moodycamel/blockingconcurrentqueue.h>
|
2021-09-11 10:19:00 +00:00
|
|
|
#include <uv.h>
|
2019-10-21 08:20:45 +00:00
|
|
|
|
2016-12-23 04:10:05 +00:00
|
|
|
#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"
|
2016-12-05 19:41:00 +00:00
|
|
|
#include "events/signal_fwd.hpp"
|
|
|
|
#include "events/signal_receiver.hpp"
|
2019-10-21 08:20:45 +00:00
|
|
|
#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"
|
2017-01-09 13:27:55 +00:00
|
|
|
#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;
|
2016-12-20 04:05:43 +00:00
|
|
|
class inotify_watch;
|
|
|
|
class ipc;
|
2016-12-09 08:40:46 +00:00
|
|
|
class logger;
|
2016-12-20 04:05:43 +00:00
|
|
|
class signal_emitter;
|
|
|
|
namespace modules {
|
|
|
|
struct module_interface;
|
2019-10-21 08:20:45 +00:00
|
|
|
} // namespace modules
|
|
|
|
using module_t = shared_ptr<modules::module_interface>;
|
2016-12-20 04:05:43 +00:00
|
|
|
using modulemap_t = std::map<alignment, vector<module_t>>;
|
2016-11-20 22:04:31 +00:00
|
|
|
|
|
|
|
// }}}
|
|
|
|
|
2021-09-11 13:14:17 +00:00
|
|
|
class controller : public signal_receiver<SIGN_PRIORITY_CONTROLLER, 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::button_press, signals::ui::update_background> {
|
2016-12-05 19:41:00 +00:00
|
|
|
public:
|
2016-12-09 08:40:46 +00:00
|
|
|
using make_type = unique_ptr<controller>;
|
2021-09-11 12:56:08 +00:00
|
|
|
static make_type make(unique_ptr<ipc>&& ipc);
|
2016-12-09 08:02:47 +00:00
|
|
|
|
2021-09-11 12:56:08 +00:00
|
|
|
explicit controller(connection&, signal_emitter&, const logger&, const config&, unique_ptr<bar>&&, unique_ptr<ipc>&&);
|
2016-11-02 19:22:45 +00:00
|
|
|
~controller();
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2021-09-11 12:56:08 +00:00
|
|
|
bool run(bool writeback, string snapshot_dst, bool confwatch);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2021-09-11 10:36:52 +00:00
|
|
|
void trigger_action(string&& input_data);
|
|
|
|
void trigger_quit(bool reload);
|
2021-09-11 11:09:46 +00:00
|
|
|
void trigger_update(bool force);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2021-09-11 09:46:37 +00:00
|
|
|
void stop(bool reload);
|
|
|
|
|
2021-03-01 23:00:24 +00:00
|
|
|
void signal_handler(int signum);
|
|
|
|
|
2021-02-17 18:48:46 +00:00
|
|
|
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);
|
2021-09-11 10:19:00 +00:00
|
|
|
void notifier_handler();
|
2021-09-11 13:14:17 +00:00
|
|
|
void screenshot_handler();
|
2021-02-17 18:48:46 +00:00
|
|
|
|
2016-12-05 19:41:00 +00:00
|
|
|
protected:
|
2021-09-11 13:58:18 +00:00
|
|
|
void trigger_notification();
|
2021-09-11 12:56:08 +00:00
|
|
|
void read_events(bool confwatch);
|
2021-09-11 13:39:22 +00:00
|
|
|
void process_inputdata(string&& cmd);
|
2017-01-09 13:27:55 +00:00
|
|
|
bool process_update(bool force);
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2021-09-11 13:58:18 +00:00
|
|
|
void update_reload(bool reload);
|
|
|
|
|
2021-01-04 09:38:43 +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_reload& evt) override;
|
|
|
|
bool on(const signals::eventqueue::check_state& 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:
|
2021-09-11 13:39:22 +00:00
|
|
|
struct notifications_t {
|
|
|
|
bool quit;
|
|
|
|
bool reload;
|
|
|
|
bool update;
|
|
|
|
bool force_update;
|
|
|
|
string inputdata;
|
|
|
|
|
|
|
|
notifications_t() : quit(false), reload(false), update(false), force_update(false), inputdata(string{}) {}
|
|
|
|
};
|
|
|
|
|
2019-10-21 08:20:45 +00:00
|
|
|
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);
|
2020-05-31 14:49:25 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
connection& m_connection;
|
2016-12-05 19:41:00 +00:00
|
|
|
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;
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2021-03-01 23:00:24 +00:00
|
|
|
std::unique_ptr<eventloop> eloop;
|
2021-02-20 20:26:45 +00:00
|
|
|
|
2021-09-11 14:03:36 +00:00
|
|
|
/**
|
|
|
|
* Once this is set to true, 'eloop' and any uv handles can be used.
|
|
|
|
*/
|
|
|
|
std::atomic_bool m_eloop_ready{false};
|
|
|
|
|
2021-09-11 10:19:00 +00:00
|
|
|
/**
|
|
|
|
* \brief Async handle to notify the eventloop
|
|
|
|
*
|
|
|
|
* This handle is used to notify the eventloop of changes which are not otherwise covered by other handles.
|
|
|
|
* E.g. click actions.
|
|
|
|
*/
|
|
|
|
std::unique_ptr<uv_async_t> m_notifier{nullptr};
|
|
|
|
|
2021-09-11 13:39:22 +00:00
|
|
|
/**
|
|
|
|
* Notification data for the controller.
|
|
|
|
*
|
|
|
|
* Triggers, potentially from other threads, update this structure and notify the controller through m_notifier.
|
|
|
|
*/
|
|
|
|
notifications_t m_notifications{};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Protected m_notifications.
|
|
|
|
*
|
|
|
|
* All accesses to m_notifications must hold this mutex.
|
|
|
|
*/
|
|
|
|
std::mutex m_notification_mutex{};
|
|
|
|
|
2017-01-24 05:59:58 +00:00
|
|
|
/**
|
2018-11-04 15:08:54 +00:00
|
|
|
* \brief Destination path of generated snapshot
|
2017-01-24 05:59:58 +00:00
|
|
|
*/
|
|
|
|
string m_snapshot_dst;
|
|
|
|
|
2016-12-20 04:05:43 +00:00
|
|
|
/**
|
2018-11-04 15:08:54 +00:00
|
|
|
* \brief Controls weather the output gets printed to stdout
|
2016-12-20 04:05:43 +00:00
|
|
|
*/
|
2016-11-13 18:05:30 +00:00
|
|
|
bool m_writeback{false};
|
2016-12-20 04:05:43 +00:00
|
|
|
|
|
|
|
/**
|
2018-11-04 15:08:54 +00:00
|
|
|
* \brief Loaded modules
|
2016-12-20 04:05:43 +00:00
|
|
|
*/
|
2019-10-21 08:20:45 +00:00
|
|
|
vector<module_t> m_modules;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Loaded modules grouped by block
|
|
|
|
*/
|
|
|
|
modulemap_t m_blocks;
|
2021-09-11 13:58:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Flag to trigger reload after shutdown
|
|
|
|
*/
|
|
|
|
bool m_reload{false};
|
2016-06-15 03:32:35 +00:00
|
|
|
};
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|