com.koloboke.collect.impl.hash.UpdatableQHashSeparateKVByteObjMapGO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of koloboke-impl-jdk8 Show documentation
Show all versions of koloboke-impl-jdk8 Show documentation
Carefully designed and efficient extension of the Java Collections Framework with primitive specializations and more, built for Java 8 (Implementation)
The newest version!
/*
* Copyright 2014 the original author or authors.
*
* 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.koloboke.collect.impl.hash;
import com.koloboke.collect.*;
import com.koloboke.collect.hash.HashConfig;
import com.koloboke.collect.impl.*;
import com.koloboke.collect.map.*;
import com.koloboke.collect.map.hash.*;
import com.koloboke.collect.set.*;
import com.koloboke.collect.set.hash.*;
import java.util.function.BiConsumer;
import java.util.function.BiFunction;
import com.koloboke.function.BytePredicate;
import com.koloboke.function.ByteObjConsumer;
import com.koloboke.function.ByteObjPredicate;
import com.koloboke.function.ByteObjFunction;
import com.koloboke.function.ByteFunction;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.BiFunction;
import java.util.function.Consumer;
import java.util.function.Predicate;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import javax.annotation.Nonnull;
import java.util.*;
public class UpdatableQHashSeparateKVByteObjMapGO
extends UpdatableQHashSeparateKVByteObjMapSO {
@Override
final void copy(SeparateKVByteObjQHash hash) {
int myMC = modCount(),
hashMC = hash.modCount();
super.copy(hash);
if (myMC != modCount() ||
hashMC != hash.modCount())
throw new ConcurrentModificationException();
}
@Override
final void move(SeparateKVByteObjQHash hash) {
int myMC = modCount(),
hashMC = hash.modCount();
super.move(hash);
if (myMC != modCount() ||
hashMC != hash.modCount())
throw new ConcurrentModificationException();
}
@Override
@Nonnull
public Equivalence valueEquivalence() {
return Equivalence.defaultEquality();
}
@Override
public boolean containsEntry(byte key, Object value) {
int index = index(key);
if (index >= 0) {
// key is present
return nullableValueEquals(values[index], (V) value);
} else {
// key is absent
return false;
}
}
@Override
public V get(Object key) {
int index = index((Byte) key);
if (index >= 0) {
// key is present
return values[index];
} else {
// key is absent
return null;
}
}
@Override
public V get(byte key) {
int index = index(key);
if (index >= 0) {
// key is present
return values[index];
} else {
// key is absent
return null;
}
}
@Override
public V getOrDefault(Object key, V defaultValue) {
int index = index((Byte) key);
if (index >= 0) {
// key is present
return values[index];
} else {
// key is absent
return defaultValue;
}
}
@Override
public V getOrDefault(byte key, V defaultValue) {
int index = index(key);
if (index >= 0) {
// key is present
return values[index];
} else {
// key is absent
return defaultValue;
}
}
@Override
public void forEach(BiConsumer super Byte, ? super V> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public void forEach(ByteObjConsumer super V> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public boolean forEachWhile(ByteObjPredicate super V> predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!predicate.test(key, vals[i])) {
terminated = true;
break;
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return !terminated;
}
@Nonnull
@Override
public ByteObjCursor cursor() {
int mc = modCount();
return new NoRemovedMapCursor(mc);
}
@SuppressWarnings("unchecked")
@Override
public boolean containsAllEntries(Map, ?> m) {
return CommonByteObjMapOps.containsAllEntries(this, m);
}
@Override
public boolean allEntriesContainingIn(InternalByteObjMapOps> m) {
if (this.isEmpty())
return true;
boolean containsAll = true;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!m.containsEntry(key, vals[i])) {
containsAll = false;
break;
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return containsAll;
}
@Override
public void reversePutAllTo(InternalByteObjMapOps super V> m) {
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
m.justPut(key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
@Nonnull
public HashObjSet> entrySet() {
return new EntryView();
}
@Override
@Nonnull
public ObjCollection values() {
return new ValueView();
}
@Override
public boolean equals(Object o) {
return CommonMapOps.equals(this, o);
}
@Override
public int hashCode() {
int hashCode = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
hashCode += key ^ nullableValueHashCode(vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return hashCode;
}
@Override
public String toString() {
if (this.isEmpty())
return "{}";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
sb.append(' ');
sb.append(key);
sb.append('=');
Object val = vals[i];
sb.append(val != (Object) this ? val : "(this Map)");
sb.append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
sb.setCharAt(0, '{');
sb.setCharAt(sb.length() - 1, '}');
return sb.toString();
}
@Override
void rehash(int newCapacity) {
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
initForRehash(newCapacity);
mc++; // modCount is incremented in initForRehash()
byte[] newKeys = set;
int capacity = newKeys.length;
V[] newVals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
int index;
if (newKeys[index = SeparateKVByteKeyMixing.mix(key) % capacity] != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if (newKeys[bIndex] == free) {
index = bIndex;
break;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if (newKeys[fIndex] == free) {
index = fIndex;
break;
}
step += 2;
}
}
newKeys[index] = key;
newVals[index] = vals[i];
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public V put(Byte key, V value) {
int index = insert(key, value);
if (index < 0) {
// key was absent
return null;
} else {
// key is present
V[] vals = values;
V prevValue = vals[index];
vals[index] = value;
return prevValue;
}
}
@Override
public V put(byte key, V value) {
int index = insert(key, value);
if (index < 0) {
// key was absent
return null;
} else {
// key is present
V[] vals = values;
V prevValue = vals[index];
vals[index] = value;
return prevValue;
}
}
@Override
public V putIfAbsent(Byte key, V value) {
int index = insert(key, value);
if (index < 0) {
// key was absent
return null;
} else {
// key is present
return values[index];
}
}
@Override
public V putIfAbsent(byte key, V value) {
int index = insert(key, value);
if (index < 0) {
// key was absent
return null;
} else {
// key is present
return values[index];
}
}
@Override
public void justPut(byte key, V value) {
int index = insert(key, value);
if (index < 0) {
// key was absent
return;
} else {
// key is present
values[index] = value;
return;
}
}
@Override
public V compute(Byte key,
BiFunction super Byte, ? super V, ? extends V> remappingFunction) {
byte k = key;
if (remappingFunction == null)
throw new java.lang.NullPointerException();
byte free;
if (k == (free = freeValue)) {
free = changeFree();
}
byte[] keys = set;
V[] vals = values;
int capacity, index;
byte cur;
keyPresent:
if ((cur = keys[index = SeparateKVByteKeyMixing.mix(k) % (capacity = keys.length)]) != k) {
keyAbsent:
if (cur != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if ((cur = keys[bIndex]) == k) {
index = bIndex;
break keyPresent;
} else if (cur == free) {
index = bIndex;
break keyAbsent;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if ((cur = keys[fIndex]) == k) {
index = fIndex;
break keyPresent;
} else if (cur == free) {
index = fIndex;
break keyAbsent;
}
step += 2;
}
}
// key is absent
V newValue = remappingFunction.apply(k, null);
if (newValue != null) {
incrementModCount();
keys[index] = k;
vals[index] = newValue;
postInsertHook();
return newValue;
} else {
return null;
}
}
// key is present
V newValue = remappingFunction.apply(k, vals[index]);
if (newValue != null) {
vals[index] = newValue;
return newValue;
} else {
throw new java.lang.UnsupportedOperationException("Compute operation of updatable map doesn't support removals");
}
}
@Override
public V compute(byte key, ByteObjFunction super V, ? extends V> remappingFunction) {
if (remappingFunction == null)
throw new java.lang.NullPointerException();
byte free;
if (key == (free = freeValue)) {
free = changeFree();
}
byte[] keys = set;
V[] vals = values;
int capacity, index;
byte cur;
keyPresent:
if ((cur = keys[index = SeparateKVByteKeyMixing.mix(key) % (capacity = keys.length)]) != key) {
keyAbsent:
if (cur != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if ((cur = keys[bIndex]) == key) {
index = bIndex;
break keyPresent;
} else if (cur == free) {
index = bIndex;
break keyAbsent;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if ((cur = keys[fIndex]) == key) {
index = fIndex;
break keyPresent;
} else if (cur == free) {
index = fIndex;
break keyAbsent;
}
step += 2;
}
}
// key is absent
V newValue = remappingFunction.apply(key, null);
if (newValue != null) {
incrementModCount();
keys[index] = key;
vals[index] = newValue;
postInsertHook();
return newValue;
} else {
return null;
}
}
// key is present
V newValue = remappingFunction.apply(key, vals[index]);
if (newValue != null) {
vals[index] = newValue;
return newValue;
} else {
throw new java.lang.UnsupportedOperationException("Compute operation of updatable map doesn't support removals");
}
}
@Override
public V computeIfAbsent(Byte key,
Function super Byte, ? extends V> mappingFunction) {
byte k = key;
if (mappingFunction == null)
throw new java.lang.NullPointerException();
byte free;
if (k == (free = freeValue)) {
free = changeFree();
}
byte[] keys = set;
V[] vals = values;
int capacity, index;
byte cur;
keyPresent:
if ((cur = keys[index = SeparateKVByteKeyMixing.mix(k) % (capacity = keys.length)]) != k) {
keyAbsent:
if (cur != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if ((cur = keys[bIndex]) == k) {
index = bIndex;
break keyPresent;
} else if (cur == free) {
index = bIndex;
break keyAbsent;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if ((cur = keys[fIndex]) == k) {
index = fIndex;
break keyPresent;
} else if (cur == free) {
index = fIndex;
break keyAbsent;
}
step += 2;
}
}
// key is absent
V value = mappingFunction.apply(k);
if (value != null) {
incrementModCount();
keys[index] = k;
vals[index] = value;
postInsertHook();
return value;
} else {
return null;
}
}
// key is present
V val;
if ((val = vals[index]) != null) {
return val;
} else {
V value = mappingFunction.apply(k);
if (value != null) {
vals[index] = value;
return value;
} else {
return null;
}
}
}
@Override
public V computeIfAbsent(byte key, ByteFunction extends V> mappingFunction) {
if (mappingFunction == null)
throw new java.lang.NullPointerException();
byte free;
if (key == (free = freeValue)) {
free = changeFree();
}
byte[] keys = set;
V[] vals = values;
int capacity, index;
byte cur;
keyPresent:
if ((cur = keys[index = SeparateKVByteKeyMixing.mix(key) % (capacity = keys.length)]) != key) {
keyAbsent:
if (cur != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if ((cur = keys[bIndex]) == key) {
index = bIndex;
break keyPresent;
} else if (cur == free) {
index = bIndex;
break keyAbsent;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if ((cur = keys[fIndex]) == key) {
index = fIndex;
break keyPresent;
} else if (cur == free) {
index = fIndex;
break keyAbsent;
}
step += 2;
}
}
// key is absent
V value = mappingFunction.apply(key);
if (value != null) {
incrementModCount();
keys[index] = key;
vals[index] = value;
postInsertHook();
return value;
} else {
return null;
}
}
// key is present
V val;
if ((val = vals[index]) != null) {
return val;
} else {
V value = mappingFunction.apply(key);
if (value != null) {
vals[index] = value;
return value;
} else {
return null;
}
}
}
@Override
public V computeIfPresent(Byte key,
BiFunction super Byte, ? super V, ? extends V> remappingFunction) {
byte k = key;
if (remappingFunction == null)
throw new java.lang.NullPointerException();
int index = index(k);
if (index >= 0) {
// key is present
V[] vals = values;
V val;
if ((val = vals[index]) != null) {
V newValue = remappingFunction.apply(k, val);
if (newValue != null) {
vals[index] = newValue;
return newValue;
} else {
throw new java.lang.UnsupportedOperationException("ComputeIfPresent operation of updatable map doesn't support removals");
}
} else {
return null;
}
} else {
// key is absent
return null;
}
}
@Override
public V computeIfPresent(byte key, ByteObjFunction super V, ? extends V> remappingFunction) {
if (remappingFunction == null)
throw new java.lang.NullPointerException();
int index = index(key);
if (index >= 0) {
// key is present
V[] vals = values;
V val;
if ((val = vals[index]) != null) {
V newValue = remappingFunction.apply(key, val);
if (newValue != null) {
vals[index] = newValue;
return newValue;
} else {
throw new java.lang.UnsupportedOperationException("ComputeIfPresent operation of updatable map doesn't support removals");
}
} else {
return null;
}
} else {
// key is absent
return null;
}
}
@Override
public V merge(Byte key, V value,
BiFunction super V, ? super V, ? extends V> remappingFunction) {
byte k = key;
if (value == null)
throw new java.lang.NullPointerException();
if (remappingFunction == null)
throw new java.lang.NullPointerException();
byte free;
if (k == (free = freeValue)) {
free = changeFree();
}
byte[] keys = set;
V[] vals = values;
int capacity, index;
byte cur;
keyPresent:
if ((cur = keys[index = SeparateKVByteKeyMixing.mix(k) % (capacity = keys.length)]) != k) {
keyAbsent:
if (cur != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if ((cur = keys[bIndex]) == k) {
index = bIndex;
break keyPresent;
} else if (cur == free) {
index = bIndex;
break keyAbsent;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if ((cur = keys[fIndex]) == k) {
index = fIndex;
break keyPresent;
} else if (cur == free) {
index = fIndex;
break keyAbsent;
}
step += 2;
}
}
// key is absent
incrementModCount();
keys[index] = k;
vals[index] = value;
postInsertHook();
return value;
}
// key is present
V val;
if ((val = vals[index]) != null) {
V newValue = remappingFunction.apply(val, value);
if (newValue != null) {
vals[index] = newValue;
return newValue;
} else {
throw new java.lang.UnsupportedOperationException("Merge operation of updatable map doesn't support removals");
}
} else {
vals[index] = value;
return value;
}
}
@Override
public V merge(byte key, V value, BiFunction super V, ? super V, ? extends V> remappingFunction) {
if (value == null)
throw new java.lang.NullPointerException();
if (remappingFunction == null)
throw new java.lang.NullPointerException();
byte free;
if (key == (free = freeValue)) {
free = changeFree();
}
byte[] keys = set;
V[] vals = values;
int capacity, index;
byte cur;
keyPresent:
if ((cur = keys[index = SeparateKVByteKeyMixing.mix(key) % (capacity = keys.length)]) != key) {
keyAbsent:
if (cur != free) {
int bIndex = index, fIndex = index, step = 1;
while (true) {
if ((bIndex -= step) < 0) bIndex += capacity;
if ((cur = keys[bIndex]) == key) {
index = bIndex;
break keyPresent;
} else if (cur == free) {
index = bIndex;
break keyAbsent;
}
int t;
if ((t = (fIndex += step) - capacity) >= 0) fIndex = t;
if ((cur = keys[fIndex]) == key) {
index = fIndex;
break keyPresent;
} else if (cur == free) {
index = fIndex;
break keyAbsent;
}
step += 2;
}
}
// key is absent
incrementModCount();
keys[index] = key;
vals[index] = value;
postInsertHook();
return value;
}
// key is present
V val;
if ((val = vals[index]) != null) {
V newValue = remappingFunction.apply(val, value);
if (newValue != null) {
vals[index] = newValue;
return newValue;
} else {
throw new java.lang.UnsupportedOperationException("Merge operation of updatable map doesn't support removals");
}
} else {
vals[index] = value;
return value;
}
}
@Override
public void putAll(@Nonnull Map extends Byte, ? extends V> m) {
CommonByteObjMapOps.putAll(this, m);
}
@Override
public V replace(Byte key, V value) {
int index = index(key);
if (index >= 0) {
// key is present
V[] vals = values;
V oldValue = vals[index];
vals[index] = value;
return oldValue;
} else {
// key is absent
return null;
}
}
@Override
public V replace(byte key, V value) {
int index = index(key);
if (index >= 0) {
// key is present
V[] vals = values;
V oldValue = vals[index];
vals[index] = value;
return oldValue;
} else {
// key is absent
return null;
}
}
@Override
public boolean replace(Byte key, V oldValue, V newValue) {
return replace(key.byteValue(),
oldValue,
newValue);
}
@Override
public boolean replace(byte key, V oldValue, V newValue) {
int index = index(key);
if (index >= 0) {
// key is present
V[] vals = values;
if (nullableValueEquals(vals[index], (V) oldValue)) {
vals[index] = newValue;
return true;
} else {
return false;
}
} else {
// key is absent
return false;
}
}
@Override
public void replaceAll(
BiFunction super Byte, ? super V, ? extends V> function) {
if (function == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
vals[i] = function.apply(key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public void replaceAll(ByteObjFunction super V, ? extends V> function) {
if (function == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
vals[i] = function.apply(key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public void clear() {
doClear();
}
private void doClear() {
int mc = modCount() + 1;
super.clear();
if (mc != modCount())
throw new ConcurrentModificationException();
}
@Override
public V remove(Object key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean justRemove(byte key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public V remove(byte key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean remove(Object key, Object value) {
return remove(((Byte) key).byteValue(),
value);
}
@Override
public boolean remove(byte key, Object value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeIf(ByteObjPredicate super V> filter) {
throw new java.lang.UnsupportedOperationException();
}
class EntryView extends AbstractSetView>
implements HashObjSet>,
InternalObjCollectionOps> {
@Nonnull
@Override
public Equivalence> equivalence() {
return Equivalence.entryEquivalence(
Equivalence.defaultEquality()
,
valueEquivalence()
);
}
@Nonnull
@Override
public HashConfig hashConfig() {
return UpdatableQHashSeparateKVByteObjMapGO.this.hashConfig();
}
@Override
public int size() {
// Read field instead of calling size() to avoid infinite recursive calls in Koloboke
// Compile-generated map, if it extends AbstractMap
return size;
}
@Override
public double currentLoad() {
return UpdatableQHashSeparateKVByteObjMapGO.this.currentLoad();
}
@Override
@SuppressWarnings("unchecked")
public boolean contains(Object o) {
try {
Map.Entry e = (Map.Entry) o;
return containsEntry(e.getKey(), e.getValue());
} catch (NullPointerException e) {
return false;
} catch (ClassCastException e) {
return false;
}
}
@Override
@Nonnull
public final Object[] toArray() {
int size = size();
Object[] result = new Object[size];
if (size == 0)
return result;
int resultIndex = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
result[resultIndex++] = new MutableEntry(mc, i, key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return result;
}
@Override
@SuppressWarnings("unchecked")
@Nonnull
public final T[] toArray(@Nonnull T[] a) {
int size = size();
if (a.length < size) {
Class> elementType = a.getClass().getComponentType();
a = (T[]) java.lang.reflect.Array.newInstance(elementType, size);
}
if (size == 0) {
if (a.length > 0)
a[0] = null;
return a;
}
int resultIndex = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
a[resultIndex++] = (T) new MutableEntry(mc, i, key, vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
if (a.length > resultIndex)
a[resultIndex] = null;
return a;
}
@Override
public final void forEach(@Nonnull Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(new MutableEntry(mc, i, key, vals[i]));
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public boolean forEachWhile(@Nonnull Predicate super Map.Entry> predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!predicate.test(new MutableEntry(mc, i, key, vals[i]))) {
terminated = true;
break;
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return !terminated;
}
@Override
@Nonnull
public ObjIterator> iterator() {
int mc = modCount();
return new NoRemovedEntryIterator(
mc);
}
@Nonnull
@Override
public ObjCursor> cursor() {
int mc = modCount();
return new NoRemovedEntryCursor(
mc);
}
@Override
public final boolean containsAll(@Nonnull Collection> c) {
return CommonObjCollectionOps.containsAll(this, c);
}
@Override
public final boolean allContainingIn(ObjCollection> c) {
if (this.isEmpty())
return true;
boolean containsAll = true;
ReusableEntry e = new ReusableEntry();
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
if (!c.contains(e.with(key, vals[i]))) {
containsAll = false;
break;
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return containsAll;
}
@Override
public boolean reverseRemoveAllFrom(ObjSet> s) {
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
ReusableEntry e = new ReusableEntry();
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
changed |= s.remove(e.with(key, vals[i]));
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return changed;
}
@Override
public final boolean reverseAddAllTo(ObjCollection super Map.Entry> c) {
if (this.isEmpty())
return false;
boolean changed = false;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
changed |= c.add(new MutableEntry(mc, i, key, vals[i]));
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return changed;
}
public int hashCode() {
return UpdatableQHashSeparateKVByteObjMapGO.this.hashCode();
}
@Override
public String toString() {
if (this.isEmpty())
return "[]";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
sb.append(' ');
sb.append(key);
sb.append('=');
Object val = vals[i];
sb.append(val != (Object) this ? val : "(this Collection)");
sb.append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
sb.setCharAt(0, '[');
sb.setCharAt(sb.length() - 1, ']');
return sb.toString();
}
@Override
public boolean shrink() {
return UpdatableQHashSeparateKVByteObjMapGO.this.shrink();
}
@Override
@SuppressWarnings("unchecked")
public boolean remove(Object o) {
try {
Map.Entry e = (Map.Entry) o;
byte key = e.getKey();
V value = e.getValue();
return UpdatableQHashSeparateKVByteObjMapGO.this.remove(key, value);
} catch (NullPointerException e) {
return false;
} catch (ClassCastException e) {
return false;
}
}
@Override
public final boolean removeIf(@Nonnull Predicate super Map.Entry> filter) {
throw new java.lang.UnsupportedOperationException();
}
@SuppressWarnings("unchecked")
@Override
public final boolean removeAll(@Nonnull Collection> c) {
if (c instanceof InternalObjCollectionOps) {
InternalObjCollectionOps c2 = (InternalObjCollectionOps) c;
if (equivalence().equals(c2.equivalence()) && c2.size() < this.size()) {
c2.reverseRemoveAllFrom(this);
}
}
throw new java.lang.UnsupportedOperationException();
}
@Override
public final boolean retainAll(@Nonnull Collection> c) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void clear() {
// Don't call map.clear() directly to avoid infinite recursive calls in Koloboke
// Compile-generated map, if it extends AbstractMap
UpdatableQHashSeparateKVByteObjMapGO.this.doClear();
}
}
abstract class ByteObjEntry extends AbstractEntry {
abstract byte key();
@Override
public final Byte getKey() {
return key();
}
abstract V value();
@Override
public final V getValue() {
return value();
}
@SuppressWarnings("unchecked")
@Override
public boolean equals(Object o) {
Map.Entry e2;
byte k2;
V v2;
try {
e2 = (Map.Entry) o;
k2 = (Byte) e2.getKey();
v2 = (V) e2.getValue();
return key() == k2
&&
nullableValueEquals(v2, value());
} catch (ClassCastException e) {
return false;
} catch (NullPointerException e) {
return false;
}
}
@Override
public int hashCode() {
return Primitives.hashCode(key())
^
nullableValueHashCode(value());
}
}
class MutableEntry extends ByteObjEntry {
final int modCount;
private final int index;
final byte key;
private V value;
MutableEntry(int modCount,
int index, byte key, V value) {
this.modCount = modCount;
this.index = index;
this.key = key;
this.value = value;
}
@Override
public byte key() {
return key;
}
@Override
public V value() {
return value;
}
@Override
public V setValue(V newValue) {
if (modCount != modCount())
throw new IllegalStateException();
V oldValue = value;
V unwrappedNewValue = newValue;
value = unwrappedNewValue;
updateValueInTable(unwrappedNewValue);
return oldValue;
}
void updateValueInTable(V newValue) {
values[index] = newValue;
}
}
class ReusableEntry extends ByteObjEntry {
private byte key;
private V value;
ReusableEntry with(byte key, V value) {
this.key = key;
this.value = value;
return this;
}
@Override
public byte key() {
return key;
}
@Override
public V value() {
return value;
}
}
class ValueView extends AbstractObjValueView {
@Override
public Equivalence equivalence() {
return valueEquivalence();
}
@Override
public int size() {
return UpdatableQHashSeparateKVByteObjMapGO.this.size();
}
@Override
public boolean shrink() {
return UpdatableQHashSeparateKVByteObjMapGO.this.shrink();
}
@Override
public boolean contains(Object o) {
return UpdatableQHashSeparateKVByteObjMapGO.this.containsValue(o);
}
@Override
public void forEach(Consumer super V> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
action.accept(vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
}
@Override
public boolean forEachWhile(Predicate super V> predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
if (!predicate.test(vals[i])) {
terminated = true;
break;
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return !terminated;
}
@Override
public boolean allContainingIn(ObjCollection> c) {
if (this.isEmpty())
return true;
boolean containsAll = true;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
if (!c.contains(vals[i])) {
containsAll = false;
break;
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return containsAll;
}
@Override
public boolean reverseAddAllTo(ObjCollection super V> c) {
if (this.isEmpty())
return false;
boolean changed = false;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
changed |= c.add(vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return changed;
}
@Override
public boolean reverseRemoveAllFrom(ObjSet> s) {
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
changed |= s.remove(vals[i]);
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return changed;
}
@Override
@Nonnull
public ObjIterator iterator() {
int mc = modCount();
return new NoRemovedValueIterator(
mc);
}
@Nonnull
@Override
public ObjCursor cursor() {
int mc = modCount();
return new NoRemovedValueCursor(
mc);
}
@Override
@Nonnull
public Object[] toArray() {
int size = size();
Object[] result = new Object[size];
if (size == 0)
return result;
int resultIndex = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
result[resultIndex++] = vals[i];
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
return result;
}
@Override
@SuppressWarnings("unchecked")
@Nonnull
public T[] toArray(@Nonnull T[] a) {
int size = size();
if (a.length < size) {
Class> elementType = a.getClass().getComponentType();
a = (T[]) java.lang.reflect.Array.newInstance(elementType, size);
}
if (size == 0) {
if (a.length > 0)
a[0] = null;
return a;
}
int resultIndex = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
a[resultIndex++] = (T) vals[i];
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
if (a.length > resultIndex)
a[resultIndex] = null;
return a;
}
@Override
public String toString() {
if (this.isEmpty())
return "[]";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
int mc = modCount();
byte free = freeValue;
byte[] keys = set;
V[] vals = values;
for (int i = keys.length - 1; i >= 0; i--) {
if (keys[i] != free) {
V val;
sb.append(' ').append((val = vals[i]) != (Object) this ? val : "(this Collection)").append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
if (mc != modCount())
throw new java.util.ConcurrentModificationException();
sb.setCharAt(0, '[');
sb.setCharAt(sb.length() - 1, ']');
return sb.toString();
}
@Override
public boolean remove(Object o) {
return removeValue(o);
}
@Override
public void clear() {
UpdatableQHashSeparateKVByteObjMapGO.this.clear();
}
@Override
public boolean removeIf(Predicate super V> filter) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeAll(@Nonnull Collection> c) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean retainAll(@Nonnull Collection> c) {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedEntryIterator implements ObjIterator> {
final byte[] keys;
final V[] vals;
final byte free;
int expectedModCount;
int nextIndex;
MutableEntry next;
NoRemovedEntryIterator(int mc) {
expectedModCount = mc;
byte[] keys = this.keys = set;
V[] vals = this.vals = values;
byte free = this.free = freeValue;
int nextI = keys.length;
while (--nextI >= 0) {
byte key;
if ((key = keys[nextI]) != free) {
next = new MutableEntry(mc, nextI, key, vals[nextI]);
break;
}
}
nextIndex = nextI;
}
@Override
public void forEachRemaining(@Nonnull Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
int mc = expectedModCount;
byte[] keys = this.keys;
V[] vals = this.vals;
byte free = this.free;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(new MutableEntry(mc, i, key, vals[i]));
}
}
if (nextI != nextIndex || mc != modCount()) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public boolean hasNext() {
return nextIndex >= 0;
}
@Override
public Map.Entry next() {
int mc;
if ((mc = expectedModCount) == modCount()) {
int nextI;
if ((nextI = nextIndex) >= 0) {
byte[] keys = this.keys;
byte free = this.free;
MutableEntry prev = next;
while (--nextI >= 0) {
byte key;
if ((key = keys[nextI]) != free) {
next = new MutableEntry(mc, nextI, key, vals[nextI]);
break;
}
}
nextIndex = nextI;
return prev;
} else {
throw new java.util.NoSuchElementException();
}
} else {
throw new java.util.ConcurrentModificationException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedEntryCursor implements ObjCursor> {
final byte[] keys;
final V[] vals;
final byte free;
int expectedModCount;
int index;
byte curKey;
V curValue;
NoRemovedEntryCursor(int mc) {
expectedModCount = mc;
this.keys = set;
index = keys.length;
vals = values;
byte free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
int mc = expectedModCount;
byte[] keys = this.keys;
V[] vals = this.vals;
byte free = this.free;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(new MutableEntry(mc, i, key, vals[i]));
}
}
if (index != this.index || mc != modCount()) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public Map.Entry elem() {
byte curKey;
if ((curKey = this.curKey) != free) {
return new MutableEntry(expectedModCount, index, curKey, curValue);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
if (expectedModCount == modCount()) {
byte[] keys = this.keys;
byte free = this.free;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
index = i;
curKey = key;
curValue = vals[i];
return true;
}
}
curKey = free;
index = -1;
return false;
} else {
throw new java.util.ConcurrentModificationException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedValueIterator implements ObjIterator {
final byte[] keys;
final V[] vals;
final byte free;
int expectedModCount;
int nextIndex;
V next;
NoRemovedValueIterator(int mc) {
expectedModCount = mc;
byte[] keys = this.keys = set;
V[] vals = this.vals = values;
byte free = this.free = freeValue;
int nextI = keys.length;
while (--nextI >= 0) {
if (keys[nextI] != free) {
next = vals[nextI];
break;
}
}
nextIndex = nextI;
}
@Override
public void forEachRemaining(Consumer super V> action) {
if (action == null)
throw new java.lang.NullPointerException();
int mc = expectedModCount;
byte[] keys = this.keys;
V[] vals = this.vals;
byte free = this.free;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
if (keys[i] != free) {
action.accept(vals[i]);
}
}
if (nextI != nextIndex || mc != modCount()) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public boolean hasNext() {
return nextIndex >= 0;
}
@Override
public V next() {
if (expectedModCount == modCount()) {
int nextI;
if ((nextI = nextIndex) >= 0) {
byte[] keys = this.keys;
byte free = this.free;
V prev = next;
while (--nextI >= 0) {
if (keys[nextI] != free) {
next = vals[nextI];
break;
}
}
nextIndex = nextI;
return prev;
} else {
throw new java.util.NoSuchElementException();
}
} else {
throw new java.util.ConcurrentModificationException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedValueCursor implements ObjCursor {
final byte[] keys;
final V[] vals;
final byte free;
int expectedModCount;
int index;
byte curKey;
V curValue;
NoRemovedValueCursor(int mc) {
expectedModCount = mc;
this.keys = set;
index = keys.length;
vals = values;
byte free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(Consumer super V> action) {
if (action == null)
throw new java.lang.NullPointerException();
int mc = expectedModCount;
byte[] keys = this.keys;
V[] vals = this.vals;
byte free = this.free;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
if (keys[i] != free) {
action.accept(vals[i]);
}
}
if (index != this.index || mc != modCount()) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public V elem() {
if (curKey != free) {
return curValue;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
if (expectedModCount == modCount()) {
byte[] keys = this.keys;
byte free = this.free;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
index = i;
curKey = key;
curValue = vals[i];
return true;
}
}
curKey = free;
index = -1;
return false;
} else {
throw new java.util.ConcurrentModificationException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedMapCursor implements ByteObjCursor {
final byte[] keys;
final V[] vals;
final byte free;
int expectedModCount;
int index;
byte curKey;
V curValue;
NoRemovedMapCursor(int mc) {
expectedModCount = mc;
this.keys = set;
index = keys.length;
vals = values;
byte free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(ByteObjConsumer super V> action) {
if (action == null)
throw new java.lang.NullPointerException();
int mc = expectedModCount;
byte[] keys = this.keys;
V[] vals = this.vals;
byte free = this.free;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
action.accept(key, vals[i]);
}
}
if (index != this.index || mc != modCount()) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public byte key() {
byte curKey;
if ((curKey = this.curKey) != free) {
return curKey;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public V value() {
if (curKey != free) {
return curValue;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public void setValue(V value) {
if (curKey != free) {
if (expectedModCount == modCount()) {
vals[index] = value;
} else {
throw new java.util.ConcurrentModificationException();
}
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
if (expectedModCount == modCount()) {
byte[] keys = this.keys;
byte free = this.free;
for (int i = index - 1; i >= 0; i--) {
byte key;
if ((key = keys[i]) != free) {
index = i;
curKey = key;
curValue = vals[i];
return true;
}
}
curKey = free;
index = -1;
return false;
} else {
throw new java.util.ConcurrentModificationException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
}