rt/emul/compact/src/main/java/java/util/concurrent/atomic/AtomicReferenceArray.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 04 Oct 2013 10:52:01 +0200
changeset 1338 aa70afac4eca
parent 1334 588d5bf7a560
permissions -rw-r--r--
Concurrency utilities
     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
     6  * published by the Free Software Foundation.  Oracle designates this
     7  * particular file as subject to the "Classpath" exception as provided
     8  * by Oracle in the LICENSE file that accompanied this code.
     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  *
    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.
    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/publicdomain/zero/1.0/
    34  */
    35 
    36 package java.util.concurrent.atomic;
    37 
    38 /**
    39  * An array of object references in which elements may be updated
    40  * atomically.  See the {@link java.util.concurrent.atomic} package
    41  * specification for description of the properties of atomic
    42  * variables.
    43  * @since 1.5
    44  * @author Doug Lea
    45  * @param <E> The base class of elements held in this array
    46  */
    47 public class AtomicReferenceArray<E> implements java.io.Serializable {
    48     private static final long serialVersionUID = -6209656149925076980L;
    49 
    50     private final Object[] array;
    51 
    52     /**
    53      * Creates a new AtomicReferenceArray of the given length, with all
    54      * elements initially null.
    55      *
    56      * @param length the length of the array
    57      */
    58     public AtomicReferenceArray(int length) {
    59         array = new Object[length];
    60     }
    61 
    62     /**
    63      * Creates a new AtomicReferenceArray with the same length as, and
    64      * all elements copied from, the given array.
    65      *
    66      * @param array the array to copy elements from
    67      * @throws NullPointerException if array is null
    68      */
    69     public AtomicReferenceArray(E[] array) {
    70         // Visibility guaranteed by final field guarantees
    71         this.array = array.clone();
    72     }
    73 
    74     /**
    75      * Returns the length of the array.
    76      *
    77      * @return the length of the array
    78      */
    79     public final int length() {
    80         return array.length;
    81     }
    82 
    83     /**
    84      * Gets the current value at position {@code i}.
    85      *
    86      * @param i the index
    87      * @return the current value
    88      */
    89     public final E get(int i) {
    90         return (E)array[i];
    91     }
    92 
    93     /**
    94      * Sets the element at position {@code i} to the given value.
    95      *
    96      * @param i the index
    97      * @param newValue the new value
    98      */
    99     public final void set(int i, E newValue) {
   100         array[i] = newValue;
   101     }
   102 
   103     /**
   104      * Eventually sets the element at position {@code i} to the given value.
   105      *
   106      * @param i the index
   107      * @param newValue the new value
   108      * @since 1.6
   109      */
   110     public final void lazySet(int i, E newValue) {
   111         array[i] = newValue;
   112     }
   113 
   114 
   115     /**
   116      * Atomically sets the element at position {@code i} to the given
   117      * value and returns the old value.
   118      *
   119      * @param i the index
   120      * @param newValue the new value
   121      * @return the previous value
   122      */
   123     public final E getAndSet(int i, E newValue) {
   124         E v = (E)array[i];
   125         array[i] = newValue;
   126         return v;
   127     }
   128 
   129     /**
   130      * Atomically sets the element at position {@code i} to the given
   131      * updated value if the current value {@code ==} the expected value.
   132      *
   133      * @param i the index
   134      * @param expect the expected value
   135      * @param update the new value
   136      * @return true if successful. False return indicates that
   137      * the actual value was not equal to the expected value.
   138      */
   139     public final boolean compareAndSet(int i, E expect, E update) {
   140         if (array[i] == expect) {
   141             array[i] = update;
   142             return true;
   143         } else {
   144             return false;
   145         }
   146     }
   147 
   148     /**
   149      * Atomically sets the element at position {@code i} to the given
   150      * updated value if the current value {@code ==} the expected value.
   151      *
   152      * <p>May <a href="package-summary.html#Spurious">fail spuriously</a>
   153      * and does not provide ordering guarantees, so is only rarely an
   154      * appropriate alternative to {@code compareAndSet}.
   155      *
   156      * @param i the index
   157      * @param expect the expected value
   158      * @param update the new value
   159      * @return true if successful.
   160      */
   161     public final boolean weakCompareAndSet(int i, E expect, E update) {
   162         return compareAndSet(i, expect, update);
   163     }
   164 
   165     /**
   166      * Returns the String representation of the current values of array.
   167      * @return the String representation of the current values of array
   168      */
   169     public String toString() {
   170            int iMax = array.length - 1;
   171         if (iMax == -1)
   172             return "[]";
   173 
   174         StringBuilder b = new StringBuilder();
   175         b.append('[');
   176         for (int i = 0; ; i++) {
   177             b.append(get(i));
   178             if (i == iMax)
   179                 return b.append(']').toString();
   180             b.append(',').append(' ');
   181         }
   182     }
   183 
   184 }