001/*
002 * Copyright (C) 2007 The Guava Authors
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017package com.google.common.collect;
018
019import static com.google.common.base.Preconditions.checkArgument;
020import static com.google.common.base.Preconditions.checkNotNull;
021import static com.google.common.collect.CollectPreconditions.checkNonnegative;
022import static com.google.common.collect.ObjectArrays.checkElementNotNull;
023import static java.lang.Math.max;
024import static java.util.Objects.requireNonNull;
025
026import com.google.common.annotations.GwtCompatible;
027import com.google.common.annotations.J2ktIncompatible;
028import com.google.common.annotations.VisibleForTesting;
029import com.google.common.primitives.Ints;
030import com.google.errorprone.annotations.CanIgnoreReturnValue;
031import com.google.errorprone.annotations.concurrent.LazyInit;
032import com.google.j2objc.annotations.RetainedWith;
033import java.io.InvalidObjectException;
034import java.io.ObjectInputStream;
035import java.io.Serializable;
036import java.util.Arrays;
037import java.util.Collection;
038import java.util.Collections;
039import java.util.Iterator;
040import java.util.Set;
041import java.util.SortedSet;
042import java.util.stream.Collector;
043import org.jspecify.annotations.Nullable;
044
045/**
046 * A {@link Set} whose contents will never change, with many other important properties detailed at
047 * {@link ImmutableCollection}.
048 *
049 * @since 2.0
050 */
051@GwtCompatible(serializable = true, emulated = true)
052@SuppressWarnings("serial") // we're overriding default serialization
053public abstract class ImmutableSet<E> extends ImmutableCollection<E> implements Set<E> {
054
055  /**
056   * Returns a {@code Collector} that accumulates the input elements into a new {@code
057   * ImmutableSet}. Elements appear in the resulting set in the encounter order of the stream; if
058   * the stream contains duplicates (according to {@link Object#equals(Object)}), only the first
059   * duplicate in encounter order will appear in the result.
060   *
061   * @since 33.2.0 (available since 21.0 in guava-jre)
062   */
063  @SuppressWarnings("Java7ApiChecker")
064  @IgnoreJRERequirement // Users will use this only if they're already using streams.
065  public static <E> Collector<E, ?, ImmutableSet<E>> toImmutableSet() {
066    return CollectCollectors.toImmutableSet();
067  }
068
069  /**
070   * Returns the empty immutable set. Preferred over {@link Collections#emptySet} for code
071   * consistency, and because the return type conveys the immutability guarantee.
072   *
073   * <p><b>Performance note:</b> the instance returned is a singleton.
074   */
075  @SuppressWarnings({"unchecked"}) // fully variant implementation (never actually produces any Es)
076  public static <E> ImmutableSet<E> of() {
077    return (ImmutableSet<E>) RegularImmutableSet.EMPTY;
078  }
079
080  /**
081   * Returns an immutable set containing the given element. Preferred over {@link
082   * Collections#singleton} for code consistency, {@code null} rejection, and because the return
083   * type conveys the immutability guarantee.
084   */
085  public static <E> ImmutableSet<E> of(E e1) {
086    return new SingletonImmutableSet<>(e1);
087  }
088
089  /**
090   * Returns an immutable set containing the given elements, minus duplicates, in the order each was
091   * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
092   * the first are ignored.
093   */
094  public static <E> ImmutableSet<E> of(E e1, E e2) {
095    return construct(2, e1, e2);
096  }
097
098  /**
099   * Returns an immutable set containing the given elements, minus duplicates, in the order each was
100   * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
101   * the first are ignored.
102   */
103  public static <E> ImmutableSet<E> of(E e1, E e2, E e3) {
104    return construct(3, e1, e2, e3);
105  }
106
107  /**
108   * Returns an immutable set containing the given elements, minus duplicates, in the order each was
109   * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
110   * the first are ignored.
111   */
112  public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) {
113    return construct(4, e1, e2, e3, e4);
114  }
115
116  /**
117   * Returns an immutable set containing the given elements, minus duplicates, in the order each was
118   * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
119   * the first are ignored.
120   */
121  public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) {
122    return construct(5, e1, e2, e3, e4, e5);
123  }
124
125  /**
126   * Returns an immutable set containing the given elements, minus duplicates, in the order each was
127   * first specified. That is, if multiple elements are {@linkplain Object#equals equal}, all except
128   * the first are ignored.
129   *
130   * <p>The array {@code others} must not be longer than {@code Integer.MAX_VALUE - 6}.
131   *
132   * @since 3.0 (source-compatible since 2.0)
133   */
134  @SafeVarargs // For Eclipse. For internal javac we have disabled this pointless type of warning.
135  public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E... others) {
136    checkArgument(
137        others.length <= Integer.MAX_VALUE - 6, "the total number of elements must fit in an int");
138    final int paramCount = 6;
139    Object[] elements = new Object[paramCount + others.length];
140    elements[0] = e1;
141    elements[1] = e2;
142    elements[2] = e3;
143    elements[3] = e4;
144    elements[4] = e5;
145    elements[5] = e6;
146    System.arraycopy(others, 0, elements, paramCount, others.length);
147    return construct(elements.length, elements);
148  }
149
150  /**
151   * Constructs an {@code ImmutableSet} from the first {@code n} elements of the specified array. If
152   * {@code k} is the size of the returned {@code ImmutableSet}, then the unique elements of {@code
153   * elements} will be in the first {@code k} positions, and {@code elements[i] == null} for {@code
154   * k <= i < n}.
155   *
156   * <p>After this method returns, {@code elements} will contain no duplicates, but {@code elements}
157   * may be the real array backing the returned set, so do not modify it further.
158   *
159   * <p>{@code elements} may contain only values of type {@code E}.
160   *
161   * @throws NullPointerException if any of the first {@code n} elements of {@code elements} is null
162   */
163  private static <E> ImmutableSet<E> construct(int n, @Nullable Object... elements) {
164    switch (n) {
165      case 0:
166        return of();
167      case 1:
168        @SuppressWarnings("unchecked") // safe; elements contains only E's
169        // requireNonNull is safe because the first `n` elements are non-null.
170        E elem = (E) requireNonNull(elements[0]);
171        return of(elem);
172      default:
173        // continue below to handle the general case
174    }
175    int tableSize = chooseTableSize(n);
176    Object[] table = new Object[tableSize];
177    int mask = tableSize - 1;
178    int hashCode = 0;
179    int uniques = 0;
180    for (int i = 0; i < n; i++) {
181      Object element = checkElementNotNull(elements[i], i);
182      int hash = element.hashCode();
183      for (int j = Hashing.smear(hash); ; j++) {
184        int index = j & mask;
185        Object value = table[index];
186        if (value == null) {
187          // Came to an empty slot. Put the element here.
188          elements[uniques++] = element;
189          table[index] = element;
190          hashCode += hash;
191          break;
192        } else if (value.equals(element)) {
193          break;
194        }
195      }
196    }
197    Arrays.fill(elements, uniques, n, null);
198    if (uniques == 1) {
199      // There is only one element or elements are all duplicates
200      @SuppressWarnings("unchecked") // we are careful to only pass in E
201      // requireNonNull is safe because the first `uniques` elements are non-null.
202      E element = (E) requireNonNull(elements[0]);
203      return new SingletonImmutableSet<E>(element);
204    } else if (chooseTableSize(uniques) < tableSize / 2) {
205      // Resize the table when the array includes too many duplicates.
206      return construct(uniques, elements);
207    } else {
208      @Nullable Object[] uniqueElements =
209          shouldTrim(uniques, elements.length) ? Arrays.copyOf(elements, uniques) : elements;
210      return new RegularImmutableSet<E>(uniqueElements, hashCode, table, mask, uniques);
211    }
212  }
213
214  private static boolean shouldTrim(int actualUnique, int expectedUnique) {
215    return actualUnique < (expectedUnique >> 1) + (expectedUnique >> 2);
216  }
217
218  // We use power-of-2 tables, and this is the highest int that's a power of 2
219  static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
220
221  // Represents how tightly we can pack things, as a maximum.
222  private static final double DESIRED_LOAD_FACTOR = 0.7;
223
224  // If the set has this many elements, it will "max out" the table size
225  private static final int CUTOFF = (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
226
227  /**
228   * Returns an array size suitable for the backing array of a hash table that uses open addressing
229   * with linear probing in its implementation. The returned size is the smallest power of two that
230   * can hold setSize elements with the desired load factor. Always returns at least setSize + 2.
231   */
232  @VisibleForTesting
233  static int chooseTableSize(int setSize) {
234    setSize = max(setSize, 2);
235    // Correct the size for open addressing to match desired load factor.
236    if (setSize < CUTOFF) {
237      // Round up to the next highest power of 2.
238      int tableSize = Integer.highestOneBit(setSize - 1) << 1;
239      while (tableSize * DESIRED_LOAD_FACTOR < setSize) {
240        tableSize <<= 1;
241      }
242      return tableSize;
243    }
244
245    // The table can't be completely full or we'll get infinite reprobes
246    checkArgument(setSize < MAX_TABLE_SIZE, "collection too large");
247    return MAX_TABLE_SIZE;
248  }
249
250  /**
251   * Returns an immutable set containing each of {@code elements}, minus duplicates, in the order
252   * each appears first in the source collection.
253   *
254   * <p><b>Performance note:</b> This method will sometimes recognize that the actual copy operation
255   * is unnecessary; for example, {@code copyOf(copyOf(anArrayList))} will copy the data only once.
256   * This reduces the expense of habitually making defensive copies at API boundaries. However, the
257   * precise conditions for skipping the copy operation are undefined.
258   *
259   * @throws NullPointerException if any of {@code elements} is null
260   * @since 7.0 (source-compatible since 2.0)
261   */
262  // This the best we could do to get copyOfEnumSet to compile in the mainline.
263  // The suppression also covers the cast to E[], discussed below.
264  // In the backport, we don't have those cases and thus don't need this suppression.
265  // We keep it to minimize diffs.
266  @SuppressWarnings("unchecked")
267  public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) {
268    /*
269     * TODO(lowasser): consider checking for ImmutableAsList here
270     * TODO(lowasser): consider checking for Multiset here
271     */
272    // Don't refer to ImmutableSortedSet by name so it won't pull in all that code
273    if (elements instanceof ImmutableSet && !(elements instanceof SortedSet)) {
274      @SuppressWarnings("unchecked") // all supported methods are covariant
275      ImmutableSet<E> set = (ImmutableSet<E>) elements;
276      if (!set.isPartialView()) {
277        return set;
278      }
279    }
280    Object[] array = elements.toArray();
281    return construct(array.length, array);
282  }
283
284  /**
285   * Returns an immutable set containing each of {@code elements}, minus duplicates, in the order
286   * each appears first in the source iterable. This method iterates over {@code elements} only
287   * once.
288   *
289   * <p><b>Performance note:</b> This method will sometimes recognize that the actual copy operation
290   * is unnecessary; for example, {@code copyOf(copyOf(anArrayList))} should copy the data only
291   * once. This reduces the expense of habitually making defensive copies at API boundaries.
292   * However, the precise conditions for skipping the copy operation are undefined.
293   *
294   * @throws NullPointerException if any of {@code elements} is null
295   */
296  public static <E> ImmutableSet<E> copyOf(Iterable<? extends E> elements) {
297    return (elements instanceof Collection)
298        ? copyOf((Collection<? extends E>) elements)
299        : copyOf(elements.iterator());
300  }
301
302  /**
303   * Returns an immutable set containing each of {@code elements}, minus duplicates, in the order
304   * each appears first in the source iterator.
305   *
306   * @throws NullPointerException if any of {@code elements} is null
307   */
308  public static <E> ImmutableSet<E> copyOf(Iterator<? extends E> elements) {
309    // We special-case for 0 or 1 elements, but anything further is madness.
310    if (!elements.hasNext()) {
311      return of();
312    }
313    E first = elements.next();
314    if (!elements.hasNext()) {
315      return of(first);
316    } else {
317      return new ImmutableSet.Builder<E>().add(first).addAll(elements).build();
318    }
319  }
320
321  /**
322   * Returns an immutable set containing each of {@code elements}, minus duplicates, in the order
323   * each appears first in the source array.
324   *
325   * @throws NullPointerException if any of {@code elements} is null
326   * @since 3.0
327   */
328  public static <E> ImmutableSet<E> copyOf(E[] elements) {
329    switch (elements.length) {
330      case 0:
331        return of();
332      case 1:
333        return of(elements[0]);
334      default:
335        return construct(elements.length, elements.clone());
336    }
337  }
338
339  ImmutableSet() {}
340
341  /** Returns {@code true} if the {@code hashCode()} method runs quickly. */
342  boolean isHashCodeFast() {
343    return false;
344  }
345
346  @Override
347  public boolean equals(@Nullable Object object) {
348    if (object == this) {
349      return true;
350    }
351    if (object instanceof ImmutableSet
352        && isHashCodeFast()
353        && ((ImmutableSet<?>) object).isHashCodeFast()
354        && hashCode() != object.hashCode()) {
355      return false;
356    }
357    return Sets.equalsImpl(this, object);
358  }
359
360  @Override
361  public int hashCode() {
362    return Sets.hashCodeImpl(this);
363  }
364
365  // This declaration is needed to make Set.iterator() and
366  // ImmutableCollection.iterator() consistent.
367  @Override
368  public abstract UnmodifiableIterator<E> iterator();
369
370  @LazyInit @RetainedWith private transient @Nullable ImmutableList<E> asList;
371
372  @Override
373  public ImmutableList<E> asList() {
374    ImmutableList<E> result = asList;
375    return (result == null) ? asList = createAsList() : result;
376  }
377
378  ImmutableList<E> createAsList() {
379    return ImmutableList.asImmutableList(toArray());
380  }
381
382  /*
383   * This class is used to serialize all ImmutableSet instances, except for
384   * ImmutableEnumSet/ImmutableSortedSet, regardless of implementation type. It
385   * captures their "logical contents" and they are reconstructed using public
386   * static factories. This is necessary to ensure that the existence of a
387   * particular implementation type is an implementation detail.
388   */
389  @J2ktIncompatible // serialization
390  private static class SerializedForm implements Serializable {
391    final Object[] elements;
392
393    SerializedForm(Object[] elements) {
394      this.elements = elements;
395    }
396
397    Object readResolve() {
398      return copyOf(elements);
399    }
400
401    private static final long serialVersionUID = 0;
402  }
403
404  @Override
405  @J2ktIncompatible // serialization
406  Object writeReplace() {
407    return new SerializedForm(toArray());
408  }
409
410  @J2ktIncompatible // serialization
411  private void readObject(ObjectInputStream stream) throws InvalidObjectException {
412    throw new InvalidObjectException("Use SerializedForm");
413  }
414
415  /**
416   * Returns a new builder. The generated builder is equivalent to the builder created by the {@link
417   * Builder} constructor.
418   */
419  public static <E> Builder<E> builder() {
420    return new Builder<>();
421  }
422
423  /**
424   * Returns a new builder, expecting the specified number of distinct elements to be added.
425   *
426   * <p>If {@code expectedSize} is exactly the number of distinct elements added to the builder
427   * before {@link Builder#build} is called, the builder is likely to perform better than an unsized
428   * {@link #builder()} would have.
429   *
430   * <p>It is not specified if any performance benefits apply if {@code expectedSize} is close to,
431   * but not exactly, the number of distinct elements added to the builder.
432   *
433   * @since 23.1
434   */
435  public static <E> Builder<E> builderWithExpectedSize(int expectedSize) {
436    checkNonnegative(expectedSize, "expectedSize");
437    return new Builder<>(expectedSize, true);
438  }
439
440  /**
441   * A builder for creating {@code ImmutableSet} instances. Example:
442   *
443   * <pre>{@code
444   * static final ImmutableSet<Color> GOOGLE_COLORS =
445   *     ImmutableSet.<Color>builder()
446   *         .addAll(WEBSAFE_COLORS)
447   *         .add(new Color(0, 191, 255))
448   *         .build();
449   * }</pre>
450   *
451   * <p>Elements appear in the resulting set in the same order they were first added to the builder.
452   *
453   * <p>Building does not change the state of the builder, so it is still possible to add more
454   * elements and to build again.
455   *
456   * @since 2.0
457   */
458  public static class Builder<E> extends ImmutableCollection.ArrayBasedBuilder<E> {
459    @VisibleForTesting @Nullable Object @Nullable [] hashTable;
460    private int hashCode;
461
462    /**
463     * Creates a new builder. The returned builder is equivalent to the builder generated by {@link
464     * ImmutableSet#builder}.
465     */
466    public Builder() {
467      super(DEFAULT_INITIAL_CAPACITY);
468    }
469
470    Builder(int capacity, boolean makeHashTable) {
471      super(capacity);
472      if (makeHashTable) {
473        this.hashTable = new @Nullable Object[chooseTableSize(capacity)];
474      }
475    }
476
477    /**
478     * Adds {@code element} to the {@code ImmutableSet}. If the {@code ImmutableSet} already
479     * contains {@code element}, then {@code add} has no effect (only the previously added element
480     * is retained).
481     *
482     * @param element the element to add
483     * @return this {@code Builder} object
484     * @throws NullPointerException if {@code element} is null
485     */
486    @CanIgnoreReturnValue
487    @Override
488    public Builder<E> add(E element) {
489      checkNotNull(element);
490      if (hashTable != null && chooseTableSize(size) <= hashTable.length) {
491        addDeduping(element);
492        return this;
493      } else {
494        hashTable = null;
495        super.add(element);
496        return this;
497      }
498    }
499
500    /**
501     * Adds each element of {@code elements} to the {@code ImmutableSet}, ignoring duplicate
502     * elements (only the first duplicate element is added).
503     *
504     * @param elements the elements to add
505     * @return this {@code Builder} object
506     * @throws NullPointerException if {@code elements} is null or contains a null element
507     */
508    @Override
509    @CanIgnoreReturnValue
510    public Builder<E> add(E... elements) {
511      if (hashTable != null) {
512        for (E e : elements) {
513          add(e);
514        }
515      } else {
516        super.add(elements);
517      }
518      return this;
519    }
520
521    private void addDeduping(E element) {
522      requireNonNull(hashTable); // safe because we check for null before calling this method
523      int mask = hashTable.length - 1;
524      int hash = element.hashCode();
525      for (int i = Hashing.smear(hash); ; i++) {
526        i &= mask;
527        Object previous = hashTable[i];
528        if (previous == null) {
529          hashTable[i] = element;
530          hashCode += hash;
531          super.add(element);
532          return;
533        } else if (previous.equals(element)) {
534          return;
535        }
536      }
537    }
538
539    /**
540     * Adds each element of {@code elements} to the {@code ImmutableSet}, ignoring duplicate
541     * elements (only the first duplicate element is added).
542     *
543     * @param elements the {@code Iterable} to add to the {@code ImmutableSet}
544     * @return this {@code Builder} object
545     * @throws NullPointerException if {@code elements} is null or contains a null element
546     */
547    @CanIgnoreReturnValue
548    @Override
549    public Builder<E> addAll(Iterable<? extends E> elements) {
550      checkNotNull(elements);
551      if (hashTable != null) {
552        for (E e : elements) {
553          add(e);
554        }
555      } else {
556        super.addAll(elements);
557      }
558      return this;
559    }
560
561    /**
562     * Adds each element of {@code elements} to the {@code ImmutableSet}, ignoring duplicate
563     * elements (only the first duplicate element is added).
564     *
565     * @param elements the elements to add to the {@code ImmutableSet}
566     * @return this {@code Builder} object
567     * @throws NullPointerException if {@code elements} is null or contains a null element
568     */
569    @CanIgnoreReturnValue
570    @Override
571    public Builder<E> addAll(Iterator<? extends E> elements) {
572      checkNotNull(elements);
573      while (elements.hasNext()) {
574        add(elements.next());
575      }
576      return this;
577    }
578
579    @CanIgnoreReturnValue
580    @SuppressWarnings("unchecked") // ArrayBasedBuilder stores its elements as Object.
581    Builder<E> combine(Builder<E> other) {
582      if (hashTable != null) {
583        for (int i = 0; i < other.size; ++i) {
584          // requireNonNull is safe because the first `size` elements are non-null.
585          add((E) requireNonNull(other.contents[i]));
586        }
587      } else {
588        addAll(other.contents, other.size);
589      }
590      return this;
591    }
592
593    /**
594     * Returns a newly-created {@code ImmutableSet} based on the contents of the {@code Builder}.
595     */
596    @SuppressWarnings("unchecked")
597    @Override
598    public ImmutableSet<E> build() {
599      switch (size) {
600        case 0:
601          return of();
602        case 1:
603          /*
604           * requireNonNull is safe because we ensure that the first `size` elements have been
605           * populated.
606           */
607          return (ImmutableSet<E>) of(requireNonNull(contents[0]));
608        default:
609          ImmutableSet<E> result;
610          if (hashTable != null && chooseTableSize(size) == hashTable.length) {
611            @Nullable Object[] uniqueElements =
612                shouldTrim(size, contents.length) ? Arrays.copyOf(contents, size) : contents;
613            result =
614                new RegularImmutableSet<E>(
615                    uniqueElements, hashCode, hashTable, hashTable.length - 1, size);
616          } else {
617            result = construct(size, contents);
618            // construct has the side effect of deduping contents, so we update size
619            // accordingly.
620            size = result.size();
621          }
622          forceCopy = true;
623          hashTable = null;
624          return result;
625      }
626    }
627  }
628
629  private static final long serialVersionUID = 0xdecaf;
630}