]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/timer.h
Tons more docs
[user/henk/code/inspircd.git] / include / timer.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef INSPIRCD_TIMER_H
18 #define INSPIRCD_TIMER_H
19
20 /** Timer class for one-second resolution timers
21  * InspTimer provides a facility which allows module
22  * developers to create one-shot timers. The timer
23  * can be made to trigger at any time up to a one-second
24  * resolution. To use InspTimer, inherit a class from
25  * InspTimer, then insert your inherited class into the
26  * queue using Server::AddTimer(). The Tick() method of
27  * your object (which you should override) will be called
28  * at the given time.
29  */
30 class InspTimer : public Extensible
31 {
32  private:
33         /** The triggering time
34          */
35         time_t trigger;
36  public:
37         /** Default constructor, initializes the triggering time
38          */
39         InspTimer(long secs_from_now,time_t now)
40         {
41                 trigger = now + secs_from_now;
42         }
43         /** Default destructor, does nothing.
44          */
45         virtual ~InspTimer() { }
46         /** Retrieve the current triggering time
47          */
48         virtual time_t GetTimer()
49         {
50                 return trigger;
51         }
52         /** Called when the timer ticks.
53          */
54         virtual void Tick(time_t TIME) = 0;
55 };
56
57 class TimerManager : public Extensible
58 {
59  protected:
60
61         typedef std::vector<InspTimer*> timergroup;
62         typedef std::map<time_t, timergroup*> timerlist;
63
64  private:
65
66         timerlist Timers;
67
68  public:
69         void TickTimers(time_t TIME);
70         void AddTimer(InspTimer* T);
71         void TickMissedTimers(time_t TIME);
72 };
73
74 #endif