package org.eclipse.collections.impl.map.mutable.primitive;
import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.LazyIntIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableIntBag;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction0;
import org.eclipse.collections.api.block.function.primitive.IntToIntFunction;
import org.eclipse.collections.api.block.function.primitive.IntToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.IntIntToIntFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.IntPredicate;
import org.eclipse.collections.api.block.predicate.primitive.IntIntPredicate;
import org.eclipse.collections.api.block.procedure.primitive.IntIntProcedure;
import org.eclipse.collections.api.block.procedure.primitive.IntProcedure;
import org.eclipse.collections.api.collection.primitive.MutableIntCollection;
import org.eclipse.collections.api.iterator.MutableIntIterator;
import org.eclipse.collections.api.list.primitive.MutableIntList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.ImmutableIntIntMap;
import org.eclipse.collections.api.map.primitive.IntIntMap;
import org.eclipse.collections.api.map.primitive.MutableIntIntMap;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
import org.eclipse.collections.api.tuple.primitive.IntIntPair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.factory.primitive.IntIntMaps;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedIntSet;
import org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedIntCollection;
public class SynchronizedIntIntMap
implements MutableIntIntMap, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
private final MutableIntIntMap map;
public SynchronizedIntIntMap(MutableIntIntMap map)
{
this(map, null);
}
public SynchronizedIntIntMap(MutableIntIntMap map, Object newLock)
{
if (map == null)
{
throw new IllegalArgumentException("Cannot create a SynchronizedIntIntMap on a null map");
}
this.map = map;
this.lock = newLock == null ? this : newLock;
}
@Override
public void clear()
{
synchronized (this.lock)
{
this.map.clear();
}
}
@Override
public void put(int key, int value)
{
synchronized (this.lock)
{
this.map.put(key, value);
}
}
@Override
public void putPair(IntIntPair keyValuePair)
{
synchronized (this.lock)
{
this.map.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
}
@Override
public void putAll(IntIntMap map)
{
synchronized (this.lock)
{
this.map.putAll(map);
}
}
@Override
public void updateValues(IntIntToIntFunction function)
{
synchronized (this.lock)
{
this.map.updateValues(function);
}
}
@Override
public void removeKey(int key)
{
synchronized (this.lock)
{
this.map.removeKey(key);
}
}
@Override
public void remove(int key)
{
synchronized (this.lock)
{
this.map.remove(key);
}
}
@Override
public int removeKeyIfAbsent(int key, int value)
{
synchronized (this.lock)
{
return this.map.removeKeyIfAbsent(key, value);
}
}
@Override
public int getIfAbsentPut(int key, int value)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, value);
}
}
@Override
public int getIfAbsentPut(int key, IntFunction0 function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, function);
}
}
@Override
public int getIfAbsentPutWithKey(int key, IntToIntFunction function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWithKey(key, function);
}
}
@Override
public <P> int getIfAbsentPutWith(int key, IntFunction<? super P> function, P parameter)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWith(key, function, parameter);
}
}
@Override
public int updateValue(int key, int initialValueIfAbsent, IntToIntFunction function)
{
synchronized (this.lock)
{
return this.map.updateValue(key, initialValueIfAbsent, function);
}
}
@Override
public int get(int key)
{
synchronized (this.lock)
{
return this.map.get(key);
}
}
@Override
public int getIfAbsent(int key, int ifAbsent)
{
synchronized (this.lock)
{
return this.map.getIfAbsent(key, ifAbsent);
}
}
@Override
public int getOrThrow(int key)
{
synchronized (this.lock)
{
return this.map.getOrThrow(key);
}
}
@Override
public boolean containsKey(int key)
{
synchronized (this.lock)
{
return this.map.containsKey(key);
}
}
@Override
public boolean containsValue(int value)
{
synchronized (this.lock)
{
return this.map.containsValue(value);
}
}
@Override
public void forEachValue(IntProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachValue(procedure);
}
}
@Override
public void forEachKey(IntProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKey(procedure);
}
}
@Override
public void forEachKeyValue(IntIntProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKeyValue(procedure);
}
}
@Override
public LazyIntIterable keysView()
{
synchronized (this.lock)
{
return this.map.keysView();
}
}
@Override
public RichIterable<IntIntPair> keyValuesView()
{
synchronized (this.lock)
{
return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy();
}
}
@Override
public MutableIntIntMap flipUniqueValues()
{
synchronized (this.lock)
{
return this.map.flipUniqueValues();
}
}
@Override
public MutableIntIntMap select(IntIntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableIntIntMap reject(IntIntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public MutableIntIterator intIterator()
{
return this.map.intIterator();
}
@Override
public void forEach(IntProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(IntProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
}
}
@Override
public int count(IntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.count(predicate);
}
}
@Override
public boolean anySatisfy(IntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.anySatisfy(predicate);
}
}
@Override
public boolean allSatisfy(IntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.allSatisfy(predicate);
}
}
@Override
public boolean noneSatisfy(IntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.noneSatisfy(predicate);
}
}
@Override
public MutableIntBag select(IntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableIntBag reject(IntPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public <V> MutableBag<V> collect(IntToObjectFunction<? extends V> function)
{
synchronized (this.lock)
{
return this.map.collect(function);
}
}
@Override
public int detectIfNone(IntPredicate predicate, int ifNone)
{
synchronized (this.lock)
{
return this.map.detectIfNone(predicate, ifNone);
}
}
@Override
public long sum()
{
synchronized (this.lock)
{
return this.map.sum();
}
}
@Override
public int max()
{
synchronized (this.lock)
{
return this.map.max();
}
}
@Override
public int maxIfEmpty(int defaultValue)
{
synchronized (this.lock)
{
return this.map.maxIfEmpty(defaultValue);
}
}
@Override
public int min()
{
synchronized (this.lock)
{
return this.map.min();
}
}
@Override
public int minIfEmpty(int defaultValue)
{
synchronized (this.lock)
{
return this.map.minIfEmpty(defaultValue);
}
}
@Override
public double average()
{
synchronized (this.lock)
{
return this.map.average();
}
}
@Override
public double median()
{
synchronized (this.lock)
{
return this.map.median();
}
}
@Override
public int addToValue(int key, int toBeAdded)
{
synchronized (this.lock)
{
return this.map.addToValue(key, toBeAdded);
}
}
@Override
public int[] toSortedArray()
{
synchronized (this.lock)
{
return this.map.toSortedArray();
}
}
@Override
public MutableIntList toSortedList()
{
synchronized (this.lock)
{
return this.map.toSortedList();
}
}
@Override
public int[] toArray()
{
synchronized (this.lock)
{
return this.map.toArray();
}
}
@Override
public boolean contains(int value)
{
synchronized (this.lock)
{
return this.map.contains(value);
}
}
@Override
public boolean containsAll(int... source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public boolean containsAll(IntIterable source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public MutableIntList toList()
{
synchronized (this.lock)
{
return this.map.toList();
}
}
@Override
public MutableIntSet toSet()
{
synchronized (this.lock)
{
return this.map.toSet();
}
}
@Override
public MutableIntBag toBag()
{
synchronized (this.lock)
{
return this.map.toBag();
}
}
@Override
public LazyIntIterable asLazy()
{
synchronized (this.lock)
{
return this.map.asLazy();
}
}
@Override
public MutableIntIntMap withKeyValue(int key, int value)
{
synchronized (this.lock)
{
this.map.withKeyValue(key, value);
}
return this;
}
@Override
public MutableIntIntMap withoutKey(int key)
{
synchronized (this.lock)
{
this.map.withoutKey(key);
}
return this;
}
@Override
public MutableIntIntMap withoutAllKeys(IntIterable keys)
{
synchronized (this.lock)
{
this.map.withoutAllKeys(keys);
}
return this;
}
@Override
public MutableIntIntMap asUnmodifiable()
{
synchronized (this.lock)
{
return new UnmodifiableIntIntMap(this);
}
}
@Override
public MutableIntIntMap asSynchronized()
{
return this;
}
@Override
public ImmutableIntIntMap toImmutable()
{
synchronized (this.lock)
{
return IntIntMaps.immutable.withAll(this);
}
}
@Override
public int size()
{
synchronized (this.lock)
{
return this.map.size();
}
}
@Override
public boolean isEmpty()
{
synchronized (this.lock)
{
return this.map.isEmpty();
}
}
@Override
public boolean notEmpty()
{
synchronized (this.lock)
{
return this.map.notEmpty();
}
}
@Override
public MutableIntSet keySet()
{
synchronized (this.lock)
{
return SynchronizedIntSet.of(this.map.keySet(), this.lock);
}
}
@Override
public MutableIntCollection values()
{
synchronized (this.lock)
{
return SynchronizedIntCollection.of(this.map.values(), this.lock);
}
}
@Override
public boolean equals(Object otherMap)
{
synchronized (this.lock)
{
return this.map.equals(otherMap);
}
}
@Override
public int hashCode()
{
synchronized (this.lock)
{
return this.map.hashCode();
}
}
@Override
public String toString()
{
synchronized (this.lock)
{
return this.map.toString();
}
}
@Override
public String makeString()
{
synchronized (this.lock)
{
return this.map.makeString();
}
}
@Override
public String makeString(String separator)
{
synchronized (this.lock)
{
return this.map.makeString(separator);
}
}
@Override
public String makeString(String start, String separator, String end)
{
synchronized (this.lock)
{
return this.map.makeString(start, separator, end);
}
}
@Override
public void appendString(Appendable appendable)
{
synchronized (this.lock)
{
this.map.appendString(appendable);
}
}
@Override
public void appendString(Appendable appendable, String separator)
{
synchronized (this.lock)
{
this.map.appendString(appendable, separator);
}
}
@Override
public void appendString(Appendable appendable, String start, String separator, String end)
{
synchronized (this.lock)
{
this.map.appendString(appendable, start, separator, end);
}
}
@Override
public <T> T injectInto(T injectedValue, ObjectIntToObjectFunction<? super T, ? extends T> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public RichIterable<IntIterable> chunk(int size)
{
synchronized (this.lock)
{
return this.map.chunk(size);
}
}
}