blob: b4e6ce0e1547a2895d718ced519a052423cb7238 (
plain)
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
|
package jogamp.common.util.locks;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.ReentrantLock;
import com.jogamp.common.util.locks.RecursiveLock;
public class RecursiveLockImplJava5 implements RecursiveLock {
volatile Thread owner = null;
ReentrantLock lock;
public RecursiveLockImplJava5(boolean fair) {
lock = new ReentrantLock(fair);
}
public void lock() {
try {
if(!tryLock(TIMEOUT)) {
throw new RuntimeException("Waited "+TIMEOUT+"ms for: "+threadName(owner)+" - "+threadName(Thread.currentThread())+", with count "+getHoldCount()+", lock: "+this);
}
} catch (InterruptedException e) {
throw new RuntimeException("Interrupted", e);
}
owner = Thread.currentThread();
}
public boolean tryLock(long timeout) throws InterruptedException {
if(lock.tryLock(timeout, TimeUnit.MILLISECONDS)) {
owner = Thread.currentThread();
return true;
}
return false;
}
public void unlock() throws RuntimeException {
validateLocked();
owner = null;
lock.unlock();
}
public boolean isLocked() {
return lock.isLocked();
}
public Thread getOwner() {
return owner;
}
public boolean isLockedByOtherThread() {
return lock.isLocked() && !lock.isHeldByCurrentThread();
}
public boolean isOwner() {
return lock.isHeldByCurrentThread();
}
public boolean isOwner(Thread thread) {
return lock.isLocked() && owner == thread;
}
public void validateLocked() {
if ( !lock.isHeldByCurrentThread() ) {
if ( !lock.isLocked() ) {
throw new RuntimeException(Thread.currentThread()+": Not locked");
} else {
throw new RuntimeException(Thread.currentThread()+": Not owner, owner is "+owner);
}
}
}
public int getHoldCount() {
return lock.getHoldCount();
}
public int getQueueLength() {
return lock.getQueueLength();
}
private String threadName(Thread t) { return null!=t ? "<"+t.getName()+">" : "<NULL>" ; }
}
|