/*
 * Copyright (c) 2018 Goldman Sachs and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and Eclipse Distribution License v. 1.0 which accompany this distribution.
 * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
 * and the Eclipse Distribution License is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 */

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.FloatIterable;
import org.eclipse.collections.api.LazyFloatIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.block.function.primitive.FloatFunction;
import org.eclipse.collections.api.block.function.primitive.FloatFunction0;
import org.eclipse.collections.api.block.function.primitive.FloatToFloatFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectFloatToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.FloatFloatPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.FloatProcedure;
import org.eclipse.collections.api.block.procedure.primitive.FloatFloatProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.impl.SpreadFunctions;
import org.eclipse.collections.api.collection.primitive.MutableFloatCollection;
import org.eclipse.collections.api.iterator.FloatIterator;
import org.eclipse.collections.api.iterator.MutableFloatIterator;
import org.eclipse.collections.api.map.primitive.FloatFloatMap;
import org.eclipse.collections.api.map.primitive.ImmutableFloatFloatMap;
import org.eclipse.collections.api.map.primitive.MutableFloatFloatMap;
import org.eclipse.collections.api.set.primitive.FloatSet;
import org.eclipse.collections.api.set.primitive.MutableFloatSet;
import org.eclipse.collections.api.tuple.primitive.FloatFloatPair;
import org.eclipse.collections.impl.bag.mutable.primitive.FloatHashBag;
import org.eclipse.collections.impl.factory.primitive.FloatFloatMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableFloatIterator;
import org.eclipse.collections.impl.lazy.AbstractLazyIterable;
import org.eclipse.collections.impl.lazy.primitive.AbstractLazyFloatIterable;
import org.eclipse.collections.impl.set.mutable.primitive.FloatHashSet;
import org.eclipse.collections.impl.tuple.primitive.PrimitiveTuples;

This file was automatically generated from template file primitivePrimitiveHashMap.stg.
Since:3.0.
/** * This file was automatically generated from template file primitivePrimitiveHashMap.stg. * * @since 3.0. */
public class FloatFloatHashMap extends AbstractMutableFloatValuesMap implements MutableFloatFloatMap, Externalizable, MutableFloatKeysMap { private static final float EMPTY_VALUE = 0.0f; private static final long serialVersionUID = 1L; private static final float EMPTY_KEY = 0.0f; private static final float REMOVED_KEY = 1.0f; private static final int CACHE_LINE_SIZE = 64; private static final int KEY_SIZE = 4; private static final int INITIAL_LINEAR_PROBE = CACHE_LINE_SIZE / KEY_SIZE / 2; /* half a cache line */ private static final int DEFAULT_INITIAL_CAPACITY = 8; private float[] keysValues; private int occupiedWithData; private int occupiedWithSentinels; private SentinelValues sentinelValues; private boolean copyKeysOnWrite; public FloatFloatHashMap() { this.allocateTable(DEFAULT_INITIAL_CAPACITY << 1); } public FloatFloatHashMap(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 FloatFloatHashMap(FloatFloatMap map) { if (map instanceof FloatFloatHashMap && ((FloatFloatHashMap) map).occupiedWithSentinels == 0) { FloatFloatHashMap hashMap = (FloatFloatHashMap) map; this.occupiedWithData = hashMap.occupiedWithData; if (hashMap.sentinelValues != null) { this.sentinelValues = hashMap.sentinelValues.copy(); } this.keysValues = Arrays.copyOf(hashMap.keysValues, hashMap.keysValues.length); } else { int capacity = this.smallestPowerOfTwoGreaterThan(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY) << 1); this.allocateTable(capacity); this.putAll(map); } } public static FloatFloatHashMap newWithKeysValues(float key1, float value1) { return new FloatFloatHashMap(1).withKeyValue(key1, value1); } public static FloatFloatHashMap newWithKeysValues(float key1, float value1, float key2, float value2) { return new FloatFloatHashMap(2).withKeysValues(key1, value1, key2, value2); } public static FloatFloatHashMap newWithKeysValues(float key1, float value1, float key2, float value2, float key3, float value3) { return new FloatFloatHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3); } public static FloatFloatHashMap newWithKeysValues(float key1, float value1, float key2, float value2, float key3, float value3, float key4, float value4) { return new FloatFloatHashMap(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 float getEmptyValue() { return EMPTY_VALUE; } @Override protected int getTableSize() { return this.keysValues.length / 2; } @Override protected float getValueAtIndex(int index) { return this.keysValues[index * 2 + 1]; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof FloatFloatMap)) { return false; } FloatFloatMap other = (FloatFloatMap) 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) || Float.compare(this.sentinelValues.zeroValue, other.getOrThrow(EMPTY_KEY)) != 0)) { return false; } if (this.sentinelValues.containsOneKey && (!other.containsKey(REMOVED_KEY) || Float.compare(this.sentinelValues.oneValue, other.getOrThrow(REMOVED_KEY)) != 0)) { return false; } } for (int i = 0; i < this.keysValues.length; i += 2) { float key = this.keysValues[i]; if (isNonSentinel(key) && (!other.containsKey(key) || Float.compare(this.keysValues[i + 1], other.getOrThrow(key)) != 0)) { return false; } } return true; } @Override public int hashCode() { int result = 0; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { result += Float.floatToIntBits(EMPTY_KEY) ^ Float.floatToIntBits(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { result += Float.floatToIntBits(REMOVED_KEY) ^ Float.floatToIntBits(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i])) { result += Float.floatToIntBits(this.keysValues[i]) ^ Float.floatToIntBits(this.keysValues[i + 1]); } } 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.keysValues.length; i += 2) { float key = this.keysValues[i]; if (isNonSentinel(key)) { if (!first) { appendable.append(", "); } appendable.append(key).append("=").append(this.keysValues[i + 1]); first = false; } } appendable.append("}"); return appendable.toString(); } @Override public MutableFloatIterator floatIterator() { return new InternalFloatIterator(); } @Override public <V> V injectInto(V injectedValue, ObjectFloatToObjectFunction<? 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.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i])) { result = function.valueOf(result, this.keysValues[i + 1]); } } return result; } @Override public void clear() { this.sentinelValues = null; this.occupiedWithData = 0; this.occupiedWithSentinels = 0; if (this.copyKeysOnWrite) { this.copyKeys(); } Arrays.fill(this.keysValues, 0.0f); } @Override public void put(float key, float value) { if (isEmptyKey(key)) { this.putForEmptySentinel(value); return; } if (isRemovedKey(key)) { this.putForRemovedSentinel(value); return; } int index = this.probe(key); float keyAtIndex = this.keysValues[index]; if (Float.compare(keyAtIndex, key) == 0) { this.keysValues[index + 1] = value; } else { this.addKeyValueAtIndex(key, value, index); } } private void putForRemovedSentinel(float value) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); } this.addRemovedKeyValue(value); } private void putForEmptySentinel(float value) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); } this.addEmptyKeyValue(value); } @Override public void putAll(FloatFloatMap map) { map.forEachKeyValue(this::put); } @Override public void removeKey(float 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 (Float.compare(this.keysValues[index], key) == 0) { this.removeKeyAtIndex(index); } } @Override public void remove(float key) { this.removeKey(key); } @Override public float removeKeyIfAbsent(float key, float value) { if (isEmptyKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey) { return value; } float oldValue = this.sentinelValues.zeroValue; this.removeEmptyKey(); return oldValue; } if (isRemovedKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsOneKey) { return value; } float oldValue = this.sentinelValues.oneValue; this.removeRemovedKey(); return oldValue; } int index = this.probe(key); if (Float.compare(this.keysValues[index], key) == 0) { float oldValue = this.keysValues[index + 1]; this.removeKeyAtIndex(index); return oldValue; } return value; } @Override public float getIfAbsentPut(float key, float 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 (Float.compare(this.keysValues[index], key) == 0) { return this.keysValues[index + 1]; } this.addKeyValueAtIndex(key, value, index); return value; } @Override public float getIfAbsentPut(float key, FloatFunction0 function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { float value = function.value(); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } float value = function.value(); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { float value = function.value(); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } float value = function.value(); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (Float.compare(this.keysValues[index], key) == 0) { return this.keysValues[index + 1]; } float value = function.value(); this.addKeyValueAtIndex(key, value, index); return value; } @Override public <P> float getIfAbsentPutWith(float key, FloatFunction<? super P> function, P parameter) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { float value = function.floatValueOf(parameter); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } float value = function.floatValueOf(parameter); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { float value = function.floatValueOf(parameter); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } float value = function.floatValueOf(parameter); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (Float.compare(this.keysValues[index], key) == 0) { return this.keysValues[index + 1]; } float value = function.floatValueOf(parameter); this.addKeyValueAtIndex(key, value, index); return value; } @Override public float getIfAbsentPutWithKey(float key, FloatToFloatFunction function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { float value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } float value = function.valueOf(key); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { float value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } float value = function.valueOf(key); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (Float.compare(this.keysValues[index], key) == 0) { return this.keysValues[index + 1]; } float value = function.valueOf(key); this.addKeyValueAtIndex(key, value, index); return value; } @Override public float addToValue(float key, float 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 (Float.compare(this.keysValues[index], key) == 0) { this.keysValues[index + 1] += toBeAdded; return this.keysValues[index + 1]; } this.addKeyValueAtIndex(key, toBeAdded, index); return toBeAdded; } private void addKeyValueAtIndex(float key, float value, int index) { if (Float.compare(this.keysValues[index], REMOVED_KEY) == 0) { this.occupiedWithSentinels--; } if (this.copyKeysOnWrite) { this.copyKeys(); } this.keysValues[index] = key; this.keysValues[index + 1] = value; this.occupiedWithData++; if (this.occupiedWithData + this.occupiedWithSentinels > this.maxOccupiedWithData()) { this.rehashAndGrow(); } } private void removeKeyAtIndex(int index) { if (this.copyKeysOnWrite) { this.copyKeys(); } this.keysValues[index] = REMOVED_KEY; this.keysValues[index + 1] = EMPTY_VALUE; this.occupiedWithData--; this.occupiedWithSentinels++; } private void copyKeys() { float[] copy = new float[this.keysValues.length]; System.arraycopy(this.keysValues, 0, copy, 0, this.keysValues.length); this.keysValues = copy; this.copyKeysOnWrite = false; } @Override public float updateValue(float key, float initialValueIfAbsent, FloatToFloatFunction 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 (Float.compare(this.keysValues[index], key) == 0) { this.keysValues[index + 1] = function.valueOf(this.keysValues[index + 1]); return this.keysValues[index + 1]; } float value = function.valueOf(initialValueIfAbsent); this.addKeyValueAtIndex(key, value, index); return value; } @Override public FloatFloatHashMap withKeyValue(float key1, float value1) { this.put(key1, value1); return this; } public FloatFloatHashMap withKeysValues(float key1, float value1, float key2, float value2) { this.put(key1, value1); this.put(key2, value2); return this; } public FloatFloatHashMap withKeysValues(float key1, float value1, float key2, float value2, float key3, float value3) { this.put(key1, value1); this.put(key2, value2); this.put(key3, value3); return this; } public FloatFloatHashMap withKeysValues(float key1, float value1, float key2, float value2, float key3, float value3, float key4, float value4) { this.put(key1, value1); this.put(key2, value2); this.put(key3, value3); this.put(key4, value4); return this; } @Override public FloatFloatHashMap withoutKey(float key) { this.removeKey(key); return this; } @Override public FloatFloatHashMap withoutAllKeys(FloatIterable keys) { keys.forEach(this::removeKey); return this; } @Override public MutableFloatFloatMap asUnmodifiable() { return new UnmodifiableFloatFloatMap(this); } @Override public MutableFloatFloatMap asSynchronized() { return new SynchronizedFloatFloatMap(this); } @Override public ImmutableFloatFloatMap toImmutable() { return FloatFloatMaps.immutable.ofAll(this); } @Override public float get(float key) { return this.getIfAbsent(key, EMPTY_VALUE); } @Override public float getIfAbsent(float key, float 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 float getForSentinel(float key, float 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 float slowGetIfAbsent(float key, float ifAbsent) { int index = this.probe(key); if (Float.compare(this.keysValues[index], key) == 0) { return this.keysValues[index + 1]; } return ifAbsent; } private float fastGetIfAbsent(float key, float ifAbsent) { int index = this.mask((int) key) << 1; for (int i = 0; i < INITIAL_LINEAR_PROBE; i += 2) { float keyAtIndex = this.keysValues[index]; if (Float.compare(keyAtIndex, key) == 0) { return this.keysValues[index + 1]; } if (Float.compare(keyAtIndex, EMPTY_KEY) == 0) { return ifAbsent; } index = (index + 2) & (this.keysValues.length - 1); } return this.slowGetIfAbsentTwo(key, ifAbsent); } private float slowGetIfAbsentTwo(float key, float ifAbsent) { int index = this.probeTwo(key, -1); if (Float.compare(this.keysValues[index], key) == 0) { return this.keysValues[index + 1]; } return ifAbsent; } @Override public float getOrThrow(float 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.keysValues[index])) { return this.keysValues[index + 1]; } throw new IllegalStateException("Key " + key + " not present."); } @Override public boolean containsKey(float key) { if (isEmptyKey(key)) { return this.sentinelValues != null && this.sentinelValues.containsZeroKey; } if (isRemovedKey(key)) { return this.sentinelValues != null && this.sentinelValues.containsOneKey; } return Float.compare(this.keysValues[this.probe(key)], key) == 0; } @Override public void forEachKey(FloatProcedure 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.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i])) { procedure.value(this.keysValues[i]); } } } @Override public void forEachKeyValue(FloatFloatProcedure 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.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i])) { procedure.value(this.keysValues[i], this.keysValues[i + 1]); } } } @Override public LazyFloatIterable keysView() { return new KeysView(); } @Override public RichIterable<FloatFloatPair> keyValuesView() { return new KeyValuesView(); } @Override public MutableFloatFloatMap flipUniqueValues() { MutableFloatFloatMap result = FloatFloatMaps.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 FloatFloatHashMap select(FloatFloatPredicate predicate) { FloatFloatHashMap result = new FloatFloatHashMap(); 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.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i]) && predicate.accept(this.keysValues[i], this.keysValues[i + 1])) { result.put(this.keysValues[i], this.keysValues[i + 1]); } } return result; } @Override public FloatFloatHashMap reject(FloatFloatPredicate predicate) { FloatFloatHashMap result = new FloatFloatHashMap(); 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.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i]) && !predicate.accept(this.keysValues[i], this.keysValues[i + 1])) { result.put(this.keysValues[i], this.keysValues[i + 1]); } } return result; } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(this.size()); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { out.writeFloat(EMPTY_KEY); out.writeFloat(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { out.writeFloat(REMOVED_KEY); out.writeFloat(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keysValues.length; i += 2) { if (isNonSentinel(this.keysValues[i])) { out.writeFloat(this.keysValues[i]); out.writeFloat(this.keysValues[i + 1]); } } } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { int size = in.readInt(); for (int i = 0; i < size; i++) { this.put(in.readFloat(), in.readFloat()); } }
Rehashes every element in the set into a new backing table of the smallest possible size and eliminating removed sentinels.
/** * 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 rehashAndGrow() { this.rehash(this.keysValues.length); } private void rehash(int newCapacity) { int oldLength = this.keysValues.length; float[] old = this.keysValues; this.allocateTable(newCapacity); this.occupiedWithData = 0; this.occupiedWithSentinels = 0; for (int i = 0; i < oldLength; i += 2) { if (isNonSentinel(old[i])) { this.put(old[i], old[i + 1]); } } } // exposed for testing int probe(float element) { int index = this.mask((int) element) << 1; float keyAtIndex = this.keysValues[index]; if (Float.compare(keyAtIndex, element) == 0 || Float.compare(keyAtIndex, EMPTY_KEY) == 0) { return index; } int removedIndex = Float.compare(keyAtIndex, REMOVED_KEY) == 0 ? index : -1; for (int i = 2; i < INITIAL_LINEAR_PROBE; i += 2) { int nextIndex = (index + i) & (this.keysValues.length - 1); keyAtIndex = this.keysValues[nextIndex]; if (Float.compare(keyAtIndex, element) == 0) { return nextIndex; } if (Float.compare(keyAtIndex, EMPTY_KEY) == 0) { return removedIndex == -1 ? nextIndex : removedIndex; } if (Float.compare(keyAtIndex, REMOVED_KEY) == 0 && removedIndex == -1) { removedIndex = nextIndex; } } return this.probeTwo(element, removedIndex); } int probeTwo(float element, int removedIndex) { int index = this.spreadTwoAndMask(element) << 1; for (int i = 0; i < INITIAL_LINEAR_PROBE; i += 2) { int nextIndex = (index + i) & (this.keysValues.length - 1); float keyAtIndex = this.keysValues[nextIndex]; if (Float.compare(keyAtIndex, element) == 0) { return nextIndex; } if (Float.compare(keyAtIndex, EMPTY_KEY) == 0) { return removedIndex == -1 ? nextIndex : removedIndex; } if (Float.compare(keyAtIndex, REMOVED_KEY) == 0 && removedIndex == -1) { removedIndex = nextIndex; } } return this.probeThree(element, removedIndex); } int probeThree(float element, int removedIndex) { int nextIndex = (int) SpreadFunctions.floatSpreadOne(element) << 1; int spreadTwo = Integer.reverse(SpreadFunctions.floatSpreadTwo(element)) | 1; while (true) { nextIndex = this.mask((nextIndex >> 1) + spreadTwo) << 1; float keyAtIndex = this.keysValues[nextIndex]; if (Float.compare(keyAtIndex, element) == 0) { return nextIndex; } if (Float.compare(keyAtIndex, EMPTY_KEY) == 0) { return removedIndex == -1 ? nextIndex : removedIndex; } if (Float.compare(keyAtIndex, REMOVED_KEY) == 0 && removedIndex == -1) { removedIndex = nextIndex; } } } // exposed for testing int spreadAndMask(float element) { int code = SpreadFunctions.floatSpreadOne(element); return this.mask(code); } int spreadTwoAndMask(float element) { int code = SpreadFunctions.floatSpreadTwo(element); return this.mask(code); } private int mask(int spread) { return spread & ((this.keysValues.length >> 1) - 1); } private void allocateTable(int sizeToAllocate) { this.keysValues = new float[sizeToAllocate << 1]; } private static boolean isEmptyKey(float key) { return Float.compare(key, EMPTY_KEY) == 0; } private static boolean isRemovedKey(float key) { return Float.compare(key, REMOVED_KEY) == 0; } private static boolean isNonSentinel(float key) { return !isEmptyKey(key) && !isRemovedKey(key); } @Override protected boolean isNonSentinelAtIndex(int index) { return !isEmptyKey(this.keysValues[index * 2]) && !isRemovedKey(this.keysValues[index * 2]); } private int maxOccupiedWithData() { return this.keysValues.length >> 2; } private int maxOccupiedWithSentinels() { return this.keysValues.length >> 3; } private class InternalFloatIterator implements MutableFloatIterator { private int count; private int position; private float lastKey; private boolean handledZero; private boolean handledOne; private boolean canRemove; @Override public boolean hasNext() { return this.count < FloatFloatHashMap.this.size(); } @Override public float 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 (FloatFloatHashMap.this.containsKey(EMPTY_KEY)) { this.lastKey = EMPTY_KEY; return FloatFloatHashMap.this.get(EMPTY_KEY); } } if (!this.handledOne) { this.handledOne = true; if (FloatFloatHashMap.this.containsKey(REMOVED_KEY)) { this.lastKey = REMOVED_KEY; return FloatFloatHashMap.this.get(REMOVED_KEY); } } float[] keys = FloatFloatHashMap.this.keysValues; while (!isNonSentinel(keys[this.position])) { this.position += 2; } this.lastKey = keys[this.position]; float result = FloatFloatHashMap.this.keysValues[this.position + 1]; this.position += 2; return result; } @Override public void remove() { if (!this.canRemove) { throw new IllegalStateException(); } FloatFloatHashMap.this.removeKey(this.lastKey); this.count--; this.canRemove = false; } } private class KeysView extends AbstractLazyFloatIterable { @Override public FloatIterator floatIterator() { return new UnmodifiableFloatIterator(new KeySetIterator()); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(FloatProcedure procedure) { FloatFloatHashMap.this.forEachKey(procedure); } } private class KeySetIterator implements MutableFloatIterator { private int count; private int position; private float lastKey; private boolean handledZero; private boolean handledOne; private boolean canRemove; @Override public boolean hasNext() { return this.count < FloatFloatHashMap.this.size(); } @Override public float 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 (FloatFloatHashMap.this.containsKey(EMPTY_KEY)) { this.lastKey = EMPTY_KEY; return this.lastKey; } } if (!this.handledOne) { this.handledOne = true; if (FloatFloatHashMap.this.containsKey(REMOVED_KEY)) { this.lastKey = REMOVED_KEY; return this.lastKey; } } float[] keys = FloatFloatHashMap.this.keysValues; while (!isNonSentinel(keys[this.position])) { this.position += 2; } this.lastKey = keys[this.position]; this.position += 2; return this.lastKey; } @Override public void remove() { if (!this.canRemove) { throw new IllegalStateException(); } FloatFloatHashMap.this.removeKey(this.lastKey); this.count--; this.canRemove = false; } } @Override public MutableFloatSet keySet() { return new KeySet(); } private class KeySet extends AbstractMutableFloatKeySet { @Override protected MutableFloatKeysMap getOuter() { return FloatFloatHashMap.this; } @Override protected SentinelValues getSentinelValues() { return FloatFloatHashMap.this.sentinelValues; } @Override protected float getKeyAtIndex(int index) { return FloatFloatHashMap.this.keysValues[index * 2]; } @Override protected int getTableSize() { return FloatFloatHashMap.this.keysValues.length / 2; } @Override public MutableFloatIterator floatIterator() { return new KeySetIterator(); } @Override public boolean retainAll(FloatIterable source) { int oldSize = FloatFloatHashMap.this.size(); final FloatSet sourceSet = source instanceof FloatSet ? (FloatSet) source : source.toSet(); FloatFloatHashMap retained = FloatFloatHashMap.this.select((float key, float value) -> sourceSet.contains(key)); if (retained.size() != oldSize) { FloatFloatHashMap.this.keysValues = retained.keysValues; FloatFloatHashMap.this.sentinelValues = retained.sentinelValues; FloatFloatHashMap.this.occupiedWithData = retained.occupiedWithData; FloatFloatHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels; return true; } return false; } @Override public boolean retainAll(float... source) { return this.retainAll(FloatHashSet.newSetWith(source)); } @Override public FloatSet freeze() { FloatFloatHashMap.this.copyKeysOnWrite = true; boolean containsZeroKey = false; boolean containsOneKey = false; if (FloatFloatHashMap.this.sentinelValues != null) { containsZeroKey = FloatFloatHashMap.this.sentinelValues.containsZeroKey; containsOneKey = FloatFloatHashMap.this.sentinelValues.containsOneKey; } return new ImmutableFloatFloatMapKeySet(FloatFloatHashMap.this.keysValues, FloatFloatHashMap.this.occupiedWithData, containsZeroKey, containsOneKey); }
Since:9.2.
/** * @since 9.2. */
@Override public MutableFloatSet newEmpty() { return new FloatHashSet(); } } @Override public MutableFloatCollection values() { return new ValuesCollection(); } private class ValuesCollection extends AbstractFloatValuesCollection { @Override public MutableFloatIterator floatIterator() { return FloatFloatHashMap.this.floatIterator(); } @Override public boolean remove(float item) { int oldSize = FloatFloatHashMap.this.size(); if (FloatFloatHashMap.this.sentinelValues != null) { if (FloatFloatHashMap.this.sentinelValues.containsZeroKey && Float.compare(item, FloatFloatHashMap.this.sentinelValues.zeroValue) == 0) { FloatFloatHashMap.this.removeKey(EMPTY_KEY); } if (FloatFloatHashMap.this.sentinelValues.containsOneKey && Float.compare(item, FloatFloatHashMap.this.sentinelValues.oneValue) == 0) { FloatFloatHashMap.this.removeKey(REMOVED_KEY); } } for (int i = 0; i < FloatFloatHashMap.this.keysValues.length; i += 2) { if (isNonSentinel(FloatFloatHashMap.this.keysValues[i]) && Float.compare(item, FloatFloatHashMap.this.keysValues[i + 1]) == 0) { FloatFloatHashMap.this.removeKey(FloatFloatHashMap.this.keysValues[i]); } } return oldSize != FloatFloatHashMap.this.size(); } @Override public boolean retainAll(FloatIterable source) { int oldSize = FloatFloatHashMap.this.size(); final FloatSet sourceSet = source instanceof FloatSet ? (FloatSet) source : source.toSet(); FloatFloatHashMap retained = FloatFloatHashMap.this.select((float key, float value) -> sourceSet.contains(value)); if (retained.size() != oldSize) { FloatFloatHashMap.this.keysValues = retained.keysValues; FloatFloatHashMap.this.sentinelValues = retained.sentinelValues; FloatFloatHashMap.this.occupiedWithData = retained.occupiedWithData; FloatFloatHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels; return true; } return false; }
Since:9.2.
/** * @since 9.2. */
@Override public MutableFloatCollection newEmpty() { return new FloatHashBag(); } } private class KeyValuesView extends AbstractLazyIterable<FloatFloatPair> { @Override public void each(Procedure<? super FloatFloatPair> procedure) { if (FloatFloatHashMap.this.sentinelValues != null) { if (FloatFloatHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatFloatHashMap.this.sentinelValues.zeroValue)); } if (FloatFloatHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatFloatHashMap.this.sentinelValues.oneValue)); } } for (int i = 0; i < FloatFloatHashMap.this.keysValues.length; i += 2) { if (isNonSentinel(FloatFloatHashMap.this.keysValues[i])) { procedure.value(PrimitiveTuples.pair(FloatFloatHashMap.this.keysValues[i], FloatFloatHashMap.this.keysValues[i + 1])); } } } @Override public void forEachWithIndex(ObjectIntProcedure<? super FloatFloatPair> objectIntProcedure) { int index = 0; if (FloatFloatHashMap.this.sentinelValues != null) { if (FloatFloatHashMap.this.sentinelValues.containsZeroKey) { objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatFloatHashMap.this.sentinelValues.zeroValue), index); index++; } if (FloatFloatHashMap.this.sentinelValues.containsOneKey) { objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatFloatHashMap.this.sentinelValues.oneValue), index); index++; } } for (int i = 0; i < FloatFloatHashMap.this.keysValues.length; i += 2) { if (isNonSentinel(FloatFloatHashMap.this.keysValues[i])) { objectIntProcedure.value(PrimitiveTuples.pair(FloatFloatHashMap.this.keysValues[i], FloatFloatHashMap.this.keysValues[i + 1]), index); index++; } } } @Override public <P> void forEachWith(Procedure2<? super FloatFloatPair, ? super P> procedure, P parameter) { if (FloatFloatHashMap.this.sentinelValues != null) { if (FloatFloatHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, FloatFloatHashMap.this.sentinelValues.zeroValue), parameter); } if (FloatFloatHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, FloatFloatHashMap.this.sentinelValues.oneValue), parameter); } } for (int i = 0; i < FloatFloatHashMap.this.keysValues.length; i += 2) { if (isNonSentinel(FloatFloatHashMap.this.keysValues[i])) { procedure.value(PrimitiveTuples.pair(FloatFloatHashMap.this.keysValues[i], FloatFloatHashMap.this.keysValues[i + 1]), parameter); } } } @Override public Iterator<FloatFloatPair> iterator() { return new InternalKeyValuesIterator(); } public class InternalKeyValuesIterator implements Iterator<FloatFloatPair> { private int count; private int position; private boolean handledZero; private boolean handledOne; @Override public FloatFloatPair next() { if (!this.hasNext()) { throw new NoSuchElementException("next() called, but the iterator is exhausted"); } this.count++; if (!this.handledZero) { this.handledZero = true; if (FloatFloatHashMap.this.containsKey(EMPTY_KEY)) { return PrimitiveTuples.pair(EMPTY_KEY, FloatFloatHashMap.this.sentinelValues.zeroValue); } } if (!this.handledOne) { this.handledOne = true; if (FloatFloatHashMap.this.containsKey(REMOVED_KEY)) { return PrimitiveTuples.pair(REMOVED_KEY, FloatFloatHashMap.this.sentinelValues.oneValue); } } float[] keys = FloatFloatHashMap.this.keysValues; while (!isNonSentinel(keys[this.position])) { this.position += 2; } FloatFloatPair result = PrimitiveTuples.pair(keys[this.position], FloatFloatHashMap.this.keysValues[this.position + 1]); this.position += 2; return result; } @Override public void remove() { throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName()); } @Override public boolean hasNext() { return this.count != FloatFloatHashMap.this.size(); } } } }