X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Ftimer.h;h=62f248d23a722078472c461b9f04186c6cdd827d;hp=369a78c96e089a1e1413fe2a360b241b43b5f2b7;hb=be8ea216d23bf36bdfb2d3e302638782575fc136;hpb=fe77fc6b869a71bf94d501a0762579f4ddbc5094 diff --git a/source/time/timer.h b/source/time/timer.h index 369a78c..62f248d 100644 --- a/source/time/timer.h +++ b/source/time/timer.h @@ -1,16 +1,12 @@ -/* -This file is part of libmspcore -Copyright © 2006 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ #ifndef MSP_TIME_TIMER_H_ #define MSP_TIME_TIMER_H_ -#include +#include #include -#include "../core/mutex.h" -#include "../core/semaphore.h" -#include "../core/thread.h" +#include +#include +#include +#include #include "timedelta.h" #include "timestamp.h" @@ -18,58 +14,76 @@ namespace Msp { namespace Time { /** -A class for executing functions periodically. Every time the timeout is -reached, signal_timeout will be emitted. If the functor connected to this -signal returns true, the timer is rescheduled by incrementing the timeout -by the interval. Otherwise the timer is canceled. +A class for executing functions in a deferred or periodical fashion. The add a +timer, use one of the add functions and connect a functor to the timeout signal +of the returned slot. -A separate thread is used for running the timers. All signal emissions will -happen in this thread - be careful with your variables. +This class is thread-safe, to allow running timers in a separate thread. */ -class Timer +class Timer: private NonCopyable { public: - sigc::signal signal_timeout; - - Timer(const Time::TimeDelta &); - const Time::TimeStamp &get_timeout() const { return timeout; } - ~Timer(); -private: - /** - A thread to run the timers independently of the rest of the program. - */ - class Thread: public Msp::Thread + class Slot { public: - Thread(); - void nudge(); - void finish(); + sigc::signal signal_timeout; + private: - bool done; - Semaphore sem; - - void main(); + TimeDelta interval; + TimeStamp timeout; + + public: + Slot(const TimeDelta &); + Slot(const TimeStamp &); + const TimeStamp &get_timeout() const { return timeout; } + bool increment(); }; - /** - Proxy class to handle automatic starting and termination of the thread. - */ - class ThreadProxy +private: + struct SlotProxy { - public: - ThreadProxy(): thread(0) { } - void nudge(); - ~ThreadProxy(); - private: - Thread *thread; + Slot *slot; + + SlotProxy(Slot *); + bool operator<(const SlotProxy &) const; }; - Time::TimeDelta interval; - Time::TimeStamp timeout; + std::vector slots; + Semaphore sem; + Mutex mutex; + bool blocking; + +public: + Timer(); + ~Timer(); + + /** Adds a timer that will be executed periodically as long as the timeout + signal hander returns true. */ + Slot &add(const TimeDelta &); + + /** Adds a timer that will be executed once at a specific time. The return + value of the timeout signal handler is ignored. */ + Slot &add(const TimeStamp &); + + /** Cancels a previously added timer. */ + void cancel(Slot &); + + /** Deprecated. Use one of the other overloads. */ + DEPRECATED void tick(bool block); - static ThreadProxy thread; - static Mutex set_mutex; - static std::set timers; + /** Waits until a timer expires, then executes it. If no timers have been + set, blocks until one is added from another thread. */ + void tick(); + + /** Waits until a timer expires but at most the specified amount of time. + If a timer did expire before the timeout, it is executed. */ + void tick(const TimeDelta &); + +private: + void do_tick(const TimeDelta &); + +public: + TimeStamp get_next_timeout() const; }; } // namespace Time