forked from kangjianwei/LearningJDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AtomicBoolean.java
422 lines (370 loc) · 16.3 KB
/
AtomicBoolean.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
/*
* 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;
/**
* A {@code boolean} value that may be updated atomically. See the
* {@link VarHandle} specification for descriptions of the properties
* of atomic accesses. An {@code AtomicBoolean} is used in
* applications such as atomically updated flags, and cannot be used
* as a replacement for a {@link java.lang.Boolean}.
*
* @author Doug Lea
* @since 1.5
*/
// 布尔类型(原子性)
public class AtomicBoolean implements Serializable {
private static final long serialVersionUID = 4654671469794556979L;
private volatile int value;
// 存储字段value在JVM中的偏移地址
private static final VarHandle VALUE;
static {
try {
MethodHandles.Lookup l = MethodHandles.lookup();
VALUE = l.findVarHandle(AtomicBoolean.class, "value", int.class);
} catch(ReflectiveOperationException e) {
throw new ExceptionInInitializerError(e);
}
}
/*▼ 构造器 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Creates a new {@code AtomicBoolean} with initial value {@code false}.
*/
// 构造原子变量,其值初始化为false
public AtomicBoolean() {
}
/**
* Creates a new {@code AtomicBoolean} with the given initial value.
*
* @param initialValue the initial value
*/
// 构造原子变量,其值初始化为initialValue
public AtomicBoolean(boolean initialValue) {
value = initialValue ? 1 : 0;
}
/*▲ 构造器 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 获取值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getVolatile}.
*
* @return the current value
*/
// 返回原子变量的值
public final boolean get() {
return value != 0;
}
/**
* 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 boolean getPlain() {
return (int) VALUE.get(this) != 0;
}
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getOpaque}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子变量的值
public final boolean getOpaque() {
return (int) VALUE.getOpaque(this) != 0;
}
/**
* Returns the current value,
* with memory effects as specified by {@link VarHandle#getAcquire}.
*
* @return the value
*
* @since 9
*/
// 根据JVM地址偏移量返回原子变量的值
public final boolean getAcquire() {
return (int) VALUE.getAcquire(this) != 0;
}
/*▲ 获取值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 设置值 ████████████████████████████████████████████████████████████████████████████████┓ */
/**
* Sets the value to {@code newValue},
* with memory effects as specified by {@link VarHandle#setVolatile}.
*
* @param newValue the new value
*/
// 设置原子变量的值
public final void set(boolean newValue) {
value = newValue ? 1 : 0;
}
/**
* 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(boolean newValue) {
VALUE.set(this, newValue ? 1 : 0);
}
/**
* 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(boolean newValue) {
VALUE.setOpaque(this, newValue ? 1 : 0);
}
/**
* 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(boolean newValue) {
VALUE.setRelease(this, newValue ? 1 : 0);
}
/**
* 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(boolean newValue) {
VALUE.setRelease(this, (newValue ? 1 : 0));
}
/**
* 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 boolean getAndSet(boolean newValue) {
return (int) VALUE.getAndSet(this, (newValue ? 1 : 0)) != 0;
}
/*▲ 设置值 ████████████████████████████████████████████████████████████████████████████████┛ */
/*▼ 比较并更新-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 boolean compareAndExchange(boolean expectedValue, boolean newValue) {
return (int) VALUE.compareAndExchange(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0)) != 0;
}
/**
* 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 boolean compareAndExchangeAcquire(boolean expectedValue, boolean newValue) {
return (int) VALUE.compareAndExchangeAcquire(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0)) != 0;
}
/**
* 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 boolean compareAndExchangeRelease(boolean expectedValue, boolean newValue) {
return (int) VALUE.compareAndExchangeRelease(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0)) != 0;
}
/*▲ 比较并更新-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(boolean expectedValue, boolean newValue) {
return VALUE.compareAndSet(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0));
}
/**
* 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 boolean weakCompareAndSetPlain(boolean expectedValue, boolean newValue) {
return VALUE.weakCompareAndSetPlain(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0));
}
/**
* 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 boolean weakCompareAndSet(boolean expectedValue, boolean newValue) {
return VALUE.weakCompareAndSetPlain(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0));
}
/**
* 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(boolean expectedValue, boolean newValue) {
return VALUE.weakCompareAndSetAcquire(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0));
}
/**
* 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(boolean expectedValue, boolean newValue) {
return VALUE.weakCompareAndSetRelease(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0));
}
/**
* 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(boolean expectedValue, boolean newValue) {
return VALUE.weakCompareAndSet(this, (expectedValue ? 1 : 0), (newValue ? 1 : 0));
}
/*▲ 比较并更新-2 ████████████████████████████████████████████████████████████████████████████████┛ */
/**
* Returns the String representation of the current value.
*
* @return the String representation of the current value
*/
public String toString() {
return Boolean.toString(get());
}
}