1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*
* Copyright (c) 2010 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <Swiften/Network/DummyTimerFactory.h>
#include <algorithm>
#include <Swiften/Base/foreach.h>
#include <Swiften/Network/Timer.h>
namespace Swift {
class DummyTimerFactory::DummyTimer : public Timer {
public:
DummyTimer(int timeout, DummyTimerFactory* factory) : timeout(timeout), factory(factory), isRunning(false), startTime(~0) {
}
virtual void start() {
isRunning = true;
startTime = factory->currentTime;
}
virtual void stop() {
isRunning = false;
}
int getAlarmTime() const {
return startTime + timeout;
}
int timeout;
DummyTimerFactory* factory;
bool isRunning;
int startTime;
};
DummyTimerFactory::DummyTimerFactory() : currentTime(0) {
}
boost::shared_ptr<Timer> DummyTimerFactory::createTimer(int milliseconds) {
boost::shared_ptr<DummyTimer> timer(new DummyTimer(milliseconds, this));
timers.push_back(timer);
return timer;
}
void DummyTimerFactory::setTime(int time) {
assert(time > currentTime);
foreach(boost::shared_ptr<DummyTimer> timer, timers) {
if (timer->getAlarmTime() > currentTime && timer->getAlarmTime() <= time && timer->isRunning) {
timer->onTick();
}
}
currentTime = time;
}
}
|