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.ShortIterable;
import org.eclipse.collections.api.LazyShortIterable;
import org.eclipse.collections.api.CharIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.block.function.primitive.ShortToCharFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction;
import org.eclipse.collections.api.block.function.primitive.CharFunction0;
import org.eclipse.collections.api.block.function.primitive.CharToCharFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.ShortCharPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.ShortProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ShortCharProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.impl.SpreadFunctions;
import org.eclipse.collections.api.collection.primitive.MutableCharCollection;
import org.eclipse.collections.api.iterator.ShortIterator;
import org.eclipse.collections.api.iterator.MutableShortIterator;
import org.eclipse.collections.api.iterator.MutableCharIterator;
import org.eclipse.collections.api.map.primitive.ShortCharMap;
import org.eclipse.collections.api.map.primitive.ImmutableShortCharMap;
import org.eclipse.collections.api.map.primitive.MutableShortCharMap;
import org.eclipse.collections.api.map.primitive.MutableCharShortMap;
import org.eclipse.collections.api.set.primitive.ShortSet;
import org.eclipse.collections.api.set.primitive.CharSet;
import org.eclipse.collections.api.set.primitive.MutableShortSet;
import org.eclipse.collections.api.tuple.primitive.ShortCharPair;
import org.eclipse.collections.impl.bag.mutable.primitive.CharHashBag;
import org.eclipse.collections.impl.factory.primitive.ShortCharMaps;
import org.eclipse.collections.impl.factory.primitive.CharShortMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableShortIterator;
import org.eclipse.collections.impl.lazy.AbstractLazyIterable;
import org.eclipse.collections.impl.lazy.primitive.AbstractLazyShortIterable;
import org.eclipse.collections.impl.set.mutable.primitive.ShortHashSet;
import org.eclipse.collections.impl.tuple.primitive.PrimitiveTuples;
public class ShortCharHashMap extends AbstractMutableCharValuesMap implements MutableShortCharMap, Externalizable, MutableShortKeysMap
{
private static final char EMPTY_VALUE = (char) 0;
private static final long serialVersionUID = 1L;
private static final short EMPTY_KEY = (short) 0;
private static final short REMOVED_KEY = (short) 1;
private static final int CACHE_LINE_SIZE = 64;
private static final int KEY_SIZE = 2;
private static final int INITIAL_LINEAR_PROBE = CACHE_LINE_SIZE / KEY_SIZE / 2;
private static final int DEFAULT_INITIAL_CAPACITY = 8;
private short[] keys;
private char[] values;
private int occupiedWithData;
private int occupiedWithSentinels;
private SentinelValues sentinelValues;
private boolean copyKeysOnWrite;
public ShortCharHashMap()
{
this.allocateTable(DEFAULT_INITIAL_CAPACITY << 1);
}
public ShortCharHashMap(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 ShortCharHashMap(ShortCharMap map)
{
if (map instanceof ShortCharHashMap && ((ShortCharHashMap) map).occupiedWithSentinels == 0)
{
ShortCharHashMap hashMap = (ShortCharHashMap) 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 ShortCharHashMap newWithKeysValues(short key1, char value1)
{
return new ShortCharHashMap(1).withKeyValue(key1, value1);
}
public static ShortCharHashMap newWithKeysValues(short key1, char value1, short key2, char value2)
{
return new ShortCharHashMap(2).withKeysValues(key1, value1, key2, value2);
}
public static ShortCharHashMap newWithKeysValues(short key1, char value1, short key2, char value2, short key3, char value3)
{
return new ShortCharHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3);
}
public static ShortCharHashMap newWithKeysValues(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)
{
return new ShortCharHashMap(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 char getEmptyValue()
{
return EMPTY_VALUE;
}
@Override
protected int getTableSize()
{
return this.values.length;
}
@Override
protected char getValueAtIndex(int index)
{
return this.values[index];
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof ShortCharMap))
{
return false;
}
ShortCharMap other = (ShortCharMap) 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) || this.sentinelValues.zeroValue != other.getOrThrow(EMPTY_KEY)))
{
return false;
}
if (this.sentinelValues.containsOneKey && (!other.containsKey(REMOVED_KEY) || this.sentinelValues.oneValue != other.getOrThrow(REMOVED_KEY)))
{
return false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
short key = this.keys[i];
if (isNonSentinel(key) && (!other.containsKey(key) || this.values[i] != other.getOrThrow(key)))
{
return false;
}
}
return true;
}
@Override
public int hashCode()
{
int result = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result += (int) EMPTY_KEY ^ (int) this.sentinelValues.zeroValue;
}
if (this.sentinelValues.containsOneKey)
{
result += (int) REMOVED_KEY ^ (int) this.sentinelValues.oneValue;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result += (int) this.keys[i] ^ (int) this.values[i];
}
}
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++)
{
short 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 MutableCharIterator charIterator()
{
return new InternalCharIterator();
}
@Override
public <V> V injectInto(V injectedValue, ObjectCharToObjectFunction<? 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(short key, char value)
{
if (isEmptyKey(key))
{
this.putForEmptySentinel(value);
return;
}
if (isRemovedKey(key))
{
this.putForRemovedSentinel(value);
return;
}
int index = this.probe(key);
short keyAtIndex = this.keys[index];
if (keyAtIndex == key)
{
this.values[index] = value;
}
else
{
this.addKeyValueAtIndex(key, value, index);
}
}
private void putForRemovedSentinel(char value)
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addRemovedKeyValue(value);
}
private void putForEmptySentinel(char value)
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addEmptyKeyValue(value);
}
@Override
public void putAll(ShortCharMap map)
{
map.forEachKeyValue(this::put);
}
@Override
public void removeKey(short 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(short key)
{
this.removeKey(key);
}
@Override
public char removeKeyIfAbsent(short key, char value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return value;
}
char oldValue = this.sentinelValues.zeroValue;
this.removeEmptyKey();
return oldValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return value;
}
char oldValue = this.sentinelValues.oneValue;
this.removeRemovedKey();
return oldValue;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
char oldValue = this.values[index];
this.removeKeyAtIndex(index);
return oldValue;
}
return value;
}
@Override
public char getIfAbsentPut(short key, char 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 char getIfAbsentPut(short key, CharFunction0 function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
char value = function.value();
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
char value = function.value();
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
char value = function.value();
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
char value = function.value();
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
char value = function.value();
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public <P> char getIfAbsentPutWith(short key, CharFunction<? super P> function, P parameter)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
char value = function.charValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
char value = function.charValueOf(parameter);
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
char value = function.charValueOf(parameter);
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
char value = function.charValueOf(parameter);
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
char value = function.charValueOf(parameter);
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public char getIfAbsentPutWithKey(short key, ShortToCharFunction function)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
char value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.addEmptyKeyValue(value);
return value;
}
if (this.sentinelValues.containsZeroKey)
{
return this.sentinelValues.zeroValue;
}
char value = function.valueOf(key);
this.addEmptyKeyValue(value);
return value;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
char value = function.valueOf(key);
this.sentinelValues = new SentinelValues();
this.addRemovedKeyValue(value);
return value;
}
if (this.sentinelValues.containsOneKey)
{
return this.sentinelValues.oneValue;
}
char value = function.valueOf(key);
this.addRemovedKeyValue(value);
return value;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
char value = function.valueOf(key);
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public char addToValue(short key, char 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(short key, char 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()
{
short[] copy = new short[this.keys.length];
System.arraycopy(this.keys, 0, copy, 0, this.keys.length);
this.keys = copy;
this.copyKeysOnWrite = false;
}
@Override
public char updateValue(short key, char initialValueIfAbsent, CharToCharFunction 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];
}
char value = function.valueOf(initialValueIfAbsent);
this.addKeyValueAtIndex(key, value, index);
return value;
}
@Override
public ShortCharHashMap withKeyValue(short key1, char value1)
{
this.put(key1, value1);
return this;
}
public ShortCharHashMap withKeysValues(short key1, char value1, short key2, char value2)
{
this.put(key1, value1);
this.put(key2, value2);
return this;
}
public ShortCharHashMap withKeysValues(short key1, char value1, short key2, char value2, short key3, char value3)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
return this;
}
public ShortCharHashMap withKeysValues(short key1, char value1, short key2, char value2, short key3, char value3, short key4, char value4)
{
this.put(key1, value1);
this.put(key2, value2);
this.put(key3, value3);
this.put(key4, value4);
return this;
}
@Override
public ShortCharHashMap withoutKey(short key)
{
this.removeKey(key);
return this;
}
@Override
public ShortCharHashMap withoutAllKeys(ShortIterable keys)
{
keys.forEach(this::removeKey);
return this;
}
@Override
public MutableShortCharMap asUnmodifiable()
{
return new UnmodifiableShortCharMap(this);
}
@Override
public MutableShortCharMap asSynchronized()
{
return new SynchronizedShortCharMap(this);
}
@Override
public ImmutableShortCharMap toImmutable()
{
return ShortCharMaps.immutable.ofAll(this);
}
@Override
public char get(short key)
{
return this.getIfAbsent(key, EMPTY_VALUE);
}
@Override
public char getIfAbsent(short key, char ifAbsent)
{
if (isEmptyKey(key) || isRemovedKey(key))
{
return this.getForSentinel(key, ifAbsent);
}
if (this.occupiedWithSentinels == 0)
{
return this.fastGetIfAbsent(key, ifAbsent);
}
return this.slowGetIfAbsent(key, ifAbsent);
}
private char getForSentinel(short key, char 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 char slowGetIfAbsent(short key, char ifAbsent)
{
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
return ifAbsent;
}
private char fastGetIfAbsent(short key, char ifAbsent)
{
int index = this.mask((int) key);
for (int i = 0; i < INITIAL_LINEAR_PROBE; i++)
{
short keyAtIndex = this.keys[index];
if (keyAtIndex == key)
{
return this.values[index];
}
if (keyAtIndex == EMPTY_KEY)
{
return ifAbsent;
}
index = (index + 1) & (this.keys.length - 1);
}
return this.slowGetIfAbsentTwo(key, ifAbsent);
}
private char slowGetIfAbsentTwo(short key, char ifAbsent)
{
int index = this.probeTwo(key, -1);
if (this.keys[index] == key)
{
return this.values[index];
}
return ifAbsent;
}
@Override
public char getOrThrow(short 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(short 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(ShortProcedure 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(ShortCharProcedure 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 LazyShortIterable keysView()
{
return new KeysView();
}
@Override
public RichIterable<ShortCharPair> keyValuesView()
{
return new KeyValuesView();
}
@Override
public MutableCharShortMap flipUniqueValues()
{
MutableCharShortMap result = CharShortMaps.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 ShortCharHashMap select(ShortCharPredicate predicate)
{
ShortCharHashMap result = new ShortCharHashMap();
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 ShortCharHashMap reject(ShortCharPredicate predicate)
{
ShortCharHashMap result = new ShortCharHashMap();
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.writeShort(EMPTY_KEY);
out.writeChar(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
out.writeShort(REMOVED_KEY);
out.writeChar(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
out.writeShort(this.keys[i]);
out.writeChar(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.readShort(), in.readChar());
}
}
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;
short[] old = this.keys;
char[] 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(short element)
{
int index = this.mask((int) element);
short keyAtIndex = this.keys[index];
if (keyAtIndex == element || keyAtIndex == EMPTY_KEY)
{
return index;
}
int removedIndex = keyAtIndex == REMOVED_KEY ? index : -1;
for (int i = 1; i < INITIAL_LINEAR_PROBE; i++)
{
int nextIndex = (index + i) & (this.keys.length - 1);
keyAtIndex = this.keys[nextIndex];
if (keyAtIndex == element)
{
return nextIndex;
}
if (keyAtIndex == EMPTY_KEY)
{
return removedIndex == -1 ? nextIndex : removedIndex;
}
if (keyAtIndex == REMOVED_KEY && removedIndex == -1)
{
removedIndex = nextIndex;
}
}
return this.probeTwo(element, removedIndex);
}
int probeTwo(short element, int removedIndex)
{
int index = this.spreadTwoAndMask(element);
for (int i = 0; i < INITIAL_LINEAR_PROBE; i++)
{
int nextIndex = (index + i) & (this.keys.length - 1);
short keyAtIndex = this.keys[nextIndex];
if (keyAtIndex == element)
{
return nextIndex;
}
if (keyAtIndex == EMPTY_KEY)
{
return removedIndex == -1 ? nextIndex : removedIndex;
}
if (keyAtIndex == REMOVED_KEY && removedIndex == -1)
{
removedIndex = nextIndex;
}
}
return this.probeThree(element, removedIndex);
}
int probeThree(short element, int removedIndex)
{
int nextIndex = (int) SpreadFunctions.shortSpreadOne(element);
int spreadTwo = Integer.reverse(SpreadFunctions.shortSpreadTwo(element)) | 1;
while (true)
{
nextIndex = this.mask(nextIndex + spreadTwo);
short keyAtIndex = this.keys[nextIndex];
if (keyAtIndex == element)
{
return nextIndex;
}
if (keyAtIndex == EMPTY_KEY)
{
return removedIndex == -1 ? nextIndex : removedIndex;
}
if (keyAtIndex == REMOVED_KEY && removedIndex == -1)
{
removedIndex = nextIndex;
}
}
}
int spreadAndMask(short element)
{
int code = SpreadFunctions.shortSpreadOne(element);
return this.mask(code);
}
int spreadTwoAndMask(short element)
{
int code = SpreadFunctions.shortSpreadTwo(element);
return this.mask(code);
}
private int mask(int spread)
{
return spread & (this.keys.length - 1);
}
private void allocateTable(int sizeToAllocate)
{
this.keys = new short[sizeToAllocate];
this.values = new char[sizeToAllocate];
}
private static boolean isEmptyKey(short key)
{
return key == EMPTY_KEY;
}
private static boolean isRemovedKey(short key)
{
return key == REMOVED_KEY;
}
private static boolean isNonSentinel(short 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 InternalCharIterator implements MutableCharIterator
{
private int count;
private int position;
private short lastKey;
private boolean handledZero;
private boolean handledOne;
private boolean canRemove;
@Override
public boolean hasNext()
{
return this.count < ShortCharHashMap.this.size();
}
@Override
public char 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 (ShortCharHashMap.this.containsKey(EMPTY_KEY))
{
this.lastKey = EMPTY_KEY;
return ShortCharHashMap.this.get(EMPTY_KEY);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ShortCharHashMap.this.containsKey(REMOVED_KEY))
{
this.lastKey = REMOVED_KEY;
return ShortCharHashMap.this.get(REMOVED_KEY);
}
}
short[] keys = ShortCharHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
this.lastKey = keys[this.position];
char result = ShortCharHashMap.this.values[this.position];
this.position++;
return result;
}
@Override
public void remove()
{
if (!this.canRemove)
{
throw new IllegalStateException();
}
ShortCharHashMap.this.removeKey(this.lastKey);
this.count--;
this.canRemove = false;
}
}
private class KeysView extends AbstractLazyShortIterable
{
@Override
public ShortIterator shortIterator()
{
return new UnmodifiableShortIterator(new KeySetIterator());
}
@Override
public void each(ShortProcedure procedure)
{
ShortCharHashMap.this.forEachKey(procedure);
}
}
private class KeySetIterator implements MutableShortIterator
{
private int count;
private int position;
private short lastKey;
private boolean handledZero;
private boolean handledOne;
private boolean canRemove;
@Override
public boolean hasNext()
{
return this.count < ShortCharHashMap.this.size();
}
@Override
public short 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 (ShortCharHashMap.this.containsKey(EMPTY_KEY))
{
this.lastKey = EMPTY_KEY;
return this.lastKey;
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ShortCharHashMap.this.containsKey(REMOVED_KEY))
{
this.lastKey = REMOVED_KEY;
return this.lastKey;
}
}
short[] keys = ShortCharHashMap.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();
}
ShortCharHashMap.this.removeKey(this.lastKey);
this.count--;
this.canRemove = false;
}
}
@Override
public MutableShortSet keySet()
{
return new KeySet();
}
private class KeySet extends AbstractMutableShortKeySet
{
@Override
protected MutableShortKeysMap getOuter()
{
return ShortCharHashMap.this;
}
@Override
protected SentinelValues getSentinelValues()
{
return ShortCharHashMap.this.sentinelValues;
}
@Override
protected short getKeyAtIndex(int index)
{
return ShortCharHashMap.this.keys[index];
}
@Override
protected int getTableSize()
{
return ShortCharHashMap.this.keys.length;
}
@Override
public MutableShortIterator shortIterator()
{
return new KeySetIterator();
}
@Override
public boolean retainAll(ShortIterable source)
{
int oldSize = ShortCharHashMap.this.size();
final ShortSet sourceSet = source instanceof ShortSet ? (ShortSet) source : source.toSet();
ShortCharHashMap retained = ShortCharHashMap.this.select((short key, char value) -> sourceSet.contains(key));
if (retained.size() != oldSize)
{
ShortCharHashMap.this.keys = retained.keys;
ShortCharHashMap.this.values = retained.values;
ShortCharHashMap.this.sentinelValues = retained.sentinelValues;
ShortCharHashMap.this.occupiedWithData = retained.occupiedWithData;
ShortCharHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels;
return true;
}
return false;
}
@Override
public boolean retainAll(short... source)
{
return this.retainAll(ShortHashSet.newSetWith(source));
}
@Override
public ShortSet freeze()
{
ShortCharHashMap.this.copyKeysOnWrite = true;
boolean containsZeroKey = false;
boolean containsOneKey = false;
if (ShortCharHashMap.this.sentinelValues != null)
{
containsZeroKey = ShortCharHashMap.this.sentinelValues.containsZeroKey;
containsOneKey = ShortCharHashMap.this.sentinelValues.containsOneKey;
}
return new ImmutableShortMapKeySet(ShortCharHashMap.this.keys, ShortCharHashMap.this.occupiedWithData, containsZeroKey, containsOneKey);
}
@Override
public MutableShortSet newEmpty()
{
return new ShortHashSet();
}
}
@Override
public MutableCharCollection values()
{
return new ValuesCollection();
}
private class ValuesCollection extends AbstractCharValuesCollection
{
@Override
public MutableCharIterator charIterator()
{
return ShortCharHashMap.this.charIterator();
}
@Override
public boolean remove(char item)
{
int oldSize = ShortCharHashMap.this.size();
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && item == ShortCharHashMap.this.sentinelValues.zeroValue)
{
ShortCharHashMap.this.removeKey(EMPTY_KEY);
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && item == ShortCharHashMap.this.sentinelValues.oneValue)
{
ShortCharHashMap.this.removeKey(REMOVED_KEY);
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]) && item == ShortCharHashMap.this.values[i])
{
ShortCharHashMap.this.removeKey(ShortCharHashMap.this.keys[i]);
}
}
return oldSize != ShortCharHashMap.this.size();
}
@Override
public boolean retainAll(CharIterable source)
{
int oldSize = ShortCharHashMap.this.size();
final CharSet sourceSet = source instanceof CharSet ? (CharSet) source : source.toSet();
ShortCharHashMap retained = ShortCharHashMap.this.select((short key, char value) -> sourceSet.contains(value));
if (retained.size() != oldSize)
{
ShortCharHashMap.this.keys = retained.keys;
ShortCharHashMap.this.values = retained.values;
ShortCharHashMap.this.sentinelValues = retained.sentinelValues;
ShortCharHashMap.this.occupiedWithData = retained.occupiedWithData;
ShortCharHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels;
return true;
}
return false;
}
@Override
public MutableCharCollection newEmpty()
{
return new CharHashBag();
}
}
private class KeyValuesView extends AbstractLazyIterable<ShortCharPair>
{
@Override
public void each(Procedure<? super ShortCharPair> procedure)
{
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, ShortCharHashMap.this.sentinelValues.zeroValue));
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, ShortCharHashMap.this.sentinelValues.oneValue));
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(ShortCharHashMap.this.keys[i], ShortCharHashMap.this.values[i]));
}
}
}
@Override
public void forEachWithIndex(ObjectIntProcedure<? super ShortCharPair> objectIntProcedure)
{
int index = 0;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, ShortCharHashMap.this.sentinelValues.zeroValue), index);
index++;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, ShortCharHashMap.this.sentinelValues.oneValue), index);
index++;
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]))
{
objectIntProcedure.value(PrimitiveTuples.pair(ShortCharHashMap.this.keys[i], ShortCharHashMap.this.values[i]), index);
index++;
}
}
}
@Override
public <P> void forEachWith(Procedure2<? super ShortCharPair, ? super P> procedure, P parameter)
{
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
procedure.value(PrimitiveTuples.pair(EMPTY_KEY, ShortCharHashMap.this.sentinelValues.zeroValue), parameter);
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
procedure.value(PrimitiveTuples.pair(REMOVED_KEY, ShortCharHashMap.this.sentinelValues.oneValue), parameter);
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]))
{
procedure.value(PrimitiveTuples.pair(ShortCharHashMap.this.keys[i], ShortCharHashMap.this.values[i]), parameter);
}
}
}
@Override
public Iterator<ShortCharPair> iterator()
{
return new InternalKeyValuesIterator();
}
public class InternalKeyValuesIterator implements Iterator<ShortCharPair>
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
@Override
public ShortCharPair next()
{
if (!this.hasNext())
{
throw new NoSuchElementException("next() called, but the iterator is exhausted");
}
this.count++;
if (!this.handledZero)
{
this.handledZero = true;
if (ShortCharHashMap.this.containsKey(EMPTY_KEY))
{
return PrimitiveTuples.pair(EMPTY_KEY, ShortCharHashMap.this.sentinelValues.zeroValue);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ShortCharHashMap.this.containsKey(REMOVED_KEY))
{
return PrimitiveTuples.pair(REMOVED_KEY, ShortCharHashMap.this.sentinelValues.oneValue);
}
}
short[] keys = ShortCharHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
ShortCharPair result = PrimitiveTuples.pair(keys[this.position], ShortCharHashMap.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 != ShortCharHashMap.this.size();
}
}
}
}