package org.eclipse.collections.impl.map.mutable.primitive;
import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.Arrays;
import java.util.Iterator;
import java.util.NoSuchElementException;
import org.eclipse.collections.api.ByteIterable;
import org.eclipse.collections.api.LazyByteIterable;
import org.eclipse.collections.api.DoubleIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.block.function.primitive.ByteToDoubleFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction;
import org.eclipse.collections.api.block.function.primitive.DoubleFunction0;
import org.eclipse.collections.api.block.function.primitive.DoubleToDoubleFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectDoubleToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.ByteDoublePredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.ByteProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ByteDoubleProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.api.collection.primitive.MutableDoubleCollection;
import org.eclipse.collections.api.iterator.ByteIterator;
import org.eclipse.collections.api.iterator.MutableByteIterator;
import org.eclipse.collections.api.iterator.MutableDoubleIterator;
import org.eclipse.collections.api.map.primitive.ByteDoubleMap;
import org.eclipse.collections.api.map.primitive.ImmutableByteDoubleMap;
import org.eclipse.collections.api.map.primitive.MutableByteDoubleMap;
import org.eclipse.collections.api.map.primitive.MutableDoubleByteMap;
import org.eclipse.collections.api.set.primitive.ByteSet;
import org.eclipse.collections.api.set.primitive.DoubleSet;
import org.eclipse.collections.api.set.primitive.MutableByteSet;
import org.eclipse.collections.api.tuple.primitive.ByteDoublePair;
import org.eclipse.collections.impl.bag.mutable.primitive.DoubleHashBag;
import org.eclipse.collections.impl.factory.primitive.ByteDoubleMaps;
import org.eclipse.collections.impl.factory.primitive.DoubleByteMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableByteIterator;
import org.eclipse.collections.impl.lazy.AbstractLazyIterable;
import org.eclipse.collections.impl.lazy.primitive.AbstractLazyByteIterable;
import org.eclipse.collections.impl.set.mutable.primitive.ByteHashSet;
import org.eclipse.collections.impl.tuple.primitive.PrimitiveTuples;
public class ByteDoubleHashMap extends AbstractMutableDoubleValuesMap implements MutableByteDoubleMap, Externalizable, MutableByteKeysMap
{
private static final double EMPTY_VALUE = 0.0;
private static final long serialVersionUID = 1L;
private static final byte EMPTY_KEY = (byte) 0;
private static final byte REMOVED_KEY = (byte) 1;
private static final int CACHE_LINE_SIZE = 64;
private static final int KEY_SIZE = 1;
private static final int INITIAL_LINEAR_PROBE = CACHE_LINE_SIZE / KEY_SIZE / 2;
private static final int DEFAULT_INITIAL_CAPACITY = 8;
private byte[] keys;
private double[] values;
private int occupiedWithData;
private int occupiedWithSentinels;
private SentinelValues sentinelValues;
private boolean copyKeysOnWrite;
public ByteDoubleHashMap()
{
this.allocateTable(DEFAULT_INITIAL_CAPACITY << 1);
}
public ByteDoubleHashMap(int initialCapacity)
{
if (initialCapacity < 0)
{
throw new IllegalArgumentException("initial capacity cannot be less than 0");
}
int capacity = this.smallestPowerOfTwoGreaterThan(initialCapacity << 1);
this.allocateTable(capacity);
}
public ByteDoubleHashMap(ByteDoubleMap map)
{
if (map instanceof ByteDoubleHashMap && ((ByteDoubleHashMap) map).occupiedWithSentinels == 0)
{
ByteDoubleHashMap hashMap = (ByteDoubleHashMap) map;
this.occupiedWithData = hashMap.occupiedWithData;
if (hashMap.sentinelValues != null)
{
this.sentinelValues = hashMap.sentinelValues.copy();
}
this.keys = Arrays.copyOf(hashMap.keys, hashMap.keys.length);
this.values = Arrays.copyOf(hashMap.values, hashMap.values.length);
}
else
{
int capacity = this.smallestPowerOfTwoGreaterThan(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY) << 1);
this.allocateTable(capacity);
this.putAll(map);
}
}
public static ByteDoubleHashMap newWithKeysValues(byte key1, double value1)
{
return new ByteDoubleHashMap(1).withKeyValue(key1, value1);
}
public static ByteDoubleHashMap newWithKeysValues(byte key1, double value1, byte key2, double value2)
{
return new ByteDoubleHashMap(2).withKeysValues(key1, value1, key2, value2);
}
public static ByteDoubleHashMap newWithKeysValues(byte key1, double value1, byte key2, double value2, byte key3, double value3)
{
return new ByteDoubleHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3);
}
public static ByteDoubleHashMap newWithKeysValues(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4)
{
return new ByteDoubleHashMap(4).withKeysValues(key1, value1, key2, value2, key3, value3, key4, value4);
}
private int smallestPowerOfTwoGreaterThan(int n)
{
return n > 1 ? Integer.highestOneBit(n - 1) << 1 : 1;
}
@Override
protected int getOccupiedWithData()
{
return this.occupiedWithData;
}
@Override
protected SentinelValues getSentinelValues()
{
return this.sentinelValues;
}
@Override
protected void setSentinelValuesNull()
{
this.sentinelValues = null;
}
@Override
protected double getEmptyValue()
{
return EMPTY_VALUE;
}
@Override
protected int getTableSize()
{
return this.values.length;
}
@Override
protected double getValueAtIndex(int index)
{
return this.values[index];
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof ByteDoubleMap))
{
return false;
}
ByteDoubleMap other = (ByteDoubleMap) obj;
if (this.size() != other.size())
{
return false;
}
if (this.sentinelValues == null)
{
if (other.containsKey(EMPTY_KEY) || other.containsKey(REMOVED_KEY))
{
return false;
}
}
else
{
if (this.sentinelValues.containsZeroKey && (!other.containsKey(EMPTY_KEY) || Double.compare(this.sentinelValues.zeroValue, other.getOrThrow(EMPTY_KEY)) != 0))
{
return false;
}
if (this.sentinelValues.containsOneKey && (!other.containsKey(REMOVED_KEY) || Double.compare(this.sentinelValues.oneValue, other.getOrThrow(REMOVED_KEY)) != 0))
{
return false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
byte key = this.keys[i];
if (isNonSentinel(key) && (!other.containsKey(key) || Double.compare(this.values[i], other.getOrThrow(key)) != 0))
{
return false;
}
}
return true;
}
@Override
public int hashCode()
{
int result = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result += (int) EMPTY_KEY ^ (int) (Double.doubleToLongBits(this.sentinelValues.zeroValue) ^ Double.doubleToLongBits(this.sentinelValues.zeroValue) >>> 32);
}
if (this.sentinelValues.containsOneKey)
{
result += (int) REMOVED_KEY ^ (int) (Double.doubleToLongBits(this.sentinelValues.oneValue) ^ Double.doubleToLongBits(this.sentinelValues.oneValue) >>> 32);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result += (int) this.keys[i] ^ (int) (Double.doubleToLongBits(this.values[i]) ^ Double.doubleToLongBits(this.values[i]) >>> 32);
}
}
return result;
}
@Override
public String toString()
{
StringBuilder appendable = new StringBuilder();
appendable.append("{");
boolean first = true;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
appendable.append(EMPTY_KEY).append("=").append(this.sentinelValues.zeroValue);
first = false;
}
if (this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(", ");
}
appendable.append(REMOVED_KEY).append("=").append(this.sentinelValues.oneValue);
first = false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
byte key = this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(", ");
}
appendable.append(key).append("=").append(this.values[i]);
first = false;
}
}
appendable.append("}");
return appendable.toString();
}
@Override
public MutableDoubleIterator doubleIterator()
{
return new InternalDoubleIterator();
}
@Override
public <V> V injectInto(V injectedValue, ObjectDoubleToObjectFunction<? super V, ? extends V> function)
{
V result = injectedValue;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result = function.valueOf(result, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
result = function.valueOf(result, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result = function.valueOf(result, this.values[i]);
}
}
return result;
}
@Override
public void clear()
{
this.sentinelValues = null;
this.occupiedWithData = 0;
this.occupiedWithSentinels = 0;
if (this.copyKeysOnWrite)
{
this.copyKeys();
}
Arrays.fill(this.keys, EMPTY_KEY);
Arrays.fill(this.values, EMPTY_VALUE);
}
@Override
public void put(byte key, double value)
{
if (isEmptyKey(key))
{
this.putForEmptySentinel(value);
return;
}
if (isRemovedKey(key))
{
this.putForRemovedSentinel(value);
return;
}
int index = this.probe(key);
byte keyAtIndex = this.keys[index];
if (keyAtIndex == key)
{
this.values[index] = value;
}
else
{
this.addKeyValueAtIndex(key, value, index);
}
}
private void putForRemovedSentinel(double value)
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addRemovedKeyValue(value);
}
private void putForEmptySentinel(double value)
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addEmptyKeyValue(value);
}
@Override
public void putAll(ByteDoubleMap map)
{
map.forEachKeyValue(this::put);
}
@Override
public void removeKey(byte key)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return;
}
this.removeEmptyKey();
return;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return;
}
this.removeRemovedKey();
return;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
this.removeKeyAtIndex(index);
}
}
@Override
public void remove(byte key)
{
this.removeKey(key);
}
@Override
public double removeKeyIfAbsent(byte key, double value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return value;
}
double oldValue = this.sentinelValues.zeroValue;
this.removeEmptyKey();
return oldValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return value;
}
double oldValue = this.sentinelValues.oneValue;
this.removeRemovedKey();
return oldValue;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
double oldValue = this.values[index];
this.removeKeyAtIndex(index);
return oldValue;
}
return value;
}
@Override
public double getIfAbsentPut(byte key, double value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public double getIfAbsentPut(byte key, DoubleFunction0 function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
double value = function.value();
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
double value = function.value();
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
double value = function.value();
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
double value = function.value();
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
double value = function.value();
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public <P> double getIfAbsentPutWith(byte key, DoubleFunction<? super P> function, P parameter)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
double value = function.doubleValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
double value = function.doubleValueOf(parameter);
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
double value = function.doubleValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
double value = function.doubleValueOf(parameter);
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
double value = function.doubleValueOf(parameter);
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public double getIfAbsentPutWithKey(byte key, ByteToDoubleFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
double value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
double value = function.valueOf(key);
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
double value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
double value = function.valueOf(key);
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
double value = function.valueOf(key);
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public double addToValue(byte key, double toBeAdded)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(toBeAdded);
}
else if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.zeroValue += toBeAdded;
}
else
{
this.addEmptyKeyValue(toBeAdded);
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(toBeAdded);
}
else if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.oneValue += toBeAdded;
}
else
{
this.addRemovedKeyValue(toBeAdded);
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
this.values[index] += toBeAdded;
return this.values[index];
}
this.addKeyValueAtIndex(key, toBeAdded, index);
return toBeAdded;
}
private void addKeyValueAtIndex(byte key, double value, int index)
{
if (this.keys[index] == REMOVED_KEY)
{
this.occupiedWithSentinels--;
}
if (this.copyKeysOnWrite)
{
this.copyKeys();
}
this.keys[index] = key;
this.values[index] = value;
this.occupiedWithData++;
if (this.occupiedWithData + this.occupiedWithSentinels > this.maxOccupiedWithData())
{
this.rehashAndGrow();
}
}
private void removeKeyAtIndex(int index)
{
if (this.copyKeysOnWrite)
{
this.copyKeys();
}
this.keys[index] = REMOVED_KEY;
this.values[index] = EMPTY_VALUE;
this.occupiedWithData--;
this.occupiedWithSentinels++;
}
private void copyKeys()
{
byte[] copy = new byte[this.keys.length];
System.arraycopy(this.keys, 0, copy, 0, this.keys.length);
this.keys = copy;
this.copyKeysOnWrite = false;
}
@Override
public double updateValue(byte key, double initialValueIfAbsent, DoubleToDoubleFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(function.valueOf(initialValueIfAbsent));
}
else if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.zeroValue = function.valueOf(this.sentinelValues.zeroValue);
}
else
{
this.addEmptyKeyValue(function.valueOf(initialValueIfAbsent));
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(function.valueOf(initialValueIfAbsent));
}
else if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.oneValue = function.valueOf(this.sentinelValues.oneValue);
}
else
{
this.addRemovedKeyValue(function.valueOf(initialValueIfAbsent));
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
this.values[index] = function.valueOf(this.values[index]);
return this.values[index];
}
double value = function.valueOf(initialValueIfAbsent);
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public ByteDoubleHashMap withKeyValue(byte key1, double value1)
{
this.put(key1, value1);
return this;
}
public ByteDoubleHashMap withKeysValues(byte key1, double value1, byte key2, double value2)
{
this.put(key1, value1);
this.put(key2, value2);
return this;
}
public ByteDoubleHashMap withKeysValues(byte key1, double value1, byte key2, double value2, byte key3, double value3)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
return this;
}
public ByteDoubleHashMap withKeysValues(byte key1, double value1, byte key2, double value2, byte key3, double value3, byte key4, double value4)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
this.put(key4, value4);
return this;
}
@Override
public ByteDoubleHashMap withoutKey(byte key)
{
this.removeKey(key);
return this;
}
@Override
public ByteDoubleHashMap withoutAllKeys(ByteIterable keys)
{
keys.forEach(this::removeKey);
return this;
}
@Override
public MutableByteDoubleMap asUnmodifiable()
{
return new UnmodifiableByteDoubleMap(this);
}
@Override
public MutableByteDoubleMap asSynchronized()
{
return new SynchronizedByteDoubleMap(this);
}
@Override
public ImmutableByteDoubleMap toImmutable()
{
return ByteDoubleMaps.immutable.ofAll(this);
}
@Override
public double get(byte key)
{
return this.getIfAbsent(key, EMPTY_VALUE);
}
@Override
public double getIfAbsent(byte key, double ifAbsent)
{
if (isEmptyKey(key) || isRemovedKey(key))
{
return this.getForSentinel(key, ifAbsent);
}
return this.slowGetIfAbsent(key, ifAbsent);
}
private double getForSentinel(byte key, double ifAbsent)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return ifAbsent;
}
return this.sentinelValues.zeroValue;
}
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return ifAbsent;
}
return this.sentinelValues.oneValue;
}
private double slowGetIfAbsent(byte key, double ifAbsent)
{
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
return ifAbsent;
}
@Override
public double getOrThrow(byte key)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
throw new IllegalStateException("Key " + key + " not present.");
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
throw new IllegalStateException("Key " + key + " not present.");
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (isNonSentinel(this.keys[index]))
{
return this.values[index];
}
throw new IllegalStateException("Key " + key + " not present.");
}
@Override
public boolean containsKey(byte key)
{
if (isEmptyKey(key))
{
return this.sentinelValues != null && this.sentinelValues.containsZeroKey;
}
if (isRemovedKey(key))
{
return this.sentinelValues != null && this.sentinelValues.containsOneKey;
}
return this.keys[this.probe(key)] == key;
}
@Override
public void forEachKey(ByteProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(EMPTY_KEY);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(REMOVED_KEY);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
procedure.value(this.keys[i]);
}
}
}
@Override
public void forEachKeyValue(ByteDoubleProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(EMPTY_KEY, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(REMOVED_KEY, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
procedure.value(this.keys[i], this.values[i]);
}
}
}
@Override
public LazyByteIterable keysView()
{
return new KeysView();
}
@Override
public RichIterable<ByteDoublePair> keyValuesView()
{
return new KeyValuesView();
}
@Override
public MutableDoubleByteMap flipUniqueValues()
{
MutableDoubleByteMap result = DoubleByteMaps.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;
}
@Override
public ByteDoubleHashMap select(ByteDoublePredicate predicate)
{
ByteDoubleHashMap result = new ByteDoubleHashMap();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue))
{
result.put(EMPTY_KEY, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue))
{
result.put(REMOVED_KEY, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.keys[i], this.values[i]))
{
result.put(this.keys[i], this.values[i]);
}
}
return result;
}
@Override
public ByteDoubleHashMap reject(ByteDoublePredicate predicate)
{
ByteDoubleHashMap result = new ByteDoubleHashMap();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue))
{
result.put(EMPTY_KEY, this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue))
{
result.put(REMOVED_KEY, this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && !predicate.accept(this.keys[i], this.values[i]))
{
result.put(this.keys[i], this.values[i]);
}
}
return result;
}
@Override
public void writeExternal(ObjectOutput out) throws IOException
{
out.writeInt(this.size());
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
out.writeByte(EMPTY_KEY);
out.writeDouble(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
out.writeByte(REMOVED_KEY);
out.writeDouble(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
out.writeByte(this.keys[i]);
out.writeDouble(this.values[i]);
}
}
}
@Override
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
{
int size = in.readInt();
for (int i = 0; i < size; i++)
{
this.put(in.readByte(), in.readDouble());
}
}
public void compact()
{
this.rehash(this.smallestPowerOfTwoGreaterThan(this.size()));
}
private void rehashAndGrow()
{
this.rehash(this.keys.length << 1);
}
private void rehash(int newCapacity)
{
int oldLength = this.keys.length;
byte[] old = this.keys;
double[] oldValues = this.values;
this.allocateTable(newCapacity);
this.occupiedWithData = 0;
this.occupiedWithSentinels = 0;
for (int i = 0; i < oldLength; i++)
{
if (isNonSentinel(old[i]))
{
this.put(old[i], oldValues[i]);
}
}
}
int probe(byte element)
{
int index = this.spreadAndMask(element);
byte keyAtIndex = this.keys[index];
if (keyAtIndex == element || keyAtIndex == EMPTY_KEY)
{
return index;
}
int removedIndex = keyAtIndex == REMOVED_KEY ? index : -1;
int nextIndex = index;
int probe = 17;
while (true)
{
nextIndex += probe;
probe += 17;
nextIndex &= this.keys.length - 1;
if (this.keys[nextIndex] == element)
{
return nextIndex;
}
if (this.keys[nextIndex] == REMOVED_KEY)
{
if (removedIndex == -1)
{
removedIndex = nextIndex;
}
}
else if (this.keys[nextIndex] == EMPTY_KEY)
{
return removedIndex == -1 ? nextIndex : removedIndex;
}
}
}
int spreadAndMask(byte element)
{
return this.mask(element);
}
private int mask(int spread)
{
return spread & (this.keys.length - 1);
}
private void allocateTable(int sizeToAllocate)
{
this.keys = new byte[sizeToAllocate];
this.values = new double[sizeToAllocate];
}
private static boolean isEmptyKey(byte key)
{
return key == EMPTY_KEY;
}
private static boolean isRemovedKey(byte key)
{
return key == REMOVED_KEY;
}
private static boolean isNonSentinel(byte key)
{
return !isEmptyKey(key) && !isRemovedKey(key);
}
@Override
protected boolean isNonSentinelAtIndex(int index)
{
return !isEmptyKey(this.keys[index]) && !isRemovedKey(this.keys[index]);
}
private int maxOccupiedWithData()
{
return this.keys.length >> 1;
}
private int maxOccupiedWithSentinels()
{
return this.keys.length >> 2;
}
private class InternalDoubleIterator implements MutableDoubleIterator
{
private int count;
private int position;
private byte lastKey;
private boolean handledZero;
private boolean handledOne;
private boolean canRemove;
@Override
public boolean hasNext()
{
return this.count < ByteDoubleHashMap.this.size();
}
@Override
public double next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
this.canRemove = true;
if (!this.handledZero)
{
this.handledZero = true;
if (ByteDoubleHashMap.this.containsKey(EMPTY_KEY))
{
this.lastKey = EMPTY_KEY;
return ByteDoubleHashMap.this.get(EMPTY_KEY);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ByteDoubleHashMap.this.containsKey(REMOVED_KEY))
{
this.lastKey = REMOVED_KEY;
return ByteDoubleHashMap.this.get(REMOVED_KEY);
}
}
byte[] keys = ByteDoubleHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
this.lastKey = keys[this.position];
double result = ByteDoubleHashMap.this.values[this.position];
this.position++;
return result;
}
@Override
public void remove()
{
if (!this.canRemove)
{
throw new IllegalStateException();
}
ByteDoubleHashMap.this.removeKey(this.lastKey);
this.count--;
this.canRemove = false;
}
}
private class KeysView extends AbstractLazyByteIterable
{
@Override
public ByteIterator byteIterator()
{
return new UnmodifiableByteIterator(new KeySetIterator());
}
@Override
public void each(ByteProcedure procedure)
{
ByteDoubleHashMap.this.forEachKey(procedure);
}
}
private class KeySetIterator implements MutableByteIterator
{
private int count;
private int position;
private byte lastKey;
private boolean handledZero;
private boolean handledOne;
private boolean canRemove;
@Override
public boolean hasNext()
{
return this.count < ByteDoubleHashMap.this.size();
}
@Override
public byte next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
this.canRemove = true;
if (!this.handledZero)
{
this.handledZero = true;
if (ByteDoubleHashMap.this.containsKey(EMPTY_KEY))
{
this.lastKey = EMPTY_KEY;
return this.lastKey;
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ByteDoubleHashMap.this.containsKey(REMOVED_KEY))
{
this.lastKey = REMOVED_KEY;
return this.lastKey;
}
}
byte[] keys = ByteDoubleHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
this.lastKey = keys[this.position];
this.position++;
return this.lastKey;
}
@Override
public void remove()
{
if (!this.canRemove)
{
throw new IllegalStateException();
}
ByteDoubleHashMap.this.removeKey(this.lastKey);
this.count--;
this.canRemove = false;
}
}
@Override
public MutableByteSet keySet()
{
return new KeySet();
}
private class KeySet extends AbstractMutableByteKeySet
{
@Override
protected MutableByteKeysMap getOuter()
{
return ByteDoubleHashMap.this;
}
@Override
protected SentinelValues getSentinelValues()
{
return ByteDoubleHashMap.this.sentinelValues;
}
@Override
protected byte getKeyAtIndex(int index)
{
return ByteDoubleHashMap.this.keys[index];
}
@Override
protected int getTableSize()
{
return ByteDoubleHashMap.this.keys.length;
}
@Override
public MutableByteIterator byteIterator()
{
return new KeySetIterator();
}
@Override
public boolean retainAll(ByteIterable source)
{
int oldSize = ByteDoubleHashMap.this.size();
final ByteSet sourceSet = source instanceof ByteSet ? (ByteSet) source : source.toSet();
ByteDoubleHashMap retained = ByteDoubleHashMap.this.select((byte key, double value) -> sourceSet.contains(key));
if (retained.size() != oldSize)
{
ByteDoubleHashMap.this.keys = retained.keys;
ByteDoubleHashMap.this.values = retained.values;
ByteDoubleHashMap.this.sentinelValues = retained.sentinelValues;
ByteDoubleHashMap.this.occupiedWithData = retained.occupiedWithData;
ByteDoubleHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels;
return true;
}
return false;
}
@Override
public boolean retainAll(byte... source)
{
return this.retainAll(ByteHashSet.newSetWith(source));
}
@Override
public ByteSet freeze()
{
ByteDoubleHashMap.this.copyKeysOnWrite = true;
boolean containsZeroKey = false;
boolean containsOneKey = false;
if (ByteDoubleHashMap.this.sentinelValues != null)
{
containsZeroKey = ByteDoubleHashMap.this.sentinelValues.containsZeroKey;
containsOneKey = ByteDoubleHashMap.this.sentinelValues.containsOneKey;
}
return new ImmutableByteMapKeySet(ByteDoubleHashMap.this.keys, ByteDoubleHashMap.this.occupiedWithData, containsZeroKey, containsOneKey);
}
@Override
public MutableByteSet newEmpty()
{
return new ByteHashSet();
}
}
@Override
public MutableDoubleCollection values()
{
return new ValuesCollection();
}
private class ValuesCollection extends AbstractDoubleValuesCollection
{
@Override
public MutableDoubleIterator doubleIterator()
{
return ByteDoubleHashMap.this.doubleIterator();
}
@Override
public boolean remove(double item)
{
int oldSize = ByteDoubleHashMap.this.size();
if (ByteDoubleHashMap.this.sentinelValues != null)
{
if (ByteDoubleHashMap.this.sentinelValues.containsZeroKey && Double.compare(item, ByteDoubleHashMap.this.sentinelValues.zeroValue) == 0)
{
ByteDoubleHashMap.this.removeKey(EMPTY_KEY);
}
if (ByteDoubleHashMap.this.sentinelValues.containsOneKey && Double.compare(item, ByteDoubleHashMap.this.sentinelValues.oneValue) == 0)
{
ByteDoubleHashMap.this.removeKey(REMOVED_KEY);
}
}
for (int i = 0; i < ByteDoubleHashMap.this.keys.length; i++)
{
if (isNonSentinel(ByteDoubleHashMap.this.keys[i]) && Double.compare(item, ByteDoubleHashMap.this.values[i]) == 0)
{
ByteDoubleHashMap.this.removeKey(ByteDoubleHashMap.this.keys[i]);
}
}
return oldSize != ByteDoubleHashMap.this.size();
}
@Override
public boolean retainAll(DoubleIterable source)
{
int oldSize = ByteDoubleHashMap.this.size();
final DoubleSet sourceSet = source instanceof DoubleSet ? (DoubleSet) source : source.toSet();
ByteDoubleHashMap retained = ByteDoubleHashMap.this.select((byte key, double value) -> sourceSet.contains(value));
if (retained.size() != oldSize)
{
ByteDoubleHashMap.this.keys = retained.keys;
ByteDoubleHashMap.this.values = retained.values;
ByteDoubleHashMap.this.sentinelValues = retained.sentinelValues;
ByteDoubleHashMap.this.occupiedWithData = retained.occupiedWithData;
ByteDoubleHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels;
return true;
}
return false;
}
@Override
public MutableDoubleCollection newEmpty()
{
return new DoubleHashBag();
}
}
private class KeyValuesView extends AbstractLazyIterable<ByteDoublePair>
{
@Override
public void each(Procedure<? super ByteDoublePair> procedure)
{
if (ByteDoubleHashMap.this.sentinelValues != null)
{
if (ByteDoubleHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, ByteDoubleHashMap.this.sentinelValues.zeroValue));
}
if (ByteDoubleHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, ByteDoubleHashMap.this.sentinelValues.oneValue));
}
}
for (int i = 0; i < ByteDoubleHashMap.this.keys.length; i++)
{
if (isNonSentinel(ByteDoubleHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(ByteDoubleHashMap.this.keys[i], ByteDoubleHashMap.this.values[i]));
}
}
}
@Override
public void forEachWithIndex(ObjectIntProcedure<? super ByteDoublePair> objectIntProcedure)
{
int index = 0;
if (ByteDoubleHashMap.this.sentinelValues != null)
{
if (ByteDoubleHashMap.this.sentinelValues.containsZeroKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, ByteDoubleHashMap.this.sentinelValues.zeroValue), index);
index++;
}
if (ByteDoubleHashMap.this.sentinelValues.containsOneKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, ByteDoubleHashMap.this.sentinelValues.oneValue), index);
index++;
}
}
for (int i = 0; i < ByteDoubleHashMap.this.keys.length; i++)
{
if (isNonSentinel(ByteDoubleHashMap.this.keys[i]))
{
objectIntProcedure.value(PrimitiveTuples.pair(ByteDoubleHashMap.this.keys[i], ByteDoubleHashMap.this.values[i]), index);
index++;
}
}
}
@Override
public <P> void forEachWith(Procedure2<? super ByteDoublePair, ? super P> procedure, P parameter)
{
if (ByteDoubleHashMap.this.sentinelValues != null)
{
if (ByteDoubleHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, ByteDoubleHashMap.this.sentinelValues.zeroValue), parameter);
}
if (ByteDoubleHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, ByteDoubleHashMap.this.sentinelValues.oneValue), parameter);
}
}
for (int i = 0; i < ByteDoubleHashMap.this.keys.length; i++)
{
if (isNonSentinel(ByteDoubleHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(ByteDoubleHashMap.this.keys[i], ByteDoubleHashMap.this.values[i]), parameter);
}
}
}
@Override
public Iterator<ByteDoublePair> iterator()
{
return new InternalKeyValuesIterator();
}
public class InternalKeyValuesIterator implements Iterator<ByteDoublePair>
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
@Override
public ByteDoublePair next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (ByteDoubleHashMap.this.containsKey(EMPTY_KEY))
{
return PrimitiveTuples.pair(EMPTY_KEY, ByteDoubleHashMap.this.sentinelValues.zeroValue);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ByteDoubleHashMap.this.containsKey(REMOVED_KEY))
{
return PrimitiveTuples.pair(REMOVED_KEY, ByteDoubleHashMap.this.sentinelValues.oneValue);
}
}
byte[] keys = ByteDoubleHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
ByteDoublePair result = PrimitiveTuples.pair(keys[this.position], ByteDoubleHashMap.this.values[this.position]);
this.position++;
return result;
}
@Override
public void remove()
{
throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
}
@Override
public boolean hasNext()
{
return this.count != ByteDoubleHashMap.this.size();
}
}
}
}