All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.collections.impl.set.mutable.SynchronizedMutableSet Maven / Gradle / Ivy

There is a newer version: 12.0.0.M3
Show newest version
/*
 * 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 elements)
    {
        this.addAllIterable(elements);
        return this;
    }

    @Override
    public MutableSet withoutAll(Iterable 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 procedure)
    {
        return (MutableSet) super.tap(procedure);
    }

    @Override
    public MutableSet select(Predicate predicate)
    {
        return (MutableSet) super.select(predicate);
    }

    @Override
    public 

MutableSet selectWith(Predicate2 predicate, P parameter) { return (MutableSet) super.selectWith(predicate, parameter); } @Override public MutableSet reject(Predicate predicate) { return (MutableSet) super.reject(predicate); } @Override public

MutableSet rejectWith(Predicate2 predicate, P parameter) { return (MutableSet) super.rejectWith(predicate, parameter); } @Override public PartitionMutableSet partition(Predicate predicate) { return (PartitionMutableSet) super.partition(predicate); } @Override public

PartitionMutableSet partitionWith(Predicate2 predicate, P parameter) { return (PartitionMutableSet) super.partitionWith(predicate, parameter); } @Override public MutableBooleanSet collectBoolean(BooleanFunction booleanFunction) { return (MutableBooleanSet) super.collectBoolean(booleanFunction); } @Override public MutableByteSet collectByte(ByteFunction byteFunction) { return (MutableByteSet) super.collectByte(byteFunction); } @Override public MutableCharSet collectChar(CharFunction charFunction) { return (MutableCharSet) super.collectChar(charFunction); } @Override public MutableDoubleSet collectDouble(DoubleFunction doubleFunction) { return (MutableDoubleSet) super.collectDouble(doubleFunction); } @Override public MutableFloatSet collectFloat(FloatFunction floatFunction) { return (MutableFloatSet) super.collectFloat(floatFunction); } @Override public MutableIntSet collectInt(IntFunction intFunction) { return (MutableIntSet) super.collectInt(intFunction); } @Override public MutableLongSet collectLong(LongFunction longFunction) { return (MutableLongSet) super.collectLong(longFunction); } @Override public MutableShortSet collectShort(ShortFunction shortFunction) { return (MutableShortSet) super.collectShort(shortFunction); } @Override public MutableSet selectInstancesOf(Class clazz) { return (MutableSet) super.selectInstancesOf(clazz); } @Override public MutableSet collect(Function 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 function, P parameter) { return (MutableSet) super.collectWith(function, parameter); } @Override public MutableSet collectIf( Predicate predicate, Function function) { return (MutableSet) super.collectIf(predicate, function); } @Override public MutableSet flatCollect(Function> function) { return (MutableSet) super.flatCollect(function); } @Override public MutableSetMultimap groupBy(Function function) { return (MutableSetMultimap) super.groupBy(function); } @Override public MutableSetMultimap groupByEach(Function> 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 set, R targetSet) { synchronized (this.getLock()) { return this.getMutableSet().unionInto(set, targetSet); } } @Override public > R intersectInto(SetIterable set, R targetSet) { synchronized (this.getLock()) { return this.getMutableSet().intersectInto(set, targetSet); } } @Override public > R differenceInto(SetIterable subtrahendSet, R targetSet) { synchronized (this.getLock()) { return this.getMutableSet().differenceInto(subtrahendSet, targetSet); } } @Override public > R symmetricDifferenceInto(SetIterable set, R targetSet) { synchronized (this.getLock()) { return this.getMutableSet().symmetricDifferenceInto(set, targetSet); } } @Override public boolean isSubsetOf(SetIterable candidateSuperset) { synchronized (this.getLock()) { return this.getMutableSet().isSubsetOf(candidateSuperset); } } @Override public boolean isProperSubsetOf(SetIterable 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 set) { synchronized (this.getLock()) { return this.getMutableSet().union(set); } } @Override public MutableSet intersect(SetIterable set) { synchronized (this.getLock()) { return this.getMutableSet().intersect(set); } } @Override public MutableSet difference(SetIterable subtrahendSet) { synchronized (this.getLock()) { return this.getMutableSet().difference(subtrahendSet); } } @Override public MutableSet symmetricDifference(SetIterable 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()); } } }