org.eclipse.collections.impl.set.mutable.SynchronizedMutableSet Maven / Gradle / Ivy
/*
* 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.mutable;
import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;
import java.util.Set;
import java.util.concurrent.ExecutorService;
import org.eclipse.collections.api.LazyIterable;
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.factory.Sets;
import org.eclipse.collections.api.multimap.set.MutableSetMultimap;
import org.eclipse.collections.api.ordered.OrderedIterable;
import org.eclipse.collections.api.partition.set.PartitionMutableSet;
import org.eclipse.collections.api.set.ImmutableSet;
import org.eclipse.collections.api.set.MutableSet;
import org.eclipse.collections.api.set.ParallelUnsortedSetIterable;
import org.eclipse.collections.api.set.SetIterable;
import org.eclipse.collections.api.set.UnsortedSetIterable;
import org.eclipse.collections.api.set.primitive.MutableBooleanSet;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.set.primitive.MutableCharSet;
import org.eclipse.collections.api.set.primitive.MutableDoubleSet;
import org.eclipse.collections.api.set.primitive.MutableFloatSet;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
import org.eclipse.collections.api.set.primitive.MutableLongSet;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.tuple.Pair;
import org.eclipse.collections.impl.collection.mutable.AbstractSynchronizedMutableCollection;
import org.eclipse.collections.impl.collection.mutable.SynchronizedCollectionSerializationProxy;
import org.eclipse.collections.impl.lazy.parallel.set.SynchronizedParallelUnsortedSetIterable;
/**
* A synchronized view of a {@link MutableSet}. It is imperative that the user manually synchronize on the collection when iterating over it using the
* standard JDK iterator or JDK 5 for loop, as per {@link Collections#synchronizedCollection(Collection)}.
*
* @see MutableSet#asSynchronized()
*/
public class SynchronizedMutableSet
extends AbstractSynchronizedMutableCollection
implements MutableSet, Serializable
{
private static final long serialVersionUID = 2L;
SynchronizedMutableSet(MutableSet set)
{
super(set);
}
SynchronizedMutableSet(MutableSet set, Object newLock)
{
super(set, newLock);
}
/**
* This method will take a MutableSet and wrap it directly in a SynchronizedMutableSet. It will
* take any other non-Eclipse-Collections collection and first adapt it will a SetAdapter, and then return a
* SynchronizedMutableSet that wraps the adapter.
*/
public static > SynchronizedMutableSet of(S set)
{
return new SynchronizedMutableSet<>(SetAdapter.adapt(set));
}
/**
* This method will take a MutableSet and wrap it directly in a SynchronizedMutableSet. It will
* take any other non-Eclipse-Collections collection and first adapt it will a SetAdapter, and then return a
* SynchronizedMutableSet that wraps the adapter. Additionally, a developer specifies which lock to use
* with the collection.
*/
public static > SynchronizedMutableSet of(S set, Object lock)
{
return new SynchronizedMutableSet<>(SetAdapter.adapt(set), lock);
}
private MutableSet getMutableSet()
{
return (MutableSet) this.getDelegate();
}
@Override
public MutableSet with(T element)
{
this.add(element);
return this;
}
@Override
public MutableSet without(T element)
{
this.remove(element);
return this;
}
@Override
public MutableSet withAll(Iterable extends T> elements)
{
this.addAllIterable(elements);
return this;
}
@Override
public MutableSet withoutAll(Iterable extends T> elements)
{
this.removeAllIterable(elements);
return this;
}
@Override
public MutableSet newEmpty()
{
synchronized (this.getLock())
{
return this.getMutableSet().newEmpty().asSynchronized();
}
}
@Override
public MutableSet clone()
{
synchronized (this.getLock())
{
return SynchronizedMutableSet.of(this.getMutableSet().clone());
}
}
protected Object writeReplace()
{
return new SynchronizedCollectionSerializationProxy<>(this.getMutableSet());
}
@Override
public MutableSet tap(Procedure super T> procedure)
{
return (MutableSet) super.tap(procedure);
}
@Override
public MutableSet select(Predicate super T> predicate)
{
return (MutableSet) super.select(predicate);
}
@Override
public MutableSet selectWith(Predicate2 super T, ? super P> predicate, P parameter)
{
return (MutableSet) super.selectWith(predicate, parameter);
}
@Override
public MutableSet reject(Predicate super T> predicate)
{
return (MutableSet) super.reject(predicate);
}
@Override
public MutableSet rejectWith(Predicate2 super T, ? super P> predicate, P parameter)
{
return (MutableSet) super.rejectWith(predicate, parameter);
}
@Override
public PartitionMutableSet partition(Predicate super T> predicate)
{
return (PartitionMutableSet) super.partition(predicate);
}
@Override
public PartitionMutableSet partitionWith(Predicate2 super T, ? super P> predicate, P parameter)
{
return (PartitionMutableSet) super.partitionWith(predicate, parameter);
}
@Override
public MutableBooleanSet collectBoolean(BooleanFunction super T> booleanFunction)
{
return (MutableBooleanSet) super.collectBoolean(booleanFunction);
}
@Override
public MutableByteSet collectByte(ByteFunction super T> byteFunction)
{
return (MutableByteSet) super.collectByte(byteFunction);
}
@Override
public MutableCharSet collectChar(CharFunction super T> charFunction)
{
return (MutableCharSet) super.collectChar(charFunction);
}
@Override
public MutableDoubleSet collectDouble(DoubleFunction super T> doubleFunction)
{
return (MutableDoubleSet) super.collectDouble(doubleFunction);
}
@Override
public MutableFloatSet collectFloat(FloatFunction super T> floatFunction)
{
return (MutableFloatSet) super.collectFloat(floatFunction);
}
@Override
public MutableIntSet collectInt(IntFunction super T> intFunction)
{
return (MutableIntSet) super.collectInt(intFunction);
}
@Override
public MutableLongSet collectLong(LongFunction super T> longFunction)
{
return (MutableLongSet) super.collectLong(longFunction);
}
@Override
public MutableShortSet collectShort(ShortFunction super T> shortFunction)
{
return (MutableShortSet) super.collectShort(shortFunction);
}
@Override
public MutableSet selectInstancesOf(Class clazz)
{
return (MutableSet) super.selectInstancesOf(clazz);
}
@Override
public MutableSet collect(Function super T, ? extends V> function)
{
return (MutableSet) super.collect(function);
}
/**
* @deprecated in 6.0. Use {@link OrderedIterable#zipWithIndex()} instead.
*/
@Override
@Deprecated
public MutableSet> zipWithIndex()
{
return (MutableSet>) super.zipWithIndex();
}
@Override
public MutableSet collectWith(Function2 super T, ? super P, ? extends V> function, P parameter)
{
return (MutableSet) super.collectWith(function, parameter);
}
@Override
public MutableSet collectIf(
Predicate super T> predicate,
Function super T, ? extends V> function)
{
return (MutableSet) super.collectIf(predicate, function);
}
@Override
public MutableSet flatCollect(Function super T, ? extends Iterable> function)
{
return (MutableSet) super.flatCollect(function);
}
@Override
public MutableSetMultimap groupBy(Function super T, ? extends V> function)
{
return (MutableSetMultimap) super.groupBy(function);
}
@Override
public MutableSetMultimap groupByEach(Function super T, ? extends Iterable> function)
{
return (MutableSetMultimap) super.groupByEach(function);
}
/**
* @deprecated in 6.0. Use {@link OrderedIterable#zip(Iterable)} instead.
*/
@Override
@Deprecated
public MutableSet> zip(Iterable that)
{
return (MutableSet>) super.zip(that);
}
@Override
public > R unionInto(SetIterable extends T> set, R targetSet)
{
synchronized (this.getLock())
{
return this.getMutableSet().unionInto(set, targetSet);
}
}
@Override
public > R intersectInto(SetIterable extends T> set, R targetSet)
{
synchronized (this.getLock())
{
return this.getMutableSet().intersectInto(set, targetSet);
}
}
@Override
public > R differenceInto(SetIterable extends T> subtrahendSet, R targetSet)
{
synchronized (this.getLock())
{
return this.getMutableSet().differenceInto(subtrahendSet, targetSet);
}
}
@Override
public > R symmetricDifferenceInto(SetIterable extends T> set, R targetSet)
{
synchronized (this.getLock())
{
return this.getMutableSet().symmetricDifferenceInto(set, targetSet);
}
}
@Override
public boolean isSubsetOf(SetIterable extends T> candidateSuperset)
{
synchronized (this.getLock())
{
return this.getMutableSet().isSubsetOf(candidateSuperset);
}
}
@Override
public boolean isProperSubsetOf(SetIterable extends T> candidateSuperset)
{
synchronized (this.getLock())
{
return this.getMutableSet().isProperSubsetOf(candidateSuperset);
}
}
@Override
public LazyIterable> cartesianProduct(SetIterable set)
{
synchronized (this.getLock())
{
return this.getMutableSet().cartesianProduct(set);
}
}
@Override
public MutableSet union(SetIterable extends T> set)
{
synchronized (this.getLock())
{
return this.getMutableSet().union(set);
}
}
@Override
public MutableSet intersect(SetIterable extends T> set)
{
synchronized (this.getLock())
{
return this.getMutableSet().intersect(set);
}
}
@Override
public MutableSet difference(SetIterable extends T> subtrahendSet)
{
synchronized (this.getLock())
{
return this.getMutableSet().difference(subtrahendSet);
}
}
@Override
public MutableSet symmetricDifference(SetIterable extends T> setB)
{
synchronized (this.getLock())
{
return this.getMutableSet().symmetricDifference(setB);
}
}
@Override
public MutableSet> powerSet()
{
synchronized (this.getLock())
{
return this.getMutableSet().powerSet();
}
}
@Override
public ParallelUnsortedSetIterable asParallel(ExecutorService executorService, int batchSize)
{
return new SynchronizedParallelUnsortedSetIterable<>(this.getMutableSet().asParallel(executorService, batchSize), this.getLock());
}
@Override
public MutableSet asUnmodifiable()
{
synchronized (this.getLock())
{
return UnmodifiableMutableSet.of(this);
}
}
@Override
public MutableSet asSynchronized()
{
return this;
}
@Override
public ImmutableSet toImmutable()
{
synchronized (this.getLock())
{
return Sets.immutable.withAll(this.getMutableSet());
}
}
}