mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-13 14:42:29 +02:00

1. Fix warnings reported by clang tidy 2. Use unique lock instead of manully lock/unlock on mutex. The RAII style locking makes sure mutex is unlocked when exceptions are thrown
41 lines
860 B
C++
41 lines
860 B
C++
#pragma once
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "util/json.hpp"
|
|
|
|
namespace waybar::modules::hyprland {
|
|
|
|
class EventHandler {
|
|
public:
|
|
virtual void onEvent(const std::string& ev) = 0;
|
|
virtual ~EventHandler() = default;
|
|
};
|
|
|
|
class IPC {
|
|
public:
|
|
IPC() { startIPC(); }
|
|
|
|
void registerForIPC(const std::string&, EventHandler*);
|
|
void unregisterForIPC(EventHandler*);
|
|
|
|
static std::string getSocket1Reply(const std::string& rq);
|
|
Json::Value getSocket1JsonReply(const std::string& rq);
|
|
|
|
private:
|
|
void startIPC();
|
|
void parseIPC(const std::string&);
|
|
|
|
std::mutex m_callbackMutex;
|
|
util::JsonParser m_parser;
|
|
std::list<std::pair<std::string, EventHandler*>> m_callbacks;
|
|
};
|
|
|
|
inline std::unique_ptr<IPC> gIPC;
|
|
inline bool modulesReady = false;
|
|
}; // namespace waybar::modules::hyprland
|