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.ByteIterable;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.LazyByteIterable;
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.MutableByteBag;
import org.eclipse.collections.api.block.function.primitive.ByteFunction;
import org.eclipse.collections.api.block.function.primitive.ByteFunction0;
import org.eclipse.collections.api.block.function.primitive.ByteToByteFunction;
import org.eclipse.collections.api.block.function.primitive.ByteToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.IntByteToByteFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectByteToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.IntToByteFunction;
import org.eclipse.collections.api.block.predicate.primitive.BytePredicate;
import org.eclipse.collections.api.block.predicate.primitive.IntBytePredicate;
import org.eclipse.collections.api.block.procedure.primitive.ByteProcedure;
import org.eclipse.collections.api.block.procedure.primitive.IntByteProcedure;
import org.eclipse.collections.api.block.procedure.primitive.IntProcedure;
import org.eclipse.collections.api.collection.primitive.MutableByteCollection;
import org.eclipse.collections.api.iterator.MutableByteIterator;
import org.eclipse.collections.api.list.primitive.MutableByteList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.ImmutableIntByteMap;
import org.eclipse.collections.api.map.primitive.IntByteMap;
import org.eclipse.collections.api.map.primitive.MutableIntByteMap;
import org.eclipse.collections.api.map.primitive.MutableByteIntMap;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.tuple.primitive.IntBytePair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.factory.primitive.IntByteMaps;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedIntSet;
import org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedByteCollection;
public class SynchronizedIntByteMap
implements MutableIntByteMap, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
private final MutableIntByteMap map;
public SynchronizedIntByteMap(MutableIntByteMap map)
{
this(map, null);
}
public SynchronizedIntByteMap(MutableIntByteMap map, Object newLock)
{
if (map == null)
{
throw new IllegalArgumentException("Cannot create a SynchronizedIntByteMap 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, byte value)
{
synchronized (this.lock)
{
this.map.put(key, value);
}
}
@Override
public void putPair(IntBytePair keyValuePair)
{
synchronized (this.lock)
{
this.map.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
}
@Override
public void putAll(IntByteMap map)
{
synchronized (this.lock)
{
this.map.putAll(map);
}
}
@Override
public void updateValues(IntByteToByteFunction 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 byte removeKeyIfAbsent(int key, byte value)
{
synchronized (this.lock)
{
return this.map.removeKeyIfAbsent(key, value);
}
}
@Override
public byte getIfAbsentPut(int key, byte value)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, value);
}
}
@Override
public byte getIfAbsentPut(int key, ByteFunction0 function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, function);
}
}
@Override
public byte getIfAbsentPutWithKey(int key, IntToByteFunction function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWithKey(key, function);
}
}
@Override
public <P> byte getIfAbsentPutWith(int key, ByteFunction<? super P> function, P parameter)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWith(key, function, parameter);
}
}
@Override
public byte updateValue(int key, byte initialValueIfAbsent, ByteToByteFunction function)
{
synchronized (this.lock)
{
return this.map.updateValue(key, initialValueIfAbsent, function);
}
}
@Override
public byte get(int key)
{
synchronized (this.lock)
{
return this.map.get(key);
}
}
@Override
public byte getIfAbsent(int key, byte ifAbsent)
{
synchronized (this.lock)
{
return this.map.getIfAbsent(key, ifAbsent);
}
}
@Override
public byte 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(byte value)
{
synchronized (this.lock)
{
return this.map.containsValue(value);
}
}
@Override
public void forEachValue(ByteProcedure 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(IntByteProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKeyValue(procedure);
}
}
@Override
public LazyIntIterable keysView()
{
synchronized (this.lock)
{
return this.map.keysView();
}
}
@Override
public RichIterable<IntBytePair> keyValuesView()
{
synchronized (this.lock)
{
return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy();
}
}
@Override
public MutableByteIntMap flipUniqueValues()
{
synchronized (this.lock)
{
return this.map.flipUniqueValues();
}
}
@Override
public MutableIntByteMap select(IntBytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableIntByteMap reject(IntBytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public MutableByteIterator byteIterator()
{
return this.map.byteIterator();
}
@Override
public void forEach(ByteProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(ByteProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
}
}
@Override
public int count(BytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.count(predicate);
}
}
@Override
public boolean anySatisfy(BytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.anySatisfy(predicate);
}
}
@Override
public boolean allSatisfy(BytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.allSatisfy(predicate);
}
}
@Override
public boolean noneSatisfy(BytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.noneSatisfy(predicate);
}
}
@Override
public MutableByteBag select(BytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableByteBag reject(BytePredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public <V> MutableBag<V> collect(ByteToObjectFunction<? extends V> function)
{
synchronized (this.lock)
{
return this.map.collect(function);
}
}
@Override
public byte detectIfNone(BytePredicate predicate, byte ifNone)
{
synchronized (this.lock)
{
return this.map.detectIfNone(predicate, ifNone);
}
}
@Override
public long sum()
{
synchronized (this.lock)
{
return this.map.sum();
}
}
@Override
public byte max()
{
synchronized (this.lock)
{
return this.map.max();
}
}
@Override
public byte maxIfEmpty(byte defaultValue)
{
synchronized (this.lock)
{
return this.map.maxIfEmpty(defaultValue);
}
}
@Override
public byte min()
{
synchronized (this.lock)
{
return this.map.min();
}
}
@Override
public byte minIfEmpty(byte 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 byte addToValue(int key, byte toBeAdded)
{
synchronized (this.lock)
{
return this.map.addToValue(key, toBeAdded);
}
}
@Override
public byte[] toSortedArray()
{
synchronized (this.lock)
{
return this.map.toSortedArray();
}
}
@Override
public MutableByteList toSortedList()
{
synchronized (this.lock)
{
return this.map.toSortedList();
}
}
@Override
public byte[] toArray()
{
synchronized (this.lock)
{
return this.map.toArray();
}
}
@Override
public boolean contains(byte value)
{
synchronized (this.lock)
{
return this.map.contains(value);
}
}
@Override
public boolean containsAll(byte... source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public boolean containsAll(ByteIterable source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public MutableByteList toList()
{
synchronized (this.lock)
{
return this.map.toList();
}
}
@Override
public MutableByteSet toSet()
{
synchronized (this.lock)
{
return this.map.toSet();
}
}
@Override
public MutableByteBag toBag()
{
synchronized (this.lock)
{
return this.map.toBag();
}
}
@Override
public LazyByteIterable asLazy()
{
synchronized (this.lock)
{
return this.map.asLazy();
}
}
@Override
public MutableIntByteMap withKeyValue(int key, byte value)
{
synchronized (this.lock)
{
this.map.withKeyValue(key, value);
}
return this;
}
@Override
public MutableIntByteMap withoutKey(int key)
{
synchronized (this.lock)
{
this.map.withoutKey(key);
}
return this;
}
@Override
public MutableIntByteMap withoutAllKeys(IntIterable keys)
{
synchronized (this.lock)
{
this.map.withoutAllKeys(keys);
}
return this;
}
@Override
public MutableIntByteMap asUnmodifiable()
{
synchronized (this.lock)
{
return new UnmodifiableIntByteMap(this);
}
}
@Override
public MutableIntByteMap asSynchronized()
{
return this;
}
@Override
public ImmutableIntByteMap toImmutable()
{
synchronized (this.lock)
{
return IntByteMaps.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 MutableByteCollection values()
{
synchronized (this.lock)
{
return SynchronizedByteCollection.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, ObjectByteToObjectFunction<? super T, ? extends T> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public RichIterable<ByteIterable> chunk(int size)
{
synchronized (this.lock)
{
return this.map.chunk(size);
}
}
}