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

com.gs.collections.impl.lazy.parallel.AbstractMultiReaderParallelIterable Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2014 Goldman Sachs.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.gs.collections.impl.lazy.parallel;

import java.util.Comparator;
import java.util.concurrent.locks.ReadWriteLock;

import com.gs.collections.api.ParallelIterable;
import com.gs.collections.api.bag.MutableBag;
import com.gs.collections.api.bag.sorted.MutableSortedBag;
import com.gs.collections.api.block.function.Function;
import com.gs.collections.api.block.function.Function0;
import com.gs.collections.api.block.function.Function2;
import com.gs.collections.api.block.function.primitive.DoubleFunction;
import com.gs.collections.api.block.function.primitive.FloatFunction;
import com.gs.collections.api.block.function.primitive.IntFunction;
import com.gs.collections.api.block.function.primitive.LongFunction;
import com.gs.collections.api.block.predicate.Predicate;
import com.gs.collections.api.block.predicate.Predicate2;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.list.MutableList;
import com.gs.collections.api.list.ParallelListIterable;
import com.gs.collections.api.map.MapIterable;
import com.gs.collections.api.map.MutableMap;
import com.gs.collections.api.map.sorted.MutableSortedMap;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.ParallelUnsortedSetIterable;
import com.gs.collections.api.set.sorted.MutableSortedSet;
import com.gs.collections.impl.lazy.parallel.list.MultiReaderParallelListIterable;
import com.gs.collections.impl.lazy.parallel.set.MultiReaderParallelUnsortedSetIterable;

public abstract class AbstractMultiReaderParallelIterable> implements ParallelIterable
{
    protected final PI delegate;
    protected final ReadWriteLock lock;

    protected AbstractMultiReaderParallelIterable(PI delegate, ReadWriteLock lock)
    {
        this.delegate = delegate;
        this.lock = lock;
    }

    protected  ParallelListIterable wrap(ParallelListIterable wrapped)
    {
        return new MultiReaderParallelListIterable(wrapped, this.lock);
    }

    protected  ParallelUnsortedSetIterable wrap(ParallelUnsortedSetIterable wrapped)
    {
        return new MultiReaderParallelUnsortedSetIterable(wrapped, this.lock);
    }

    protected  ParallelIterable wrap(ParallelIterable wrapped)
    {
        return new MultiReaderParallelIterable(wrapped, this.lock);
    }

    public void forEach(Procedure procedure)
    {
        this.lock.readLock().lock();
        try
        {
            this.delegate.forEach(procedure);
        }
        finally
        {
            this.lock.readLock().unlock();
        }
    }

    public 

void forEachWith(Procedure2 procedure, P parameter) { this.lock.readLock().lock(); try { this.delegate.forEachWith(procedure, parameter); } finally { this.lock.readLock().unlock(); } } public T detect(Predicate predicate) { this.lock.readLock().lock(); try { return this.delegate.detect(predicate); } finally { this.lock.readLock().unlock(); } } public

T detectWith(Predicate2 predicate, P parameter) { this.lock.readLock().lock(); try { return this.delegate.detectWith(predicate, parameter); } finally { this.lock.readLock().unlock(); } } public T detectIfNone(Predicate predicate, Function0 function) { this.lock.readLock().lock(); try { return this.delegate.detectIfNone(predicate, function); } finally { this.lock.readLock().unlock(); } } public

T detectWithIfNone(Predicate2 predicate, P parameter, Function0 function) { this.lock.readLock().lock(); try { return this.delegate.detectWithIfNone(predicate, parameter, function); } finally { this.lock.readLock().unlock(); } } public int count(Predicate predicate) { this.lock.readLock().lock(); try { return this.delegate.count(predicate); } finally { this.lock.readLock().unlock(); } } public

int countWith(Predicate2 predicate, P parameter) { this.lock.readLock().lock(); try { return this.delegate.countWith(predicate, parameter); } finally { this.lock.readLock().unlock(); } } public boolean anySatisfy(Predicate predicate) { this.lock.readLock().lock(); try { return this.delegate.anySatisfy(predicate); } finally { this.lock.readLock().unlock(); } } public

boolean anySatisfyWith(Predicate2 predicate, P parameter) { this.lock.readLock().lock(); try { return this.delegate.anySatisfyWith(predicate, parameter); } finally { this.lock.readLock().unlock(); } } public boolean allSatisfy(Predicate predicate) { this.lock.readLock().lock(); try { return this.delegate.allSatisfy(predicate); } finally { this.lock.readLock().unlock(); } } public

boolean allSatisfyWith(Predicate2 predicate, P parameter) { this.lock.readLock().lock(); try { return this.delegate.allSatisfyWith(predicate, parameter); } finally { this.lock.readLock().unlock(); } } public boolean noneSatisfy(Predicate predicate) { this.lock.readLock().lock(); try { return this.delegate.noneSatisfy(predicate); } finally { this.lock.readLock().unlock(); } } public

boolean noneSatisfyWith(Predicate2 predicate, P parameter) { this.lock.readLock().lock(); try { return this.delegate.noneSatisfyWith(predicate, parameter); } finally { this.lock.readLock().unlock(); } } public MutableList toList() { this.lock.readLock().lock(); try { return this.delegate.toList(); } finally { this.lock.readLock().unlock(); } } public MutableList toSortedList() { this.lock.readLock().lock(); try { return this.delegate.toSortedList(); } finally { this.lock.readLock().unlock(); } } public MutableList toSortedList(Comparator comparator) { this.lock.readLock().lock(); try { return this.delegate.toSortedList(comparator); } finally { this.lock.readLock().unlock(); } } public > MutableList toSortedListBy(Function function) { this.lock.readLock().lock(); try { return this.delegate.toSortedListBy(function); } finally { this.lock.readLock().unlock(); } } public MutableSet toSet() { this.lock.readLock().lock(); try { return this.delegate.toSet(); } finally { this.lock.readLock().unlock(); } } public MutableSortedSet toSortedSet() { this.lock.readLock().lock(); try { return this.delegate.toSortedSet(); } finally { this.lock.readLock().unlock(); } } public MutableSortedSet toSortedSet(Comparator comparator) { this.lock.readLock().lock(); try { return this.delegate.toSortedSet(comparator); } finally { this.lock.readLock().unlock(); } } public > MutableSortedSet toSortedSetBy(Function function) { this.lock.readLock().lock(); try { return this.delegate.toSortedSetBy(function); } finally { this.lock.readLock().unlock(); } } public MutableBag toBag() { this.lock.readLock().lock(); try { return this.delegate.toBag(); } finally { this.lock.readLock().unlock(); } } public MutableSortedBag toSortedBag() { this.lock.readLock().lock(); try { return this.delegate.toSortedBag(); } finally { this.lock.readLock().unlock(); } } public MutableSortedBag toSortedBag(Comparator comparator) { this.lock.readLock().lock(); try { return this.delegate.toSortedBag(comparator); } finally { this.lock.readLock().unlock(); } } public > MutableSortedBag toSortedBagBy(Function function) { this.lock.readLock().lock(); try { return this.delegate.toSortedBagBy(function); } finally { this.lock.readLock().unlock(); } } public MutableMap toMap(Function keyFunction, Function valueFunction) { this.lock.readLock().lock(); try { return this.delegate.toMap(keyFunction, valueFunction); } finally { this.lock.readLock().unlock(); } } public MutableSortedMap toSortedMap(Function keyFunction, Function valueFunction) { this.lock.readLock().lock(); try { return this.delegate.toSortedMap(keyFunction, valueFunction); } finally { this.lock.readLock().unlock(); } } public MutableSortedMap toSortedMap(Comparator comparator, Function keyFunction, Function valueFunction) { this.lock.readLock().lock(); try { return this.delegate.toSortedMap(comparator, keyFunction, valueFunction); } finally { this.lock.readLock().unlock(); } } public Object[] toArray() { this.lock.readLock().lock(); try { return this.delegate.toArray(); } finally { this.lock.readLock().unlock(); } } public T1[] toArray(T1[] target) { this.lock.readLock().lock(); try { return this.delegate.toArray(target); } finally { this.lock.readLock().unlock(); } } public T min(Comparator comparator) { this.lock.readLock().lock(); try { return this.delegate.min(comparator); } finally { this.lock.readLock().unlock(); } } public T max(Comparator comparator) { this.lock.readLock().lock(); try { return this.delegate.max(comparator); } finally { this.lock.readLock().unlock(); } } public T min() { this.lock.readLock().lock(); try { return this.delegate.min(); } finally { this.lock.readLock().unlock(); } } public T max() { this.lock.readLock().lock(); try { return this.delegate.max(); } finally { this.lock.readLock().unlock(); } } public > T minBy(Function function) { this.lock.readLock().lock(); try { return this.delegate.minBy(function); } finally { this.lock.readLock().unlock(); } } public > T maxBy(Function function) { this.lock.readLock().lock(); try { return this.delegate.maxBy(function); } finally { this.lock.readLock().unlock(); } } public long sumOfInt(IntFunction function) { this.lock.readLock().lock(); try { return this.delegate.sumOfInt(function); } finally { this.lock.readLock().unlock(); } } public double sumOfFloat(FloatFunction function) { this.lock.readLock().lock(); try { return this.delegate.sumOfFloat(function); } finally { this.lock.readLock().unlock(); } } public long sumOfLong(LongFunction function) { this.lock.readLock().lock(); try { return this.delegate.sumOfLong(function); } finally { this.lock.readLock().unlock(); } } public double sumOfDouble(DoubleFunction function) { this.lock.readLock().lock(); try { return this.delegate.sumOfDouble(function); } finally { this.lock.readLock().unlock(); } } public String makeString() { this.lock.readLock().lock(); try { return this.delegate.makeString(); } finally { this.lock.readLock().unlock(); } } public String makeString(String separator) { this.lock.readLock().lock(); try { return this.delegate.makeString(separator); } finally { this.lock.readLock().unlock(); } } public String makeString(String start, String separator, String end) { this.lock.readLock().lock(); try { return this.delegate.makeString(start, separator, end); } finally { this.lock.readLock().unlock(); } } public void appendString(Appendable appendable) { this.lock.readLock().lock(); try { this.delegate.appendString(appendable); } finally { this.lock.readLock().unlock(); } } public void appendString(Appendable appendable, String separator) { this.lock.readLock().lock(); try { this.delegate.appendString(appendable, separator); } finally { this.lock.readLock().unlock(); } } public void appendString(Appendable appendable, String start, String separator, String end) { this.lock.readLock().lock(); try { this.delegate.appendString(appendable, start, separator, end); } finally { this.lock.readLock().unlock(); } } public MapIterable groupByUniqueKey(Function function) { this.lock.readLock().lock(); try { return this.delegate.groupByUniqueKey(function); } finally { this.lock.readLock().unlock(); } } public MapIterable aggregateInPlaceBy(Function groupBy, Function0 zeroValueFactory, Procedure2 mutatingAggregator) { this.lock.readLock().lock(); try { return this.delegate.aggregateInPlaceBy(groupBy, zeroValueFactory, mutatingAggregator); } finally { this.lock.readLock().unlock(); } } public MapIterable aggregateBy(Function groupBy, Function0 zeroValueFactory, Function2 nonMutatingAggregator) { this.lock.readLock().lock(); try { return this.delegate.aggregateBy(groupBy, zeroValueFactory, nonMutatingAggregator); } finally { this.lock.readLock().unlock(); } } @Override public String toString() { this.lock.readLock().lock(); try { return this.delegate.toString(); } finally { this.lock.readLock().unlock(); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy