summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Gupta <tarun1995gupta@gmail.com>2015-07-27 15:01:45 (GMT)
committerAlex Clayton <alex.clayton@isode.com>2016-01-12 11:31:04 (GMT)
commitb4cf2bb8d7b69d95b4a10d610ad259998d2aee5b (patch)
treeb942953236a7c712eed6ce4a5f261019691c0dca /src/com/isode/stroke/network/DummyTimerFactory.java
parentc168fcd0c2468ec939b8d164175e9c5776a63147 (diff)
downloadstroke-b4cf2bb8d7b69d95b4a10d610ad259998d2aee5b.zip
stroke-b4cf2bb8d7b69d95b4a10d610ad259998d2aee5b.tar.bz2
Make Networks equivalent with Swiften.
Adds ProxyProviders, DomainNameResolvers and DummyConnection. License: This patch is BSD-licensed, see Documentation/Licenses/BSD-simplified.txt for details. Test-Information: Tests added for ChainedConnector, Connector and HostAddress. Test also added for ComponentConnector, which needed bits of Network. Five assertions are commented in ConnectorTest, which fails and will be updated after review. Change-Id: I8a62841eb2f9c109bc3a94865b7a003b33493e11
Diffstat (limited to 'src/com/isode/stroke/network/DummyTimerFactory.java')
-rw-r--r--src/com/isode/stroke/network/DummyTimerFactory.java69
1 files changed, 69 insertions, 0 deletions
diff --git a/src/com/isode/stroke/network/DummyTimerFactory.java b/src/com/isode/stroke/network/DummyTimerFactory.java
new file mode 100644
index 0000000..f3d083f
--- /dev/null
+++ b/src/com/isode/stroke/network/DummyTimerFactory.java
@@ -0,0 +1,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 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;
+ }
+} \ No newline at end of file