/*
 * Copyright (c) 2020 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.LongIterable;
import org.eclipse.collections.api.LazyLongIterable;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.RichIterable;
import org.eclipse.collections.api.block.function.primitive.LongToIntFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction;
import org.eclipse.collections.api.block.function.primitive.IntFunction0;
import org.eclipse.collections.api.block.function.primitive.IntToIntFunction;
import org.eclipse.collections.api.block.function.primitive.LongIntToIntFunction;
import org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.LongIntPredicate;
import org.eclipse.collections.api.block.procedure.Procedure;
import org.eclipse.collections.api.block.procedure.Procedure2;
import org.eclipse.collections.api.block.procedure.primitive.LongProcedure;
import org.eclipse.collections.api.block.procedure.primitive.LongIntProcedure;
import org.eclipse.collections.api.block.procedure.primitive.ObjectIntProcedure;
import org.eclipse.collections.impl.SpreadFunctions;
import org.eclipse.collections.api.collection.primitive.MutableIntCollection;
import org.eclipse.collections.api.iterator.LongIterator;
import org.eclipse.collections.api.iterator.MutableLongIterator;
import org.eclipse.collections.api.iterator.MutableIntIterator;
import org.eclipse.collections.api.map.primitive.LongIntMap;
import org.eclipse.collections.api.map.primitive.ImmutableLongIntMap;
import org.eclipse.collections.api.map.primitive.MutableLongIntMap;
import org.eclipse.collections.api.map.primitive.MutableIntLongMap;
import org.eclipse.collections.api.set.primitive.LongSet;
import org.eclipse.collections.api.set.primitive.IntSet;
import org.eclipse.collections.api.set.primitive.MutableLongSet;
import org.eclipse.collections.api.tuple.primitive.LongIntPair;
import org.eclipse.collections.impl.bag.mutable.primitive.IntHashBag;
import org.eclipse.collections.impl.factory.primitive.LongIntMaps;
import org.eclipse.collections.impl.factory.primitive.IntLongMaps;
import org.eclipse.collections.impl.iterator.UnmodifiableLongIterator;
import org.eclipse.collections.impl.lazy.AbstractLazyIterable;
import org.eclipse.collections.impl.lazy.primitive.AbstractLazyLongIterable;
import org.eclipse.collections.impl.set.mutable.primitive.LongHashSet;
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 LongIntHashMap extends AbstractMutableIntValuesMap implements MutableLongIntMap, Externalizable, MutableLongKeysMap { private static final int EMPTY_VALUE = 0; private static final long serialVersionUID = 1L; private static final long EMPTY_KEY = 0L; private static final long REMOVED_KEY = 1L; private static final int CACHE_LINE_SIZE = 64; private static final int KEY_SIZE = 8; 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 long[] keys; private int[] values; private int occupiedWithData; private int occupiedWithSentinels; private SentinelValues sentinelValues; private boolean copyKeysOnWrite; public LongIntHashMap() { this.allocateTable(DEFAULT_INITIAL_CAPACITY << 1); } public LongIntHashMap(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 LongIntHashMap(LongIntMap map) { if (map instanceof LongIntHashMap && ((LongIntHashMap) map).occupiedWithSentinels == 0) { LongIntHashMap hashMap = (LongIntHashMap) map; this.occupiedWithData = hashMap.occupiedWithData; if (hashMap.sentinelValues != null) { this.sentinelValues = hashMap.sentinelValues.copy(); } this.keys = Arrays.copyOf(hashMap.keys, hashMap.keys.length); this.values = Arrays.copyOf(hashMap.values, hashMap.values.length); } else { int capacity = this.smallestPowerOfTwoGreaterThan(Math.max(map.size(), DEFAULT_INITIAL_CAPACITY) << 1); this.allocateTable(capacity); this.putAll(map); } } public static LongIntHashMap newWithKeysValues(long key1, int value1) { return new LongIntHashMap(1).withKeyValue(key1, value1); } public static LongIntHashMap newWithKeysValues(long key1, int value1, long key2, int value2) { return new LongIntHashMap(2).withKeysValues(key1, value1, key2, value2); } public static LongIntHashMap newWithKeysValues(long key1, int value1, long key2, int value2, long key3, int value3) { return new LongIntHashMap(3).withKeysValues(key1, value1, key2, value2, key3, value3); } public static LongIntHashMap newWithKeysValues(long key1, int value1, long key2, int value2, long key3, int value3, long key4, int value4) { return new LongIntHashMap(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 int getEmptyValue() { return EMPTY_VALUE; } @Override protected int getTableSize() { return this.values.length; } @Override protected int getValueAtIndex(int index) { return this.values[index]; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof LongIntMap)) { return false; } LongIntMap other = (LongIntMap) 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++) { long 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 ^ EMPTY_KEY >>> 32) ^ this.sentinelValues.zeroValue; } if (this.sentinelValues.containsOneKey) { result += (int) (REMOVED_KEY ^ REMOVED_KEY >>> 32) ^ this.sentinelValues.oneValue; } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { result += (int) (this.keys[i] ^ this.keys[i] >>> 32) ^ this.values[i]; } } return result; } @Override public String toString() { StringBuilder appendable = new StringBuilder(); appendable.append("{"); boolean first = true; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { appendable.append(EMPTY_KEY).append("=").append(this.sentinelValues.zeroValue); first = false; } if (this.sentinelValues.containsOneKey) { if (!first) { appendable.append(", "); } appendable.append(REMOVED_KEY).append("=").append(this.sentinelValues.oneValue); first = false; } } for (int i = 0; i < this.keys.length; i++) { long key = this.keys[i]; if (isNonSentinel(key)) { if (!first) { appendable.append(", "); } appendable.append(key).append("=").append(this.values[i]); first = false; } } appendable.append("}"); return appendable.toString(); } @Override public MutableIntIterator intIterator() { return new InternalIntIterator(); } @Override public <V> V injectInto(V injectedValue, ObjectIntToObjectFunction<? super V, ? extends V> function) { V result = injectedValue; if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { result = function.valueOf(result, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { result = function.valueOf(result, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { result = function.valueOf(result, this.values[i]); } } return result; } @Override public void clear() { this.sentinelValues = null; this.occupiedWithData = 0; this.occupiedWithSentinels = 0; if (this.copyKeysOnWrite) { this.copyKeys(); } Arrays.fill(this.keys, EMPTY_KEY); Arrays.fill(this.values, EMPTY_VALUE); } @Override public void put(long key, int value) { if (isEmptyKey(key)) { this.putForEmptySentinel(value); return; } if (isRemovedKey(key)) { this.putForRemovedSentinel(value); return; } int index = this.probe(key); long keyAtIndex = this.keys[index]; if (keyAtIndex == key) { this.values[index] = value; } else { this.addKeyValueAtIndex(key, value, index); } } private void putForRemovedSentinel(int value) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); } this.addRemovedKeyValue(value); } private void putForEmptySentinel(int value) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); } this.addEmptyKeyValue(value); } @Override public void putAll(LongIntMap map) { map.forEachKeyValue(this::put); } @Override public void updateValues(LongIntToIntFunction function) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { this.sentinelValues.zeroValue = function.valueOf(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { this.sentinelValues.oneValue = function.valueOf(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { this.values[i] = function.valueOf(this.keys[i], this.values[i]); } } } @Override public void removeKey(long key) { if (isEmptyKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey) { return; } this.removeEmptyKey(); return; } if (isRemovedKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsOneKey) { return; } this.removeRemovedKey(); return; } int index = this.probe(key); if (this.keys[index] == key) { this.removeKeyAtIndex(index); } } @Override public void remove(long key) { this.removeKey(key); } @Override public int removeKeyIfAbsent(long key, int value) { if (isEmptyKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey) { return value; } int oldValue = this.sentinelValues.zeroValue; this.removeEmptyKey(); return oldValue; } if (isRemovedKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsOneKey) { return value; } int oldValue = this.sentinelValues.oneValue; this.removeRemovedKey(); return oldValue; } int index = this.probe(key); if (this.keys[index] == key) { int oldValue = this.values[index]; this.removeKeyAtIndex(index); return oldValue; } return value; } @Override public int getIfAbsentPut(long key, int value) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (this.keys[index] == key) { return this.values[index]; } this.addKeyValueAtIndex(key, value, index); return value; } @Override public int getIfAbsentPut(long key, IntFunction0 function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { int value = function.value(); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } int value = function.value(); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { int value = function.value(); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } int value = function.value(); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (this.keys[index] == key) { return this.values[index]; } int value = function.value(); this.addKeyValueAtIndex(key, value, index); return value; } @Override public <P> int getIfAbsentPutWith(long key, IntFunction<? super P> function, P parameter) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { int value = function.intValueOf(parameter); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } int value = function.intValueOf(parameter); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { int value = function.intValueOf(parameter); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } int value = function.intValueOf(parameter); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (this.keys[index] == key) { return this.values[index]; } int value = function.intValueOf(parameter); this.addKeyValueAtIndex(key, value, index); return value; } @Override public int getIfAbsentPutWithKey(long key, LongToIntFunction function) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { int value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(value); return value; } if (this.sentinelValues.containsZeroKey) { return this.sentinelValues.zeroValue; } int value = function.valueOf(key); this.addEmptyKeyValue(value); return value; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { int value = function.valueOf(key); this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(value); return value; } if (this.sentinelValues.containsOneKey) { return this.sentinelValues.oneValue; } int value = function.valueOf(key); this.addRemovedKeyValue(value); return value; } int index = this.probe(key); if (this.keys[index] == key) { return this.values[index]; } int value = function.valueOf(key); this.addKeyValueAtIndex(key, value, index); return value; } @Override public int addToValue(long key, int toBeAdded) { if (isEmptyKey(key)) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); this.addEmptyKeyValue(toBeAdded); } else if (this.sentinelValues.containsZeroKey) { this.sentinelValues.zeroValue += toBeAdded; } else { this.addEmptyKeyValue(toBeAdded); } return this.sentinelValues.zeroValue; } if (isRemovedKey(key)) { if (this.sentinelValues == null) { this.sentinelValues = new SentinelValues(); this.addRemovedKeyValue(toBeAdded); } else if (this.sentinelValues.containsOneKey) { this.sentinelValues.oneValue += toBeAdded; } else { this.addRemovedKeyValue(toBeAdded); } return this.sentinelValues.oneValue; } int index = this.probe(key); if (this.keys[index] == key) { this.values[index] += toBeAdded; return this.values[index]; } this.addKeyValueAtIndex(key, toBeAdded, index); return toBeAdded; } private void addKeyValueAtIndex(long key, int value, int index) { if (this.keys[index] == REMOVED_KEY) { this.occupiedWithSentinels--; } if (this.copyKeysOnWrite) { this.copyKeys(); } this.keys[index] = key; this.values[index] = value; this.occupiedWithData++; if (this.occupiedWithData + this.occupiedWithSentinels > this.maxOccupiedWithData()) { this.rehashAndGrow(); } } private void removeKeyAtIndex(int index) { if (this.copyKeysOnWrite) { this.copyKeys(); } this.keys[index] = REMOVED_KEY; this.values[index] = EMPTY_VALUE; this.occupiedWithData--; this.occupiedWithSentinels++; } private void copyKeys() { long[] copy = new long[this.keys.length]; System.arraycopy(this.keys, 0, copy, 0, this.keys.length); this.keys = copy; this.copyKeysOnWrite = false; } @Override public int updateValue(long key, int initialValueIfAbsent, IntToIntFunction 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]; } int value = function.valueOf(initialValueIfAbsent); this.addKeyValueAtIndex(key, value, index); return value; } @Override public LongIntHashMap withKeyValue(long key1, int value1) { this.put(key1, value1); return this; } public LongIntHashMap withKeysValues(long key1, int value1, long key2, int value2) { this.put(key1, value1); this.put(key2, value2); return this; } public LongIntHashMap withKeysValues(long key1, int value1, long key2, int value2, long key3, int value3) { this.put(key1, value1); this.put(key2, value2); this.put(key3, value3); return this; } public LongIntHashMap withKeysValues(long key1, int value1, long key2, int value2, long key3, int value3, long key4, int value4) { this.put(key1, value1); this.put(key2, value2); this.put(key3, value3); this.put(key4, value4); return this; } @Override public LongIntHashMap withoutKey(long key) { this.removeKey(key); return this; } @Override public LongIntHashMap withoutAllKeys(LongIterable keys) { keys.forEach(this::removeKey); return this; } @Override public MutableLongIntMap asUnmodifiable() { return new UnmodifiableLongIntMap(this); } @Override public MutableLongIntMap asSynchronized() { return new SynchronizedLongIntMap(this); } @Override public ImmutableLongIntMap toImmutable() { return LongIntMaps.immutable.ofAll(this); } @Override public int get(long key) { return this.getIfAbsent(key, EMPTY_VALUE); } @Override public int getIfAbsent(long key, int 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 int getForSentinel(long key, int 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 int slowGetIfAbsent(long key, int ifAbsent) { int index = this.probe(key); if (this.keys[index] == key) { return this.values[index]; } return ifAbsent; } private int fastGetIfAbsent(long key, int ifAbsent) { int index = this.mask((int) key); for (int i = 0; i < INITIAL_LINEAR_PROBE; i++) { long keyAtIndex = this.keys[index]; if (keyAtIndex == key) { return this.values[index]; } if (keyAtIndex == EMPTY_KEY) { return ifAbsent; } index = (index + 1) & (this.keys.length - 1); } return this.slowGetIfAbsentTwo(key, ifAbsent); } private int slowGetIfAbsentTwo(long key, int ifAbsent) { int index = this.probeTwo(key, -1); if (this.keys[index] == key) { return this.values[index]; } return ifAbsent; } @Override public int getOrThrow(long key) { if (isEmptyKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsZeroKey) { throw new IllegalStateException("Key " + key + " not present."); } return this.sentinelValues.zeroValue; } if (isRemovedKey(key)) { if (this.sentinelValues == null || !this.sentinelValues.containsOneKey) { throw new IllegalStateException("Key " + key + " not present."); } return this.sentinelValues.oneValue; } int index = this.probe(key); if (isNonSentinel(this.keys[index])) { return this.values[index]; } throw new IllegalStateException("Key " + key + " not present."); } @Override public boolean containsKey(long key) { if (isEmptyKey(key)) { return this.sentinelValues != null && this.sentinelValues.containsZeroKey; } if (isRemovedKey(key)) { return this.sentinelValues != null && this.sentinelValues.containsOneKey; } return this.keys[this.probe(key)] == key; } @Override public void forEachKey(LongProcedure procedure) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { procedure.value(EMPTY_KEY); } if (this.sentinelValues.containsOneKey) { procedure.value(REMOVED_KEY); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { procedure.value(this.keys[i]); } } } @Override public void forEachKeyValue(LongIntProcedure procedure) { if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { procedure.value(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { procedure.value(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { procedure.value(this.keys[i], this.values[i]); } } } @Override public LazyLongIterable keysView() { return new KeysView(); } @Override public RichIterable<LongIntPair> keyValuesView() { return new KeyValuesView(); } @Override public MutableIntLongMap flipUniqueValues() { MutableIntLongMap result = IntLongMaps.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 LongIntHashMap select(LongIntPredicate predicate) { LongIntHashMap result = new LongIntHashMap(); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue)) { result.put(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey && predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue)) { result.put(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && predicate.accept(this.keys[i], this.values[i])) { result.put(this.keys[i], this.values[i]); } } return result; } @Override public LongIntHashMap reject(LongIntPredicate predicate) { LongIntHashMap result = new LongIntHashMap(); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey && !predicate.accept(EMPTY_KEY, this.sentinelValues.zeroValue)) { result.put(EMPTY_KEY, this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey && !predicate.accept(REMOVED_KEY, this.sentinelValues.oneValue)) { result.put(REMOVED_KEY, this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i]) && !predicate.accept(this.keys[i], this.values[i])) { result.put(this.keys[i], this.values[i]); } } return result; } @Override public void writeExternal(ObjectOutput out) throws IOException { out.writeInt(this.size()); if (this.sentinelValues != null) { if (this.sentinelValues.containsZeroKey) { out.writeLong(EMPTY_KEY); out.writeInt(this.sentinelValues.zeroValue); } if (this.sentinelValues.containsOneKey) { out.writeLong(REMOVED_KEY); out.writeInt(this.sentinelValues.oneValue); } } for (int i = 0; i < this.keys.length; i++) { if (isNonSentinel(this.keys[i])) { out.writeLong(this.keys[i]); out.writeInt(this.values[i]); } } } @Override public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { int size = in.readInt(); for (int i = 0; i < size; i++) { this.put(in.readLong(), in.readInt()); } }
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() { int max = this.maxOccupiedWithData(); int newCapacity = Math.max(max, smallestPowerOfTwoGreaterThan((this.occupiedWithData + 1) << 1)); if (this.occupiedWithSentinels > 0 && (max >> 1) + (max >> 2) < this.occupiedWithData) { newCapacity <<= 1; } this.rehash(newCapacity); } private void rehash(int newCapacity) { int oldLength = this.keys.length; long[] old = this.keys; int[] 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(long element) { int index = this.mask((int) element); long keyAtIndex = this.keys[index]; if (keyAtIndex == element || keyAtIndex == EMPTY_KEY) { return index; } int removedIndex = keyAtIndex == REMOVED_KEY ? index : -1; for (int i = 1; i < INITIAL_LINEAR_PROBE; i++) { int nextIndex = (index + i) & (this.keys.length - 1); keyAtIndex = this.keys[nextIndex]; if (keyAtIndex == element) { return nextIndex; } if (keyAtIndex == EMPTY_KEY) { return removedIndex == -1 ? nextIndex : removedIndex; } if (keyAtIndex == REMOVED_KEY && removedIndex == -1) { removedIndex = nextIndex; } } return this.probeTwo(element, removedIndex); } int probeTwo(long element, int removedIndex) { int index = this.spreadTwoAndMask(element); for (int i = 0; i < INITIAL_LINEAR_PROBE; i++) { int nextIndex = (index + i) & (this.keys.length - 1); long keyAtIndex = this.keys[nextIndex]; if (keyAtIndex == element) { return nextIndex; } if (keyAtIndex == EMPTY_KEY) { return removedIndex == -1 ? nextIndex : removedIndex; } if (keyAtIndex == REMOVED_KEY && removedIndex == -1) { removedIndex = nextIndex; } } return this.probeThree(element, removedIndex); } int probeThree(long element, int removedIndex) { int nextIndex = (int) SpreadFunctions.longSpreadOne(element); int spreadTwo = (int) Long.reverse(SpreadFunctions.longSpreadTwo(element)) | 1; while (true) { nextIndex = this.mask(nextIndex + spreadTwo); long keyAtIndex = this.keys[nextIndex]; if (keyAtIndex == element) { return nextIndex; } if (keyAtIndex == EMPTY_KEY) { return removedIndex == -1 ? nextIndex : removedIndex; } if (keyAtIndex == REMOVED_KEY && removedIndex == -1) { removedIndex = nextIndex; } } } // exposed for testing int spreadAndMask(long element) { long code = SpreadFunctions.longSpreadOne(element); return this.mask((int) code); } int spreadTwoAndMask(long element) { long code = SpreadFunctions.longSpreadTwo(element); return this.mask((int) code); } private int mask(int spread) { return spread & (this.keys.length - 1); } protected void allocateTable(int sizeToAllocate) { this.keys = new long[sizeToAllocate]; this.values = new int[sizeToAllocate]; } private static boolean isEmptyKey(long key) { return key == EMPTY_KEY; } private static boolean isRemovedKey(long key) { return key == REMOVED_KEY; } private static boolean isNonSentinel(long key) { return !isEmptyKey(key) && !isRemovedKey(key); } @Override protected boolean isNonSentinelAtIndex(int index) { return !isEmptyKey(this.keys[index]) && !isRemovedKey(this.keys[index]); } private int maxOccupiedWithData() { return this.keys.length >> 1; } private class InternalIntIterator implements MutableIntIterator { private int count; private int position; private long lastKey; private boolean handledZero; private boolean handledOne; private boolean canRemove; @Override public boolean hasNext() { return this.count < LongIntHashMap.this.size(); } @Override public int 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 (LongIntHashMap.this.containsKey(EMPTY_KEY)) { this.lastKey = EMPTY_KEY; return LongIntHashMap.this.get(EMPTY_KEY); } } if (!this.handledOne) { this.handledOne = true; if (LongIntHashMap.this.containsKey(REMOVED_KEY)) { this.lastKey = REMOVED_KEY; return LongIntHashMap.this.get(REMOVED_KEY); } } long[] keys = LongIntHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } this.lastKey = keys[this.position]; int result = LongIntHashMap.this.values[this.position]; this.position++; return result; } @Override public void remove() { if (!this.canRemove) { throw new IllegalStateException(); } LongIntHashMap.this.removeKey(this.lastKey); this.count--; this.canRemove = false; } } private class KeysView extends AbstractLazyLongIterable { @Override public LongIterator longIterator() { return new UnmodifiableLongIterator(new KeySetIterator()); }
Since:7.0.
/** * @since 7.0. */
@Override public void each(LongProcedure procedure) { LongIntHashMap.this.forEachKey(procedure); } } private class KeySetIterator implements MutableLongIterator { private int count; private int position; private long lastKey; private boolean handledZero; private boolean handledOne; private boolean canRemove; @Override public boolean hasNext() { return this.count < LongIntHashMap.this.size(); } @Override public long 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 (LongIntHashMap.this.containsKey(EMPTY_KEY)) { this.lastKey = EMPTY_KEY; return this.lastKey; } } if (!this.handledOne) { this.handledOne = true; if (LongIntHashMap.this.containsKey(REMOVED_KEY)) { this.lastKey = REMOVED_KEY; return this.lastKey; } } long[] keys = LongIntHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } this.lastKey = keys[this.position]; this.position++; return this.lastKey; } @Override public void remove() { if (!this.canRemove) { throw new IllegalStateException(); } LongIntHashMap.this.removeKey(this.lastKey); this.count--; this.canRemove = false; } } @Override public MutableLongSet keySet() { return new KeySet(); } private class KeySet extends AbstractMutableLongKeySet { @Override protected MutableLongKeysMap getOuter() { return LongIntHashMap.this; } @Override protected SentinelValues getSentinelValues() { return LongIntHashMap.this.sentinelValues; } @Override protected long getKeyAtIndex(int index) { return LongIntHashMap.this.keys[index]; } @Override protected int getTableSize() { return LongIntHashMap.this.keys.length; } @Override public MutableLongIterator longIterator() { return new KeySetIterator(); } @Override public boolean retainAll(LongIterable source) { int oldSize = LongIntHashMap.this.size(); LongSet sourceSet = source instanceof LongSet ? (LongSet) source : source.toSet(); LongIntHashMap retained = LongIntHashMap.this.select((long key, int value) -> sourceSet.contains(key)); if (retained.size() != oldSize) { LongIntHashMap.this.keys = retained.keys; LongIntHashMap.this.values = retained.values; LongIntHashMap.this.sentinelValues = retained.sentinelValues; LongIntHashMap.this.occupiedWithData = retained.occupiedWithData; LongIntHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels; return true; } return false; } @Override public boolean retainAll(long... source) { return this.retainAll(LongHashSet.newSetWith(source)); } @Override public LongSet freeze() { LongIntHashMap.this.copyKeysOnWrite = true; boolean containsZeroKey = false; boolean containsOneKey = false; if (LongIntHashMap.this.sentinelValues != null) { containsZeroKey = LongIntHashMap.this.sentinelValues.containsZeroKey; containsOneKey = LongIntHashMap.this.sentinelValues.containsOneKey; } return new ImmutableLongMapKeySet(LongIntHashMap.this.keys, LongIntHashMap.this.occupiedWithData, containsZeroKey, containsOneKey); }
Since:9.2.
/** * @since 9.2. */
@Override public MutableLongSet newEmpty() { return new LongHashSet(); } } @Override public MutableIntCollection values() { return new ValuesCollection(); } private class ValuesCollection extends AbstractIntValuesCollection { @Override public MutableIntIterator intIterator() { return LongIntHashMap.this.intIterator(); } @Override public boolean remove(int item) { int oldSize = LongIntHashMap.this.size(); if (LongIntHashMap.this.sentinelValues != null) { if (LongIntHashMap.this.sentinelValues.containsZeroKey && item == LongIntHashMap.this.sentinelValues.zeroValue) { LongIntHashMap.this.removeKey(EMPTY_KEY); } if (LongIntHashMap.this.sentinelValues.containsOneKey && item == LongIntHashMap.this.sentinelValues.oneValue) { LongIntHashMap.this.removeKey(REMOVED_KEY); } } for (int i = 0; i < LongIntHashMap.this.keys.length; i++) { if (isNonSentinel(LongIntHashMap.this.keys[i]) && item == LongIntHashMap.this.values[i]) { LongIntHashMap.this.removeKey(LongIntHashMap.this.keys[i]); } } return oldSize != LongIntHashMap.this.size(); } @Override public boolean retainAll(IntIterable source) { int oldSize = LongIntHashMap.this.size(); IntSet sourceSet = source instanceof IntSet ? (IntSet) source : source.toSet(); LongIntHashMap retained = LongIntHashMap.this.select((long key, int value) -> sourceSet.contains(value)); if (retained.size() != oldSize) { LongIntHashMap.this.keys = retained.keys; LongIntHashMap.this.values = retained.values; LongIntHashMap.this.sentinelValues = retained.sentinelValues; LongIntHashMap.this.occupiedWithData = retained.occupiedWithData; LongIntHashMap.this.occupiedWithSentinels = retained.occupiedWithSentinels; return true; } return false; }
Since:9.2.
/** * @since 9.2. */
@Override public MutableIntCollection newEmpty() { return new IntHashBag(); } } private class KeyValuesView extends AbstractLazyIterable<LongIntPair> { @Override public void each(Procedure<? super LongIntPair> procedure) { if (LongIntHashMap.this.sentinelValues != null) { if (LongIntHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, LongIntHashMap.this.sentinelValues.zeroValue)); } if (LongIntHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, LongIntHashMap.this.sentinelValues.oneValue)); } } for (int i = 0; i < LongIntHashMap.this.keys.length; i++) { if (isNonSentinel(LongIntHashMap.this.keys[i])) { procedure.value(PrimitiveTuples.pair(LongIntHashMap.this.keys[i], LongIntHashMap.this.values[i])); } } } @Override public void forEachWithIndex(ObjectIntProcedure<? super LongIntPair> objectIntProcedure) { int index = 0; if (LongIntHashMap.this.sentinelValues != null) { if (LongIntHashMap.this.sentinelValues.containsZeroKey) { objectIntProcedure.value(PrimitiveTuples.pair(EMPTY_KEY, LongIntHashMap.this.sentinelValues.zeroValue), index); index++; } if (LongIntHashMap.this.sentinelValues.containsOneKey) { objectIntProcedure.value(PrimitiveTuples.pair(REMOVED_KEY, LongIntHashMap.this.sentinelValues.oneValue), index); index++; } } for (int i = 0; i < LongIntHashMap.this.keys.length; i++) { if (isNonSentinel(LongIntHashMap.this.keys[i])) { objectIntProcedure.value(PrimitiveTuples.pair(LongIntHashMap.this.keys[i], LongIntHashMap.this.values[i]), index); index++; } } } @Override public <P> void forEachWith(Procedure2<? super LongIntPair, ? super P> procedure, P parameter) { if (LongIntHashMap.this.sentinelValues != null) { if (LongIntHashMap.this.sentinelValues.containsZeroKey) { procedure.value(PrimitiveTuples.pair(EMPTY_KEY, LongIntHashMap.this.sentinelValues.zeroValue), parameter); } if (LongIntHashMap.this.sentinelValues.containsOneKey) { procedure.value(PrimitiveTuples.pair(REMOVED_KEY, LongIntHashMap.this.sentinelValues.oneValue), parameter); } } for (int i = 0; i < LongIntHashMap.this.keys.length; i++) { if (isNonSentinel(LongIntHashMap.this.keys[i])) { procedure.value(PrimitiveTuples.pair(LongIntHashMap.this.keys[i], LongIntHashMap.this.values[i]), parameter); } } } @Override public Iterator<LongIntPair> iterator() { return new InternalKeyValuesIterator(); } public class InternalKeyValuesIterator implements Iterator<LongIntPair> { private int count; private int position; private boolean handledZero; private boolean handledOne; @Override public LongIntPair next() { if (!this.hasNext()) { throw new NoSuchElementException("next() called, but the iterator is exhausted"); } this.count++; if (!this.handledZero) { this.handledZero = true; if (LongIntHashMap.this.containsKey(EMPTY_KEY)) { return PrimitiveTuples.pair(EMPTY_KEY, LongIntHashMap.this.sentinelValues.zeroValue); } } if (!this.handledOne) { this.handledOne = true; if (LongIntHashMap.this.containsKey(REMOVED_KEY)) { return PrimitiveTuples.pair(REMOVED_KEY, LongIntHashMap.this.sentinelValues.oneValue); } } long[] keys = LongIntHashMap.this.keys; while (!isNonSentinel(keys[this.position])) { this.position++; } LongIntPair result = PrimitiveTuples.pair(keys[this.position], LongIntHashMap.this.values[this.position]); this.position++; return result; } @Override public void remove() { throw new UnsupportedOperationException("Cannot call remove() on " + this.getClass().getSimpleName()); } @Override public boolean hasNext() { return this.count != LongIntHashMap.this.size(); } } } }