001/*
002 * Copyright (C) 2017 The Guava Authors
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
005 * in compliance with the License. You may obtain a copy of the License at
006 *
007 * http://www.apache.org/licenses/LICENSE-2.0
008 *
009 * Unless required by applicable law or agreed to in writing, software distributed under the License
010 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
011 * or implied. See the License for the specific language governing permissions and limitations under
012 * the License.
013 */
014
015package com.google.common.primitives;
016
017import static com.google.common.base.Preconditions.checkArgument;
018import static com.google.common.base.Preconditions.checkNotNull;
019
020import com.google.common.annotations.Beta;
021import com.google.common.annotations.GwtCompatible;
022import com.google.common.base.Preconditions;
023import com.google.errorprone.annotations.CanIgnoreReturnValue;
024import com.google.errorprone.annotations.CheckReturnValue;
025import com.google.errorprone.annotations.Immutable;
026import java.io.Serializable;
027import java.util.AbstractList;
028import java.util.Arrays;
029import java.util.Collection;
030import java.util.List;
031import java.util.RandomAccess;
032import java.util.Spliterator;
033import java.util.Spliterators;
034import java.util.function.IntConsumer;
035import java.util.stream.IntStream;
036import org.checkerframework.checker.nullness.qual.Nullable;
037
038/**
039 * An immutable array of {@code int} values, with an API resembling {@link List}.
040 *
041 * <p>Advantages compared to {@code int[]}:
042 *
043 * <ul>
044 *   <li>All the many well-known advantages of immutability (read <i>Effective Java</i>, third
045 *       edition, Item 17).
046 *   <li>Has the value-based (not identity-based) {@link #equals}, {@link #hashCode}, and {@link
047 *       #toString} behavior you expect.
048 *   <li>Offers useful operations beyond just {@code get} and {@code length}, so you don't have to
049 *       hunt through classes like {@link Arrays} and {@link Ints} for them.
050 *   <li>Supports a copy-free {@link #subArray} view, so methods that accept this type don't need to
051 *       add overloads that accept start and end indexes.
052 *   <li>Can be streamed without "breaking the chain": {@code foo.getBarInts().stream()...}.
053 *   <li>Access to all collection-based utilities via {@link #asList} (though at the cost of
054 *       allocating garbage).
055 * </ul>
056 *
057 * <p>Disadvantages compared to {@code int[]}:
058 *
059 * <ul>
060 *   <li>Memory footprint has a fixed overhead (about 24 bytes per instance).
061 *   <li><i>Some</i> construction use cases force the data to be copied (though several construction
062 *       APIs are offered that don't).
063 *   <li>Can't be passed directly to methods that expect {@code int[]} (though the most common
064 *       utilities do have replacements here).
065 *   <li>Dependency on {@code com.google.common} / Guava.
066 * </ul>
067 *
068 * <p>Advantages compared to {@link com.google.common.collect.ImmutableList ImmutableList}{@code
069 * <Integer>}:
070 *
071 * <ul>
072 *   <li>Improved memory compactness and locality.
073 *   <li>Can be queried without allocating garbage.
074 *   <li>Access to {@code IntStream} features (like {@link IntStream#sum}) using {@code stream()}
075 *       instead of the awkward {@code stream().mapToInt(v -> v)}.
076 * </ul>
077 *
078 * <p>Disadvantages compared to {@code ImmutableList<Integer>}:
079 *
080 * <ul>
081 *   <li>Can't be passed directly to methods that expect {@code Iterable}, {@code Collection}, or
082 *       {@code List} (though the most common utilities do have replacements here, and there is a
083 *       lazy {@link #asList} view).
084 * </ul>
085 *
086 * @since 22.0
087 */
088@Beta
089@GwtCompatible
090@Immutable
091public final class ImmutableIntArray implements Serializable {
092  private static final ImmutableIntArray EMPTY = new ImmutableIntArray(new int[0]);
093
094  /** Returns the empty array. */
095  public static ImmutableIntArray of() {
096    return EMPTY;
097  }
098
099  /** Returns an immutable array containing a single value. */
100  public static ImmutableIntArray of(int e0) {
101    return new ImmutableIntArray(new int[] {e0});
102  }
103
104  /** Returns an immutable array containing the given values, in order. */
105  public static ImmutableIntArray of(int e0, int e1) {
106    return new ImmutableIntArray(new int[] {e0, e1});
107  }
108
109  /** Returns an immutable array containing the given values, in order. */
110  public static ImmutableIntArray of(int e0, int e1, int e2) {
111    return new ImmutableIntArray(new int[] {e0, e1, e2});
112  }
113
114  /** Returns an immutable array containing the given values, in order. */
115  public static ImmutableIntArray of(int e0, int e1, int e2, int e3) {
116    return new ImmutableIntArray(new int[] {e0, e1, e2, e3});
117  }
118
119  /** Returns an immutable array containing the given values, in order. */
120  public static ImmutableIntArray of(int e0, int e1, int e2, int e3, int e4) {
121    return new ImmutableIntArray(new int[] {e0, e1, e2, e3, e4});
122  }
123
124  /** Returns an immutable array containing the given values, in order. */
125  public static ImmutableIntArray of(int e0, int e1, int e2, int e3, int e4, int e5) {
126    return new ImmutableIntArray(new int[] {e0, e1, e2, e3, e4, e5});
127  }
128
129  // TODO(kevinb): go up to 11?
130
131  /**
132   * Returns an immutable array containing the given values, in order.
133   *
134   * <p>The array {@code rest} must not be longer than {@code Integer.MAX_VALUE - 1}.
135   */
136  // Use (first, rest) so that `of(someIntArray)` won't compile (they should use copyOf), which is
137  // okay since we have to copy the just-created array anyway.
138  public static ImmutableIntArray of(int first, int... rest) {
139    checkArgument(
140        rest.length <= Integer.MAX_VALUE - 1, "the total number of elements must fit in an int");
141    int[] array = new int[rest.length + 1];
142    array[0] = first;
143    System.arraycopy(rest, 0, array, 1, rest.length);
144    return new ImmutableIntArray(array);
145  }
146
147  /** Returns an immutable array containing the given values, in order. */
148  public static ImmutableIntArray copyOf(int[] values) {
149    return values.length == 0 ? EMPTY : new ImmutableIntArray(Arrays.copyOf(values, values.length));
150  }
151
152  /** Returns an immutable array containing the given values, in order. */
153  public static ImmutableIntArray copyOf(Collection<Integer> values) {
154    return values.isEmpty() ? EMPTY : new ImmutableIntArray(Ints.toArray(values));
155  }
156
157  /**
158   * Returns an immutable array containing the given values, in order.
159   *
160   * <p><b>Performance note:</b> this method delegates to {@link #copyOf(Collection)} if {@code
161   * values} is a {@link Collection}. Otherwise it creates a {@link #builder} and uses {@link
162   * Builder#addAll(Iterable)}, with all the performance implications associated with that.
163   */
164  public static ImmutableIntArray copyOf(Iterable<Integer> values) {
165    if (values instanceof Collection) {
166      return copyOf((Collection<Integer>) values);
167    }
168    return builder().addAll(values).build();
169  }
170
171  /** Returns an immutable array containing all the values from {@code stream}, in order. */
172  public static ImmutableIntArray copyOf(IntStream stream) {
173    // Note this uses very different growth behavior from copyOf(Iterable) and the builder.
174    int[] array = stream.toArray();
175    return (array.length == 0) ? EMPTY : new ImmutableIntArray(array);
176  }
177
178  /**
179   * Returns a new, empty builder for {@link ImmutableIntArray} instances, sized to hold up to
180   * {@code initialCapacity} values without resizing. The returned builder is not thread-safe.
181   *
182   * <p><b>Performance note:</b> When feasible, {@code initialCapacity} should be the exact number
183   * of values that will be added, if that knowledge is readily available. It is better to guess a
184   * value slightly too high than slightly too low. If the value is not exact, the {@link
185   * ImmutableIntArray} that is built will very likely occupy more memory than strictly necessary;
186   * to trim memory usage, build using {@code builder.build().trimmed()}.
187   */
188  public static Builder builder(int initialCapacity) {
189    checkArgument(initialCapacity >= 0, "Invalid initialCapacity: %s", initialCapacity);
190    return new Builder(initialCapacity);
191  }
192
193  /**
194   * Returns a new, empty builder for {@link ImmutableIntArray} instances, with a default initial
195   * capacity. The returned builder is not thread-safe.
196   *
197   * <p><b>Performance note:</b> The {@link ImmutableIntArray} that is built will very likely occupy
198   * more memory than necessary; to trim memory usage, build using {@code
199   * builder.build().trimmed()}.
200   */
201  public static Builder builder() {
202    return new Builder(10);
203  }
204
205  /**
206   * A builder for {@link ImmutableIntArray} instances; obtained using {@link
207   * ImmutableIntArray#builder}.
208   */
209  @CanIgnoreReturnValue
210  public static final class Builder {
211    private int[] array;
212    private int count = 0; // <= array.length
213
214    Builder(int initialCapacity) {
215      array = new int[initialCapacity];
216    }
217
218    /**
219     * Appends {@code value} to the end of the values the built {@link ImmutableIntArray} will
220     * contain.
221     */
222    public Builder add(int value) {
223      ensureRoomFor(1);
224      array[count] = value;
225      count += 1;
226      return this;
227    }
228
229    /**
230     * Appends {@code values}, in order, to the end of the values the built {@link
231     * ImmutableIntArray} will contain.
232     */
233    public Builder addAll(int[] values) {
234      ensureRoomFor(values.length);
235      System.arraycopy(values, 0, array, count, values.length);
236      count += values.length;
237      return this;
238    }
239
240    /**
241     * Appends {@code values}, in order, to the end of the values the built {@link
242     * ImmutableIntArray} will contain.
243     */
244    public Builder addAll(Iterable<Integer> values) {
245      if (values instanceof Collection) {
246        return addAll((Collection<Integer>) values);
247      }
248      for (Integer value : values) {
249        add(value);
250      }
251      return this;
252    }
253
254    /**
255     * Appends {@code values}, in order, to the end of the values the built {@link
256     * ImmutableIntArray} will contain.
257     */
258    public Builder addAll(Collection<Integer> values) {
259      ensureRoomFor(values.size());
260      for (Integer value : values) {
261        array[count++] = value;
262      }
263      return this;
264    }
265
266    /**
267     * Appends all values from {@code stream}, in order, to the end of the values the built {@link
268     * ImmutableIntArray} will contain.
269     */
270    public Builder addAll(IntStream stream) {
271      Spliterator.OfInt spliterator = stream.spliterator();
272      long size = spliterator.getExactSizeIfKnown();
273      if (size > 0) { // known *and* nonempty
274        ensureRoomFor(Ints.saturatedCast(size));
275      }
276      spliterator.forEachRemaining((IntConsumer) this::add);
277      return this;
278    }
279
280    /**
281     * Appends {@code values}, in order, to the end of the values the built {@link
282     * ImmutableIntArray} will contain.
283     */
284    public Builder addAll(ImmutableIntArray values) {
285      ensureRoomFor(values.length());
286      System.arraycopy(values.array, values.start, array, count, values.length());
287      count += values.length();
288      return this;
289    }
290
291    private void ensureRoomFor(int numberToAdd) {
292      int newCount = count + numberToAdd; // TODO(kevinb): check overflow now?
293      if (newCount > array.length) {
294        array = Arrays.copyOf(array, expandedCapacity(array.length, newCount));
295      }
296    }
297
298    // Unfortunately this is pasted from ImmutableCollection.Builder.
299    private static int expandedCapacity(int oldCapacity, int minCapacity) {
300      if (minCapacity < 0) {
301        throw new AssertionError("cannot store more than MAX_VALUE elements");
302      }
303      // careful of overflow!
304      int newCapacity = oldCapacity + (oldCapacity >> 1) + 1;
305      if (newCapacity < minCapacity) {
306        newCapacity = Integer.highestOneBit(minCapacity - 1) << 1;
307      }
308      if (newCapacity < 0) {
309        newCapacity = Integer.MAX_VALUE; // guaranteed to be >= newCapacity
310      }
311      return newCapacity;
312    }
313
314    /**
315     * Returns a new immutable array. The builder can continue to be used after this call, to append
316     * more values and build again.
317     *
318     * <p><b>Performance note:</b> the returned array is backed by the same array as the builder, so
319     * no data is copied as part of this step, but this may occupy more memory than strictly
320     * necessary. To copy the data to a right-sized backing array, use {@code .build().trimmed()}.
321     */
322    @CheckReturnValue
323    public ImmutableIntArray build() {
324      return count == 0 ? EMPTY : new ImmutableIntArray(array, 0, count);
325    }
326  }
327
328  // Instance stuff here
329
330  // The array is never mutated after storing in this field and the construction strategies ensure
331  // it doesn't escape this class
332  @SuppressWarnings("Immutable")
333  private final int[] array;
334
335  /*
336   * TODO(kevinb): evaluate the trade-offs of going bimorphic to save these two fields from most
337   * instances. Note that the instances that would get smaller are the right set to care about
338   * optimizing, because the rest have the option of calling `trimmed`.
339   */
340
341  private final transient int start; // it happens that we only serialize instances where this is 0
342  private final int end; // exclusive
343
344  private ImmutableIntArray(int[] array) {
345    this(array, 0, array.length);
346  }
347
348  private ImmutableIntArray(int[] array, int start, int end) {
349    this.array = array;
350    this.start = start;
351    this.end = end;
352  }
353
354  /** Returns the number of values in this array. */
355  public int length() {
356    return end - start;
357  }
358
359  /** Returns {@code true} if there are no values in this array ({@link #length} is zero). */
360  public boolean isEmpty() {
361    return end == start;
362  }
363
364  /**
365   * Returns the {@code int} value present at the given index.
366   *
367   * @throws IndexOutOfBoundsException if {@code index} is negative, or greater than or equal to
368   *     {@link #length}
369   */
370  public int get(int index) {
371    Preconditions.checkElementIndex(index, length());
372    return array[start + index];
373  }
374
375  /**
376   * Returns the smallest index for which {@link #get} returns {@code target}, or {@code -1} if no
377   * such index exists. Equivalent to {@code asList().indexOf(target)}.
378   */
379  public int indexOf(int target) {
380    for (int i = start; i < end; i++) {
381      if (array[i] == target) {
382        return i - start;
383      }
384    }
385    return -1;
386  }
387
388  /**
389   * Returns the largest index for which {@link #get} returns {@code target}, or {@code -1} if no
390   * such index exists. Equivalent to {@code asList().lastIndexOf(target)}.
391   */
392  public int lastIndexOf(int target) {
393    for (int i = end - 1; i >= start; i--) {
394      if (array[i] == target) {
395        return i - start;
396      }
397    }
398    return -1;
399  }
400
401  /**
402   * Returns {@code true} if {@code target} is present at any index in this array. Equivalent to
403   * {@code asList().contains(target)}.
404   */
405  public boolean contains(int target) {
406    return indexOf(target) >= 0;
407  }
408
409  /** Invokes {@code consumer} for each value contained in this array, in order. */
410  public void forEach(IntConsumer consumer) {
411    checkNotNull(consumer);
412    for (int i = start; i < end; i++) {
413      consumer.accept(array[i]);
414    }
415  }
416
417  /** Returns a stream over the values in this array, in order. */
418  public IntStream stream() {
419    return Arrays.stream(array, start, end);
420  }
421
422  /** Returns a new, mutable copy of this array's values, as a primitive {@code int[]}. */
423  public int[] toArray() {
424    return Arrays.copyOfRange(array, start, end);
425  }
426
427  /**
428   * Returns a new immutable array containing the values in the specified range.
429   *
430   * <p><b>Performance note:</b> The returned array has the same full memory footprint as this one
431   * does (no actual copying is performed). To reduce memory usage, use {@code subArray(start,
432   * end).trimmed()}.
433   */
434  public ImmutableIntArray subArray(int startIndex, int endIndex) {
435    Preconditions.checkPositionIndexes(startIndex, endIndex, length());
436    return startIndex == endIndex
437        ? EMPTY
438        : new ImmutableIntArray(array, start + startIndex, start + endIndex);
439  }
440
441  private Spliterator.OfInt spliterator() {
442    return Spliterators.spliterator(array, start, end, Spliterator.IMMUTABLE | Spliterator.ORDERED);
443  }
444
445  /**
446   * Returns an immutable <i>view</i> of this array's values as a {@code List}; note that {@code
447   * int} values are boxed into {@link Integer} instances on demand, which can be very expensive.
448   * The returned list should be used once and discarded. For any usages beyond that, pass the
449   * returned list to {@link com.google.common.collect.ImmutableList#copyOf(Collection)
450   * ImmutableList.copyOf} and use that list instead.
451   */
452  public List<Integer> asList() {
453    /*
454     * Typically we cache this kind of thing, but much repeated use of this view is a performance
455     * anti-pattern anyway. If we cache, then everyone pays a price in memory footprint even if
456     * they never use this method.
457     */
458    return new AsList(this);
459  }
460
461  static class AsList extends AbstractList<Integer> implements RandomAccess, Serializable {
462    private final ImmutableIntArray parent;
463
464    private AsList(ImmutableIntArray parent) {
465      this.parent = parent;
466    }
467
468    // inherit: isEmpty, containsAll, toArray x2, iterator, listIterator, stream, forEach, mutations
469
470    @Override
471    public int size() {
472      return parent.length();
473    }
474
475    @Override
476    public Integer get(int index) {
477      return parent.get(index);
478    }
479
480    @Override
481    public boolean contains(Object target) {
482      return indexOf(target) >= 0;
483    }
484
485    @Override
486    public int indexOf(Object target) {
487      return target instanceof Integer ? parent.indexOf((Integer) target) : -1;
488    }
489
490    @Override
491    public int lastIndexOf(Object target) {
492      return target instanceof Integer ? parent.lastIndexOf((Integer) target) : -1;
493    }
494
495    @Override
496    public List<Integer> subList(int fromIndex, int toIndex) {
497      return parent.subArray(fromIndex, toIndex).asList();
498    }
499
500    // The default List spliterator is not efficiently splittable
501    @Override
502    public Spliterator<Integer> spliterator() {
503      return parent.spliterator();
504    }
505
506    @Override
507    public boolean equals(@Nullable Object object) {
508      if (object instanceof AsList) {
509        AsList that = (AsList) object;
510        return this.parent.equals(that.parent);
511      }
512      // We could delegate to super now but it would still box too much
513      if (!(object instanceof List)) {
514        return false;
515      }
516      List<?> that = (List<?>) object;
517      if (this.size() != that.size()) {
518        return false;
519      }
520      int i = parent.start;
521      // Since `that` is very likely RandomAccess we could avoid allocating this iterator...
522      for (Object element : that) {
523        if (!(element instanceof Integer) || parent.array[i++] != (Integer) element) {
524          return false;
525        }
526      }
527      return true;
528    }
529
530    // Because we happen to use the same formula. If that changes, just don't override this.
531    @Override
532    public int hashCode() {
533      return parent.hashCode();
534    }
535
536    @Override
537    public String toString() {
538      return parent.toString();
539    }
540  }
541
542  /**
543   * Returns {@code true} if {@code object} is an {@code ImmutableIntArray} containing the same
544   * values as this one, in the same order.
545   */
546  @Override
547  public boolean equals(@Nullable Object object) {
548    if (object == this) {
549      return true;
550    }
551    if (!(object instanceof ImmutableIntArray)) {
552      return false;
553    }
554    ImmutableIntArray that = (ImmutableIntArray) object;
555    if (this.length() != that.length()) {
556      return false;
557    }
558    for (int i = 0; i < length(); i++) {
559      if (this.get(i) != that.get(i)) {
560        return false;
561      }
562    }
563    return true;
564  }
565
566  /** Returns an unspecified hash code for the contents of this immutable array. */
567  @Override
568  public int hashCode() {
569    int hash = 1;
570    for (int i = start; i < end; i++) {
571      hash *= 31;
572      hash += Ints.hashCode(array[i]);
573    }
574    return hash;
575  }
576
577  /**
578   * Returns a string representation of this array in the same form as {@link
579   * Arrays#toString(int[])}, for example {@code "[1, 2, 3]"}.
580   */
581  @Override
582  public String toString() {
583    if (isEmpty()) {
584      return "[]";
585    }
586    StringBuilder builder = new StringBuilder(length() * 5); // rough estimate is fine
587    builder.append('[').append(array[start]);
588
589    for (int i = start + 1; i < end; i++) {
590      builder.append(", ").append(array[i]);
591    }
592    builder.append(']');
593    return builder.toString();
594  }
595
596  /**
597   * Returns an immutable array containing the same values as {@code this} array. This is logically
598   * a no-op, and in some circumstances {@code this} itself is returned. However, if this instance
599   * is a {@link #subArray} view of a larger array, this method will copy only the appropriate range
600   * of values, resulting in an equivalent array with a smaller memory footprint.
601   */
602  public ImmutableIntArray trimmed() {
603    return isPartialView() ? new ImmutableIntArray(toArray()) : this;
604  }
605
606  private boolean isPartialView() {
607    return start > 0 || end < array.length;
608  }
609
610  Object writeReplace() {
611    return trimmed();
612  }
613
614  Object readResolve() {
615    return isEmpty() ? EMPTY : this;
616  }
617}