summaryrefslogtreecommitdiff
path: root/include/timer.h
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-01-13 21:29:53 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-01-13 21:29:53 +0000
commitc88afe5b9abba09b883d59f46a7e2795df181394 (patch)
treebfb7a57dea623645288af91fee6cf481b0ba278e /include/timer.h
parent2620d1258c6a2c249b9503a7c4a764e26a2da0f3 (diff)
New timer code. This may be a tiny fraction slower (though I think it will be acceptable given that we no longer need to tick old timers etc), but it is a lot simpler (about half the codesize of the old + no allocation of new timergroups etc), and should (I hope) always tick timers and never 'lose' them. Performs okay under 3500 connection attempts (0:00 CPU time :))
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8708 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/timer.h')
-rw-r--r--include/timer.h37
1 files changed, 18 insertions, 19 deletions
diff --git a/include/timer.h b/include/timer.h
index 7f1dd7396..abe15a2b7 100644
--- a/include/timer.h
+++ b/include/timer.h
@@ -44,7 +44,7 @@ class CoreExport Timer : public Extensible
* @param now The time now
* @param repeating Repeat this timer every secs_from_now seconds if set to true
*/
- Timer(long secs_from_now,time_t now, bool repeating = false)
+ Timer(long secs_from_now, time_t now, bool repeating = false)
{
trigger = now + secs_from_now;
secs = secs_from_now;
@@ -62,6 +62,13 @@ class CoreExport Timer : public Extensible
return trigger;
}
+ /** Sets the trigger timeout to a new value
+ */
+ virtual void SetTimer(time_t t)
+ {
+ trigger = t;
+ }
+
/** Called when the timer ticks.
* You should override this method with some useful code to
* handle the tick event.
@@ -107,32 +114,23 @@ class CoreExport Timer : public Extensible
class CoreExport TimerManager : public Extensible
{
protected:
- /** A group of timers all set to trigger at the same time
+ /** A list of all pending timers
*/
- typedef std::vector<Timer*> timergroup;
- /** A map of timergroups, each group has a specific trigger time
- */
- typedef std::map<time_t, timergroup*> timerlist;
- /** Set when ticking timers, to prevent deletion while iterating
- */
- bool CantDeleteHere;
+ std::vector<Timer *> Timers;
+
/** Creating server instance
*/
InspIRCd* ServerInstance;
- private:
-
- /** The current timer set, a map of timergroups
- */
- timerlist Timers;
-
public:
/** Constructor
*/
TimerManager(InspIRCd* Instance);
+
/** Tick all pending Timers
* @param TIME the current system time
*/
void TickTimers(time_t TIME);
+
/** Add an Timer
* @param T an Timer derived class to add
* @param secs_from_now You may set this to the number of seconds
@@ -141,15 +139,16 @@ class CoreExport TimerManager : public Extensible
* will be used. This is used internally for re-triggering repeating
* timers.
*/
- void AddTimer(Timer* T, long secs_from_now = 0);
+ void AddTimer(Timer *T);
+
/** Delete an Timer
* @param T an Timer derived class to delete
*/
void DelTimer(Timer* T);
- /** Tick any timers that have been missed due to lag
- * @param TIME the current system time
+
+ /** Compares two timers
*/
- void TickMissedTimers(time_t TIME);
+ static bool TimerComparison( Timer *one, Timer*two);
};
#endif