-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
118 lines (110 loc) · 3.32 KB
/
Main.java
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
import java.util.concurrent.locks.*;
class Main {
static ReadWriteLock lock;
static double[] sharedData;
static int SD = 100, CS = 10;
static int RD = 100, WR = 10;
// SD: shared data array size
// CS: critical section executed per thread
// RD: number of readers
// WR: number of writers
// Critical section updated shared data
// with a random value. If all values
// dont match then it was not executed
// atomically!
static void criticalSection() {
try {
double v = Math.random();
for (int i=0; i<SD; i++) {
if (i % (SD/4) == 0) Thread.sleep(1);
sharedData[i] = v + v*sharedData[i];
}
}
catch(InterruptedException e) {}
}
// Checks to see if all values match. If not,
// then critical section was not executed
// atomically.
static boolean criticalSectionWasAtomic() {
double v = sharedData[0];
for (int i=0; i<SD; i++)
if(sharedData[i] != v) return false;
return true;
}
// Unsafe reader checks CS N times, without
// holding a lock. This can cause CS check
// to be while it is being updated by a
// writer, which can be detected.
//
// Safe reader checks CS N times, while
// holding a read lock. This allows multiple
// readers to check CS concurrently, but not
// while a writer is updating it. Hence, CS
// executes atomically which can be verified.
static Thread reader(String id, boolean safe) {
Thread t = new Thread(() -> {
for (int i=0; i<CS; i++) {
if (safe) lock.readLock().lock();
boolean ok = criticalSectionWasAtomic();
if (!ok) log(id+": CS was not atomic!");
if (safe) lock.readLock().unlock();
}
});
t.start();
return t;
}
// Unsafe writer executes CS N times, without
// holding a lock. This can cause CS to be
// executed non-atomically which can be detected.
//
// Safe writer executes CS N times, while
// holding a writer lock. This forces the
// absence of other writers or any reader,
// and allows CS to always be executed
// atomically which can be verified.
static Thread writer(String id, boolean safe) {
Thread t = new Thread(() -> {
for (int i=0; i<CS; i++) {
if(safe) lock.writeLock().lock();
criticalSection();
if(safe) lock.writeLock().unlock();
}
log(id+": done");
});
t.start();
return t;
}
// Tests to see if threads execute critical
// section atomically.
static void testThreads(boolean safe) {
String type = safe? "safe" : "unsafe";
log("Starting "+RD+" "+type+" readers ...");
log("Starting "+WR+" "+type+" writers ...");
Thread[] readers = new Thread[RD];
Thread[] writers = new Thread[WR];
for (int i=0; i<RD; i++)
readers[i] = reader("R"+i, safe);
for (int i=0; i<WR; i++)
writers[i] = writer("W"+i, safe);
try {
for (int i=0; i<RD; i++)
readers[i].join();
for (int i=0; i<WR; i++)
writers[i].join();
}
catch(InterruptedException e) {}
boolean atomic = criticalSectionWasAtomic();
log("Critical Section was atomic? "+atomic);
log("");
}
public static void main(String[] args) {
lock = new FifoReadWriteLock();
sharedData = new double[SD];
testThreads(false);
sharedData = new double[SD];
testThreads(true);
}
static void log(String x) {
System.out.println(x);
}
}