2
|
1 |
/*
|
|
2 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
3 |
*
|
|
4 |
* This code is free software; you can redistribute it and/or modify it
|
|
5 |
* under the terms of the GNU General Public License version 2 only, as
|
5506
|
6 |
* published by the Free Software Foundation. Oracle designates this
|
2
|
7 |
* particular file as subject to the "Classpath" exception as provided
|
5506
|
8 |
* by Oracle in the LICENSE file that accompanied this code.
|
2
|
9 |
*
|
|
10 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
11 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
12 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
13 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
14 |
* accompanied this code).
|
|
15 |
*
|
|
16 |
* You should have received a copy of the GNU General Public License version
|
|
17 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
18 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
19 |
*
|
5506
|
20 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
21 |
* or visit www.oracle.com if you need additional information or have any
|
|
22 |
* questions.
|
2
|
23 |
*/
|
|
24 |
|
|
25 |
/*
|
|
26 |
* This file is available under and governed by the GNU General Public
|
|
27 |
* License version 2 only, as published by the Free Software Foundation.
|
|
28 |
* However, the following notice accompanied the original version of this
|
|
29 |
* file:
|
|
30 |
*
|
|
31 |
* Written by Doug Lea with assistance from members of JCP JSR-166
|
|
32 |
* Expert Group and released to the public domain, as explained at
|
|
33 |
* http://creativecommons.org/licenses/publicdomain
|
|
34 |
*/
|
|
35 |
|
|
36 |
/**
|
|
37 |
* A small toolkit of classes that support lock-free thread-safe
|
|
38 |
* programming on single variables. In essence, the classes in this
|
|
39 |
* package extend the notion of {@code volatile} values, fields, and
|
|
40 |
* array elements to those that also provide an atomic conditional update
|
|
41 |
* operation of the form:
|
|
42 |
*
|
|
43 |
* <pre>
|
|
44 |
* boolean compareAndSet(expectedValue, updateValue);
|
|
45 |
* </pre>
|
|
46 |
*
|
|
47 |
* <p>This method (which varies in argument types across different
|
|
48 |
* classes) atomically sets a variable to the {@code updateValue} if it
|
|
49 |
* currently holds the {@code expectedValue}, reporting {@code true} on
|
|
50 |
* success. The classes in this package also contain methods to get and
|
|
51 |
* unconditionally set values, as well as a weaker conditional atomic
|
|
52 |
* update operation {@code weakCompareAndSet} described below.
|
|
53 |
*
|
|
54 |
* <p>The specifications of these methods enable implementations to
|
|
55 |
* employ efficient machine-level atomic instructions that are available
|
|
56 |
* on contemporary processors. However on some platforms, support may
|
|
57 |
* entail some form of internal locking. Thus the methods are not
|
|
58 |
* strictly guaranteed to be non-blocking --
|
|
59 |
* a thread may block transiently before performing the operation.
|
|
60 |
*
|
|
61 |
* <p>Instances of classes
|
|
62 |
* {@link java.util.concurrent.atomic.AtomicBoolean},
|
|
63 |
* {@link java.util.concurrent.atomic.AtomicInteger},
|
|
64 |
* {@link java.util.concurrent.atomic.AtomicLong}, and
|
|
65 |
* {@link java.util.concurrent.atomic.AtomicReference}
|
|
66 |
* each provide access and updates to a single variable of the
|
|
67 |
* corresponding type. Each class also provides appropriate utility
|
|
68 |
* methods for that type. For example, classes {@code AtomicLong} and
|
|
69 |
* {@code AtomicInteger} provide atomic increment methods. One
|
|
70 |
* application is to generate sequence numbers, as in:
|
|
71 |
*
|
|
72 |
* <pre>
|
|
73 |
* class Sequencer {
|
|
74 |
* private final AtomicLong sequenceNumber
|
|
75 |
* = new AtomicLong(0);
|
|
76 |
* public long next() {
|
|
77 |
* return sequenceNumber.getAndIncrement();
|
|
78 |
* }
|
|
79 |
* }
|
|
80 |
* </pre>
|
|
81 |
*
|
|
82 |
* <p>The memory effects for accesses and updates of atomics generally
|
|
83 |
* follow the rules for volatiles, as stated in
|
|
84 |
* <a href="http://java.sun.com/docs/books/jls/"> The Java Language
|
|
85 |
* Specification, Third Edition (17.4 Memory Model)</a>:
|
|
86 |
*
|
|
87 |
* <ul>
|
|
88 |
*
|
|
89 |
* <li> {@code get} has the memory effects of reading a
|
|
90 |
* {@code volatile} variable.
|
|
91 |
*
|
|
92 |
* <li> {@code set} has the memory effects of writing (assigning) a
|
|
93 |
* {@code volatile} variable.
|
|
94 |
*
|
|
95 |
* <li> {@code lazySet} has the memory effects of writing (assigning)
|
|
96 |
* a {@code volatile} variable except that it permits reorderings with
|
|
97 |
* subsequent (but not previous) memory actions that do not themselves
|
|
98 |
* impose reordering constraints with ordinary non-{@code volatile}
|
|
99 |
* writes. Among other usage contexts, {@code lazySet} may apply when
|
|
100 |
* nulling out, for the sake of garbage collection, a reference that is
|
|
101 |
* never accessed again.
|
|
102 |
*
|
|
103 |
* <li>{@code weakCompareAndSet} atomically reads and conditionally
|
|
104 |
* writes a variable but does <em>not</em>
|
|
105 |
* create any happens-before orderings, so provides no guarantees
|
|
106 |
* with respect to previous or subsequent reads and writes of any
|
|
107 |
* variables other than the target of the {@code weakCompareAndSet}.
|
|
108 |
*
|
|
109 |
* <li> {@code compareAndSet}
|
|
110 |
* and all other read-and-update operations such as {@code getAndIncrement}
|
|
111 |
* have the memory effects of both reading and
|
|
112 |
* writing {@code volatile} variables.
|
|
113 |
* </ul>
|
|
114 |
*
|
|
115 |
* <p>In addition to classes representing single values, this package
|
|
116 |
* contains <em>Updater</em> classes that can be used to obtain
|
|
117 |
* {@code compareAndSet} operations on any selected {@code volatile}
|
|
118 |
* field of any selected class.
|
|
119 |
*
|
|
120 |
* {@link java.util.concurrent.atomic.AtomicReferenceFieldUpdater},
|
|
121 |
* {@link java.util.concurrent.atomic.AtomicIntegerFieldUpdater}, and
|
|
122 |
* {@link java.util.concurrent.atomic.AtomicLongFieldUpdater} are
|
|
123 |
* reflection-based utilities that provide access to the associated
|
|
124 |
* field types. These are mainly of use in atomic data structures in
|
|
125 |
* which several {@code volatile} fields of the same node (for
|
|
126 |
* example, the links of a tree node) are independently subject to
|
|
127 |
* atomic updates. These classes enable greater flexibility in how
|
|
128 |
* and when to use atomic updates, at the expense of more awkward
|
|
129 |
* reflection-based setup, less convenient usage, and weaker
|
|
130 |
* guarantees.
|
|
131 |
*
|
|
132 |
* <p>The
|
|
133 |
* {@link java.util.concurrent.atomic.AtomicIntegerArray},
|
|
134 |
* {@link java.util.concurrent.atomic.AtomicLongArray}, and
|
|
135 |
* {@link java.util.concurrent.atomic.AtomicReferenceArray} classes
|
|
136 |
* further extend atomic operation support to arrays of these types.
|
|
137 |
* These classes are also notable in providing {@code volatile} access
|
|
138 |
* semantics for their array elements, which is not supported for
|
|
139 |
* ordinary arrays.
|
|
140 |
*
|
|
141 |
* <a name="Spurious">
|
|
142 |
* <p>The atomic classes also support method {@code weakCompareAndSet},
|
|
143 |
* which has limited applicability. On some platforms, the weak version
|
|
144 |
* may be more efficient than {@code compareAndSet} in the normal case,
|
|
145 |
* but differs in that any given invocation of the
|
|
146 |
* {@code weakCompareAndSet} method may return {@code false}
|
|
147 |
* <em>spuriously</em> (that is, for no apparent reason)</a>. A
|
|
148 |
* {@code false} return means only that the operation may be retried if
|
|
149 |
* desired, relying on the guarantee that repeated invocation when the
|
|
150 |
* variable holds {@code expectedValue} and no other thread is also
|
|
151 |
* attempting to set the variable will eventually succeed. (Such
|
|
152 |
* spurious failures may for example be due to memory contention effects
|
|
153 |
* that are unrelated to whether the expected and current values are
|
|
154 |
* equal.) Additionally {@code weakCompareAndSet} does not provide
|
|
155 |
* ordering guarantees that are usually needed for synchronization
|
|
156 |
* control. However, the method may be useful for updating counters and
|
|
157 |
* statistics when such updates are unrelated to the other
|
|
158 |
* happens-before orderings of a program. When a thread sees an update
|
|
159 |
* to an atomic variable caused by a {@code weakCompareAndSet}, it does
|
|
160 |
* not necessarily see updates to any <em>other</em> variables that
|
|
161 |
* occurred before the {@code weakCompareAndSet}. This may be
|
|
162 |
* acceptable when, for example, updating performance statistics, but
|
|
163 |
* rarely otherwise.
|
|
164 |
*
|
|
165 |
* <p>The {@link java.util.concurrent.atomic.AtomicMarkableReference}
|
|
166 |
* class associates a single boolean with a reference. For example, this
|
|
167 |
* bit might be used inside a data structure to mean that the object
|
|
168 |
* being referenced has logically been deleted.
|
|
169 |
*
|
|
170 |
* The {@link java.util.concurrent.atomic.AtomicStampedReference}
|
|
171 |
* class associates an integer value with a reference. This may be
|
|
172 |
* used for example, to represent version numbers corresponding to
|
|
173 |
* series of updates.
|
|
174 |
*
|
|
175 |
* <p>Atomic classes are designed primarily as building blocks for
|
|
176 |
* implementing non-blocking data structures and related infrastructure
|
|
177 |
* classes. The {@code compareAndSet} method is not a general
|
|
178 |
* replacement for locking. It applies only when critical updates for an
|
|
179 |
* object are confined to a <em>single</em> variable.
|
|
180 |
*
|
|
181 |
* <p>Atomic classes are not general purpose replacements for
|
|
182 |
* {@code java.lang.Integer} and related classes. They do <em>not</em>
|
|
183 |
* define methods such as {@code hashCode} and
|
|
184 |
* {@code compareTo}. (Because atomic variables are expected to be
|
|
185 |
* mutated, they are poor choices for hash table keys.) Additionally,
|
|
186 |
* classes are provided only for those types that are commonly useful in
|
|
187 |
* intended applications. For example, there is no atomic class for
|
|
188 |
* representing {@code byte}. In those infrequent cases where you would
|
|
189 |
* like to do so, you can use an {@code AtomicInteger} to hold
|
|
190 |
* {@code byte} values, and cast appropriately.
|
|
191 |
*
|
|
192 |
* You can also hold floats using
|
|
193 |
* {@link java.lang.Float#floatToIntBits} and
|
|
194 |
* {@link java.lang.Float#intBitsToFloat} conversions, and doubles using
|
|
195 |
* {@link java.lang.Double#doubleToLongBits} and
|
|
196 |
* {@link java.lang.Double#longBitsToDouble} conversions.
|
|
197 |
*
|
|
198 |
* @since 1.5
|
|
199 |
*/
|
|
200 |
package java.util.concurrent.atomic;
|