2 * InspIRCd -- Internet Relay Chat Daemon
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>
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.
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
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/>.
25 void Timer::SetInterval(unsigned int newinterval)
27 ServerInstance->Timers.DelTimer(this);
29 SetTrigger(ServerInstance->Time() + newinterval);
30 ServerInstance->Timers.AddTimer(this);
33 Timer::Timer(unsigned int secs_from_now, bool repeating)
34 : trigger(ServerInstance->Time() + secs_from_now)
42 ServerInstance->Timers.DelTimer(this);
45 void TimerManager::TickTimers(time_t TIME)
47 for (TimerMap::iterator i = Timers.begin(); i != Timers.end(); )
50 if (t->GetTrigger() > TIME)
60 t->SetTrigger(TIME + t->GetInterval());
66 void TimerManager::DelTimer(Timer* t)
68 std::pair<TimerMap::iterator, TimerMap::iterator> itpair = Timers.equal_range(t->GetTrigger());
70 for (TimerMap::iterator i = itpair.first; i != itpair.second; ++i)
80 void TimerManager::AddTimer(Timer* t)
82 Timers.insert(std::make_pair(t->GetTrigger(), t));