summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/Notifier.h
blob: 1815ad0b2cad2c386e7d9cdf4d46c78c7e0dd1b8 (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
/*
 * Copyright (c) 2018-2023, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Function.h>
#include <LibCore/Object.h>

namespace Core {

class Notifier final : public Object {
    C_OBJECT(Notifier);

public:
    enum class Type {
        None,
        Read,
        Write,
        Exceptional,
    };

    virtual ~Notifier() override;

    void set_enabled(bool);

    Function<void()> on_activation;

    void close();

    int fd() const { return m_fd; }
    Type type() const { return m_type; }
    void set_type(Type type) { m_type = type; }

    void event(Core::Event&) override;

private:
    Notifier(int fd, Type type, Object* parent = nullptr);

    int m_fd { -1 };
    Type m_type { Type::None };
};

}