Files
Waybar/include/modules/hyprland/backend.hpp
T

41 lines
860 B
C++
Raw Normal View History

2022-07-01 12:46:28 +02:00
#pragma once
2023-09-02 15:22:26 -05:00
2022-11-24 12:28:52 +01:00
#include <list>
2021-05-27 15:40:54 +02:00
#include <memory>
#include <mutex>
#include <string>
2023-09-02 15:22:26 -05:00
#include <utility>
2023-07-01 11:12:14 +02:00
2023-06-28 02:52:01 +03:00
#include "util/json.hpp"
2022-07-01 12:46:28 +02:00
namespace waybar::modules::hyprland {
2022-11-09 09:34:19 +01:00
class EventHandler {
2022-11-24 12:28:52 +01:00
public:
2022-11-09 09:34:19 +01:00
virtual void onEvent(const std::string& ev) = 0;
virtual ~EventHandler() = default;
};
2022-07-01 12:46:28 +02:00
class IPC {
2021-05-27 15:40:54 +02:00
public:
2022-07-01 12:46:28 +02:00
IPC() { startIPC(); }
2022-11-09 09:34:19 +01:00
void registerForIPC(const std::string&, EventHandler*);
void unregisterForIPC(EventHandler*);
2022-07-01 12:46:28 +02:00
2024-01-06 12:57:27 +08:00
static std::string getSocket1Reply(const std::string& rq);
2023-06-28 02:52:01 +03:00
Json::Value getSocket1JsonReply(const std::string& rq);
2022-07-01 12:46:28 +02:00
2021-05-27 15:40:54 +02:00
private:
void startIPC();
void parseIPC(const std::string&);
2022-07-01 12:46:28 +02:00
2024-01-06 12:57:27 +08:00
std::mutex m_callbackMutex;
util::JsonParser m_parser;
std::list<std::pair<std::string, EventHandler*>> m_callbacks;
2022-07-01 12:46:28 +02:00
};
inline std::unique_ptr<IPC> gIPC;
inline bool modulesReady = false;
2021-05-27 15:40:54 +02:00
}; // namespace waybar::modules::hyprland