/*
 * Copyright (c) 2018 Goldman Sachs and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

package org.eclipse.collections.impl.set.sorted.immutable;

import java.util.Collection;
import java.util.Comparator;
import java.util.Set;
import java.util.SortedSet;
import java.util.concurrent.ExecutorService;

import org.eclipse.collections.api.LazyIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.block.function.Function;
import org.eclipse.collections.api.block.function.Function2;
import org.eclipse.collections.api.block.function.primitive.BooleanFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.ShortFunction;
import org.eclipse.collections.api.block.predicate.Predicate;
import org.eclipse.collections.api.block.predicate.Predicate2;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.collection.MutableCollection;
import org.eclipse.collections.api.factory.Lists;
import org.eclipse.collections.api.list.ImmutableList;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.api.list.primitive.ImmutableBooleanList;
import org.eclipse.collections.api.list.primitive.ImmutableByteList;
import org.eclipse.collections.api.list.primitive.ImmutableCharList;
import org.eclipse.collections.api.list.primitive.ImmutableDoubleList;
import org.eclipse.collections.api.list.primitive.ImmutableFloatList;
import org.eclipse.collections.api.list.primitive.ImmutableIntList;
import org.eclipse.collections.api.list.primitive.ImmutableLongList;
import org.eclipse.collections.api.list.primitive.ImmutableShortList;
import org.eclipse.collections.api.multimap.sortedset.ImmutableSortedSetMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.set.sorted.PartitionImmutableSortedSet;
import org.eclipse.collections.api.partition.set.sorted.PartitionMutableSortedSet;
import org.eclipse.collections.api.set.SetIterable;
import org.eclipse.collections.api.set.sorted.ImmutableSortedSet;
import org.eclipse.collections.api.set.sorted.MutableSortedSet;
import org.eclipse.collections.api.set.sorted.ParallelSortedSetIterable;
import org.eclipse.collections.api.set.sorted.SortedSetIterable;
import org.eclipse.collections.api.stack.MutableStack;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.impl.block.factory.Comparators;
import org.eclipse.collections.impl.block.factory.Functions;
import org.eclipse.collections.impl.block.factory.Predicates;
import org.eclipse.collections.impl.block.procedure.CollectIfProcedure;
import org.eclipse.collections.impl.block.procedure.CollectProcedure;
import org.eclipse.collections.impl.block.procedure.FlatCollectProcedure;
import org.eclipse.collections.impl.block.procedure.PartitionPredicate2Procedure;
import org.eclipse.collections.impl.block.procedure.PartitionProcedure;
import org.eclipse.collections.impl.block.procedure.RejectProcedure;
import org.eclipse.collections.impl.block.procedure.SelectInstancesOfProcedure;
import org.eclipse.collections.impl.block.procedure.SelectProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectBooleanProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectCharProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectDoubleProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectFloatProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectIntProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectLongProcedure;
import org.eclipse.collections.impl.block.procedure.primitive.CollectShortProcedure;
import org.eclipse.collections.impl.collection.immutable.AbstractImmutableCollection;
import org.eclipse.collections.impl.lazy.parallel.set.sorted.NonParallelSortedSetIterable;
import org.eclipse.collections.impl.list.mutable.FastList;
import org.eclipse.collections.impl.list.mutable.primitive.BooleanArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.ByteArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.CharArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.DoubleArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.FloatArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.IntArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.LongArrayList;
import org.eclipse.collections.impl.list.mutable.primitive.ShortArrayList;
import org.eclipse.collections.impl.multimap.set.sorted.TreeSortedSetMultimap;
import org.eclipse.collections.impl.partition.set.sorted.PartitionTreeSortedSet;
import org.eclipse.collections.impl.set.sorted.mutable.TreeSortedSet;
import org.eclipse.collections.impl.stack.mutable.ArrayStack;
import org.eclipse.collections.impl.utility.Iterate;
import org.eclipse.collections.impl.utility.OrderedIterate;
import org.eclipse.collections.impl.utility.internal.IterableIterate;
import org.eclipse.collections.impl.utility.internal.SetIterables;
import org.eclipse.collections.impl.utility.internal.SortedSetIterables;

This class is the parent class for all ImmutableSortedSets. All implementations of ImmutableSortedSet must implement the SortedSet interface so an TreeSet.equals(anImmutableSortedSet) can return true when the contents are the same.
/** * This class is the parent class for all ImmutableSortedSets. All implementations of ImmutableSortedSet must implement the SortedSet * interface so an TreeSet.equals(anImmutableSortedSet) can return true when the contents are the same. */
abstract class AbstractImmutableSortedSet<T> extends AbstractImmutableCollection<T> implements ImmutableSortedSet<T>, SortedSet<T> { @Override public SortedSet<T> castToSortedSet() { return this; } @Override public ImmutableSortedSet<T> newWith(T element) { if (!this.contains(element)) { return TreeSortedSet.newSet(this).with(element).toImmutable(); } return this; } @Override public ImmutableSortedSet<T> newWithout(T element) { if (this.contains(element)) { TreeSortedSet<T> result = TreeSortedSet.newSet(this); result.remove(element); return result.toImmutable(); } return this; } @Override public ImmutableSortedSet<T> newWithAll(Iterable<? extends T> elements) { TreeSortedSet<T> result = TreeSortedSet.newSet(this); result.addAllIterable(elements); return result.toImmutable(); } @Override public ImmutableSortedSet<T> newWithoutAll(Iterable<? extends T> elements) { TreeSortedSet<T> result = TreeSortedSet.newSet(this); this.removeAllFrom(elements, result); return result.toImmutable(); } @Override public T getFirst() { return this.first(); } @Override public T getLast() { return this.last(); } @Override protected MutableCollection<T> newMutable(int size) { return TreeSortedSet.newSet(this.comparator()); } @Override public ImmutableBooleanList collectBoolean(BooleanFunction<? super T> booleanFunction) { BooleanArrayList result = new BooleanArrayList(this.size()); this.forEach(new CollectBooleanProcedure<>(booleanFunction, result)); return result.toImmutable(); } @Override public ImmutableByteList collectByte(ByteFunction<? super T> byteFunction) { ByteArrayList result = new ByteArrayList(this.size()); this.forEach(new CollectByteProcedure<>(byteFunction, result)); return result.toImmutable(); } @Override public ImmutableCharList collectChar(CharFunction<? super T> charFunction) { CharArrayList result = new CharArrayList(this.size()); this.forEach(new CollectCharProcedure<>(charFunction, result)); return result.toImmutable(); } @Override public ImmutableDoubleList collectDouble(DoubleFunction<? super T> doubleFunction) { DoubleArrayList result = new DoubleArrayList(this.size()); this.forEach(new CollectDoubleProcedure<>(doubleFunction, result)); return result.toImmutable(); } @Override public ImmutableFloatList collectFloat(FloatFunction<? super T> floatFunction) { FloatArrayList result = new FloatArrayList(this.size()); this.forEach(new CollectFloatProcedure<>(floatFunction, result)); return result.toImmutable(); } @Override public ImmutableIntList collectInt(IntFunction<? super T> intFunction) { IntArrayList result = new IntArrayList(this.size()); this.forEach(new CollectIntProcedure<>(intFunction, result)); return result.toImmutable(); } @Override public ImmutableLongList collectLong(LongFunction<? super T> longFunction) { LongArrayList result = new LongArrayList(this.size()); this.forEach(new CollectLongProcedure<>(longFunction, result)); return result.toImmutable(); } @Override public ImmutableShortList collectShort(ShortFunction<? super T> shortFunction) { ShortArrayList result = new ShortArrayList(this.size()); this.forEach(new CollectShortProcedure<>(shortFunction, result)); return result.toImmutable(); } @Override public ImmutableSortedSet<T> tap(Procedure<? super T> procedure) { this.forEach(procedure); return this; } @Override public <S> boolean corresponds(OrderedIterable<S> other, Predicate2<? super T, ? super S> predicate) { return OrderedIterate.corresponds(this, other, predicate); } @Override public ImmutableSortedSet<T> select(Predicate<? super T> predicate) { TreeSortedSet<T> result = TreeSortedSet.newSet(this.comparator()); this.forEach(new SelectProcedure<>(predicate, result)); return result.toImmutable(); } @Override public <P> ImmutableSortedSet<T> selectWith(Predicate2<? super T, ? super P> predicate, P parameter) { return this.select(Predicates.bind(predicate, parameter)); } @Override public ImmutableSortedSet<T> reject(Predicate<? super T> predicate) { TreeSortedSet<T> result = TreeSortedSet.newSet(this.comparator()); this.forEach(new RejectProcedure<>(predicate, result)); return result.toImmutable(); } @Override public <P> ImmutableSortedSet<T> rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) { return this.reject(Predicates.bind(predicate, parameter)); } @Override public PartitionImmutableSortedSet<T> partition(Predicate<? super T> predicate) { PartitionMutableSortedSet<T> partitionTreeSortedSet = new PartitionTreeSortedSet<>(this.comparator()); this.forEach(new PartitionProcedure<>(predicate, partitionTreeSortedSet)); return partitionTreeSortedSet.toImmutable(); } @Override public <P> PartitionImmutableSortedSet<T> partitionWith(Predicate2<? super T, ? super P> predicate, P parameter) { PartitionMutableSortedSet<T> partitionTreeSortedSet = new PartitionTreeSortedSet<>(this.comparator()); this.forEach(new PartitionPredicate2Procedure<>(predicate, parameter, partitionTreeSortedSet)); return partitionTreeSortedSet.toImmutable(); } @Override public PartitionImmutableSortedSet<T> partitionWhile(Predicate<? super T> predicate) { PartitionTreeSortedSet<T> result = new PartitionTreeSortedSet<>(this.comparator()); return IterableIterate.partitionWhile(this, predicate, result).toImmutable(); } @Override public <S> ImmutableSortedSet<S> selectInstancesOf(Class<S> clazz) { TreeSortedSet<S> result = TreeSortedSet.newSet((Comparator<? super S>) this.comparator()); this.forEach(new SelectInstancesOfProcedure<>(clazz, result)); return result.toImmutable(); } @Override public <V> ImmutableList<V> collect(Function<? super T, ? extends V> function) { MutableList<V> result = Lists.mutable.empty(); this.forEach(new CollectProcedure<>(function, result)); return result.toImmutable(); } @Override public <P, V> ImmutableList<V> collectWith(Function2<? super T, ? super P, ? extends V> function, P parameter) { return this.collect(Functions.bind(function, parameter)); } @Override public <V> ImmutableList<V> collectIf(Predicate<? super T> predicate, Function<? super T, ? extends V> function) { MutableList<V> result = Lists.mutable.empty(); this.forEach(new CollectIfProcedure<>(result, function, predicate)); return result.toImmutable(); } @Override public <V> ImmutableList<V> flatCollect(Function<? super T, ? extends Iterable<V>> function) { MutableList<V> result = Lists.mutable.empty(); this.forEach(new FlatCollectProcedure<>(function, result)); return result.toImmutable(); } @Override public int detectIndex(Predicate<? super T> predicate) { return Iterate.detectIndex(this, predicate); } @Override public <V> ImmutableSortedSetMultimap<V, T> groupBy(Function<? super T, ? extends V> function) { return this.groupBy(function, TreeSortedSetMultimap.<V, T>newMultimap(this.comparator())).toImmutable(); } @Override public <V> ImmutableSortedSetMultimap<V, T> groupByEach(Function<? super T, ? extends Iterable<V>> function) { return this.groupByEach(function, TreeSortedSetMultimap.newMultimap(this.comparator())).toImmutable(); } @Override public <S> ImmutableList<Pair<T, S>> zip(Iterable<S> that) { if (that instanceof Collection || that instanceof RichIterable) { int thatSize = Iterate.sizeOf(that); FastList<Pair<T, S>> target = FastList.newList(Math.min(this.size(), thatSize)); return Iterate.zip(this, that, target).toImmutable(); } return Iterate.zip(this, that, FastList.newList()).toImmutable(); } @Override public ImmutableSortedSet<Pair<T, Integer>> zipWithIndex() { Comparator<? super T> comparator = this.comparator(); if (comparator == null) { TreeSortedSet<Pair<T, Integer>> pairs = TreeSortedSet.newSet(Comparators.byFunction(Functions.firstOfPair(), Comparators.naturalOrder())); return Iterate.zipWithIndex(this, pairs).toImmutable(); } return Iterate.zipWithIndex(this, TreeSortedSet.newSet(Comparators.byFirstOfPair(comparator))).toImmutable(); } @Override public ImmutableSortedSet<T> distinct() { return this; } @Override public ImmutableSortedSet<T> takeWhile(Predicate<? super T> predicate) { MutableSortedSet<T> result = TreeSortedSet.newSet(this.comparator()); return IterableIterate.takeWhile(this, predicate, result).toImmutable(); } @Override public ImmutableSortedSet<T> dropWhile(Predicate<? super T> predicate) { MutableSortedSet<T> result = TreeSortedSet.newSet(this.comparator()); return IterableIterate.dropWhile(this, predicate, result).toImmutable(); } @Override public MutableStack<T> toStack() { return ArrayStack.newStack(this); } @Override public ImmutableSortedSet<T> union(SetIterable<? extends T> set) { return SetIterables.unionInto(this, set, TreeSortedSet.newSet(this.comparator())).toImmutable(); } @Override public <R extends Set<T>> R unionInto(SetIterable<? extends T> set, R targetSet) { return SetIterables.unionInto(this, set, targetSet); } @Override public ImmutableSortedSet<T> intersect(SetIterable<? extends T> set) { return SetIterables.intersectInto(this, set, TreeSortedSet.newSet(this.comparator())).toImmutable(); } @Override public <R extends Set<T>> R intersectInto(SetIterable<? extends T> set, R targetSet) { return SetIterables.intersectInto(this, set, targetSet); } @Override public ImmutableSortedSet<T> difference(SetIterable<? extends T> subtrahendSet) { return SetIterables.differenceInto(this, subtrahendSet, TreeSortedSet.newSet(this.comparator())).toImmutable(); } @Override public <R extends Set<T>> R differenceInto(SetIterable<? extends T> subtrahendSet, R targetSet) { return SetIterables.differenceInto(this, subtrahendSet, targetSet); } @Override public ImmutableSortedSet<T> symmetricDifference(SetIterable<? extends T> setB) { return SetIterables.symmetricDifferenceInto(this, setB, TreeSortedSet.newSet(this.comparator())).toImmutable(); } @Override public <R extends Set<T>> R symmetricDifferenceInto(SetIterable<? extends T> set, R targetSet) { return SetIterables.symmetricDifferenceInto(this, set, targetSet); } @Override public boolean isSubsetOf(SetIterable<? extends T> candidateSuperset) { return SetIterables.isSubsetOf(this, candidateSuperset); } @Override public boolean isProperSubsetOf(SetIterable<? extends T> candidateSuperset) { return SetIterables.isProperSubsetOf(this, candidateSuperset); } @Override public ImmutableSortedSet<SortedSetIterable<T>> powerSet() { return (ImmutableSortedSet<SortedSetIterable<T>>) (ImmutableSortedSet<?>) SortedSetIterables.immutablePowerSet(this); } @Override public <B> LazyIterable<Pair<T, B>> cartesianProduct(SetIterable<B> set) { return SetIterables.cartesianProduct(this, set); } @Override public SortedSet<T> subSet(T fromElement, T toElement) { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".subSet() not implemented yet"); } @Override public SortedSet<T> headSet(T toElement) { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".headSet() not implemented yet"); } @Override public SortedSet<T> tailSet(T fromElement) { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".tailSet() not implemented yet"); } @Override public ImmutableSortedSet<T> toImmutable() { return this; } @Override public ParallelSortedSetIterable<T> asParallel(ExecutorService executorService, int batchSize) { if (executorService == null) { throw new NullPointerException(); } if (batchSize < 1) { throw new IllegalArgumentException(); } return new NonParallelSortedSetIterable<>(this); } @Override public LazyIterable<T> asReversed() { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".asReversed() not implemented yet"); } @Override public ImmutableSortedSet<T> toReversed() { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".toReversed() not implemented yet"); } @Override public int detectLastIndex(Predicate<? super T> predicate) { throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".detectLastIndex() not implemented yet"); } }