forked from PacktPublishing/Java-Coding-Problems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadSafeList.java
More file actions
76 lines (61 loc) · 2.65 KB
/
ThreadSafeList.java
File metadata and controls
76 lines (61 loc) · 2.65 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
package modern.challenge;
import java.util.ConcurrentModificationException;
import java.util.Iterator;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.logging.Logger;
public class ThreadSafeList {
private static final Logger logger = Logger.getLogger(ThreadSafeList.class.getName());
// Switch to ArrayList to generate a java.util.ConcurrentModificationException.
// This is caused by the iteration of the list during adding more items
// private static final List<Integer> list = new ArrayList<>();
private static final List<Integer> list = new CopyOnWriteArrayList<>();
private static final Producer producer = new Producer();
private static final Consumer consumer = new Consumer();
private static ExecutorService producerService
= Executors.newSingleThreadExecutor();
private static ExecutorService consumerService
= Executors.newSingleThreadExecutor();
private static class Producer implements Runnable {
@Override
public void run() {
while (true) {
int item = (int) (Math.random() * 1000);
list.add(item);
logger.info(() -> "Produced: " + item
+ " by " + Thread.currentThread().getName());
}
}
}
private static class Consumer implements Runnable {
@Override
public void run() {
while (true) {
Iterator<Integer> iterator = list.listIterator();
while (iterator.hasNext()) {
try {
Integer item = iterator.next();
logger.info(() -> "Consumed: " + item
+ " by " + Thread.currentThread().getName());
} catch (ConcurrentModificationException e) {
logger.severe(() -> "Exception: " + e);
System.exit(0);
}
}
}
}
public void consume(Integer value) {
String threadName = Thread.currentThread().getName();
System.out.printf("[%s] consumed: %s\n", threadName, value);
}
}
public static void main(String[] args) throws InterruptedException {
System.setProperty("java.util.logging.SimpleFormatter.format",
"[%1$tT] [%4$-7s] %5$s %n");
producerService.execute(producer);
consumerService.execute(consumer);
// since the producer and consumer run in a while(true) the application must be stopped manually
}
}