com.gs.collections.impl.map.mutable.primitive.ShortCharHashMap Maven / Gradle / Ivy
Show all versions of gs-collections Show documentation
/*
* Copyright 2014 Goldman Sachs.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gs.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 com.gs.collections.api.ShortIterable;
import com.gs.collections.api.LazyShortIterable;
import com.gs.collections.api.LazyCharIterable;
import com.gs.collections.api.CharIterable;
import com.gs.collections.api.LazyIterable;
import com.gs.collections.api.RichIterable;
import com.gs.collections.api.bag.primitive.MutableShortBag;
import com.gs.collections.api.bag.primitive.MutableCharBag;
import com.gs.collections.api.block.function.primitive.ShortToObjectFunction;
import com.gs.collections.api.block.function.primitive.ShortToCharFunction;
import com.gs.collections.api.block.function.primitive.CharFunction;
import com.gs.collections.api.block.function.primitive.CharFunction0;
import com.gs.collections.api.block.function.primitive.CharToCharFunction;
import com.gs.collections.api.block.function.primitive.CharToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectCharToObjectFunction;
import com.gs.collections.api.block.function.primitive.ObjectShortToObjectFunction;
import com.gs.collections.api.block.predicate.primitive.ShortCharPredicate;
import com.gs.collections.api.block.predicate.primitive.ShortPredicate;
import com.gs.collections.api.block.predicate.primitive.CharPredicate;
import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.ShortProcedure;
import com.gs.collections.api.block.procedure.primitive.ShortCharProcedure;
import com.gs.collections.api.block.procedure.primitive.CharProcedure;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.api.collection.MutableCollection;
import com.gs.collections.api.collection.primitive.ImmutableCharCollection;
import com.gs.collections.api.collection.primitive.MutableCharCollection;
import com.gs.collections.api.iterator.ShortIterator;
import com.gs.collections.api.iterator.CharIterator;
import com.gs.collections.api.list.primitive.MutableShortList;
import com.gs.collections.api.list.primitive.MutableCharList;
import com.gs.collections.api.map.primitive.ShortCharMap;
import com.gs.collections.api.map.primitive.ImmutableShortCharMap;
import com.gs.collections.api.map.primitive.MutableShortCharMap;
import com.gs.collections.api.set.MutableSet;
import com.gs.collections.api.set.primitive.ShortSet;
import com.gs.collections.api.set.primitive.CharSet;
import com.gs.collections.api.set.primitive.ImmutableShortSet;
import com.gs.collections.api.set.primitive.MutableShortSet;
import com.gs.collections.api.tuple.primitive.ShortCharPair;
import com.gs.collections.api.set.primitive.MutableCharSet;
import com.gs.collections.impl.bag.mutable.primitive.ShortHashBag;
import com.gs.collections.impl.bag.mutable.primitive.CharHashBag;
import com.gs.collections.impl.block.factory.primitive.ShortPredicates;
import com.gs.collections.impl.collection.mutable.primitive.SynchronizedCharCollection;
import com.gs.collections.impl.collection.mutable.primitive.UnmodifiableCharCollection;
import com.gs.collections.impl.factory.Sets;
import com.gs.collections.impl.factory.primitive.CharLists;
import com.gs.collections.impl.factory.primitive.ShortCharMaps;
import com.gs.collections.impl.factory.primitive.ShortSets;
import com.gs.collections.impl.lazy.AbstractLazyIterable;
import com.gs.collections.impl.lazy.primitive.AbstractLazyShortIterable;
import com.gs.collections.impl.lazy.primitive.LazyCharIterableAdapter;
import com.gs.collections.impl.lazy.primitive.LazyShortIterableAdapter;
import com.gs.collections.impl.list.mutable.FastList;
import com.gs.collections.impl.list.mutable.primitive.ShortArrayList;
import com.gs.collections.impl.list.mutable.primitive.CharArrayList;
import com.gs.collections.impl.set.mutable.primitive.ShortHashSet;
import com.gs.collections.impl.set.mutable.primitive.SynchronizedShortSet;
import com.gs.collections.impl.set.mutable.primitive.UnmodifiableShortSet;
import com.gs.collections.impl.set.mutable.primitive.CharHashSet;
import com.gs.collections.impl.tuple.primitive.PrimitiveTuples;
/**
* This file was automatically generated from template file primitivePrimitiveHashMap.stg.
*
* @since 3.0.
*/
public class ShortCharHashMap implements MutableShortCharMap, Externalizable
{
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 OCCUPIED_DATA_RATIO = 2;
private static final int OCCUPIED_SENTINEL_RATIO = 4;
private static final int DEFAULT_INITIAL_CAPACITY = 8;
private short[] keys;
private char[] values;
private int occupiedWithData;
private int occupiedWithSentinels;
private SentinelValues sentinelValues;
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(this.fastCeil(initialCapacity * OCCUPIED_DATA_RATIO));
this.allocateTable(capacity);
}
private int smallestPowerOfTwoGreaterThan(int n)
{
return n > 1 ? Integer.highestOneBit(n - 1) << 1 : 1;
}
public ShortCharHashMap(ShortCharMap map)
{
this(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY));
this.putAll(map);
}
private int fastCeil(float v)
{
int possibleResult = (int) v;
if (v - possibleResult > 0.0F)
{
possibleResult++;
}
return possibleResult;
}
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);
}
@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(String.valueOf(EMPTY_KEY)).append("=").append(String.valueOf(this.sentinelValues.zeroValue));
first = false;
}
if (this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(", ");
}
appendable.append(String.valueOf(REMOVED_KEY)).append("=").append(String.valueOf(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(String.valueOf(key)).append("=").append(String.valueOf(this.values[i]));
first = false;
}
}
appendable.append("}");
return appendable.toString();
}
public int size()
{
return this.occupiedWithData + (this.sentinelValues == null ? 0 : this.sentinelValues.size());
}
public boolean isEmpty()
{
return this.occupiedWithData == 0 && (this.sentinelValues == null || this.sentinelValues.size() == 0);
}
public boolean notEmpty()
{
return this.occupiedWithData != 0 || (this.sentinelValues != null && this.sentinelValues.size() != 0);
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(this.sentinelValues.zeroValue));
first = false;
}
if (this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(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(separator);
}
appendable.append(String.valueOf(this.values[i]));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public CharIterator charIterator()
{
return new InternalCharIterator();
}
public char[] toArray()
{
char[] array = new char[this.size()];
int index = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
array[index] = this.sentinelValues.zeroValue;
index++;
}
if (this.sentinelValues.containsOneKey)
{
array[index] = this.sentinelValues.oneValue;
index++;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
array[index] = this.values[i];
index++;
}
}
return array;
}
public boolean contains(char value)
{
return this.containsValue(value);
}
public boolean containsAll(char... source)
{
for (char each : source)
{
if (!this.contains(each))
{
return false;
}
}
return true;
}
public boolean containsAll(CharIterable source)
{
return source.allSatisfy(new CharPredicate()
{
public boolean accept(char value)
{
return ShortCharHashMap.this.contains(value);
}
});
}
public void forEach(CharProcedure procedure)
{
this.forEachValue(procedure);
}
public MutableCharCollection select(CharPredicate predicate)
{
CharArrayList result = new CharArrayList();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
result.add(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
result.add(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values[i]))
{
result.add(this.values[i]);
}
}
return result;
}
public MutableCharCollection reject(CharPredicate predicate)
{
CharArrayList result = new CharArrayList();
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && !predicate.accept(this.sentinelValues.zeroValue))
{
result.add(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey && !predicate.accept(this.sentinelValues.oneValue))
{
result.add(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && !predicate.accept(this.values[i]))
{
result.add(this.values[i]);
}
}
return result;
}
public MutableCollection collect(CharToObjectFunction extends V> function)
{
FastList target = FastList.newList(this.size());
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
target.add(function.valueOf(this.sentinelValues.zeroValue));
}
if (this.sentinelValues.containsOneKey)
{
target.add(function.valueOf(this.sentinelValues.oneValue));
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
target.add(function.valueOf(this.values[i]));
}
}
return target;
}
public char detectIfNone(CharPredicate predicate, char value)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
return this.sentinelValues.zeroValue;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
return this.sentinelValues.oneValue;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values[i]))
{
return this.values[i];
}
}
return value;
}
public int count(CharPredicate predicate)
{
int count = 0;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
count++;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
count++;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values[i]))
{
count++;
}
}
return count;
}
public boolean anySatisfy(CharPredicate predicate)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
return true;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
return true;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values[i]))
{
return true;
}
}
return false;
}
public boolean allSatisfy(CharPredicate predicate)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && !predicate.accept(this.sentinelValues.zeroValue))
{
return false;
}
if (this.sentinelValues.containsOneKey && !predicate.accept(this.sentinelValues.oneValue))
{
return false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && !predicate.accept(this.values[i]))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(CharPredicate predicate)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey && predicate.accept(this.sentinelValues.zeroValue))
{
return false;
}
if (this.sentinelValues.containsOneKey && predicate.accept(this.sentinelValues.oneValue))
{
return false;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]) && predicate.accept(this.values[i]))
{
return false;
}
}
return true;
}
public 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;
}
public MutableCharList toList()
{
return CharArrayList.newList(this);
}
public MutableCharSet toSet()
{
return CharHashSet.newSet(this);
}
public MutableCharBag toBag()
{
return CharHashBag.newBag(this);
}
public LazyCharIterable asLazy()
{
return new LazyCharIterableAdapter(this);
}
public void clear()
{
this.sentinelValues = null;
this.occupiedWithData = 0;
this.occupiedWithSentinels = 0;
Arrays.fill(this.keys, EMPTY_KEY);
Arrays.fill(this.values, EMPTY_VALUE);
}
public void put(short key, char value)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addEmptyKeyValue(value);
return;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null)
{
this.sentinelValues = new SentinelValues();
}
this.addRemovedKeyValue(value);
return;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
// key already present in map
this.values[index] = value;
return;
}
this.addKeyValueAtIndex(key, value, index);
}
public void putAll(ShortCharMap map)
{
map.forEachKeyValue(new ShortCharProcedure()
{
public void value(short key, char value)
{
ShortCharHashMap.this.put(key, value);
}
});
}
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.keys[index] = REMOVED_KEY;
this.values[index] = EMPTY_VALUE;
this.occupiedWithData--;
this.occupiedWithSentinels++;
if (this.occupiedWithSentinels > this.maxOccupiedWithSentinels())
{
this.rehash();
}
}
}
public void remove(short key)
{
this.removeKey(key);
}
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)
{
this.keys[index] = REMOVED_KEY;
char oldValue = this.values[index];
this.values[index] = EMPTY_VALUE;
this.occupiedWithData--;
this.occupiedWithSentinels++;
if (this.occupiedWithSentinels > this.maxOccupiedWithSentinels())
{
this.rehash();
}
return oldValue;
}
return value;
}
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;
}
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;
}
public 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;
}
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;
}
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 this.values[index];
}
private void addKeyValueAtIndex(short key, char value, int index)
{
if (this.keys[index] == REMOVED_KEY)
{
this.occupiedWithSentinels--;
}
this.keys[index] = key;
this.values[index] = value;
this.occupiedWithData++;
if (this.occupiedWithData > this.maxOccupiedWithData())
{
this.rehashAndGrow();
}
}
private void addEmptyKeyValue(char value)
{
this.sentinelValues.containsZeroKey = true;
this.sentinelValues.zeroValue = value;
}
private void removeEmptyKey()
{
if (this.sentinelValues.containsOneKey)
{
this.sentinelValues.containsZeroKey = false;
this.sentinelValues.zeroValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
}
private void addRemovedKeyValue(char value)
{
this.sentinelValues.containsOneKey = true;
this.sentinelValues.oneValue = value;
}
private void removeRemovedKey()
{
if (this.sentinelValues.containsZeroKey)
{
this.sentinelValues.containsOneKey = false;
this.sentinelValues.oneValue = EMPTY_VALUE;
}
else
{
this.sentinelValues = null;
}
}
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;
}
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;
}
public ShortCharHashMap withoutKey(short key)
{
this.removeKey(key);
return this;
}
public ShortCharHashMap withoutAllKeys(ShortIterable keys)
{
keys.forEach(new ShortProcedure()
{
public void value(short key)
{
ShortCharHashMap.this.removeKey(key);
}
});
return this;
}
public MutableShortCharMap asUnmodifiable()
{
return new UnmodifiableShortCharMap(this);
}
public MutableShortCharMap asSynchronized()
{
return new SynchronizedShortCharMap(this);
}
public ImmutableShortCharMap toImmutable()
{
return ShortCharMaps.immutable.ofAll(this);
}
public char get(short key)
{
return this.getIfAbsent(key, EMPTY_VALUE);
}
public char getIfAbsent(short key, char ifAbsent)
{
if (isEmptyKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey)
{
return ifAbsent;
}
return this.sentinelValues.zeroValue;
}
if (isRemovedKey(key))
{
if (this.sentinelValues == null || !this.sentinelValues.containsOneKey)
{
return ifAbsent;
}
return this.sentinelValues.oneValue;
}
int index = this.probe(key);
if (this.keys[index] == key)
{
return this.values[index];
}
return ifAbsent;
}
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.");
}
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;
}
public boolean containsValue(char value)
{
if (this.sentinelValues != null && this.sentinelValues.containsValue(value))
{
return true;
}
for (int i = 0; i < this.values.length; i++)
{
if (isNonSentinel(this.keys[i]) && this.values[i] == value)
{
return true;
}
}
return false;
}
public void forEachValue(CharProcedure procedure)
{
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
procedure.value(this.sentinelValues.zeroValue);
}
if (this.sentinelValues.containsOneKey)
{
procedure.value(this.sentinelValues.oneValue);
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
procedure.value(this.values[i]);
}
}
}
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 (short key : this.keys)
{
if (isNonSentinel(key))
{
procedure.value(key);
}
}
}
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]);
}
}
}
public LazyShortIterable keysView()
{
return new KeysView();
}
public RichIterable keyValuesView()
{
return new KeyValuesView();
}
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;
}
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;
}
public long sum()
{
long result = 0L;
if (this.sentinelValues != null)
{
if (this.sentinelValues.containsZeroKey)
{
result += this.sentinelValues.zeroValue;
}
if (this.sentinelValues.containsOneKey)
{
result += this.sentinelValues.oneValue;
}
}
for (int i = 0; i < this.keys.length; i++)
{
if (isNonSentinel(this.keys[i]))
{
result += this.values[i];
}
}
return result;
}
public char max()
{
if (this.isEmpty())
{
throw new NoSuchElementException();
}
CharIterator iterator = this.charIterator();
char max = iterator.next();
while (iterator.hasNext())
{
char value = iterator.next();
if (max < value)
{
max = value;
}
}
return max;
}
public char maxIfEmpty(char defaultValue)
{
if (this.isEmpty())
{
return defaultValue;
}
return this.max();
}
public char min()
{
if (this.isEmpty())
{
throw new NoSuchElementException();
}
CharIterator iterator = this.charIterator();
char min = iterator.next();
while (iterator.hasNext())
{
char value = iterator.next();
if (value < min)
{
min = value;
}
}
return min;
}
public char minIfEmpty(char defaultValue)
{
if (this.isEmpty())
{
return defaultValue;
}
return this.min();
}
public double average()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
return (double)this.sum() / (double) this.size();
}
public double median()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
char[] sortedArray = this.toSortedArray();
int middleIndex = sortedArray.length >> 1;
if (sortedArray.length > 1 && (sortedArray.length & 1) == 0)
{
char first = sortedArray[middleIndex];
char second = sortedArray[middleIndex - 1];
return ((double) first + (double) second) / 2.0;
}
return (double) sortedArray[middleIndex];
}
public char[] toSortedArray()
{
char[] array = this.toArray();
Arrays.sort(array);
return array;
}
public MutableCharList toSortedList()
{
return CharArrayList.newList(this).sortThis();
}
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]);
}
}
}
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());
}
}
/**
* Rehashes every element in the set into a new backing table of the smallest possible size and eliminating removed sentinels.
*/
public void compact()
{
this.rehash(this.smallestPowerOfTwoGreaterThan(this.size()));
}
private void rehash()
{
this.rehash(this.keys.length);
}
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]);
}
}
}
// exposed for testing
int probe(short element)
{
int index = this.spread(element);
short 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;
// loop until an empty slot is reached
while (true)
{
// Probe algorithm: 17*n*(n+1)/2 where n = number of collisions
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;
}
}
}
// exposed for testing
int spread(short element)
{
int code = (int) element;
code ^= 61 ^ (code >> 16);
code += code << 3;
code ^= code >> 4;
code *= 0x27d4eb2d;
code ^= code >> 15;
return code & (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);
}
private int maxOccupiedWithData()
{
int capacity = this.keys.length;
// need at least one free slot for open addressing
return Math.min(capacity - 1, capacity / OCCUPIED_DATA_RATIO);
}
private int maxOccupiedWithSentinels()
{
return this.keys.length / OCCUPIED_SENTINEL_RATIO;
}
private static final class SentinelValues
{
private boolean containsZeroKey;
private boolean containsOneKey;
private char zeroValue;
private char oneValue;
public int size()
{
return (this.containsZeroKey ? 1 : 0) + (this.containsOneKey ? 1 : 0);
}
public boolean containsValue(char value)
{
boolean valueEqualsZeroValue = this.containsZeroKey && this.zeroValue == value;
boolean valueEqualsOneValue = this.containsOneKey && this.oneValue == value;
return valueEqualsZeroValue || valueEqualsOneValue;
}
}
private class InternalCharIterator implements CharIterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public boolean hasNext()
{
return this.count < ShortCharHashMap.this.size();
}
public char 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 ShortCharHashMap.this.get(EMPTY_KEY);
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ShortCharHashMap.this.containsKey(REMOVED_KEY))
{
return ShortCharHashMap.this.get(REMOVED_KEY);
}
}
short[] keys = ShortCharHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
char result = ShortCharHashMap.this.values[this.position];
this.position++;
return result;
}
}
private class KeysView extends AbstractLazyShortIterable
{
public ShortIterator shortIterator()
{
return new KeySetIterator();
}
public void forEach(ShortProcedure procedure)
{
ShortCharHashMap.this.forEachKey(procedure);
}
}
private class KeySetIterator implements ShortIterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
public boolean hasNext()
{
return this.count < ShortCharHashMap.this.size();
}
public short 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 EMPTY_KEY;
}
}
if (!this.handledOne)
{
this.handledOne = true;
if (ShortCharHashMap.this.containsKey(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
short[] keys = ShortCharHashMap.this.keys;
while (!isNonSentinel(keys[this.position]))
{
this.position++;
}
short result = keys[this.position];
this.position++;
return result;
}
}
public MutableShortSet keySet()
{
return new KeySet();
}
private class KeySet implements MutableShortSet
{
public ShortIterator shortIterator()
{
return new KeySetIterator();
}
public void forEach(ShortProcedure procedure)
{
ShortCharHashMap.this.forEachKey(procedure);
}
public int count(ShortPredicate predicate)
{
int count = 0;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
count++;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
count++;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
count++;
}
}
return count;
}
public boolean anySatisfy(ShortPredicate predicate)
{
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return true;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return true;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return true;
}
}
return false;
}
public boolean allSatisfy(ShortPredicate predicate)
{
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
return false;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean noneSatisfy(ShortPredicate predicate)
{
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return false;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return false;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return false;
}
}
return true;
}
public boolean add(short element)
{
throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName());
}
public boolean addAll(short... source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean addAll(ShortIterable source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean remove(short key)
{
int oldSize = ShortCharHashMap.this.size();
ShortCharHashMap.this.removeKey(key);
return oldSize != ShortCharHashMap.this.size();
}
public boolean removeAll(ShortIterable source)
{
int oldSize = ShortCharHashMap.this.size();
ShortIterator iterator = source.shortIterator();
while (iterator.hasNext())
{
ShortCharHashMap.this.removeKey(iterator.next());
}
return oldSize != ShortCharHashMap.this.size();
}
public boolean removeAll(short... source)
{
int oldSize = ShortCharHashMap.this.size();
for (short item : source)
{
ShortCharHashMap.this.removeKey(item);
}
return oldSize != ShortCharHashMap.this.size();
}
public boolean retainAll(ShortIterable source)
{
int oldSize = this.size();
final ShortSet sourceSet = source instanceof ShortSet ? (ShortSet) source : source.toSet();
ShortCharHashMap retained = ShortCharHashMap.this.select(new ShortCharPredicate()
{
public boolean accept(short key, char value)
{
return 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;
}
public boolean retainAll(short... source)
{
return this.retainAll(ShortHashSet.newSetWith(source));
}
public void clear()
{
ShortCharHashMap.this.clear();
}
public MutableShortSet select(ShortPredicate predicate)
{
MutableShortSet result = new ShortHashSet();
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
result.add(key);
}
}
return result;
}
public MutableShortSet reject(ShortPredicate predicate)
{
MutableShortSet result = new ShortHashSet();
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY))
{
result.add(EMPTY_KEY);
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY))
{
result.add(REMOVED_KEY);
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && !predicate.accept(key))
{
result.add(key);
}
}
return result;
}
public MutableShortSet with(short element)
{
throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName());
}
public MutableShortSet without(short element)
{
throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName());
}
public MutableShortSet withAll(ShortIterable elements)
{
throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName());
}
public MutableShortSet withoutAll(ShortIterable elements)
{
throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName());
}
public short detectIfNone(ShortPredicate predicate, short ifNone)
{
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY))
{
return EMPTY_KEY;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY))
{
return REMOVED_KEY;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key) && predicate.accept(key))
{
return key;
}
}
return ifNone;
}
public MutableSet collect(ShortToObjectFunction extends V> function)
{
MutableSet result = Sets.mutable.with();
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
result.add(function.valueOf(EMPTY_KEY));
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
result.add(function.valueOf(REMOVED_KEY));
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key))
{
result.add(function.valueOf(key));
}
}
return result;
}
public MutableShortSet asUnmodifiable()
{
return UnmodifiableShortSet.of(this);
}
public MutableShortSet asSynchronized()
{
return SynchronizedShortSet.of(this);
}
public long sum()
{
long sum = 0L;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
sum += EMPTY_KEY;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
sum += REMOVED_KEY;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key))
{
sum += key;
}
}
return sum;
}
public short max()
{
if (ShortCharHashMap.this.isEmpty())
{
throw new NoSuchElementException();
}
short max = 0;
boolean isMaxSet = false;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
max = EMPTY_KEY;
isMaxSet = true;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && (!isMaxSet || max < REMOVED_KEY))
{
max = REMOVED_KEY;
isMaxSet = true;
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]) && (!isMaxSet || max < ShortCharHashMap.this.keys[i]))
{
max = ShortCharHashMap.this.keys[i];
isMaxSet = true;
}
}
return max;
}
public short maxIfEmpty(short defaultValue)
{
if (ShortCharHashMap.this.isEmpty())
{
return defaultValue;
}
return this.max();
}
public short min()
{
if (ShortCharHashMap.this.isEmpty())
{
throw new NoSuchElementException();
}
short min = 0;
boolean isMinSet = false;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
min = EMPTY_KEY;
isMinSet = true;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey && (!isMinSet || REMOVED_KEY < min))
{
min = REMOVED_KEY;
isMinSet = true;
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]) && (!isMinSet || ShortCharHashMap.this.keys[i] < min))
{
min = ShortCharHashMap.this.keys[i];
isMinSet = true;
}
}
return min;
}
public short minIfEmpty(short defaultValue)
{
if (ShortCharHashMap.this.isEmpty())
{
return defaultValue;
}
return this.min();
}
public double average()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
return (double) this.sum() / (double) this.size();
}
public double median()
{
if (this.isEmpty())
{
throw new ArithmeticException();
}
short[] sortedArray = this.toSortedArray();
int middleIndex = sortedArray.length >> 1;
if (sortedArray.length > 1 && (sortedArray.length & 1) == 0)
{
short first = sortedArray[middleIndex];
short second = sortedArray[middleIndex - 1];
return ((double) first + (double) second) / 2.0;
}
return (double) sortedArray[middleIndex];
}
public short[] toSortedArray()
{
short[] array = this.toArray();
Arrays.sort(array);
return array;
}
public MutableShortList toSortedList()
{
return ShortArrayList.newList(this).sortThis();
}
public short[] toArray()
{
int size = ShortCharHashMap.this.size();
final short[] result = new short[size];
ShortCharHashMap.this.forEachKey(new ShortProcedure()
{
private int index;
public void value(short each)
{
result[this.index] = each;
this.index++;
}
});
return result;
}
public boolean contains(short value)
{
return ShortCharHashMap.this.containsKey(value);
}
public boolean containsAll(short... source)
{
for (short item : source)
{
if (!ShortCharHashMap.this.containsKey(item))
{
return false;
}
}
return true;
}
public boolean containsAll(ShortIterable source)
{
ShortIterator iterator = source.shortIterator();
while (iterator.hasNext())
{
if (!ShortCharHashMap.this.containsKey(iterator.next()))
{
return false;
}
}
return true;
}
public MutableShortList toList()
{
return ShortArrayList.newList(this);
}
public MutableShortSet toSet()
{
return ShortHashSet.newSet(this);
}
public MutableShortBag toBag()
{
return ShortHashBag.newBag(this);
}
public LazyShortIterable asLazy()
{
return new LazyShortIterableAdapter(this);
}
public T injectInto(T injectedValue, ObjectShortToObjectFunction super T, ? extends T> function)
{
T result = injectedValue;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
result = function.valueOf(result, EMPTY_KEY);
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
result = function.valueOf(result, REMOVED_KEY);
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]))
{
result = function.valueOf(result, ShortCharHashMap.this.keys[i]);
}
}
return result;
}
public ShortSet freeze()
{
throw new UnsupportedOperationException(this.getClass().getSimpleName() + ".freeze() not implemented yet");
}
public ImmutableShortSet toImmutable()
{
return ShortSets.immutable.withAll(this);
}
public int size()
{
return ShortCharHashMap.this.size();
}
public boolean isEmpty()
{
return ShortCharHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return ShortCharHashMap.this.notEmpty();
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
{
return true;
}
if (!(obj instanceof ShortSet))
{
return false;
}
ShortSet other = (ShortSet) obj;
return this.size() == other.size() && this.containsAll(other.toArray());
}
@Override
public int hashCode()
{
int result = 0;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
result += (int) EMPTY_KEY;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
result += (int) REMOVED_KEY;
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
if (isNonSentinel(ShortCharHashMap.this.keys[i]))
{
result += (int) ShortCharHashMap.this.keys[i];
}
}
return result;
}
@Override
public String toString()
{
return this.makeString("[", ", ", "]");
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(EMPTY_KEY));
first = false;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(REMOVED_KEY));
first = false;
}
}
for (short key : ShortCharHashMap.this.keys)
{
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(key));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
}
public MutableCharCollection values()
{
return new ValuesCollection();
}
private class ValuesCollection implements MutableCharCollection
{
public void clear()
{
ShortCharHashMap.this.clear();
}
public MutableCharCollection select(CharPredicate predicate)
{
return ShortCharHashMap.this.select(predicate);
}
public MutableCharCollection reject(CharPredicate predicate)
{
return ShortCharHashMap.this.reject(predicate);
}
public char detectIfNone(CharPredicate predicate, char ifNone)
{
return ShortCharHashMap.this.detectIfNone(predicate, ifNone);
}
public MutableCollection collect(CharToObjectFunction extends V> function)
{
return ShortCharHashMap.this.collect(function);
}
public T injectInto(T injectedValue, ObjectCharToObjectFunction super T, ? extends T> function)
{
return ShortCharHashMap.this.injectInto(injectedValue, function);
}
public long sum()
{
return ShortCharHashMap.this.sum();
}
public char max()
{
return ShortCharHashMap.this.max();
}
public char maxIfEmpty(char defaultValue)
{
return ShortCharHashMap.this.maxIfEmpty(defaultValue);
}
public char min()
{
return ShortCharHashMap.this.min();
}
public char minIfEmpty(char defaultValue)
{
return ShortCharHashMap.this.minIfEmpty(defaultValue);
}
public double average()
{
return ShortCharHashMap.this.average();
}
public double median()
{
return ShortCharHashMap.this.median();
}
public char[] toSortedArray()
{
return ShortCharHashMap.this.toSortedArray();
}
public MutableCharList toSortedList()
{
return ShortCharHashMap.this.toSortedList();
}
public MutableCharCollection with(char element)
{
throw new UnsupportedOperationException("Cannot call with() on " + this.getClass().getSimpleName());
}
public MutableCharCollection without(char element)
{
throw new UnsupportedOperationException("Cannot call without() on " + this.getClass().getSimpleName());
}
public MutableCharCollection withAll(CharIterable elements)
{
throw new UnsupportedOperationException("Cannot call withAll() on " + this.getClass().getSimpleName());
}
public MutableCharCollection withoutAll(CharIterable elements)
{
throw new UnsupportedOperationException("Cannot call withoutAll() on " + this.getClass().getSimpleName());
}
public MutableCharCollection asUnmodifiable()
{
return UnmodifiableCharCollection.of(this);
}
public MutableCharCollection asSynchronized()
{
return SynchronizedCharCollection.of(this);
}
public ImmutableCharCollection toImmutable()
{
return CharLists.immutable.withAll(this);
}
public boolean contains(char value)
{
return ShortCharHashMap.this.containsValue(value);
}
public boolean containsAll(char... source)
{
return ShortCharHashMap.this.containsAll(source);
}
public boolean containsAll(CharIterable source)
{
return ShortCharHashMap.this.containsAll(source);
}
public MutableCharList toList()
{
return ShortCharHashMap.this.toList();
}
public MutableCharSet toSet()
{
return ShortCharHashMap.this.toSet();
}
public MutableCharBag toBag()
{
return ShortCharHashMap.this.toBag();
}
public LazyCharIterable asLazy()
{
return new LazyCharIterableAdapter(this);
}
public boolean isEmpty()
{
return ShortCharHashMap.this.isEmpty();
}
public boolean notEmpty()
{
return ShortCharHashMap.this.notEmpty();
}
public String makeString()
{
return this.makeString(", ");
}
public String makeString(String separator)
{
return this.makeString("", separator, "");
}
public String makeString(String start, String separator, String end)
{
Appendable stringBuilder = new StringBuilder();
this.appendString(stringBuilder, start, separator, end);
return stringBuilder.toString();
}
public void appendString(Appendable appendable)
{
this.appendString(appendable, ", ");
}
public void appendString(Appendable appendable, String separator)
{
this.appendString(appendable, "", separator, "");
}
public void appendString(Appendable appendable, String start, String separator, String end)
{
try
{
appendable.append(start);
boolean first = true;
if (ShortCharHashMap.this.sentinelValues != null)
{
if (ShortCharHashMap.this.sentinelValues.containsZeroKey)
{
appendable.append(String.valueOf(ShortCharHashMap.this.sentinelValues.zeroValue));
first = false;
}
if (ShortCharHashMap.this.sentinelValues.containsOneKey)
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(ShortCharHashMap.this.sentinelValues.oneValue));
first = false;
}
}
for (int i = 0; i < ShortCharHashMap.this.keys.length; i++)
{
short key = ShortCharHashMap.this.keys[i];
if (isNonSentinel(key))
{
if (!first)
{
appendable.append(separator);
}
appendable.append(String.valueOf(ShortCharHashMap.this.values[i]));
first = false;
}
}
appendable.append(end);
}
catch (IOException e)
{
throw new RuntimeException(e);
}
}
public CharIterator charIterator()
{
return ShortCharHashMap.this.charIterator();
}
public void forEach(CharProcedure procedure)
{
ShortCharHashMap.this.forEach(procedure);
}
public int count(CharPredicate predicate)
{
return ShortCharHashMap.this.count(predicate);
}
public boolean anySatisfy(CharPredicate predicate)
{
return ShortCharHashMap.this.anySatisfy(predicate);
}
public boolean allSatisfy(CharPredicate predicate)
{
return ShortCharHashMap.this.allSatisfy(predicate);
}
public boolean noneSatisfy(CharPredicate predicate)
{
return ShortCharHashMap.this.noneSatisfy(predicate);
}
public boolean add(char element)
{
throw new UnsupportedOperationException("Cannot call add() on " + this.getClass().getSimpleName());
}
public boolean addAll(char... source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
public boolean addAll(CharIterable source)
{
throw new UnsupportedOperationException("Cannot call addAll() on " + this.getClass().getSimpleName());
}
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();
}
public boolean removeAll(CharIterable source)
{
int oldSize = ShortCharHashMap.this.size();
CharIterator iterator = source.charIterator();
while (iterator.hasNext())
{
this.remove(iterator.next());
}
return oldSize != ShortCharHashMap.this.size();
}
public boolean removeAll(char... source)
{
int oldSize = ShortCharHashMap.this.size();
for (char item : source)
{
this.remove(item);
}
return oldSize != ShortCharHashMap.this.size();
}
public boolean retainAll(CharIterable source)
{
int oldSize = this.size();
final CharSet sourceSet = source instanceof CharSet ? (CharSet) source : source.toSet();
ShortCharHashMap retained = ShortCharHashMap.this.select(new ShortCharPredicate()
{
public boolean accept(short key, char value)
{
return 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;
}
public boolean retainAll(char... source)
{
return this.retainAll(CharHashSet.newSetWith(source));
}
public int size()
{
return ShortCharHashMap.this.size();
}
public char[] toArray()
{
return ShortCharHashMap.this.toArray();
}
}
private class KeyValuesView extends AbstractLazyIterable
{
public void forEach(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]));
}
}
}
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++;
}
}
}
public 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);
}
}
}
public Iterator iterator()
{
return new InternalKeyValuesIterator();
}
public class InternalKeyValuesIterator implements Iterator
{
private int count;
private int position;
private boolean handledZero;
private boolean handledOne;
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;
}
public void remove()
{
throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName());
}
public boolean hasNext()
{
return this.count != ShortCharHashMap.this.size();
}
}
}
}