com.koloboke.collect.impl.hash.ImmutableLHashParallelKVCharShortMapGO 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.CharPredicate;
import com.koloboke.function.CharShortConsumer;
import com.koloboke.function.CharShortPredicate;
import com.koloboke.function.CharShortToShortFunction;
import com.koloboke.function.CharToShortFunction;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import com.koloboke.function.ShortBinaryOperator;
import com.koloboke.function.ShortConsumer;
import com.koloboke.function.ShortPredicate;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
import javax.annotation.Nonnull;
import java.util.*;
public class ImmutableLHashParallelKVCharShortMapGO
extends ImmutableLHashParallelKVCharShortMapSO {
final void copy(ParallelKVCharShortLHash hash) {
int
hashMC = hash.modCount();
super.copy(hash);
if (
hashMC != hash.modCount())
throw new ConcurrentModificationException();
}
final void move(ParallelKVCharShortLHash hash) {
int
hashMC = hash.modCount();
super.move(hash);
if (
hashMC != hash.modCount())
throw new ConcurrentModificationException();
}
@Override
public short defaultValue() {
return (short) 0;
}
@Override
public boolean containsEntry(char key, short value) {
char free;
if (key != (free = freeValue)) {
int[] tab = table;
int capacityMask, index;
char cur;
int entry;
if ((cur = (char) (entry = tab[index = ParallelKVCharKeyMixing.mix(key) & (capacityMask = tab.length - 1)])) == key) {
// key is present
return (short) (entry >>> 16) == value;
} else {
if (cur == free) {
// key is absent
return false;
} else {
while (true) {
if ((cur = (char) (entry = tab[(index = (index - 1) & capacityMask)])) == key) {
// key is present
return (short) (entry >>> 16) == value;
} else if (cur == free) {
// key is absent
return false;
}
}
}
}
} else {
// key is absent
return false;
}
}
@Override
public Short get(Object key) {
char k = (Character) key;
char free;
if (k != (free = freeValue)) {
int[] tab = table;
int capacityMask, index;
char cur;
int entry;
if ((cur = (char) (entry = tab[index = ParallelKVCharKeyMixing.mix(k) & (capacityMask = tab.length - 1)])) == k) {
// key is present
return (short) (entry >>> 16);
} else {
if (cur == free) {
// key is absent
return null;
} else {
while (true) {
if ((cur = (char) (entry = tab[(index = (index - 1) & capacityMask)])) == k) {
// key is present
return (short) (entry >>> 16);
} else if (cur == free) {
// key is absent
return null;
}
}
}
}
} else {
// key is absent
return null;
}
}
@Override
public short get(char key) {
char free;
if (key != (free = freeValue)) {
int[] tab = table;
int capacityMask, index;
char cur;
int entry;
if ((cur = (char) (entry = tab[index = ParallelKVCharKeyMixing.mix(key) & (capacityMask = tab.length - 1)])) == key) {
// key is present
return (short) (entry >>> 16);
} else {
if (cur == free) {
// key is absent
return defaultValue();
} else {
while (true) {
if ((cur = (char) (entry = tab[(index = (index - 1) & capacityMask)])) == key) {
// key is present
return (short) (entry >>> 16);
} else if (cur == free) {
// key is absent
return defaultValue();
}
}
}
}
} else {
// key is absent
return defaultValue();
}
}
@Override
public Short getOrDefault(Object key, Short defaultValue) {
char k = (Character) key;
char free;
if (k != (free = freeValue)) {
int[] tab = table;
int capacityMask, index;
char cur;
int entry;
if ((cur = (char) (entry = tab[index = ParallelKVCharKeyMixing.mix(k) & (capacityMask = tab.length - 1)])) == k) {
// key is present
return (short) (entry >>> 16);
} else {
if (cur == free) {
// key is absent
return defaultValue;
} else {
while (true) {
if ((cur = (char) (entry = tab[(index = (index - 1) & capacityMask)])) == k) {
// key is present
return (short) (entry >>> 16);
} else if (cur == free) {
// key is absent
return defaultValue;
}
}
}
}
} else {
// key is absent
return defaultValue;
}
}
@Override
public short getOrDefault(char key, short defaultValue) {
char free;
if (key != (free = freeValue)) {
int[] tab = table;
int capacityMask, index;
char cur;
int entry;
if ((cur = (char) (entry = tab[index = ParallelKVCharKeyMixing.mix(key) & (capacityMask = tab.length - 1)])) == key) {
// key is present
return (short) (entry >>> 16);
} else {
if (cur == free) {
// key is absent
return defaultValue;
} else {
while (true) {
if ((cur = (char) (entry = tab[(index = (index - 1) & capacityMask)])) == key) {
// key is present
return (short) (entry >>> 16);
} else if (cur == free) {
// key is absent
return defaultValue;
}
}
}
}
} else {
// key is absent
return defaultValue;
}
}
@Override
public void forEach(BiConsumer super Character, ? super Short> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
action.accept(key, (short) (entry >>> 16));
}
}
}
@Override
public void forEach(CharShortConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
action.accept(key, (short) (entry >>> 16));
}
}
}
@Override
public boolean forEachWhile(CharShortPredicate predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
if (!predicate.test(key, (short) (entry >>> 16))) {
terminated = true;
break;
}
}
}
return !terminated;
}
@Nonnull
@Override
public CharShortCursor cursor() {
return new NoRemovedMapCursor();
}
@SuppressWarnings("unchecked")
@Override
public boolean containsAllEntries(Map, ?> m) {
return CommonCharShortMapOps.containsAllEntries(this, m);
}
@Override
public boolean allEntriesContainingIn(InternalCharShortMapOps m) {
if (this.isEmpty())
return true;
boolean containsAll = true;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
if (!m.containsEntry(key, (short) (entry >>> 16))) {
containsAll = false;
break;
}
}
}
return containsAll;
}
@Override
public void reversePutAllTo(InternalCharShortMapOps m) {
if (this.isEmpty())
return;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
m.justPut(key, (short) (entry >>> 16));
}
}
}
@Override
@Nonnull
public HashObjSet> entrySet() {
return new EntryView();
}
@Override
@Nonnull
public ShortCollection values() {
return new ValueView();
}
@Override
public boolean equals(Object o) {
return CommonMapOps.equals(this, o);
}
@Override
public int hashCode() {
int hashCode = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
hashCode += key ^ (short) (entry >>> 16);
}
}
return hashCode;
}
@Override
public String toString() {
if (this.isEmpty())
return "{}";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
sb.append(' ');
sb.append(key);
sb.append('=');
sb.append((short) (entry >>> 16));
sb.append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
sb.setCharAt(0, '{');
sb.setCharAt(sb.length() - 1, '}');
return sb.toString();
}
@Override
public Short put(Character key, Short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short put(char key, short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Short putIfAbsent(Character key, Short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short putIfAbsent(char key, short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void justPut(char key, short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Short compute(Character key,
BiFunction super Character, ? super Short, ? extends Short> remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short compute(char key, CharShortToShortFunction remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Short computeIfAbsent(Character key,
Function super Character, ? extends Short> mappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short computeIfAbsent(char key, CharToShortFunction mappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Short computeIfPresent(Character key,
BiFunction super Character, ? super Short, ? extends Short> remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short computeIfPresent(char key, CharShortToShortFunction remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Short merge(Character key, Short value,
BiFunction super Short, ? super Short, ? extends Short> remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short merge(char key, short value, ShortBinaryOperator remappingFunction) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short addValue(char key, short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short addValue(char key, short addition, short initialValue) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void putAll(@Nonnull Map extends Character, ? extends Short> m) {
CommonCharShortMapOps.putAll(this, m);
}
@Override
public Short replace(Character key, Short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short replace(char key, short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean replace(Character key, Short oldValue, Short newValue) {
return replace(key.charValue(),
oldValue.shortValue(),
newValue.shortValue());
}
@Override
public boolean replace(char key, short oldValue, short newValue) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void replaceAll(
BiFunction super Character, ? super Short, ? extends Short> function) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public void replaceAll(CharShortToShortFunction function) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public Short remove(Object key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean justRemove(char key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public short remove(char key) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean remove(Object key, Object value) {
return remove(((Character) key).charValue(),
((Short) value).shortValue()
);
}
@Override
public boolean remove(char key, short value) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeIf(CharShortPredicate filter) {
throw new java.lang.UnsupportedOperationException();
}
class EntryView extends AbstractSetView>
implements HashObjSet>,
InternalObjCollectionOps> {
@Nonnull
@Override
public Equivalence> equivalence() {
return Equivalence.entryEquivalence(
Equivalence.defaultEquality()
,
Equivalence.defaultEquality()
);
}
@Nonnull
@Override
public HashConfig hashConfig() {
return ImmutableLHashParallelKVCharShortMapGO.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 ImmutableLHashParallelKVCharShortMapGO.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;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
result[resultIndex++] = new ImmutableEntry(key, (short) (entry >>> 16));
}
}
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;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
a[resultIndex++] = (T) new ImmutableEntry(key, (short) (entry >>> 16));
}
}
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;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
action.accept(new ImmutableEntry(key, (short) (entry >>> 16)));
}
}
}
@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;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
if (!predicate.test(new ImmutableEntry(key, (short) (entry >>> 16)))) {
terminated = true;
break;
}
}
}
return !terminated;
}
@Override
@Nonnull
public ObjIterator> iterator() {
return new NoRemovedEntryIterator(
);
}
@Nonnull
@Override
public ObjCursor> cursor() {
return new NoRemovedEntryCursor(
);
}
@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();
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
if (!c.contains(e.with(key, (short) (entry >>> 16)))) {
containsAll = false;
break;
}
}
}
return containsAll;
}
@Override
public boolean reverseRemoveAllFrom(ObjSet> s) {
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
ReusableEntry e = new ReusableEntry();
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
changed |= s.remove(e.with(key, (short) (entry >>> 16)));
}
}
return changed;
}
@Override
public final boolean reverseAddAllTo(ObjCollection super Map.Entry> c) {
if (this.isEmpty())
return false;
boolean changed = false;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
changed |= c.add(new ImmutableEntry(key, (short) (entry >>> 16)));
}
}
return changed;
}
public int hashCode() {
return ImmutableLHashParallelKVCharShortMapGO.this.hashCode();
}
@Override
public String toString() {
if (this.isEmpty())
return "[]";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
sb.append(' ');
sb.append(key);
sb.append('=');
sb.append((short) (entry >>> 16));
sb.append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
sb.setCharAt(0, '[');
sb.setCharAt(sb.length() - 1, ']');
return sb.toString();
}
@Override
public boolean shrink() {
return ImmutableLHashParallelKVCharShortMapGO.this.shrink();
}
@Override
@SuppressWarnings("unchecked")
public boolean remove(Object o) {
try {
Map.Entry e = (Map.Entry) o;
char key = e.getKey();
short value = e.getValue();
return ImmutableLHashParallelKVCharShortMapGO.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
throw new UnsupportedOperationException();
}
}
abstract class CharShortEntry extends AbstractEntry {
abstract char key();
@Override
public final Character getKey() {
return key();
}
abstract short value();
@Override
public final Short getValue() {
return value();
}
@SuppressWarnings("unchecked")
@Override
public boolean equals(Object o) {
Map.Entry e2;
char k2;
short v2;
try {
e2 = (Map.Entry) o;
k2 = (Character) e2.getKey();
v2 = (Short) e2.getValue();
return key() == k2
&&
value() == v2
;
} catch (ClassCastException e) {
return false;
} catch (NullPointerException e) {
return false;
}
}
@Override
public int hashCode() {
return Primitives.hashCode(key())
^
Primitives.hashCode(value())
;
}
}
private class ImmutableEntry extends CharShortEntry {
private final char key;
private final short value;
ImmutableEntry(char key, short value) {
this.key = key;
this.value = value;
}
@Override
public char key() {
return key;
}
@Override
public short value() {
return value;
}
}
class ReusableEntry extends CharShortEntry {
private char key;
private short value;
ReusableEntry with(char key, short value) {
this.key = key;
this.value = value;
return this;
}
@Override
public char key() {
return key;
}
@Override
public short value() {
return value;
}
}
class ValueView extends AbstractShortValueView {
@Override
public int size() {
return ImmutableLHashParallelKVCharShortMapGO.this.size();
}
@Override
public boolean shrink() {
return ImmutableLHashParallelKVCharShortMapGO.this.shrink();
}
@Override
public boolean contains(Object o) {
return ImmutableLHashParallelKVCharShortMapGO.this.containsValue(o);
}
@Override
public boolean contains(short v) {
return ImmutableLHashParallelKVCharShortMapGO.this.containsValue(v);
}
@Override
public void forEach(Consumer super Short> action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
action.accept((short) (entry >>> 16));
}
}
}
@Override
public void forEach(ShortConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
action.accept((short) (entry >>> 16));
}
}
}
@Override
public boolean forEachWhile(ShortPredicate predicate) {
if (predicate == null)
throw new java.lang.NullPointerException();
if (this.isEmpty())
return true;
boolean terminated = false;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
if (!predicate.test((short) (entry >>> 16))) {
terminated = true;
break;
}
}
}
return !terminated;
}
@Override
public boolean allContainingIn(ShortCollection c) {
if (this.isEmpty())
return true;
boolean containsAll = true;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
if (!c.contains((short) (entry >>> 16))) {
containsAll = false;
break;
}
}
}
return containsAll;
}
@Override
public boolean reverseAddAllTo(ShortCollection c) {
if (this.isEmpty())
return false;
boolean changed = false;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
changed |= c.add((short) (entry >>> 16));
}
}
return changed;
}
@Override
public boolean reverseRemoveAllFrom(ShortSet s) {
if (this.isEmpty() || s.isEmpty())
return false;
boolean changed = false;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
changed |= s.removeShort((short) (entry >>> 16));
}
}
return changed;
}
@Override
@Nonnull
public ShortIterator iterator() {
return new NoRemovedValueIterator(
);
}
@Nonnull
@Override
public ShortCursor cursor() {
return new NoRemovedValueCursor(
);
}
@Override
@Nonnull
public Object[] toArray() {
int size = size();
Object[] result = new Object[size];
if (size == 0)
return result;
int resultIndex = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
result[resultIndex++] = (short) (entry >>> 16);
}
}
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;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
a[resultIndex++] = (T) Short.valueOf((short) (entry >>> 16));
}
}
if (a.length > resultIndex)
a[resultIndex] = null;
return a;
}
@Override
public short[] toShortArray() {
int size = size();
short[] result = new short[size];
if (size == 0)
return result;
int resultIndex = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
result[resultIndex++] = (short) (entry >>> 16);
}
}
return result;
}
@Override
public short[] toArray(short[] a) {
int size = size();
if (a.length < size)
a = new short[size];
if (size == 0) {
if (a.length > 0)
a[0] = (short) 0;
return a;
}
int resultIndex = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
a[resultIndex++] = (short) (entry >>> 16);
}
}
if (a.length > resultIndex)
a[resultIndex] = (short) 0;
return a;
}
@Override
public String toString() {
if (this.isEmpty())
return "[]";
StringBuilder sb = new StringBuilder();
int elementCount = 0;
char free = freeValue;
int[] tab = table;
int entry;
for (int i = tab.length - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
sb.append(' ').append((short) (entry >>> 16)).append(',');
if (++elementCount == 8) {
int expectedLength = sb.length() * (size() / 8);
sb.ensureCapacity(expectedLength + (expectedLength / 2));
}
}
}
sb.setCharAt(0, '[');
sb.setCharAt(sb.length() - 1, ']');
return sb.toString();
}
@Override
public boolean remove(Object o) {
return removeShort(( Short ) o);
}
@Override
public boolean removeShort(short v) {
return removeValue(v);
}
@Override
public void clear() {
ImmutableLHashParallelKVCharShortMapGO.this.clear();
}
public boolean removeIf(Predicate super Short> filter) {
throw new java.lang.UnsupportedOperationException();
}
@Override
public boolean removeIf(ShortPredicate 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 int[] tab;
final char free;
int nextIndex;
ImmutableEntry next;
NoRemovedEntryIterator() {
int[] tab = this.tab = table;
char free = this.free = freeValue;
int nextI = tab.length;
int entry;
while (--nextI >= 0) {
char key;
if ((key = (char) (entry = tab[nextI])) != free) {
next = new ImmutableEntry(key, (short) (entry >>> 16));
break;
}
}
nextIndex = nextI;
}
@Override
public void forEachRemaining(@Nonnull Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
int[] tab = this.tab;
char free = this.free;
int entry;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
action.accept(new ImmutableEntry(key, (short) (entry >>> 16)));
}
}
if (nextI != nextIndex) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public boolean hasNext() {
return nextIndex >= 0;
}
@Override
public Map.Entry next() {
int nextI;
if ((nextI = nextIndex) >= 0) {
int[] tab = this.tab;
char free = this.free;
ImmutableEntry prev = next;
int entry;
while (--nextI >= 0) {
char key;
if ((key = (char) (entry = tab[nextI])) != free) {
next = new ImmutableEntry(key, (short) (entry >>> 16));
break;
}
}
nextIndex = nextI;
return prev;
} else {
throw new java.util.NoSuchElementException();
}
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedEntryCursor implements ObjCursor> {
final int[] tab;
final char free;
int index;
char curKey;
short curValue;
NoRemovedEntryCursor() {
this.tab = table;
index = tab.length;
char free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(Consumer super Map.Entry> action) {
if (action == null)
throw new java.lang.NullPointerException();
int[] tab = this.tab;
char free = this.free;
int entry;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
action.accept(new ImmutableEntry(key, (short) (entry >>> 16)));
}
}
if (index != this.index) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public Map.Entry elem() {
char curKey;
if ((curKey = this.curKey) != free) {
return new ImmutableEntry(curKey, curValue);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
int[] tab = this.tab;
char free = this.free;
int entry;
for (int i = index - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
index = i;
curKey = key;
curValue = (short) (entry >>> 16);
return true;
}
}
curKey = free;
index = -1;
return false;
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedValueIterator implements ShortIterator {
final int[] tab;
final char free;
int nextIndex;
short next;
NoRemovedValueIterator() {
int[] tab = this.tab = table;
char free = this.free = freeValue;
int nextI = tab.length;
int entry;
while (--nextI >= 0) {
if ((char) (entry = tab[nextI]) != free) {
next = (short) (entry >>> 16);
break;
}
}
nextIndex = nextI;
}
@Override
public short nextShort() {
int nextI;
if ((nextI = nextIndex) >= 0) {
int[] tab = this.tab;
char free = this.free;
short prev = next;
int entry;
while (--nextI >= 0) {
if ((char) (entry = tab[nextI]) != free) {
next = (short) (entry >>> 16);
break;
}
}
nextIndex = nextI;
return prev;
} else {
throw new java.util.NoSuchElementException();
}
}
@Override
public void forEachRemaining(Consumer super Short> action) {
if (action == null)
throw new java.lang.NullPointerException();
int[] tab = this.tab;
char free = this.free;
int entry;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
action.accept((short) (entry >>> 16));
}
}
if (nextI != nextIndex) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public void forEachRemaining(ShortConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
int[] tab = this.tab;
char free = this.free;
int entry;
int nextI = nextIndex;
for (int i = nextI; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
action.accept((short) (entry >>> 16));
}
}
if (nextI != nextIndex) {
throw new java.util.ConcurrentModificationException();
}
nextIndex = -1;
}
@Override
public boolean hasNext() {
return nextIndex >= 0;
}
@Override
public Short next() {
return nextShort();
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedValueCursor implements ShortCursor {
final int[] tab;
final char free;
int index;
char curKey;
short curValue;
NoRemovedValueCursor() {
this.tab = table;
index = tab.length;
char free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(ShortConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
int[] tab = this.tab;
char free = this.free;
int entry;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
if ((char) (entry = tab[i]) != free) {
action.accept((short) (entry >>> 16));
}
}
if (index != this.index) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public short elem() {
if (curKey != free) {
return curValue;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
int[] tab = this.tab;
char free = this.free;
int entry;
for (int i = index - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
index = i;
curKey = key;
curValue = (short) (entry >>> 16);
return true;
}
}
curKey = free;
index = -1;
return false;
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
class NoRemovedMapCursor implements CharShortCursor {
final int[] tab;
final char free;
int index;
char curKey;
short curValue;
NoRemovedMapCursor() {
this.tab = table;
index = tab.length;
char free = this.free = freeValue;
curKey = free;
}
@Override
public void forEachForward(CharShortConsumer action) {
if (action == null)
throw new java.lang.NullPointerException();
int[] tab = this.tab;
char free = this.free;
int entry;
int index = this.index;
for (int i = index - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
action.accept(key, (short) (entry >>> 16));
}
}
if (index != this.index) {
throw new java.util.ConcurrentModificationException();
}
this.index = -1;
curKey = free;
}
@Override
public char key() {
char curKey;
if ((curKey = this.curKey) != free) {
return curKey;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public short value() {
if (curKey != free) {
return curValue;
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public void setValue(short value) {
if (curKey != free) {
U.putShort(tab, INT_BASE + SHORT_VALUE_OFFSET + (((long) (index)) << INT_SCALE_SHIFT), value);
} else {
throw new java.lang.IllegalStateException();
}
}
@Override
public boolean moveNext() {
int[] tab = this.tab;
char free = this.free;
int entry;
for (int i = index - 1; i >= 0; i--) {
char key;
if ((key = (char) (entry = tab[i])) != free) {
index = i;
curKey = key;
curValue = (short) (entry >>> 16);
return true;
}
}
curKey = free;
index = -1;
return false;
}
@Override
public void remove() {
throw new java.lang.UnsupportedOperationException();
}
}
}