forked from googleapis/google-cloud-java
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFakeScheduledExecutorService.java
More file actions
182 lines (157 loc) · 5.36 KB
/
Copy pathFakeScheduledExecutorService.java
File metadata and controls
182 lines (157 loc) · 5.36 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/*
* Copyright 2016 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.cloud.pubsub;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.Delayed;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
/**
* A ScheduledExecutorService to help with testing.
*/
class FakeScheduledExecutorService extends ScheduledThreadPoolExecutor {
private final FakeClock clock;
private final List<FakeScheduledFuture> futures = new ArrayList<>();
public FakeScheduledExecutorService(int corePoolSize, FakeClock clock) {
super(corePoolSize);
this.clock = clock;
}
public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) {
synchronized (this) {
long runAtMillis = clock.millis() + unit.toMillis(delay);
FakeScheduledFuture scheduledFuture =
new FakeScheduledFuture(command, delay, unit, runAtMillis);
futures.add(scheduledFuture);
return scheduledFuture;
}
}
public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) {
throw new UnsupportedOperationException(
"FakeScheduledExecutorService.schedule(Callable, long, TimeUnit) not supported");
}
public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period,
TimeUnit unit) {
throw new UnsupportedOperationException(
"FakeScheduledExecutorService.scheduleAtFixedRate not supported");
}
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay,
TimeUnit unit) {
throw new UnsupportedOperationException(
"FakeScheduledExecutorService.scheduleAtFixedRate not supported");
}
public void tick(long time, TimeUnit unit) {
List<FakeScheduledFuture> runnablesToGo = new ArrayList<>();
synchronized (this) {
clock.advance(time, unit);
Iterator<FakeScheduledFuture> iter = futures.iterator();
while (iter.hasNext()) {
FakeScheduledFuture scheduledFuture = iter.next();
if (scheduledFuture.runAtMillis <= clock.millis()) {
runnablesToGo.add(scheduledFuture);
iter.remove();
}
}
}
for (FakeScheduledFuture scheduledFuture : runnablesToGo) {
scheduledFuture.run();
}
}
private boolean cancel(FakeScheduledFuture toCancel) {
synchronized (this) {
Iterator<FakeScheduledFuture> iter = futures.iterator();
while (iter.hasNext()) {
FakeScheduledFuture scheduledFuture = iter.next();
if (scheduledFuture == toCancel) {
iter.remove();
return true;
}
}
return false;
}
}
private class FakeScheduledFuture implements ScheduledFuture<Object> {
final Callable<Object> callable;
final long delay;
final TimeUnit unit;
final long runAtMillis;
volatile boolean isDone;
volatile boolean isCancelled;
volatile Exception exception;
volatile Object result;
FakeScheduledFuture(Runnable runnable, long delay, TimeUnit unit, long runAtMillis) {
this.callable = Executors.callable(runnable);
this.delay = delay;
this.unit = unit;
this.runAtMillis = runAtMillis;
}
@Override
public long getDelay(TimeUnit requestedUnit) {
return unit.convert(delay, requestedUnit);
}
@Override
public int compareTo(Delayed other) {
return Long.compare(getDelay(TimeUnit.MILLISECONDS), other.getDelay(TimeUnit.MILLISECONDS));
}
@Override
public boolean cancel(boolean var1) {
if (isCancelled) {
return isCancelled;
}
isCancelled = FakeScheduledExecutorService.this.cancel(this);
return isCancelled;
}
@Override
public boolean isCancelled() {
return isCancelled;
}
@Override
public boolean isDone() {
return isDone;
}
@Override
public Object get() throws InterruptedException, ExecutionException {
if (!isDone()) {
throw new UnsupportedOperationException("FakeScheduledFuture: blocking get not supported");
}
if (exception != null) {
throw new ExecutionException(exception);
}
return result;
}
@Override
public Object get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException,
TimeoutException {
return get();
}
public void run() {
if (isDone()) {
throw new UnsupportedOperationException("FakeScheduledFuture already done.");
}
try {
result = callable.call();
} catch (Exception e) {
exception = e;
}
isDone = true;
}
}
}