summaryrefslogtreecommitdiffstats
path: root/src/sdevent/event.hpp
blob: 9ef579127fdb8a57f85c4e7b5afdb19d45ca7ee7 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#pragma once

#include <systemd/sd-event.h>

#include <chrono>
#include <memory>
#include <sdbusplus/bus.hpp>

// TODO: openbmc/openbmc#1720 - add error handling for sd_event API failures

namespace sdevent
{
namespace event
{
namespace timer
{
class Timer;
} // namespace timer
} // namespace event
namespace event
{

using EventPtr = sd_event*;
class Event;

/** @brief Get an instance of the 'default' event. */
Event newDefault();

namespace details
{

/** @brief unique_ptr functor to release an event reference. */
struct EventDeleter
{
    void operator()(sd_event* ptr) const
    {
        deleter(ptr);
    }

    decltype(&sd_event_unref) deleter = sd_event_unref;
};

/* @brief Alias 'event' to a unique_ptr type for auto-release. */
using Event = std::unique_ptr<sd_event, EventDeleter>;

} // namespace details

/** @class Event
 *  @brief Provides C++ bindings to the sd_event_* class functions.
 */
class Event
{
  public:
    /* Define all of the basic class operations:
     *     Not allowed:
     *         - Default constructor to avoid nullptrs.
     *         - Copy operations due to internal unique_ptr.
     *     Allowed:
     *         - Move operations.
     *         - Destructor.
     */
    Event() = delete;
    Event(const Event&) = delete;
    Event& operator=(const Event&) = delete;
    Event(Event&&) = default;
    Event& operator=(Event&&) = default;
    ~Event() = default;

    /** @brief Conversion constructor from 'EventPtr'.
     *
     *  Increments ref-count of the event-pointer and releases it when
     *  done.
     */
    explicit Event(EventPtr e);

    /** @brief Constructor for 'Event'.
     *
     *  Takes ownership of the event-pointer and releases it when done.
     */
    Event(EventPtr e, std::false_type);

    /** @brief Release ownership of the stored event-pointer. */
    EventPtr release()
    {
        return evt.release();
    }

    /** @brief Wait indefinitely for new event sources. */
    void loop()
    {
        sd_event_loop(evt.get());
    }

    /** @brief Attach to a DBus loop. */
    void attach(sdbusplus::bus::bus& bus)
    {
        bus.attach_event(evt.get(), SD_EVENT_PRIORITY_NORMAL);
    }

    /** @brief C++ wrapper for sd_event_now. */
    auto now()
    {
        using namespace std::chrono;

        uint64_t usec;
        sd_event_now(evt.get(), CLOCK_MONOTONIC, &usec);
        microseconds d(usec);
        return steady_clock::time_point(d);
    }

    friend class timer::Timer;

  private:
    EventPtr get()
    {
        return evt.get();
    }

    details::Event evt;
};

inline Event::Event(EventPtr l) : evt(sd_event_ref(l))
{
}

inline Event::Event(EventPtr l, std::false_type) : evt(l)
{
}

inline Event newDefault()
{
    sd_event* e = nullptr;
    sd_event_default(&e);
    return Event(e, std::false_type());
}

} // namespace event
} // namespace sdevent
OpenPOWER on IntegriCloud