2024-04-07 04:31:51 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <condition_variable>
|
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
#include "EventLoopTimer.hpp"
|
|
|
|
|
|
|
|
class CEventLoopManager {
|
|
|
|
public:
|
2024-04-07 22:55:14 +02:00
|
|
|
CEventLoopManager();
|
2024-04-08 16:33:02 +02:00
|
|
|
|
2024-04-07 04:31:51 +02:00
|
|
|
void enterLoop(wl_display* display, wl_event_loop* wlEventLoop);
|
2024-05-07 14:30:31 +02:00
|
|
|
|
|
|
|
// Note: will remove the timer if the ptr is lost.
|
2024-05-05 18:16:00 +02:00
|
|
|
void addTimer(SP<CEventLoopTimer> timer);
|
|
|
|
void removeTimer(SP<CEventLoopTimer> timer);
|
2024-04-07 04:31:51 +02:00
|
|
|
|
2024-04-07 22:55:14 +02:00
|
|
|
void onTimerFire();
|
|
|
|
|
2024-04-07 04:31:51 +02:00
|
|
|
// recalculates timers
|
|
|
|
void nudgeTimers();
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct {
|
|
|
|
wl_event_loop* loop = nullptr;
|
|
|
|
wl_display* display = nullptr;
|
|
|
|
} m_sWayland;
|
|
|
|
|
|
|
|
struct {
|
2024-05-05 18:16:00 +02:00
|
|
|
std::vector<SP<CEventLoopTimer>> timers;
|
|
|
|
int timerfd = -1;
|
2024-04-07 04:31:51 +02:00
|
|
|
} m_sTimers;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline std::unique_ptr<CEventLoopManager> g_pEventLoopManager;
|