mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-10 21:49:49 +01:00
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
#pragma once
|
|
#include <vector>
|
|
#include <vector>
|
|
|
|
#include "../defines.hpp"
|
|
#include "../helpers/memory/Memory.hpp"
|
|
|
|
struct SHyprIPCEvent {
|
|
std::string event;
|
|
std::string data;
|
|
};
|
|
|
|
class CEventManager {
|
|
public:
|
|
CEventManager();
|
|
~CEventManager();
|
|
|
|
void postEvent(const SHyprIPCEvent& event);
|
|
|
|
private:
|
|
std::string formatEvent(const SHyprIPCEvent& event) const;
|
|
|
|
static int onServerEvent(int fd, uint32_t mask, void* data);
|
|
static int onClientEvent(int fd, uint32_t mask, void* data);
|
|
|
|
int onServerEvent(int fd, uint32_t mask);
|
|
int onClientEvent(int fd, uint32_t mask);
|
|
|
|
struct SClient {
|
|
int fd = -1;
|
|
std::vector<SP<std::string>> events;
|
|
wl_event_source* eventSource = nullptr;
|
|
};
|
|
|
|
std::vector<SClient>::iterator findClientByFD(int fd);
|
|
std::vector<SClient>::iterator removeClientByFD(int fd);
|
|
|
|
private:
|
|
int m_iSocketFD = -1;
|
|
wl_event_source* m_pEventSource = nullptr;
|
|
|
|
std::vector<SClient> m_vClients;
|
|
};
|
|
|
|
inline std::unique_ptr<CEventManager> g_pEventManager;
|