X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ftimer.h;h=ec00abe4ffa6fff0bc8081742f8a6e4979d21417;hb=40b67389a9ac1ef3f37ce93dd95e76c474edd511;hp=b6fd62281b8a1a6b90441873ac7f89bb6926a185;hpb=932f00f8bfa8a78626fe52b8f20f159c18f24c8e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/timer.h b/include/timer.h index b6fd62281..ec00abe4f 100644 --- a/include/timer.h +++ b/include/timer.h @@ -1,15 +1,61 @@ -class InspTimer +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#ifndef INSPIRCD_TIMER_H +#define INSPIRCD_TIMER_H + +/** Timer class for one-second resolution timers + * InspTimer provides a facility which allows module + * developers to create one-shot timers. The timer + * can be made to trigger at any time up to a one-second + * resolution. To use InspTimer, inherit a class from + * InspTimer, then insert your inherited class into the + * queue using Server::AddTimer(). The Tick() method of + * your object (which you should override) will be called + * at the given time. + */ +class InspTimer : public Extensible { private: + /** The triggering time + */ time_t trigger; public: - virtual InspTimer(long secs_from_now) : trigger(time(NULL) + secs_from_now) { } + /** Default constructor, initializes the triggering time + */ + InspTimer(long secs_from_now,time_t now) + { + trigger = now + secs_from_now; + } + /** Default destructor, does nothing. + */ virtual ~InspTimer() { } + /** Retrieve the current triggering time + */ virtual time_t GetTimer() { return trigger; } - virtual void Tick(time_t TIME) {} + /** Called when the timer ticks. + */ + virtual void Tick(time_t TIME) = 0; }; +void TickTimers(time_t TIME); +void AddTimer(InspTimer* T); +void TickMissedTimers(time_t TIME); +#endif