forked from kangjianwei/LearningJDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAtomicLong.java
681 lines (603 loc) · 26.2 KB
/
AtomicLong.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
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
/*
* 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.VarHandle;
import java.util.function.LongBinaryOperator;
import java.util.function.LongUnaryOperator;
/**
* A {@code long} value that may be updated atomically. See the
* {@link VarHandle} specification for descriptions of the properties
* of atomic accesses. An {@code AtomicLong} is used in applications
* such as atomically incremented sequence numbers, and cannot be used
* as a replacement for a {@link java.lang.Long}. However, this class
* does extend {@code Number} to allow uniform access by tools and
* utilities that deal with numerically-based classes.
*
* @author Doug Lea
* @since 1.5
*/
// Long类型(原子性)
public class AtomicLong extends Number implements Serializable {
private static final long serialVersionUID = 1927816293512124184L;
/**
* Records whether the underlying JVM supports lockless compareAndSet for longs.
* While the intrinsic compareAndSetLong method works in either case,
* some constructions should be handled at Java level to avoid locking user-visible locks.
*/
// 记录JVM是否支持long的无锁compareAndSet
static final boolean VM_SUPPORTS_LONG_CAS = VMSupportsCS8();
// This class intended to be implemented using VarHandles, but there are unresolved cyclic startup dependencies.
private static final jdk.internal.misc.Unsafe U = jdk.internal.misc.Unsafe.getUnsafe();
private volatile long value;
// 存储字段value在JVM中的偏移地址
private static final long VALUE = U.objectFieldOffset(AtomicLong.class, "value");
/*▼ 构造器 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Creates a new AtomicLong with initial value {@code 0}.
*/
// 构造原子变量,其值初始化为0
public AtomicLong() {
}
/**
* Creates a new AtomicLong with the given initial value.
*
* @param initialValue the initial value
*/
// 构造原子变量,其值初始化为initialValue
public AtomicLong(long initialValue) {
value = initialValue;
}
/*▲ 构造器 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 获取值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getVolatile}.
*
* @return the current value
*/
// 返回原子变量的值
public final long get() {
return value;
}
/**
* Returns the current value of this {@code AtomicLong} as an {@code int}
* after a narrowing primitive conversion,
* with memory effects as specified by {@link VarHandle#getVolatile}.
*
* @jls 5.1.3 Narrowing Primitive Conversions
*/
// 以int形式返回原子变量的值
public int intValue() {
return (int) get();
}
/**
* Returns the current value of this {@code AtomicLong} as a {@code long},
* with memory effects as specified by {@link VarHandle#getVolatile}.
* Equivalent to {@link #get()}.
*/
// 以long形式返回原子变量的值
public long longValue() {
return get();
}
/**
* Returns the current value of this {@code AtomicLong} as a {@code float}
* after a widening primitive conversion,
* with memory effects as specified by {@link VarHandle#getVolatile}.
*
* @jls 5.1.2 Widening Primitive Conversions
*/
// 以float形式返回原子变量的值
public float floatValue() {
return (float) get();
}
/**
* Returns the current value of this {@code AtomicLong} as a {@code double}
* after a widening primitive conversion,
* with memory effects as specified by {@link VarHandle#getVolatile}.
*
* @jls 5.1.2 Widening Primitive Conversions
*/
// 以double形式返回原子变量的值
public double doubleValue() {
return (double) get();
}
/**
* 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 long getPlain() {
return U.getLong(this, VALUE);
}
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getOpaque}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子变量的值
public final long getOpaque() {
return U.getLongOpaque(this, VALUE);
}
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getAcquire}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子变量的值
public final long getAcquire() {
return U.getLongAcquire(this, VALUE);
}
/*▲ 获取值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 设置值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Sets the value to {@code newValue},
* with memory effects as specified by {@link VarHandle#setVolatile}.
*
* @param newValue the new value
*/
// 设置原子变量的值
public final void set(long newValue) {
// See JDK-8180620: Clarify VarHandle mixed-access subtleties
U.putLongVolatile(this, 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(long newValue) {
U.putLong(this, VALUE, 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(long newValue) {
U.putLongOpaque(this, VALUE, 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(long newValue) {
U.putLongRelease(this, VALUE, 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(long newValue) {
U.putLongRelease(this, VALUE, 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,并返回旧值
public final long getAndSet(long newValue) {
return U.getAndSetLong(this, VALUE, 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 long compareAndExchange(long expectedValue, long newValue) {
return U.compareAndExchangeLong(this, VALUE, 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 long compareAndExchangeAcquire(long expectedValue, long newValue) {
return U.compareAndExchangeLongAcquire(this, VALUE, 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 long compareAndExchangeRelease(long expectedValue, long newValue) {
return U.compareAndExchangeLongRelease(this, VALUE, 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(long expectedValue, long newValue) {
return U.compareAndSetLong(this, VALUE, 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(long expectedValue, long newValue) {
return U.weakCompareAndSetLongPlain(this, VALUE, 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(long expectedValue, long newValue) {
return U.weakCompareAndSetLongPlain(this, VALUE, 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(long expectedValue, long newValue) {
return U.weakCompareAndSetLongAcquire(this, VALUE, 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(long expectedValue, long newValue) {
return U.weakCompareAndSetLongRelease(this, VALUE, 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(long expectedValue, long newValue) {
return U.weakCompareAndSetLong(this, VALUE, expectedValue, newValue);
}
/*▲ 比较并更新-2 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 增减值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Atomically adds the given value to the current value,
* with memory effects as specified by {@link VarHandle#getAndAdd}.
*
* @param delta the value to add
*
* @return the previous value
*/
// 原子地增加delta,并返回旧值
public final long getAndAdd(long delta) {
return U.getAndAddLong(this, VALUE, delta);
}
/**
* Atomically adds the given value to the current value,
* with memory effects as specified by {@link VarHandle#getAndAdd}.
*
* @param delta the value to add
*
* @return the updated value
*/
// 原子地增加delta,并返回新值
public final long addAndGet(long delta) {
return U.getAndAddLong(this, VALUE, delta) + delta;
}
/**
* Atomically increments the current value,
* with memory effects as specified by {@link VarHandle#getAndAdd}.
*
* <p>Equivalent to {@code getAndAdd(1)}.
*
* @return the previous value
*/
// 原子地递增,并返回旧值
public final long getAndIncrement() {
return U.getAndAddLong(this, VALUE, 1L);
}
/**
* Atomically increments the current value,
* with memory effects as specified by {@link VarHandle#getAndAdd}.
*
* <p>Equivalent to {@code addAndGet(1)}.
*
* @return the updated value
*/
// 原子地递增,并返回新值
public final long incrementAndGet() {
return U.getAndAddLong(this, VALUE, 1L) + 1L;
}
/**
* Atomically decrements the current value,
* with memory effects as specified by {@link VarHandle#getAndAdd}.
*
* <p>Equivalent to {@code getAndAdd(-1)}.
*
* @return the previous value
*/
// 原子地递减,并返回旧值
public final long getAndDecrement() {
return U.getAndAddLong(this, VALUE, -1L);
}
/**
* Atomically decrements the current value,
* with memory effects as specified by {@link VarHandle#getAndAdd}.
*
* <p>Equivalent to {@code addAndGet(-1)}.
*
* @return the updated value
*/
// 原子地递减,并返回新值
public final long decrementAndGet() {
return U.getAndAddLong(this, VALUE, -1L) - 1L;
}
/*▲ 增减值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 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 long getAndUpdate(LongUnaryOperator updateFunction) {
long prev = get(), next = 0L;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = updateFunction.applyAsLong(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 long updateAndGet(LongUnaryOperator updateFunction) {
long prev = get(), next = 0L;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = updateFunction.applyAsLong(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 long getAndAccumulate(long x, LongBinaryOperator accumulatorFunction) {
long prev = get(), next = 0L;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = accumulatorFunction.applyAsLong(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 long accumulateAndGet(long x, LongBinaryOperator accumulatorFunction) {
long prev = get(), next = 0L;
for(boolean haveNext = false; ; ) {
if(!haveNext)
next = accumulatorFunction.applyAsLong(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 Long.toString(get());
}
/**
* Returns whether underlying JVM supports lockless CompareAndSet
* for longs. Called only once and cached in VM_SUPPORTS_LONG_CAS.
*/
// 判断JVM是否支持long元素的无锁CompareAndSet。仅调用一次,并缓存在VM_SUPPORTS_LONG_CAS中。
private static native boolean VMSupportsCS8();
}