2012-04-02 08:56:30 +02:00
|
|
|
#ifndef TIMER_H
|
|
|
|
#define TIMER_H
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
namespace icinga {
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
struct I2_BASE_API TimerEventArgs : public EventArgs
|
2012-03-28 13:24:49 +02:00
|
|
|
{
|
2012-04-02 20:50:35 +02:00
|
|
|
typedef shared_ptr<TimerEventArgs> Ptr;
|
|
|
|
typedef weak_ptr<TimerEventArgs> WeakPtr;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
EventArgs UserArgs;
|
2012-03-28 13:24:49 +02:00
|
|
|
};
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
class I2_BASE_API Timer : public Object
|
2012-03-28 13:24:49 +02:00
|
|
|
{
|
|
|
|
private:
|
2012-04-18 15:22:25 +02:00
|
|
|
EventArgs m_UserArgs;
|
2012-03-28 13:24:49 +02:00
|
|
|
unsigned int m_Interval;
|
|
|
|
time_t m_Next;
|
|
|
|
|
|
|
|
static time_t NextCall;
|
|
|
|
|
|
|
|
static void RescheduleTimers(void);
|
|
|
|
|
|
|
|
void Call(void);
|
|
|
|
|
|
|
|
public:
|
2012-04-02 20:50:35 +02:00
|
|
|
typedef shared_ptr<Timer> Ptr;
|
|
|
|
typedef weak_ptr<Timer> WeakPtr;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-23 09:48:20 +02:00
|
|
|
typedef list<Timer::WeakPtr> CollectionType;
|
2012-04-19 08:46:41 +02:00
|
|
|
|
|
|
|
static Timer::CollectionType Timers;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
Timer(void);
|
|
|
|
|
|
|
|
void SetInterval(unsigned int interval);
|
|
|
|
unsigned int GetInterval(void) const;
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
void SetUserArgs(const EventArgs& userArgs);
|
|
|
|
EventArgs GetUserArgs(void) const;
|
2012-03-28 13:24:49 +02:00
|
|
|
|
|
|
|
static time_t GetNextCall(void);
|
|
|
|
static void CallExpiredTimers(void);
|
|
|
|
|
|
|
|
void Start(void);
|
|
|
|
void Stop(void);
|
|
|
|
|
|
|
|
void Reschedule(time_t next);
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
Event<TimerEventArgs> OnTimerExpired;
|
2012-03-28 13:24:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* TIMER_H */
|