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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
/*
* Copyright (C) 2009 The Android Open Source Project
*
* 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.android.camera;
import android.os.SystemClock;
import android.util.Log;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeoutException;
import java.util.concurrent.atomic.AtomicLong;
/**
* Abstract class used for Tasks which can be canceled / change priority. The
* task should be added into a <code>PriorityTaskQueue</code> for execution.
*
* @param <T> the type of the return value.
*/
public abstract class PriorityTask<T>
implements Runnable, Comparable<PriorityTask<?>> {
private static final String TAG = "PriorityTask";
private static final int STATE_INITIAL = (1 << 0);
private static final int STATE_QUEUED = (1 << 1);
private static final int STATE_EXECUTING = (1 << 2);
private static final int STATE_ERROR = (1 << 3);
private static final int STATE_CANCELING = (1 << 4);
private static final int STATE_CANCELED = (1 << 5);
private static final int STATE_COMPLETE = (1 << 6);
public static final int PRIORITY_DEFAULT = 0;
public static final int PRIORITY_BACKGROUND = 10;
public static final int PRIORITY_FOREGROUND = -10;
private static final AtomicLong sCounter = new AtomicLong(0L);
/**
* The state of the task, possible transitions are:
* <pre>
* INITIAL -> QUEUED, CANCELED
* QUEUED -> INITIAL, EXECUTING, CANCELED
* EXECUTING -> COMPLETE, CANCELING, ERROR
* CANCELING -> CANCELED
* </pre>
* When the task stop, it must be end with one of the following states:
* COMPLETE, CANCELED, or ERROR;
*/
private int mState = STATE_INITIAL;
private int mPriority;
private long mTimestamp;
private PriorityTaskQueue mQueue;
private Thread mThread;
private T mResult;
private Throwable mError;
private List<Callback<T>> mCallbacks = new ArrayList<Callback<T>>();
public PriorityTask() {
this(PRIORITY_DEFAULT);
}
public PriorityTask(int priority) {
setPriority(priority);
}
/**
* Executes the task. Subclasses should override this function. Note: if
* this function throws an <code>InterruptedException</code>, the task will
* be considered as being canceled instead of fail.
*/
protected abstract T execute() throws Exception;
/**
* Frees the result (which is not null) when the task has been canceled.
*/
protected void freeCanceledResult(T result) {
// Do nothing by default;
}
/**
* Invoked when the task has been a terminate state. It could be complete,
* canceled, or failed.
*
* @param <T> the type of result
*/
public static interface Callback<T> {
public void onResultAvailable(PriorityTask<T> t, T result);
public void onFail(PriorityTask<T> t, Throwable error);
public void onCanceled(PriorityTask<T> t);
}
public final void run() {
try {
synchronized (this) {
if (mState == STATE_CANCELED) return;
if (mState != STATE_QUEUED) {
throw new IllegalStateException();
}
mThread = Thread.currentThread();
mState = STATE_EXECUTING;
}
T result = execute();
synchronized (this) {
if (mState == STATE_CANCELING) mState = STATE_CANCELED;
if (mState == STATE_EXECUTING) mState = STATE_COMPLETE;
notifyAll();
}
if (mState == STATE_COMPLETE) {
mResult = result;
fireOnResultAvailable(result);
} else {
if (result != null) freeCanceledResult(result);
fireOnCanceled();
}
} catch (InterruptedException ie) {
synchronized (this) {
mState = STATE_CANCELED;
notifyAll();
}
fireOnCanceled();
} catch (Throwable throwable) {
synchronized (this) {
mError = throwable;
mState = STATE_ERROR;
notifyAll();
}
fireOnFail(throwable);
} finally {
mThread = null;
mQueue = null;
mCallbacks = null;
}
}
/**
* Whether the task's has been requested for cancel.
*/
protected synchronized boolean isCanceling() {
return mState == STATE_CANCELING;
}
public synchronized void setPriority(int priority) {
if (mState != STATE_INITIAL) {
throw new IllegalStateException();
}
if (mPriority == priority) return;
mPriority = priority;
}
protected synchronized void interruptNow() {
if (isInStates(STATE_EXECUTING | STATE_CANCELING)) mThread.interrupt();
}
/**
* Requests the task to be canceled.
*
* @return true if the task has not been canceled but will be canceled;
* false otherwise (usually the task has been complete/failed/
* canceled.
*/
public synchronized boolean requestCancel() {
if (mState == STATE_EXECUTING) {
mState = STATE_CANCELING;
return true;
}
if (isInStates(STATE_QUEUED | STATE_INITIAL)) {
mState = STATE_CANCELED;
notifyAll();
if (mQueue != null) mQueue.removeCanceledTask(this);
fireOnCanceled();
return true;
}
return !isInStates(STATE_COMPLETE | STATE_ERROR | STATE_CANCELED);
}
private void fireOnResultAvailable(T result) {
for (Callback<T> callback : mCallbacks) {
try {
callback.onResultAvailable(this, result);
} catch (Throwable t) {
Log.e(TAG, "Ignore all throwable in callback - " + t);
}
}
}
private void fireOnCanceled() {
for (Callback<T> callback : mCallbacks) {
try {
callback.onCanceled(this);
} catch (Throwable t) {
Log.e(TAG, "Ignore all throwable in callback - " + t);
}
}
}
private void fireOnFail(Throwable error) {
for (Callback<T> callback : mCallbacks) {
try {
callback.onFail(this, error);
} catch (Throwable t) {
Log.e(TAG, "Ignore all throwable in callback - " + t);
}
}
}
private final boolean isInStates(int states) {
return (mState & states) != 0;
}
boolean setupBeforeQueued(PriorityTaskQueue queue) {
if (mState == STATE_CANCELED) return false;
if (mState != STATE_INITIAL) throw new IllegalStateException();
mQueue = queue;
mState = STATE_QUEUED;
mTimestamp = sCounter.getAndIncrement();
return true;
}
public synchronized void addCallback(Callback<T> callback) {
if (!isInStates(STATE_INITIAL)) throw new IllegalStateException();
mCallbacks.add(callback);
}
public synchronized void removeCallback(Callback<T> callback) {
if (!isInStates(STATE_INITIAL)) throw new IllegalStateException();
mCallbacks.remove(callback);
}
public int compareTo(PriorityTask<?> other) {
return (mPriority != other.mPriority)
? (mPriority - other.mPriority)
: (int) (mTimestamp - other.mTimestamp);
}
public T get() throws InterruptedException, ExecutionException {
await(0);
if (mState == STATE_CANCELED) throw new CancellationException();
if (mState == STATE_ERROR) throw new ExecutionException(mError);
return mState == STATE_COMPLETE ? mResult : null;
}
public T get(long timeout)
throws InterruptedException, ExecutionException, TimeoutException {
if (!await(timeout)) throw new TimeoutException();
if (mState == STATE_CANCELED) throw new CancellationException();
if (mState == STATE_ERROR) throw new ExecutionException(mError);
return mState == STATE_COMPLETE ? mResult : null;
}
/**
* Waits the task to be in terminate state.
*
* @param timeout the timeout in milliseconds; 0 for no timeout.
* @return whether the task is terminated
* @throws InterruptedException
*/
public synchronized boolean await(long timeout)
throws InterruptedException {
long now = SystemClock.elapsedRealtime();
long due = now + timeout;
while (!isInStates(STATE_CANCELED | STATE_ERROR | STATE_COMPLETE)) {
wait(timeout == 0 ? 0 : due - now);
now = SystemClock.elapsedRealtime();
if (timeout != 0 && due <= now) return false;
}
return true;
}
// used only by PriorityTaskQueue#remove
void resetState() {
mState = STATE_INITIAL;
}
}
|