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.LongIterable;
import org.eclipse.collections.api.ByteIterable;
import org.eclipse.collections.api.LazyLongIterable;
import org.eclipse.collections.api.LazyByteIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableLongBag;
import org.eclipse.collections.api.block.function.primitive.LongFunction;
import org.eclipse.collections.api.block.function.primitive.LongFunction0;
import org.eclipse.collections.api.block.function.primitive.LongToLongFunction;
import org.eclipse.collections.api.block.function.primitive.LongToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ByteLongToLongFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectLongToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ByteToLongFunction;
import org.eclipse.collections.api.block.predicate.primitive.LongPredicate;
import org.eclipse.collections.api.block.predicate.primitive.ByteLongPredicate;
import org.eclipse.collections.api.block.procedure.primitive.LongProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteLongProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteProcedure;
import org.eclipse.collections.api.collection.primitive.MutableLongCollection;
import org.eclipse.collections.api.iterator.MutableLongIterator;
import org.eclipse.collections.api.list.primitive.MutableLongList;
import org.eclipse.collections.api.map.MutableMap;
import org.eclipse.collections.api.map.primitive.ImmutableByteLongMap;
import org.eclipse.collections.api.map.primitive.ByteLongMap;
import org.eclipse.collections.api.map.primitive.MutableByteLongMap;
import org.eclipse.collections.api.map.primitive.MutableLongByteMap;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.set.primitive.MutableLongSet;
import org.eclipse.collections.api.tuple.primitive.ByteLongPair;
import org.eclipse.collections.impl.SynchronizedRichIterable;
import org.eclipse.collections.impl.factory.primitive.ByteLongMaps;
import org.eclipse.collections.impl.set.mutable.primitive.SynchronizedByteSet;
import org.eclipse.collections.impl.collection.mutable.primitive.SynchronizedLongCollection;
public class SynchronizedByteLongMap
implements MutableByteLongMap, Serializable
{
private static final long serialVersionUID = 1L;
private final Object lock;
private final MutableByteLongMap map;
public SynchronizedByteLongMap(MutableByteLongMap map)
{
this(map, null);
}
public SynchronizedByteLongMap(MutableByteLongMap map, Object newLock)
{
if (map == null)
{
throw new IllegalArgumentException("Cannot create a SynchronizedByteLongMap 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(byte key, long value)
{
synchronized (this.lock)
{
this.map.put(key, value);
}
}
@Override
public void putPair(ByteLongPair keyValuePair)
{
synchronized (this.lock)
{
this.map.put(keyValuePair.getOne(), keyValuePair.getTwo());
}
}
@Override
public void putAll(ByteLongMap map)
{
synchronized (this.lock)
{
this.map.putAll(map);
}
}
@Override
public void updateValues(ByteLongToLongFunction function)
{
synchronized (this.lock)
{
this.map.updateValues(function);
}
}
@Override
public void removeKey(byte key)
{
synchronized (this.lock)
{
this.map.removeKey(key);
}
}
@Override
public void remove(byte key)
{
synchronized (this.lock)
{
this.map.remove(key);
}
}
@Override
public long removeKeyIfAbsent(byte key, long value)
{
synchronized (this.lock)
{
return this.map.removeKeyIfAbsent(key, value);
}
}
@Override
public long getIfAbsentPut(byte key, long value)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, value);
}
}
@Override
public long getIfAbsentPut(byte key, LongFunction0 function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPut(key, function);
}
}
@Override
public long getIfAbsentPutWithKey(byte key, ByteToLongFunction function)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWithKey(key, function);
}
}
@Override
public <P> long getIfAbsentPutWith(byte key, LongFunction<? super P> function, P parameter)
{
synchronized (this.lock)
{
return this.map.getIfAbsentPutWith(key, function, parameter);
}
}
@Override
public long updateValue(byte key, long initialValueIfAbsent, LongToLongFunction function)
{
synchronized (this.lock)
{
return this.map.updateValue(key, initialValueIfAbsent, function);
}
}
@Override
public long get(byte key)
{
synchronized (this.lock)
{
return this.map.get(key);
}
}
@Override
public long getIfAbsent(byte key, long ifAbsent)
{
synchronized (this.lock)
{
return this.map.getIfAbsent(key, ifAbsent);
}
}
@Override
public long getOrThrow(byte key)
{
synchronized (this.lock)
{
return this.map.getOrThrow(key);
}
}
@Override
public boolean containsKey(byte key)
{
synchronized (this.lock)
{
return this.map.containsKey(key);
}
}
@Override
public boolean containsValue(long value)
{
synchronized (this.lock)
{
return this.map.containsValue(value);
}
}
@Override
public void forEachValue(LongProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachValue(procedure);
}
}
@Override
public void forEachKey(ByteProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKey(procedure);
}
}
@Override
public void forEachKeyValue(ByteLongProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEachKeyValue(procedure);
}
}
@Override
public LazyByteIterable keysView()
{
synchronized (this.lock)
{
return this.map.keysView();
}
}
@Override
public RichIterable<ByteLongPair> keyValuesView()
{
synchronized (this.lock)
{
return SynchronizedRichIterable.of(this.map.keyValuesView(), this.lock).asLazy();
}
}
@Override
public MutableLongByteMap flipUniqueValues()
{
synchronized (this.lock)
{
return this.map.flipUniqueValues();
}
}
@Override
public MutableByteLongMap select(ByteLongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableByteLongMap reject(ByteLongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public MutableLongIterator longIterator()
{
return this.map.longIterator();
}
@Override
public void forEach(LongProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(LongProcedure procedure)
{
synchronized (this.lock)
{
this.map.forEach(procedure);
}
}
@Override
public int count(LongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.count(predicate);
}
}
@Override
public boolean anySatisfy(LongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.anySatisfy(predicate);
}
}
@Override
public boolean allSatisfy(LongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.allSatisfy(predicate);
}
}
@Override
public boolean noneSatisfy(LongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.noneSatisfy(predicate);
}
}
@Override
public MutableLongBag select(LongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.select(predicate);
}
}
@Override
public MutableLongBag reject(LongPredicate predicate)
{
synchronized (this.lock)
{
return this.map.reject(predicate);
}
}
@Override
public <V> MutableBag<V> collect(LongToObjectFunction<? extends V> function)
{
synchronized (this.lock)
{
return this.map.collect(function);
}
}
@Override
public long detectIfNone(LongPredicate predicate, long ifNone)
{
synchronized (this.lock)
{
return this.map.detectIfNone(predicate, ifNone);
}
}
@Override
public long sum()
{
synchronized (this.lock)
{
return this.map.sum();
}
}
@Override
public long max()
{
synchronized (this.lock)
{
return this.map.max();
}
}
@Override
public long maxIfEmpty(long defaultValue)
{
synchronized (this.lock)
{
return this.map.maxIfEmpty(defaultValue);
}
}
@Override
public long min()
{
synchronized (this.lock)
{
return this.map.min();
}
}
@Override
public long minIfEmpty(long 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 long addToValue(byte key, long toBeAdded)
{
synchronized (this.lock)
{
return this.map.addToValue(key, toBeAdded);
}
}
@Override
public long[] toSortedArray()
{
synchronized (this.lock)
{
return this.map.toSortedArray();
}
}
@Override
public MutableLongList toSortedList()
{
synchronized (this.lock)
{
return this.map.toSortedList();
}
}
@Override
public long[] toArray()
{
synchronized (this.lock)
{
return this.map.toArray();
}
}
@Override
public boolean contains(long value)
{
synchronized (this.lock)
{
return this.map.contains(value);
}
}
@Override
public boolean containsAll(long... source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public boolean containsAll(LongIterable source)
{
synchronized (this.lock)
{
return this.map.containsAll(source);
}
}
@Override
public MutableLongList toList()
{
synchronized (this.lock)
{
return this.map.toList();
}
}
@Override
public MutableLongSet toSet()
{
synchronized (this.lock)
{
return this.map.toSet();
}
}
@Override
public MutableLongBag toBag()
{
synchronized (this.lock)
{
return this.map.toBag();
}
}
@Override
public LazyLongIterable asLazy()
{
synchronized (this.lock)
{
return this.map.asLazy();
}
}
@Override
public MutableByteLongMap withKeyValue(byte key, long value)
{
synchronized (this.lock)
{
this.map.withKeyValue(key, value);
}
return this;
}
@Override
public MutableByteLongMap withoutKey(byte key)
{
synchronized (this.lock)
{
this.map.withoutKey(key);
}
return this;
}
@Override
public MutableByteLongMap withoutAllKeys(ByteIterable keys)
{
synchronized (this.lock)
{
this.map.withoutAllKeys(keys);
}
return this;
}
@Override
public MutableByteLongMap asUnmodifiable()
{
synchronized (this.lock)
{
return new UnmodifiableByteLongMap(this);
}
}
@Override
public MutableByteLongMap asSynchronized()
{
return this;
}
@Override
public ImmutableByteLongMap toImmutable()
{
synchronized (this.lock)
{
return ByteLongMaps.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 MutableByteSet keySet()
{
synchronized (this.lock)
{
return SynchronizedByteSet.of(this.map.keySet(), this.lock);
}
}
@Override
public MutableLongCollection values()
{
synchronized (this.lock)
{
return SynchronizedLongCollection.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, ObjectLongToObjectFunction<? super T, ? extends T> function)
{
synchronized (this.lock)
{
return this.map.injectInto(injectedValue, function);
}
}
@Override
public RichIterable<LongIterable> chunk(int size)
{
synchronized (this.lock)
{
return this.map.chunk(size);
}
}
}