aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/protocols/IdleNotify.hpp
blob: d0b407753507005e376bfd15554e07f8450978a3 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once

#include <memory>
#include <vector>
#include <unordered_map>
#include "WaylandProtocol.hpp"
#include "ext-idle-notify-v1.hpp"

class CEventLoopTimer;

class CExtIdleNotification {
  public:
    CExtIdleNotification(SP<CExtIdleNotificationV1> resource_, uint32_t timeoutMs);
    ~CExtIdleNotification();

    bool good();
    void onTimerFired();
    void onActivity();

  private:
    SP<CExtIdleNotificationV1> resource;
    uint32_t                   timeoutMs = 0;
    SP<CEventLoopTimer>        timer;

    bool                       idled = false;

    void                       updateTimer();
};

class CIdleNotifyProtocol : public IWaylandProtocol {
  public:
    CIdleNotifyProtocol(const wl_interface* iface, const int& ver, const std::string& name);

    virtual void bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id);

    void         onActivity();
    void         setInhibit(bool inhibited);

  private:
    void onManagerResourceDestroy(wl_resource* res);
    void destroyNotification(CExtIdleNotification* notif);
    void onGetNotification(CExtIdleNotifierV1* pMgr, uint32_t id, uint32_t timeout, wl_resource* seat);

    bool isInhibited = false;

    //
    std::vector<UP<CExtIdleNotifierV1>>   m_vManagers;
    std::vector<SP<CExtIdleNotification>> m_vNotifications;

    friend class CExtIdleNotification;
};

namespace PROTO {
    inline UP<CIdleNotifyProtocol> idle;
};