jdk/src/share/classes/java/util/concurrent/atomic/AtomicReferenceArray.java
author dl
Wed, 12 Oct 2011 16:33:48 +0100
changeset 11892 1b260c532b70
parent 9242 ef138d47df58
child 11902 a94ba35d9c4a
permissions -rw-r--r--
7082299: AtomicReferenceArray should ensure that array is Object[] Reviewed-by: chegar, dholmes, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5169
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5169
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5169
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5169
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5169
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Expert Group and released to the public domain, as explained at
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 7976
diff changeset
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
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
package java.util.concurrent.atomic;
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    37
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    38
import java.lang.reflect.Array;
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    39
import java.util.Arrays;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.misc.Unsafe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * An array of object references in which elements may be updated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * atomically.  See the {@link java.util.concurrent.atomic} package
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * specification for description of the properties of atomic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * variables.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * @param <E> The base class of elements held in this array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
public class AtomicReferenceArray<E> implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    private static final long serialVersionUID = -6209656149925076980L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    54
    private static final Unsafe unsafe;
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    55
    private static final int base;
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    56
    private static final int shift;
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    57
    private static final long arrayFieldOffset;
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    58
    private final Object[] array; // must have exact type Object[]
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    60
    static {
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    61
        int scale;
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    62
        try {
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    63
            unsafe = Unsafe.getUnsafe();
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    64
            arrayFieldOffset = unsafe.objectFieldOffset
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    65
                (AtomicReferenceArray.class.getDeclaredField("array"));
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    66
            base = unsafe.arrayBaseOffset(Object[].class);
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    67
            scale = unsafe.arrayIndexScale(Object[].class);
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    68
        } catch (Exception e) {
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    69
            throw new Error(e);
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
    70
        }
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    71
        if ((scale & (scale - 1)) != 0)
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    72
            throw new Error("data type scale not a power of two");
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    73
        shift = 31 - Integer.numberOfLeadingZeros(scale);
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    74
    }
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    75
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    76
    private long checkedByteOffset(int i) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        if (i < 0 || i >= array.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            throw new IndexOutOfBoundsException("index " + i);
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    79
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    80
        return byteOffset(i);
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    81
    }
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    82
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    83
    private static long byteOffset(int i) {
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    84
        return ((long) i << shift) + base;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    88
     * Creates a new AtomicReferenceArray of the given length, with all
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    89
     * elements initially null.
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
    90
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @param length the length of the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public AtomicReferenceArray(int length) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        array = new Object[length];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Creates a new AtomicReferenceArray with the same length as, and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * all elements copied from, the given array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * @param array the array to copy elements from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * @throws NullPointerException if array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public AtomicReferenceArray(E[] array) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   105
        // Visibility guaranteed by final field guarantees
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   106
        this.array = Arrays.copyOf(array, array.length, Object[].class);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * Returns the length of the array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @return the length of the array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    public final int length() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        return array.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * Gets the current value at position {@code i}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @param i the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @return the current value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    public final E get(int i) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   125
        return getRaw(checkedByteOffset(i));
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   126
    }
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   127
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   128
    private E getRaw(long offset) {
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   129
        return (E) unsafe.getObjectVolatile(array, offset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * Sets the element at position {@code i} to the given value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @param i the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public final void set(int i, E newValue) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   139
        unsafe.putObjectVolatile(array, checkedByteOffset(i), newValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Eventually sets the element at position {@code i} to the given value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @param i the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    public final void lazySet(int i, E newValue) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   150
        unsafe.putOrderedObject(array, checkedByteOffset(i), newValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
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
     * Atomically sets the element at position {@code i} to the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     * value and returns the old value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @param i the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public final E getAndSet(int i, E newValue) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   163
        long offset = checkedByteOffset(i);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        while (true) {
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   165
            E current = getRaw(offset);
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   166
            if (compareAndSetRaw(offset, current, newValue))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                return current;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Atomically sets the element at position {@code i} to the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * updated value if the current value {@code ==} the expected value.
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   174
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * @param i the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * @param expect the expected value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * @param update the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * @return true if successful. False return indicates that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * the actual value was not equal to the expected value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    public final boolean compareAndSet(int i, E expect, E update) {
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   182
        return compareAndSetRaw(checkedByteOffset(i), expect, update);
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   183
    }
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   184
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   185
    private boolean compareAndSetRaw(long offset, E expect, E update) {
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   186
        return unsafe.compareAndSwapObject(array, offset, expect, update);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * Atomically sets the element at position {@code i} to the given
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * updated value if the current value {@code ==} the expected value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * <p>May <a href="package-summary.html#Spurious">fail spuriously</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * and does not provide ordering guarantees, so is only rarely an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * appropriate alternative to {@code compareAndSet}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @param i the index
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * @param expect the expected value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * @param update the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @return true if successful.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    public final boolean weakCompareAndSet(int i, E expect, E update) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        return compareAndSet(i, expect, update);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * Returns the String representation of the current values of array.
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   208
     * @return the String representation of the current values of array
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    public String toString() {
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   211
        int iMax = array.length - 1;
7976
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   212
        if (iMax == -1)
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   213
            return "[]";
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   214
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   215
        StringBuilder b = new StringBuilder();
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   216
        b.append('[');
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   217
        for (int i = 0; ; i++) {
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   218
            b.append(getRaw(byteOffset(i)));
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   219
            if (i == iMax)
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   220
                return b.append(']').toString();
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   221
            b.append(',').append(' ');
f273c0d04215 7005424: Resync java.util.concurrent classes with Dougs CVS - Jan 2011
dl
parents: 5506
diff changeset
   222
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
11892
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   225
    /**
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   226
     * Reconstitutes the instance from a stream (that is, deserializes it).
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   227
     * @param s the stream
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   228
     */
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   229
    private void readObject(java.io.ObjectInputStream s)
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   230
        throws java.io.IOException, ClassNotFoundException {
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   231
        // Note: This must be changed if any additional fields are defined
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   232
        Object a = s.readFields().get("array", null);
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   233
        if (a == null || !a.getClass().isArray())
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   234
            throw new java.io.InvalidObjectException("Not array type");
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   235
        if (a.getClass() != Object[].class)
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   236
            a = Arrays.copyOf((Object[])a, Array.getLength(a), Object[].class);
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   237
        unsafe.putObjectVolatile(this, arrayFieldOffset, a);
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   238
    }
1b260c532b70 7082299: AtomicReferenceArray should ensure that array is Object[]
dl
parents: 9242
diff changeset
   239
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
}