< prev index next >

src/java.base/share/classes/jdk/internal/misc/InternalLock.java

Print this page

22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 package jdk.internal.misc;
27 
28 import java.util.concurrent.locks.ReentrantLock;
29 
30 /**
31  * A reentrant mutual exclusion lock for internal use. The lock does not
32  * implement {@link java.util.concurrent.locks.Lock} or extend {@link
33  * java.util.concurrent.locks.ReentrantLock} so that it can be distinguished
34  * from lock objects accessible to subclasses of {@link java.io.Reader} and
35  * {@link java.io.Writer} (it is possible to create a Reader that uses a
36  * lock object of type ReentrantLock for example).
37  */
38 public class InternalLock {
39     private static final boolean CAN_USE_INTERNAL_LOCK;
40     static {
41         String s = System.getProperty("jdk.io.useMonitors");
42         if (s != null && (s.isEmpty() || s.equals("true"))) {
43             CAN_USE_INTERNAL_LOCK = false;
44         } else {
45             CAN_USE_INTERNAL_LOCK = true;


46         }
47     }
48 
49     private final ReentrantLock lock;
50 
51     private InternalLock() {
52         this.lock = new ReentrantLock();
53     }
54 
55     /**
56      * Returns a new InternalLock or null.
57      */
58     public static InternalLock newLockOrNull() {
59         return (CAN_USE_INTERNAL_LOCK) ? new InternalLock() : null;
60     }
61 
62     /**
63      * Returns a new InternalLock or the given object.
64      */
65     public static Object newLockOr(Object obj) {

22  * or visit www.oracle.com if you need additional information or have any
23  * questions.
24  */
25 
26 package jdk.internal.misc;
27 
28 import java.util.concurrent.locks.ReentrantLock;
29 
30 /**
31  * A reentrant mutual exclusion lock for internal use. The lock does not
32  * implement {@link java.util.concurrent.locks.Lock} or extend {@link
33  * java.util.concurrent.locks.ReentrantLock} so that it can be distinguished
34  * from lock objects accessible to subclasses of {@link java.io.Reader} and
35  * {@link java.io.Writer} (it is possible to create a Reader that uses a
36  * lock object of type ReentrantLock for example).
37  */
38 public class InternalLock {
39     private static final boolean CAN_USE_INTERNAL_LOCK;
40     static {
41         String s = System.getProperty("jdk.io.useMonitors");
42         if (s != null && s.equals("false")) {


43             CAN_USE_INTERNAL_LOCK = true;
44         } else {
45             CAN_USE_INTERNAL_LOCK = false;
46         }
47     }
48 
49     private final ReentrantLock lock;
50 
51     private InternalLock() {
52         this.lock = new ReentrantLock();
53     }
54 
55     /**
56      * Returns a new InternalLock or null.
57      */
58     public static InternalLock newLockOrNull() {
59         return (CAN_USE_INTERNAL_LOCK) ? new InternalLock() : null;
60     }
61 
62     /**
63      * Returns a new InternalLock or the given object.
64      */
65     public static Object newLockOr(Object obj) {
< prev index next >