package org.eclipse.collections.impl.map.immutable.primitive;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.LazyIntIterable;
import org.eclipse.collections.api.LazyDoubleIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.bag.ImmutableBag;
import org.eclipse.collections.api.bag.MutableBag;
import org.eclipse.collections.api.bag.primitive.MutableDoubleBag;
import org.eclipse.collections.api.bag.primitive.ImmutableDoubleBag;
import org.eclipse.collections.api.block.function.primitive.DoubleToObjectFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.IntDoublePredicate;
import org.eclipse.collections.api.block.predicate.primitive.DoublePredicate;
import org.eclipse.collections.api.block.procedure.primitive.IntDoubleProcedure;
import org.eclipse.collections.api.block.procedure.primitive.IntProcedure;
import org.eclipse.collections.api.block.procedure.primitive.DoubleProcedure;
import org.eclipse.collections.api.collection.primitive.MutableDoubleCollection;
import org.eclipse.collections.api.iterator.IntIterator;
import org.eclipse.collections.api.iterator.DoubleIterator;
import org.eclipse.collections.api.list.MutableList;
import org.eclipse.collections.impl.factory.Lists;
import org.eclipse.collections.api.list.primitive.MutableDoubleList;
import org.eclipse.collections.api.map.primitive.IntDoubleMap;
import org.eclipse.collections.impl.factory.primitive.DoubleIntMaps;
import org.eclipse.collections.api.map.primitive.ImmutableIntDoubleMap;
import org.eclipse.collections.api.map.primitive.ImmutableDoubleIntMap;
import org.eclipse.collections.api.map.primitive.MutableIntDoubleMap;
import org.eclipse.collections.api.map.primitive.MutableDoubleIntMap;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
import org.eclipse.collections.api.set.primitive.MutableDoubleSet;
import org.eclipse.collections.api.tuple.primitive.IntDoublePair;
import org.eclipse.collections.impl.block.procedure.checked.primitive.CheckedIntDoubleProcedure;
import org.eclipse.collections.impl.collection.mutable.primitive.UnmodifiableDoubleCollection;
import org.eclipse.collections.impl.factory.primitive.DoubleBags;
import org.eclipse.collections.impl.iterator.UnmodifiableDoubleIterator;
import org.eclipse.collections.impl.map.mutable.primitive.IntDoubleHashMap;
import org.eclipse.collections.impl.set.mutable.primitive.UnmodifiableIntSet;
final class ImmutableIntDoubleHashMap implements ImmutableIntDoubleMap, Serializable
{
private static final long serialVersionUID = 1L;
private final MutableIntDoubleMap delegate;
ImmutableIntDoubleHashMap(IntDoubleMap delegate)
{
this.delegate = new IntDoubleHashMap(delegate);
}
@Override
public double get(int key)
{
return this.delegate.get(key);
}
@Override
public double getIfAbsent(int key, double ifAbsent)
{
return this.delegate.getIfAbsent(key, ifAbsent);
}
@Override
public double getOrThrow(int key)
{
return this.delegate.getOrThrow(key);
}
@Override
public boolean containsKey(int key)
{
return this.delegate.containsKey(key);
}
@Override
public boolean containsValue(double value)
{
return this.delegate.containsValue(value);
}
@Override
public void forEachValue(DoubleProcedure procedure)
{
this.delegate.forEachValue(procedure);
}
@Override
public void forEachKey(IntProcedure procedure)
{
this.delegate.forEachKey(procedure);
}
@Override
public void forEachKeyValue(IntDoubleProcedure procedure)
{
this.delegate.forEachKeyValue(procedure);
}
@Override
public LazyIntIterable keysView()
{
return this.delegate.keysView();
}
@Override
public RichIterable<IntDoublePair> keyValuesView()
{
return this.delegate.keyValuesView();
}
@Override
public ImmutableDoubleIntMap flipUniqueValues()
{
MutableDoubleIntMap result = DoubleIntMaps.mutable.empty();
this.forEachKeyValue((key, value) ->
{
if (result.containsKey(value))
{
throw new IllegalStateException("Duplicate value: " + value + " found at key: " + result.get(value) + " and key: " + key);
}
result.put(value, key);
});
return result.toImmutable();
}
@Override
public ImmutableIntDoubleMap select(IntDoublePredicate predicate)
{
return this.delegate.select(predicate).toImmutable();
}
@Override
public ImmutableIntDoubleMap reject(IntDoublePredicate predicate)
{
return this.delegate.reject(predicate).toImmutable();
}
@Override
public <T> T injectInto(T injectedValue, ObjectDoubleToObjectFunction<? super T, ? extends T> function)
{
return this.delegate.injectInto(injectedValue, function);
}
@Override
public RichIterable<DoubleIterable> chunk(int size)
{
if (size <= 0)
{
throw new IllegalArgumentException("Size for groups must be positive but was: " + size);
}
MutableList<DoubleIterable> result = Lists.mutable.empty();
if (this.notEmpty())
{
DoubleIterator iterator = this.delegate.doubleIterator();
while (iterator.hasNext())
{
MutableDoubleBag batch = DoubleBags.mutable.empty();
for (int i = 0; i < size && iterator.hasNext(); i++)
{
batch.add(iterator.next());
}
result.add(batch.toImmutable());
}
}
return result.toImmutable();
}
@Override
public ImmutableIntDoubleMap toImmutable()
{
return this;
}
@Override
public DoubleIterator doubleIterator()
{
return new UnmodifiableDoubleIterator(this.delegate.doubleIterator());
}
@Override
public void forEach(DoubleProcedure procedure)
{
this.each(procedure);
}
@Override
public void each(DoubleProcedure procedure)
{
this.delegate.forEach(procedure);
}
@Override
public int count(DoublePredicate predicate)
{
return this.delegate.count(predicate);
}
@Override
public boolean anySatisfy(DoublePredicate predicate)
{
return this.delegate.anySatisfy(predicate);
}
@Override
public boolean allSatisfy(DoublePredicate predicate)
{
return this.delegate.allSatisfy(predicate);
}
@Override
public boolean noneSatisfy(DoublePredicate predicate)
{
return this.delegate.noneSatisfy(predicate);
}
@Override
public ImmutableDoubleBag select(DoublePredicate predicate)
{
return this.delegate.select(predicate).toImmutable();
}
@Override
public ImmutableDoubleBag reject(DoublePredicate predicate)
{
return this.delegate.reject(predicate).toImmutable();
}
@Override
public <V> ImmutableBag<V> collect(DoubleToObjectFunction<? extends V> function)
{
MutableBag<V> bag = this.delegate.collect(function);
return bag.toImmutable();
}
@Override
public double detectIfNone(DoublePredicate predicate, double ifNone)
{
return this.delegate.detectIfNone(predicate, ifNone);
}
@Override
public double sum()
{
return this.delegate.sum();
}
@Override
public double max()
{
return this.delegate.max();
}
@Override
public double maxIfEmpty(double defaultValue)
{
return this.delegate.maxIfEmpty(defaultValue);
}
@Override
public double min()
{
return this.delegate.min();
}
@Override
public double minIfEmpty(double defaultValue)
{
return this.delegate.minIfEmpty(defaultValue);
}
@Override
public double average()
{
return this.delegate.average();
}
@Override
public double median()
{
return this.delegate.median();
}
@Override
public double[] toSortedArray()
{
return this.delegate.toSortedArray();
}
@Override
public MutableDoubleList toSortedList()
{
return this.delegate.toSortedList();
}
@Override
public double[] toArray()
{
return this.delegate.toArray();
}
@Override
public boolean contains(double value)
{
return this.delegate.contains(value);
}
@Override
public boolean containsAll(double... source)
{
return this.delegate.containsAll(source);
}
@Override
public boolean containsAll(DoubleIterable source)
{
return this.delegate.containsAll(source);
}
@Override
public MutableDoubleList toList()
{
return this.delegate.toList();
}
@Override
public MutableDoubleSet toSet()
{
return this.delegate.toSet();
}
@Override
public MutableDoubleBag toBag()
{
return this.delegate.toBag();
}
@Override
public LazyDoubleIterable asLazy()
{
return this.delegate.asLazy();
}
@Override
public ImmutableIntDoubleMap newWithKeyValue(int key, double value)
{
MutableIntDoubleMap map = new IntDoubleHashMap(this.size() + 1);
map.putAll(this);
map.put(key, value);
return map.toImmutable();
}
@Override
public ImmutableIntDoubleMap newWithoutKey(int key)
{
MutableIntDoubleMap map = new IntDoubleHashMap(this.size());
map.putAll(this);
map.removeKey(key);
return map.toImmutable();
}
@Override
public ImmutableIntDoubleMap newWithoutAllKeys(IntIterable keys)
{
MutableIntDoubleMap map = new IntDoubleHashMap(this.size());
map.putAll(this);
IntIterator iterator = keys.intIterator();
while (iterator.hasNext())
{
map.removeKey(iterator.next());
}
return map.toImmutable();
}
@Override
public int size()
{
return this.delegate.size();
}
@Override
public boolean isEmpty()
{
return this.delegate.isEmpty();
}
@Override
public boolean notEmpty()
{
return this.delegate.notEmpty();
}
@Override
public String makeString()
{
return this.delegate.makeString();
}
@Override
public String makeString(String separator)
{
return this.delegate.makeString(separator);
}
@Override
public String makeString(String start, String separator, String end)
{
return this.delegate.makeString(start, separator, end);
}
@Override
public void appendString(Appendable appendable)
{
this.delegate.appendString(appendable);
}
@Override
public void appendString(Appendable appendable, String separator)
{
this.delegate.appendString(appendable, separator);
}
@Override
public void appendString(Appendable appendable, String start, String separator, String end)
{
this.delegate.appendString(appendable, start, separator, end);
}
@Override
public MutableIntSet keySet()
{
return UnmodifiableIntSet.of(this.delegate.keySet());
}
@Override
public MutableDoubleCollection values()
{
return UnmodifiableDoubleCollection.of(this.delegate.values());
}
@Override
public boolean equals(Object obj)
{
return this.delegate.equals(obj);
}
@Override
public int hashCode()
{
return this.delegate.hashCode();
}
@Override
public String toString()
{
return this.delegate.toString();
}
private Object writeReplace()
{
return new ImmutableIntDoubleMapSerializationProxy(this);
}
protected static class ImmutableIntDoubleMapSerializationProxy implements Externalizable
{
private static final long serialVersionUID = 1L;
private IntDoubleMap map;
@SuppressWarnings("UnusedDeclaration")
public ImmutableIntDoubleMapSerializationProxy()
{
}
protected ImmutableIntDoubleMapSerializationProxy(IntDoubleMap map)
{
this.map = map;
}
@Override
public void writeExternal(final ObjectOutput out) throws IOException
{
out.writeInt(this.map.size());
try
{
this.map.forEachKeyValue(new CheckedIntDoubleProcedure()
{
@Override
public void safeValue(int key, double value) throws IOException
{
out.writeInt(key);
out.writeDouble(value);
}
});
}
catch (RuntimeException e)
{
if (e.getCause() instanceof IOException)
{
throw (IOException) e.getCause();
}
throw e;
}
}
@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
{
int size = in.readInt();
MutableIntDoubleMap deserializedMap = new IntDoubleHashMap();
for (int i = 0; i < size; i++)
{
deserializedMap.put(in.readInt(), in.readDouble());
}
this.map = deserializedMap;
}
protected Object readResolve()
{
return this.map.toImmutable();
}
}
}