forked from kangjianwei/LearningJDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AtomicReference.java
536 lines (477 loc) · 20.6 KB
/
AtomicReference.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* This file is available under and governed by the GNU General Public
* License version 2 only, as published by the Free Software Foundation.
* However, the following notice accompanied the original version of this
* file:
*
* Written by Doug Lea with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/publicdomain/zero/1.0/
*/
package java.util.concurrent.atomic;
import java.io.Serializable;
import java.lang.invoke.MethodHandles;
import java.lang.invoke.VarHandle;
import java.util.function.BinaryOperator;
import java.util.function.UnaryOperator;
/**
* An object reference that may be updated atomically. See the {@link
* VarHandle} specification for descriptions of the properties of
* atomic accesses.
*
* @param <V> The type of object referred to by this reference
*
* @author Doug Lea
* @since 1.5
*/
// 引用类型(原子性)
public class AtomicReference<V> implements Serializable {
private static final long serialVersionUID = -1848883965231344442L;
private volatile V value;
// 存储字段value在JVM中的偏移地址
private static final VarHandle VALUE;
static {
try {
MethodHandles.Lookup l = MethodHandles.lookup();
VALUE = l.findVarHandle(AtomicReference.class, "value", Object.class);
} catch(ReflectiveOperationException e) {
throw new ExceptionInInitializerError(e);
}
}
/*▼ 构造器 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Creates a new AtomicReference with null initial value.
*/
public AtomicReference() {
}
/**
* Creates a new AtomicReference with the given initial value.
*
* @param initialValue the initial value
*/
public AtomicReference(V initialValue) {
value = initialValue;
}
/*▲ 构造器 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 获取值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getVolatile}.
*
* @return the current value
*/
// 返回原子引用的值
public final V get() {
return value;
}
/**
* Returns the current value, with memory semantics of reading as
* if the variable was declared non-{@code volatile}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子引用的值
public final V getPlain() {
return (V) VALUE.get(this);
}
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getOpaque}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子引用的值
public final V getOpaque() {
return (V) VALUE.getOpaque(this);
}
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getAcquire}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子引用的值
public final V getAcquire() {
return (V) VALUE.getAcquire(this);
}
/*▲ 获取值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 设置值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Sets the value to {@code newValue},
* with memory effects as specified by {@link VarHandle#setVolatile}.
*
* @param newValue the new value
*/
// 设置原子引用的值
public final void set(V newValue) {
value = newValue;
}
/**
* Sets the value to {@code newValue}, with memory semantics
* of setting as if the variable was declared non-{@code volatile}
* and non-{@code final}.
*
* @param newValue the new value
*
* @since 9
*/
// 根据JVM地址偏移量设置原子引用的值
public final void setPlain(V newValue) {
VALUE.set(this, newValue);
}
/**
* Sets the value to {@code newValue},
* with memory effects as specified by {@link VarHandle#setOpaque}.
*
* @param newValue the new value
*
* @since 9
*/
// 根据JVM地址偏移量设置原子引用的值
public final void setOpaque(V newValue) {
VALUE.setOpaque(this, newValue);
}
/**
* Sets the value to {@code newValue},
* with memory effects as specified by {@link VarHandle#setRelease}.
*
* @param newValue the new value
*
* @since 9
*/
// 根据JVM地址偏移量设置原子引用的值
public final void setRelease(V newValue) {
VALUE.setRelease(this, newValue);
}
/**
* Sets the value to {@code newValue},
* with memory effects as specified by {@link VarHandle#setRelease}.
*
* @param newValue the new value
*
* @since 1.6
*/
// 根据JVM地址偏移量设置原子引用的值
public final void lazySet(V newValue) {
VALUE.setRelease(this, newValue);
}
/**
* Atomically sets the value to {@code newValue} and returns the old value,
* with memory effects as specified by {@link VarHandle#getAndSet}.
*
* @param newValue the new value
*
* @return the previous value
*/
// 将当前值原子地更新为newValue,并返回旧值
@SuppressWarnings("unchecked")
public final V getAndSet(V newValue) {
return (V) VALUE.getAndSet(this, newValue);
}
/*▲ 设置值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 比较并更新-1 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Atomically sets the value to {@code newValue} if the current value,
* referred to as the <em>witness value</em>, {@code == expectedValue},
* with memory effects as specified by
* {@link VarHandle#compareAndExchange}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return the witness value, which will be the same as the
* expected value if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回旧值
public final V compareAndExchange(V expectedValue, V newValue) {
return (V) VALUE.compareAndExchange(this, expectedValue, newValue);
}
/**
* Atomically sets the value to {@code newValue} if the current value,
* referred to as the <em>witness value</em>, {@code == expectedValue},
* with memory effects as specified by
* {@link VarHandle#compareAndExchangeAcquire}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return the witness value, which will be the same as the
* expected value if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回旧值
public final V compareAndExchangeAcquire(V expectedValue, V newValue) {
return (V) VALUE.compareAndExchangeAcquire(this, expectedValue, newValue);
}
/**
* Atomically sets the value to {@code newValue} if the current value,
* referred to as the <em>witness value</em>, {@code == expectedValue},
* with memory effects as specified by
* {@link VarHandle#compareAndExchangeRelease}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return the witness value, which will be the same as the
* expected value if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回旧值
public final V compareAndExchangeRelease(V expectedValue, V newValue) {
return (V) VALUE.compareAndExchangeRelease(this, expectedValue, newValue);
}
/*▲ 比较并更新-1 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 比较并更新-2 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Atomically sets the value to {@code newValue}
* if the current value {@code == expectedValue},
* with memory effects as specified by {@link VarHandle#compareAndSet}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return {@code true} if successful. False return indicates that
* the actual value was not equal to the expected value.
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回值表示是否更新成功
public final boolean compareAndSet(V expectedValue, V newValue) {
return VALUE.compareAndSet(this, expectedValue, newValue);
}
/**
* Possibly atomically sets the value to {@code newValue}
* if the current value {@code == expectedValue},
* with memory effects as specified by {@link VarHandle#weakCompareAndSetPlain}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return {@code true} if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回值表示是否更新成功
public final boolean weakCompareAndSetPlain(V expectedValue, V newValue) {
return VALUE.weakCompareAndSetPlain(this, expectedValue, newValue);
}
/**
* Possibly atomically sets the value to {@code newValue}
* if the current value {@code == expectedValue},
* with memory effects as specified by {@link VarHandle#weakCompareAndSetPlain}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return {@code true} if successful
*
* @see #weakCompareAndSetPlain
* @deprecated This method has plain memory effects but the method
* name implies volatile memory effects (see methods such as
* {@link #compareAndExchange} and {@link #compareAndSet}). To avoid
* confusion over plain or volatile memory effects it is recommended that
* the method {@link #weakCompareAndSetPlain} be used instead.
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回值表示是否更新成功
@Deprecated(since = "9")
public final boolean weakCompareAndSet(V expectedValue, V newValue) {
return VALUE.weakCompareAndSetPlain(this, expectedValue, newValue);
}
/**
* Possibly atomically sets the value to {@code newValue}
* if the current value {@code == expectedValue},
* with memory effects as specified by
* {@link VarHandle#weakCompareAndSetAcquire}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return {@code true} if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回值表示是否更新成功
public final boolean weakCompareAndSetAcquire(V expectedValue, V newValue) {
return VALUE.weakCompareAndSetAcquire(this, expectedValue, newValue);
}
/**
* Possibly atomically sets the value to {@code newValue}
* if the current value {@code == expectedValue},
* with memory effects as specified by
* {@link VarHandle#weakCompareAndSetRelease}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return {@code true} if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回值表示是否更新成功
public final boolean weakCompareAndSetRelease(V expectedValue, V newValue) {
return VALUE.weakCompareAndSetRelease(this, expectedValue, newValue);
}
/**
* Possibly atomically sets the value to {@code newValue}
* if the current value {@code == expectedValue},
* with memory effects as specified by
* {@link VarHandle#weakCompareAndSet}.
*
* @param expectedValue the expected value
* @param newValue the new value
*
* @return {@code true} if successful
*
* @since 9
*/
// 如果当前值为expectedValue,则将其原子地更新为newValue,返回值表示是否更新成功
public final boolean weakCompareAndSetVolatile(V expectedValue, V newValue) {
return VALUE.weakCompareAndSet(this, expectedValue, newValue);
}
/*▲ 比较并更新-2 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ lambda操作 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Atomically updates (with memory effects as specified by {@link
* VarHandle#compareAndSet}) the current value with the results of
* applying the given function, returning the previous value. The
* function should be side-effect-free, since it may be re-applied
* when attempted updates fail due to contention among threads.
*
* @param updateFunction a side-effect-free function
*
* @return the previous value
*
* @since 1.8
*/
// 对旧值执行给定的操作。如果操作成功,则返回旧值(旧值会动态变化)
public final V getAndUpdate(UnaryOperator<V> updateFunction) {
V prev = get(), next = null;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = updateFunction.apply(prev);
if(weakCompareAndSetVolatile(prev, next))
return prev;
haveNext = (prev == (prev = get()));
}
}
/**
* Atomically updates (with memory effects as specified by {@link
* VarHandle#compareAndSet}) the current value with the results of
* applying the given function, returning the updated value. The
* function should be side-effect-free, since it may be re-applied
* when attempted updates fail due to contention among threads.
*
* @param updateFunction a side-effect-free function
*
* @return the updated value
*
* @since 1.8
*/
// 对旧值执行给定的操作。如果操作成功,则返回操作后的值(旧值会动态变化)
public final V updateAndGet(UnaryOperator<V> updateFunction) {
V prev = get(), next = null;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = updateFunction.apply(prev);
if(weakCompareAndSetVolatile(prev, next))
return next;
haveNext = (prev == (prev = get()));
}
}
/**
* Atomically updates (with memory effects as specified by {@link
* VarHandle#compareAndSet}) the current value with the results of
* applying the given function to the current and given values,
* returning the previous value. The function should be
* side-effect-free, since it may be re-applied when attempted
* updates fail due to contention among threads. The function is
* applied with the current value as its first argument, and the
* given update as the second argument.
*
* @param x the update value
* @param accumulatorFunction a side-effect-free function of two arguments
*
* @return the previous value
*
* @since 1.8
*/
// 对旧值执行给定的操作。如果操作成功,则返回旧值(旧值会动态变化)
public final V getAndAccumulate(V x, BinaryOperator<V> accumulatorFunction) {
V prev = get(), next = null;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = accumulatorFunction.apply(prev, x);
if(weakCompareAndSetVolatile(prev, next))
return prev;
haveNext = (prev == (prev = get()));
}
}
/**
* Atomically updates (with memory effects as specified by {@link
* VarHandle#compareAndSet}) the current value with the results of
* applying the given function to the current and given values,
* returning the updated value. The function should be
* side-effect-free, since it may be re-applied when attempted
* updates fail due to contention among threads. The function is
* applied with the current value as its first argument, and the
* given update as the second argument.
*
* @param x the update value
* @param accumulatorFunction a side-effect-free function of two arguments
*
* @return the updated value
*
* @since 1.8
*/
// 对旧值执行给定的操作。如果操作成功,则返回操作后的值(旧值会动态变化)
public final V accumulateAndGet(V x, BinaryOperator<V> accumulatorFunction) {
V prev = get(), next = null;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = accumulatorFunction.apply(prev, x);
if(weakCompareAndSetVolatile(prev, next))
return next;
haveNext = (prev == (prev = get()));
}
}
/*▲ lambda操作 ████████████████████████████████████████████████████████████████████████████████┛ */
/**
* Returns the String representation of the current value.
*
* @return the String representation of the current value
*/
public String toString() {
return String.valueOf(get());
}
}