-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPool.java
More file actions
77 lines (59 loc) · 1.57 KB
/
Pool.java
File metadata and controls
77 lines (59 loc) · 1.57 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
package concurrency;
import java.util.concurrent.*;
import java.util.*;
/**
* RUN:
* javac concurrency/Pool.java && java concurrency.Pool
*
* OUTPUT:
*
*/
public class Pool<T> {
private int size;
private List<T> items = new ArrayList<T>();
private volatile boolean[] checkedOut;
private Semaphore available;
public Pool(Class<T> classObject, int size) {
this.size = size;
checkedOut = new boolean[size];
available = new Semaphore(size, true);
// filling pool
for (int i = 0; i < size; i++) {
try {
items.add(classObject.newInstance());
}
catch (Exception e) {
throw new RuntimeException(e);
}
}
}
public T checkOut() throws InterruptedException {
available.acquire();
return getItem();
}
public void checkIn(T x) {
if (releaseItem(x)) {
available.release();
}
}
private synchronized T getItem() {
for (int i = 0; i < size; i++) {
if (! checkedOut[i]) {
checkedOut[i] = true;
return items.get(i);
}
}
return null; // semaphore save to execute this line
}
private synchronized boolean releaseItem(T item) {
int index = items.indexOf(item);
if (index == -1) {
return false;
}
if (checkedOut[index]) {
checkedOut[index] = false;
return true;
}
return false;
}
}