]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/timer.cpp
Improve support for rarely used compilers, EKOPath in this case.
[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 TimerManager::TimerManager()
29 {
30 }
31
32 TimerManager::~TimerManager()
33 {
34         for(std::vector<Timer *>::iterator i = Timers.begin(); i != Timers.end(); i++)
35                 delete *i;
36 }
37
38 void TimerManager::TickTimers(time_t TIME)
39 {
40         while ((Timers.size()) && (TIME > (*Timers.begin())->GetTimer()))
41         {
42                 std::vector<Timer *>::iterator i = Timers.begin();
43                 Timer *t = (*i);
44
45                 // Probable fix: move vector manipulation to *before* we modify the vector.
46                 Timers.erase(i);
47
48                 t->Tick(TIME);
49                 if (t->GetRepeat())
50                 {
51                         t->SetTimer(TIME + t->GetSecs());
52                         AddTimer(t);
53                 }
54                 else
55                         delete t;
56         }
57 }
58
59 void TimerManager::DelTimer(Timer* T)
60 {
61         std::vector<Timer *>::iterator i = std::find(Timers.begin(), Timers.end(), T);
62
63         if (i != Timers.end())
64         {
65                 delete (*i);
66                 Timers.erase(i);
67         }
68 }
69
70 void TimerManager::AddTimer(Timer* T)
71 {
72         Timers.push_back(T);
73         std::sort(Timers.begin(), Timers.end(), TimerManager::TimerComparison);
74 }
75
76 bool TimerManager::TimerComparison( Timer *one, Timer *two)
77 {
78         return (one->GetTimer()) < (two->GetTimer());
79 }