jdk/src/java.base/share/classes/java/lang/ref/ReferenceQueue.java
author avstepan
Thu, 06 Aug 2015 13:20:13 +0300
changeset 32033 bf24e33c7919
parent 25859 3317bb8137f4
child 32104 17bed8d40800
permissions -rw-r--r--
8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math Reviewed-by: lancea, dfuchs, smarks
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2442
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2442
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2442
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2442
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2442
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang.ref;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * Reference queues, to which registered reference objects are appended by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * garbage collector after the appropriate reachability changes are detected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * @author   Mark Reinhold
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * @since    1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
public class ReferenceQueue<T> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
     * Constructs a new reference-object queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    public ReferenceQueue() { }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    43
    private static class Null<S> extends ReferenceQueue<S> {
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    44
        boolean enqueue(Reference<? extends S> r) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    49
    static ReferenceQueue<Object> NULL = new Null<>();
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    50
    static ReferenceQueue<Object> ENQUEUED = new Null<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    static private class Lock { };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private Lock lock = new Lock();
2442
f8bb207f9458 6666739: (ref) ReferenceQueue.poll() doesn't scale well
alanb
parents: 2
diff changeset
    54
    private volatile Reference<? extends T> head = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private long queueLength = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    boolean enqueue(Reference<? extends T> r) { /* Called only by Reference class */
18815
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    58
        synchronized (lock) {
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    59
            // Check that since getting the lock this reference hasn't already been
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    60
            // enqueued (and even then removed)
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    61
            ReferenceQueue<?> queue = r.queue;
18815
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    62
            if ((queue == NULL) || (queue == ENQUEUED)) {
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    63
                return false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            }
18815
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    65
            assert queue == this;
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    66
            r.queue = ENQUEUED;
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    67
            r.next = (head == null) ? r : head;
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    68
            head = r;
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    69
            queueLength++;
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    70
            if (r instanceof FinalReference) {
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    71
                sun.misc.VM.addFinalRefCount(1);
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    72
            }
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    73
            lock.notifyAll();
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    74
            return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    78
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    private Reference<? extends T> reallyPoll() {       /* Must hold lock */
18815
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    80
        Reference<? extends T> r = head;
5da35ed47cfa 8014890: (ref) Reference queues may return more entries than expected
mchung
parents: 5506
diff changeset
    81
        if (r != null) {
19053
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    82
            head = (r.next == r) ?
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    83
                null :
69648476a89e 8021429: Fix lint warnings in java.lang.ref
darcy
parents: 18815
diff changeset
    84
                r.next; // Unchecked due to the next field having a raw type in Reference
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            r.queue = NULL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            r.next = r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            queueLength--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            if (r instanceof FinalReference) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                sun.misc.VM.addFinalRefCount(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
            return r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Polls this queue to see if a reference object is available.  If one is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * available without further delay then it is removed from the queue and
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
    99
     * returned.  Otherwise this method immediately returns {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @return  A reference object, if one was immediately available,
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   102
     *          otherwise {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public Reference<? extends T> poll() {
2442
f8bb207f9458 6666739: (ref) ReferenceQueue.poll() doesn't scale well
alanb
parents: 2
diff changeset
   105
        if (head == null)
f8bb207f9458 6666739: (ref) ReferenceQueue.poll() doesn't scale well
alanb
parents: 2
diff changeset
   106
            return null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            return reallyPoll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * Removes the next reference object in this queue, blocking until either
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * one becomes available or the given timeout period expires.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * <p> This method does not offer real-time guarantees: It schedules the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * timeout as if by invoking the {@link Object#wait(long)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     *
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   119
     * @param  timeout  If positive, block for up to {@code timeout}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *                  milliseconds while waiting for a reference to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *                  added to this queue.  If zero, block indefinitely.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @return  A reference object, if one was available within the specified
32033
bf24e33c7919 8132468: docs: replace <tt> tags (obsolete in html5) for java.io, java.lang, java.math
avstepan
parents: 25859
diff changeset
   124
     *          timeout period, otherwise {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @throws  IllegalArgumentException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *          If the value of the timeout argument is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @throws  InterruptedException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     *          If the timeout wait is interrupted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    public Reference<? extends T> remove(long timeout)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        throws IllegalArgumentException, InterruptedException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        if (timeout < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            throw new IllegalArgumentException("Negative timeout value");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        synchronized (lock) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            Reference<? extends T> r = reallyPoll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            if (r != null) return r;
23027
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   141
            long start = (timeout == 0) ? 0 : System.nanoTime();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                lock.wait(timeout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                r = reallyPoll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                if (r != null) return r;
23027
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   146
                if (timeout != 0) {
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   147
                    long end = System.nanoTime();
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   148
                    timeout -= (end - start) / 1000_000;
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   149
                    if (timeout <= 0) return null;
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   150
                    start = end;
07b4bf8a9026 6853696: (ref) ReferenceQueue.remove(timeout) may return null even if timeout has not expired
igerasim
parents: 19053
diff changeset
   151
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * Removes the next reference object in this queue, blocking until one
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * becomes available.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @return A reference object, blocking until one becomes available
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * @throws  InterruptedException  If the wait is interrupted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
    public Reference<? extends T> remove() throws InterruptedException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        return remove(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
}