]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/timer.cpp
Timer changes and TimerManager enhancements
[user/henk/code/inspircd.git] / src / timer.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
5  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
6  *   Copyright (C) 2006-2007 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 /* $Core */
24
25 #include "inspircd.h"
26 #include "timer.h"
27
28 void Timer::SetInterval(time_t newinterval)
29 {
30         ServerInstance->Timers->DelTimer(this);
31         secs = newinterval;
32         SetTrigger(ServerInstance->Time() + newinterval);
33         ServerInstance->Timers->AddTimer(this);
34 }
35
36 Timer::~Timer()
37 {
38         ServerInstance->Timers->DelTimer(this);
39 }
40
41 void TimerManager::TickTimers(time_t TIME)
42 {
43         for (TimerMap::iterator i = Timers.begin(); i != Timers.end(); )
44         {
45                 Timer* t = i->second;
46                 if (t->GetTrigger() > TIME)
47                         break;
48
49                 Timers.erase(i++);
50
51                 if (!t->Tick(TIME))
52                         delete t;
53                 else if (t->GetRepeat())
54                 {
55                         t->SetTrigger(TIME + t->GetInterval());
56                         AddTimer(t);
57                 }
58         }
59 }
60
61 void TimerManager::DelTimer(Timer* t)
62 {
63         std::pair<TimerMap::iterator, TimerMap::iterator> itpair = Timers.equal_range(t->GetTrigger());
64
65         for (TimerMap::iterator i = itpair.first; i != itpair.second; ++i)
66         {
67                 if (i->second == t)
68                 {
69                         Timers.erase(i);
70                         break;
71                 }
72         }
73 }
74
75 void TimerManager::AddTimer(Timer* t)
76 {
77         Timers.insert(std::make_pair(t->GetTrigger(), t));
78 }