rt/emul/compact/src/main/java/java/util/concurrent/atomic/AtomicIntegerArray.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
jtulach@1334
     1
/*
jtulach@1334
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jtulach@1334
     3
 *
jtulach@1334
     4
 * This code is free software; you can redistribute it and/or modify it
jtulach@1334
     5
 * under the terms of the GNU General Public License version 2 only, as
jtulach@1334
     6
 * published by the Free Software Foundation.  Oracle designates this
jtulach@1334
     7
 * particular file as subject to the "Classpath" exception as provided
jtulach@1334
     8
 * by Oracle in the LICENSE file that accompanied this code.
jtulach@1334
     9
 *
jtulach@1334
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
jtulach@1334
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jtulach@1334
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jtulach@1334
    13
 * version 2 for more details (a copy is included in the LICENSE file that
jtulach@1334
    14
 * accompanied this code).
jtulach@1334
    15
 *
jtulach@1334
    16
 * You should have received a copy of the GNU General Public License version
jtulach@1334
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
jtulach@1334
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jtulach@1334
    19
 *
jtulach@1334
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jtulach@1334
    21
 * or visit www.oracle.com if you need additional information or have any
jtulach@1334
    22
 * questions.
jtulach@1334
    23
 */
jtulach@1334
    24
jtulach@1334
    25
/*
jtulach@1334
    26
 * This file is available under and governed by the GNU General Public
jtulach@1334
    27
 * License version 2 only, as published by the Free Software Foundation.
jtulach@1334
    28
 * However, the following notice accompanied the original version of this
jtulach@1334
    29
 * file:
jtulach@1334
    30
 *
jtulach@1334
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
jtulach@1334
    32
 * Expert Group and released to the public domain, as explained at
jtulach@1334
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
jtulach@1334
    34
 */
jtulach@1334
    35
jtulach@1334
    36
package java.util.concurrent.atomic;
jtulach@1334
    37
jtulach@1334
    38
/**
jtulach@1334
    39
 * An {@code int} array in which elements may be updated atomically.
jtulach@1334
    40
 * See the {@link java.util.concurrent.atomic} package
jtulach@1334
    41
 * specification for description of the properties of atomic
jtulach@1334
    42
 * variables.
jtulach@1334
    43
 * @since 1.5
jtulach@1334
    44
 * @author Doug Lea
jtulach@1334
    45
 */
jtulach@1334
    46
public class AtomicIntegerArray implements java.io.Serializable {
jtulach@1334
    47
    private static final long serialVersionUID = 2862133569453604235L;
jtulach@1334
    48
jtulach@1334
    49
    private final int[] array;
jtulach@1334
    50
jtulach@1334
    51
    /**
jtulach@1334
    52
     * Creates a new AtomicIntegerArray of the given length, with all
jtulach@1334
    53
     * elements initially zero.
jtulach@1334
    54
     *
jtulach@1334
    55
     * @param length the length of the array
jtulach@1334
    56
     */
jtulach@1334
    57
    public AtomicIntegerArray(int length) {
jtulach@1334
    58
        array = new int[length];
jtulach@1334
    59
    }
jtulach@1334
    60
jtulach@1334
    61
    /**
jtulach@1334
    62
     * Creates a new AtomicIntegerArray with the same length as, and
jtulach@1334
    63
     * all elements copied from, the given array.
jtulach@1334
    64
     *
jtulach@1334
    65
     * @param array the array to copy elements from
jtulach@1334
    66
     * @throws NullPointerException if array is null
jtulach@1334
    67
     */
jtulach@1334
    68
    public AtomicIntegerArray(int[] array) {
jtulach@1334
    69
        // Visibility guaranteed by final field guarantees
jtulach@1334
    70
        this.array = array.clone();
jtulach@1334
    71
    }
jtulach@1334
    72
jtulach@1334
    73
    /**
jtulach@1334
    74
     * Returns the length of the array.
jtulach@1334
    75
     *
jtulach@1334
    76
     * @return the length of the array
jtulach@1334
    77
     */
jtulach@1334
    78
    public final int length() {
jtulach@1334
    79
        return array.length;
jtulach@1334
    80
    }
jtulach@1334
    81
jtulach@1334
    82
    /**
jtulach@1334
    83
     * Gets the current value at position {@code i}.
jtulach@1334
    84
     *
jtulach@1334
    85
     * @param i the index
jtulach@1334
    86
     * @return the current value
jtulach@1334
    87
     */
jtulach@1334
    88
    public final int get(int i) {
jaroslav@1338
    89
        return array[i];
jtulach@1334
    90
    }
jtulach@1334
    91
jtulach@1334
    92
    /**
jtulach@1334
    93
     * Sets the element at position {@code i} to the given value.
jtulach@1334
    94
     *
jtulach@1334
    95
     * @param i the index
jtulach@1334
    96
     * @param newValue the new value
jtulach@1334
    97
     */
jtulach@1334
    98
    public final void set(int i, int newValue) {
jaroslav@1338
    99
        array[i] = newValue;
jtulach@1334
   100
    }
jtulach@1334
   101
jtulach@1334
   102
    /**
jtulach@1334
   103
     * Eventually sets the element at position {@code i} to the given value.
jtulach@1334
   104
     *
jtulach@1334
   105
     * @param i the index
jtulach@1334
   106
     * @param newValue the new value
jtulach@1334
   107
     * @since 1.6
jtulach@1334
   108
     */
jtulach@1334
   109
    public final void lazySet(int i, int newValue) {
jaroslav@1338
   110
        array[i] = newValue;
jtulach@1334
   111
    }
jtulach@1334
   112
jtulach@1334
   113
    /**
jtulach@1334
   114
     * Atomically sets the element at position {@code i} to the given
jtulach@1334
   115
     * value and returns the old value.
jtulach@1334
   116
     *
jtulach@1334
   117
     * @param i the index
jtulach@1334
   118
     * @param newValue the new value
jtulach@1334
   119
     * @return the previous value
jtulach@1334
   120
     */
jtulach@1334
   121
    public final int getAndSet(int i, int newValue) {
jaroslav@1338
   122
        int current = array[i];
jaroslav@1338
   123
        array[i] = newValue;
jaroslav@1338
   124
        return current;
jtulach@1334
   125
    }
jtulach@1334
   126
jtulach@1334
   127
    /**
jtulach@1334
   128
     * Atomically sets the element at position {@code i} to the given
jtulach@1334
   129
     * updated value if the current value {@code ==} the expected value.
jtulach@1334
   130
     *
jtulach@1334
   131
     * @param i the index
jtulach@1334
   132
     * @param expect the expected value
jtulach@1334
   133
     * @param update the new value
jtulach@1334
   134
     * @return true if successful. False return indicates that
jtulach@1334
   135
     * the actual value was not equal to the expected value.
jtulach@1334
   136
     */
jtulach@1334
   137
    public final boolean compareAndSet(int i, int expect, int update) {
jaroslav@1338
   138
        if (array[i] == expect) {
jaroslav@1338
   139
            array[i] = update;
jaroslav@1338
   140
            return true;
jaroslav@1338
   141
        } else {
jaroslav@1338
   142
            return false;
jaroslav@1338
   143
        }
jtulach@1334
   144
    }
jtulach@1334
   145
jtulach@1334
   146
    /**
jtulach@1334
   147
     * Atomically sets the element at position {@code i} to the given
jtulach@1334
   148
     * updated value if the current value {@code ==} the expected value.
jtulach@1334
   149
     *
jtulach@1334
   150
     * <p>May <a href="package-summary.html#Spurious">fail spuriously</a>
jtulach@1334
   151
     * and does not provide ordering guarantees, so is only rarely an
jtulach@1334
   152
     * appropriate alternative to {@code compareAndSet}.
jtulach@1334
   153
     *
jtulach@1334
   154
     * @param i the index
jtulach@1334
   155
     * @param expect the expected value
jtulach@1334
   156
     * @param update the new value
jtulach@1334
   157
     * @return true if successful.
jtulach@1334
   158
     */
jtulach@1334
   159
    public final boolean weakCompareAndSet(int i, int expect, int update) {
jtulach@1334
   160
        return compareAndSet(i, expect, update);
jtulach@1334
   161
    }
jtulach@1334
   162
jtulach@1334
   163
    /**
jtulach@1334
   164
     * Atomically increments by one the element at index {@code i}.
jtulach@1334
   165
     *
jtulach@1334
   166
     * @param i the index
jtulach@1334
   167
     * @return the previous value
jtulach@1334
   168
     */
jtulach@1334
   169
    public final int getAndIncrement(int i) {
jtulach@1334
   170
        return getAndAdd(i, 1);
jtulach@1334
   171
    }
jtulach@1334
   172
jtulach@1334
   173
    /**
jtulach@1334
   174
     * Atomically decrements by one the element at index {@code i}.
jtulach@1334
   175
     *
jtulach@1334
   176
     * @param i the index
jtulach@1334
   177
     * @return the previous value
jtulach@1334
   178
     */
jtulach@1334
   179
    public final int getAndDecrement(int i) {
jtulach@1334
   180
        return getAndAdd(i, -1);
jtulach@1334
   181
    }
jtulach@1334
   182
jtulach@1334
   183
    /**
jtulach@1334
   184
     * Atomically adds the given value to the element at index {@code i}.
jtulach@1334
   185
     *
jtulach@1334
   186
     * @param i the index
jtulach@1334
   187
     * @param delta the value to add
jtulach@1334
   188
     * @return the previous value
jtulach@1334
   189
     */
jtulach@1334
   190
    public final int getAndAdd(int i, int delta) {
jaroslav@1338
   191
        int v = array[i];
jaroslav@1338
   192
        array[i] += delta;
jaroslav@1338
   193
        return v;
jtulach@1334
   194
    }
jtulach@1334
   195
jtulach@1334
   196
    /**
jtulach@1334
   197
     * Atomically increments by one the element at index {@code i}.
jtulach@1334
   198
     *
jtulach@1334
   199
     * @param i the index
jtulach@1334
   200
     * @return the updated value
jtulach@1334
   201
     */
jtulach@1334
   202
    public final int incrementAndGet(int i) {
jtulach@1334
   203
        return addAndGet(i, 1);
jtulach@1334
   204
    }
jtulach@1334
   205
jtulach@1334
   206
    /**
jtulach@1334
   207
     * Atomically decrements by one the element at index {@code i}.
jtulach@1334
   208
     *
jtulach@1334
   209
     * @param i the index
jtulach@1334
   210
     * @return the updated value
jtulach@1334
   211
     */
jtulach@1334
   212
    public final int decrementAndGet(int i) {
jtulach@1334
   213
        return addAndGet(i, -1);
jtulach@1334
   214
    }
jtulach@1334
   215
jtulach@1334
   216
    /**
jtulach@1334
   217
     * Atomically adds the given value to the element at index {@code i}.
jtulach@1334
   218
     *
jtulach@1334
   219
     * @param i the index
jtulach@1334
   220
     * @param delta the value to add
jtulach@1334
   221
     * @return the updated value
jtulach@1334
   222
     */
jtulach@1334
   223
    public final int addAndGet(int i, int delta) {
jaroslav@1338
   224
        array[i] += delta;
jaroslav@1338
   225
        return array[i];
jtulach@1334
   226
    }
jtulach@1334
   227
jtulach@1334
   228
    /**
jtulach@1334
   229
     * Returns the String representation of the current values of array.
jtulach@1334
   230
     * @return the String representation of the current values of array
jtulach@1334
   231
     */
jtulach@1334
   232
    public String toString() {
jtulach@1334
   233
        int iMax = array.length - 1;
jtulach@1334
   234
        if (iMax == -1)
jtulach@1334
   235
            return "[]";
jtulach@1334
   236
jtulach@1334
   237
        StringBuilder b = new StringBuilder();
jtulach@1334
   238
        b.append('[');
jtulach@1334
   239
        for (int i = 0; ; i++) {
jaroslav@1338
   240
            b.append(get(i));
jtulach@1334
   241
            if (i == iMax)
jtulach@1334
   242
                return b.append(']').toString();
jtulach@1334
   243
            b.append(',').append(' ');
jtulach@1334
   244
        }
jtulach@1334
   245
    }
jtulach@1334
   246
jtulach@1334
   247
}