152 lines
4.0 KiB
Java
152 lines
4.0 KiB
Java
// concurrency/PriorityBlockingQueueDemo.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
import java.util.concurrent.*;
|
|
import java.util.*;
|
|
import static com.mindviewinc.util.Print.*;
|
|
|
|
class PrioritizedTask implements
|
|
Runnable, Comparable<PrioritizedTask> {
|
|
private Random rand = new Random(47);
|
|
private static int counter = 0;
|
|
private final int id = counter++;
|
|
private final int priority;
|
|
protected static List<PrioritizedTask> sequence =
|
|
new ArrayList<>();
|
|
public PrioritizedTask(int priority) {
|
|
this.priority = priority;
|
|
sequence.add(this);
|
|
}
|
|
@Override
|
|
public int compareTo(PrioritizedTask arg) {
|
|
return priority < arg.priority ? 1 :
|
|
(priority > arg.priority ? -1 : 0);
|
|
}
|
|
@Override
|
|
public void run() {
|
|
try {
|
|
TimeUnit.MILLISECONDS.sleep(rand.nextInt(250));
|
|
} catch(InterruptedException e) {
|
|
// Acceptable way to exit
|
|
}
|
|
print(this);
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return String.format("[%1$-3d]", priority) +
|
|
" Task " + id;
|
|
}
|
|
public String summary() {
|
|
return "(" + id + ":" + priority + ")";
|
|
}
|
|
public static class EndSentinel extends PrioritizedTask {
|
|
private ExecutorService exec;
|
|
public EndSentinel(ExecutorService e) {
|
|
super(-1); // Lowest priority in this program
|
|
exec = e;
|
|
}
|
|
@Override
|
|
public void run() {
|
|
int count = 0;
|
|
for(PrioritizedTask pt : sequence) {
|
|
printnb(pt.summary());
|
|
if(++count % 5 == 0)
|
|
print();
|
|
}
|
|
print();
|
|
print(this + " Calling shutdownNow()");
|
|
exec.shutdownNow();
|
|
}
|
|
}
|
|
}
|
|
|
|
class PrioritizedTaskProducer implements Runnable {
|
|
private Random rand = new Random(47);
|
|
private Queue<Runnable> queue;
|
|
private ExecutorService exec;
|
|
public PrioritizedTaskProducer(
|
|
Queue<Runnable> q, ExecutorService e) {
|
|
queue = q;
|
|
exec = e; // Used for EndSentinel
|
|
}
|
|
@Override
|
|
public void run() {
|
|
// Unbounded queue; never blocks.
|
|
// Fill it up fast with random priorities:
|
|
for(int i = 0; i < 20; i++) {
|
|
queue.add(new PrioritizedTask(rand.nextInt(10)));
|
|
Thread.yield();
|
|
}
|
|
// Trickle in highest-priority jobs:
|
|
try {
|
|
for(int i = 0; i < 10; i++) {
|
|
TimeUnit.MILLISECONDS.sleep(250);
|
|
queue.add(new PrioritizedTask(10));
|
|
}
|
|
// Add jobs, lowest priority first:
|
|
for(int i = 0; i < 10; i++)
|
|
queue.add(new PrioritizedTask(i));
|
|
// A sentinel to stop all the tasks:
|
|
queue.add(new PrioritizedTask.EndSentinel(exec));
|
|
} catch(InterruptedException e) {
|
|
// Acceptable way to exit
|
|
}
|
|
print("Finished PrioritizedTaskProducer");
|
|
}
|
|
}
|
|
|
|
class PrioritizedTaskConsumer implements Runnable {
|
|
private PriorityBlockingQueue<Runnable> q;
|
|
public PrioritizedTaskConsumer(
|
|
PriorityBlockingQueue<Runnable> q) {
|
|
this.q = q;
|
|
}
|
|
@Override
|
|
public void run() {
|
|
try {
|
|
while(!Thread.interrupted())
|
|
// Use current thread to run the task:
|
|
q.take().run();
|
|
} catch(InterruptedException e) {
|
|
// Acceptable way to exit
|
|
}
|
|
print("Finished PrioritizedTaskConsumer");
|
|
}
|
|
}
|
|
|
|
public class PriorityBlockingQueueDemo {
|
|
public static void main(String[] args) throws Exception {
|
|
ExecutorService exec = Executors.newCachedThreadPool();
|
|
PriorityBlockingQueue<Runnable> queue =
|
|
new PriorityBlockingQueue<>();
|
|
exec.execute(new PrioritizedTaskProducer(queue, exec));
|
|
exec.execute(new PrioritizedTaskConsumer(queue));
|
|
}
|
|
}
|
|
/* Output: (First and last 12 Lines)
|
|
[8 ] Task 0
|
|
[9 ] Task 5
|
|
[9 ] Task 13
|
|
[9 ] Task 14
|
|
[8 ] Task 10
|
|
[8 ] Task 16
|
|
[8 ] Task 19
|
|
[8 ] Task 11
|
|
[8 ] Task 6
|
|
[8 ] Task 15
|
|
[7 ] Task 9
|
|
[5 ] Task 1
|
|
________...________...________...________...________
|
|
[0 ] Task 30
|
|
(0:8)(1:5)(2:3)(3:1)(4:1)
|
|
(5:9)(6:8)(7:0)(8:2)(9:7)
|
|
(10:8)(11:8)(12:1)(13:9)(14:9)
|
|
(15:8)(16:8)(17:1)(18:0)(19:8)
|
|
(20:10)(21:10)(22:10)(23:10)(24:10)
|
|
(25:10)(26:10)(27:10)(28:10)(29:10)
|
|
(30:0)(31:1)(32:2)(33:3)(34:4)
|
|
(35:5)(36:6)(37:7)(38:8)(39:9)
|
|
(40:-1)
|
|
[-1 ] Task 40 Calling shutdownNow()
|
|
Finished PrioritizedTaskConsumer
|
|
*/
|