blob: 13d745719f63086d108e258c69a1bf56f4c17bff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#pragma once
#include <condition_variable>
#include <mutex>
#include <thread>
#include <wayland-server.h>
#include "EventLoopTimer.hpp"
class CEventLoopManager {
public:
CEventLoopManager();
void enterLoop(wl_display* display, wl_event_loop* wlEventLoop);
void addTimer(SP<CEventLoopTimer> timer);
void removeTimer(SP<CEventLoopTimer> timer);
void onTimerFire();
// recalculates timers
void nudgeTimers();
private:
struct {
wl_event_loop* loop = nullptr;
wl_display* display = nullptr;
} m_sWayland;
struct {
std::vector<SP<CEventLoopTimer>> timers;
int timerfd = -1;
} m_sTimers;
};
inline std::unique_ptr<CEventLoopManager> g_pEventLoopManager;
|