summaryrefslogtreecommitdiffstats
blob: b4695f018c749b03921eaca18870d09e51132353 (plain)
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
61
62
63
64
65
66
67
68
69
/*
 * Copyright (c) 2010 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.network;

import java.util.List;
import java.util.ArrayList;

public class DummyTimerFactory implements TimerFactory {

	private int currentTime;
	private List<DummyTimer> timers = new ArrayList<DummyTimer>();

	public static class DummyTimer extends Timer {

		public DummyTimer(long timeout, DummyTimerFactory factory) {
			this.timeout = timeout;
			this.factory = factory;
			this.isRunning = false;
			this.startTime = 0;
		}

		public void start() {
			isRunning = true;
			startTime = factory.currentTime;
		}

		public void stop() {
			isRunning = false;
		}

		public long getAlarmTime() {
			return startTime + timeout;
		}
		
		public long timeout;
		public DummyTimerFactory factory;
		public boolean isRunning;
		public long startTime;
	};

	public DummyTimerFactory() {
		this.currentTime = 0;
	}

	public Timer createTimer(long milliseconds) {
		DummyTimer timer = new DummyTimer(milliseconds, this);
		timers.add(timer);
		return timer;
	}

	public void setTime(int time) {
		assert(time > currentTime);
		for(DummyTimer timer : timers) {
			if (timer.getAlarmTime() > currentTime && timer.getAlarmTime() <= time && timer.isRunning) {
				timer.onTick.emit();
			}
		}
		currentTime = time;
	}
}