]> git.tdb.fi Git - libs/core.git/blob - source/time/timer.h
Add move semantics to Variant
[libs/core.git] / source / time / timer.h
1 #ifndef MSP_TIME_TIMER_H_
2 #define MSP_TIME_TIMER_H_
3
4 #include <vector>
5 #include <sigc++/sigc++.h>
6 #include <msp/core/mspcore_api.h>
7 #include <msp/core/mutex.h>
8 #include <msp/core/noncopyable.h>
9 #include <msp/core/semaphore.h>
10 #include "timedelta.h"
11 #include "timestamp.h"
12
13 namespace Msp {
14 namespace Time {
15
16 /**
17 A class for executing functions in a deferred or periodical fashion.  The add a
18 timer, use one of the add functions and connect a functor to the timeout signal
19 of the returned slot.
20
21 This class is thread-safe, to allow running timers in a separate thread.
22 */
23 class MSPCORE_API Timer: private NonCopyable
24 {
25 public:
26         class Slot
27         {
28         public:
29                 sigc::signal<bool> signal_timeout;
30         
31         private:
32                 TimeDelta interval;
33                 TimeStamp timeout;
34         
35         public:
36                 Slot(const TimeDelta &);
37                 Slot(const TimeStamp &);
38                 const TimeStamp &get_timeout() const { return timeout; }
39                 bool increment();
40         };
41
42 private:
43         struct SlotProxy
44         {
45                 Slot *slot;
46
47                 bool operator<(const SlotProxy &) const;
48         };
49
50         std::vector<SlotProxy> slots;
51         Semaphore sem;
52         Mutex mutex;
53         bool blocking = false;
54
55 public:
56         Timer();
57         ~Timer();
58
59         /** Adds a timer that will be executed periodically as long as the timeout
60         signal hander returns true. */
61         Slot &add(const TimeDelta &);
62
63         /** Adds a timer that will be executed once at a specific time.  The return
64         value of the timeout signal handler is ignored. */
65         Slot &add(const TimeStamp &);
66
67         /** Cancels a previously added timer. */
68         void cancel(Slot &);
69
70         /** Waits until a timer expires, then executes it.  If no timers have been
71         set, blocks until one is added from another thread. */
72         void tick();
73
74         /** Waits until a timer expires but at most the specified amount of time.
75         If a timer did expire before the timeout, it is executed. */
76         void tick(const TimeDelta &);
77
78 private:
79         void do_tick(const TimeDelta &);
80
81 public:
82         TimeStamp get_next_timeout() const;
83 };
84
85 } // namespace Time
86 } // namespace Msp
87
88 #endif