com.koloboke.collect.impl.hash.LHashCharSetFactoryGO 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.hash.*;
import com.koloboke.collect.set.hash.HashCharSetFactory;
import java.util.function.Consumer;
import java.util.function.Predicate;
import com.koloboke.collect.set.hash.HashCharSet;
import javax.annotation.Nonnull;
import java.util.Collection;
import java.util.Iterator;
import static com.koloboke.collect.impl.Containers.sizeAsInt;
import static com.koloboke.collect.impl.hash.LHashCapacities.configIsSuitableForMutableLHash;
public abstract class LHashCharSetFactoryGO extends LHashCharSetFactorySO {
public LHashCharSetFactoryGO(HashConfig hashConf, int defaultExpectedSize
, char lower, char upper) {
super(hashConf, defaultExpectedSize, lower, upper);
}
abstract HashCharSetFactory thisWith(HashConfig hashConf, int defaultExpectedSize, char lower, char upper);
abstract HashCharSetFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, char lower, char upper);
abstract HashCharSetFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, char lower, char upper);
@Override
public final HashCharSetFactory withHashConfig(@Nonnull HashConfig hashConf) {
if (configIsSuitableForMutableLHash(hashConf))
return lHashLikeThisWith(hashConf, getDefaultExpectedSize()
, getLowerKeyDomainBound(), getUpperKeyDomainBound());
return qHashLikeThisWith(hashConf, getDefaultExpectedSize()
, getLowerKeyDomainBound(), getUpperKeyDomainBound());
}
@Override
public final HashCharSetFactory withDefaultExpectedSize(int defaultExpectedSize) {
if (defaultExpectedSize == getDefaultExpectedSize())
return this;
return thisWith(getHashConfig(), defaultExpectedSize
, getLowerKeyDomainBound(), getUpperKeyDomainBound());
}
@Override
public String toString() {
return "HashCharSetFactory[" + commonString() + keySpecialString() + "]";
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj instanceof HashCharSetFactory) {
HashCharSetFactory factory = (HashCharSetFactory) obj;
return commonEquals(factory) && keySpecialEquals(factory);
} else {
return false;
}
}
@Override
public int hashCode() {
return keySpecialHashCode(commonHashCode());
}
private UpdatableLHashCharSetGO shrunk(UpdatableLHashCharSetGO set) {
Predicate shrinkCondition;
if ((shrinkCondition = hashConf.getShrinkCondition()) != null) {
if (shrinkCondition.test(set))
set.shrink();
}
return set;
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet() {
return this.newUpdatableSet(getDefaultExpectedSize());
}
@Override
@Nonnull
public MutableLHashCharSetGO newMutableSet() {
return this.newMutableSet(getDefaultExpectedSize());
}
private static int sizeOr(Iterable elems, int defaultSize) {
return elems instanceof Collection ? ((Collection) elems).size() : defaultSize;
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elements) {
return this.newUpdatableSet(elements, sizeOr(elements, getDefaultExpectedSize()));
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2) {
long expectedSize = (long) sizeOr(elems1, 0);
expectedSize += (long) sizeOr(elems2, 0);
return this.newUpdatableSet(elems1, elems2, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, Iterable elems3) {
long expectedSize = (long) sizeOr(elems1, 0);
expectedSize += (long) sizeOr(elems2, 0);
expectedSize += (long) sizeOr(elems3, 0);
return this.newUpdatableSet(elems1, elems2, elems3, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4) {
long expectedSize = (long) sizeOr(elems1, 0);
expectedSize += (long) sizeOr(elems2, 0);
expectedSize += (long) sizeOr(elems3, 0);
expectedSize += (long) sizeOr(elems4, 0);
return this.newUpdatableSet(elems1, elems2, elems3, elems4, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, Iterable elems5) {
long expectedSize = (long) sizeOr(elems1, 0);
expectedSize += (long) sizeOr(elems2, 0);
expectedSize += (long) sizeOr(elems3, 0);
expectedSize += (long) sizeOr(elems4, 0);
expectedSize += (long) sizeOr(elems5, 0);
return this.newUpdatableSet(
elems1, elems2, elems3, elems4, elems5, sizeAsInt(expectedSize));
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elements,
int expectedSize) {
return shrunk(super.newUpdatableSet(elements, expectedSize));
}
@SuppressWarnings("unchecked")
private static void addAll(UpdatableLHashCharSetGO set,
Iterable extends Character> elems) {
if (elems instanceof Collection) {
set.addAll((Collection extends Character>) elems);
} else {
for (char e : elems) {
set.add(e);
}
}
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
addAll(set, elems1);
addAll(set, elems2);
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
addAll(set, elems1);
addAll(set, elems2);
addAll(set, elems3);
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
addAll(set, elems1);
addAll(set, elems2);
addAll(set, elems3);
addAll(set, elems4);
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, Iterable elems5,
int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
addAll(set, elems1);
addAll(set, elems2);
addAll(set, elems3);
addAll(set, elems4);
addAll(set, elems5);
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterator elements) {
return this.newUpdatableSet(elements, getDefaultExpectedSize());
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Iterator elements,
int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
while (elements.hasNext()) {
set.add(elements.next());
}
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(
Consumer elementsSupplier) {
return this.newUpdatableSet(elementsSupplier, getDefaultExpectedSize());
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(
Consumer elementsSupplier,
int expectedSize) {
final UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
elementsSupplier.accept(new com.koloboke.function.CharConsumer() {
@Override
public void accept(char e) {
set.add(e);
}
});
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(char[] elements) {
return this.newUpdatableSet(elements, elements.length);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(char[] elements,
int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
for (char e : elements) {
set.add(e);
}
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Character[] elements) {
return this.newUpdatableSet(elements, elements.length);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSet(Character[] elements,
int expectedSize) {
UpdatableLHashCharSetGO set = newUpdatableSet(expectedSize);
for (char e : elements) {
set.add(e);
}
return shrunk(set);
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSetOf(char e1) {
UpdatableLHashCharSetGO set = newUpdatableSet(1);
set.add(e1);
return set;
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSetOf(
char e1, char e2) {
UpdatableLHashCharSetGO set = newUpdatableSet(2);
set.add(e1);
set.add(e2);
return set;
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSetOf(
char e1, char e2, char e3) {
UpdatableLHashCharSetGO set = newUpdatableSet(3);
set.add(e1);
set.add(e2);
set.add(e3);
return set;
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSetOf(
char e1, char e2, char e3, char e4) {
UpdatableLHashCharSetGO set = newUpdatableSet(4);
set.add(e1);
set.add(e2);
set.add(e3);
set.add(e4);
return set;
}
@Override
@Nonnull
public UpdatableLHashCharSetGO newUpdatableSetOf(char e1,
char e2, char e3, char e4, char e5,
char... restElements) {
UpdatableLHashCharSetGO set = newUpdatableSet(5 + restElements.length);
set.add(e1);
set.add(e2);
set.add(e3);
set.add(e4);
set.add(e5);
for (char e : restElements) {
set.add(e);
}
return shrunk(set);
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elements, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, Iterable elems3, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, Iterable elems5, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elements) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, Iterable elems3) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, Iterable elems5) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterator elements) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Iterator elements,
int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(
Consumer elementsSupplier) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elementsSupplier));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(
Consumer elementsSupplier,
int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elementsSupplier, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(char[] elements) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(char[] elements, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Character[] elements) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSet(Character[] elements, int expectedSize) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSetOf(char e1) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSetOf(e1));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSetOf(char e1, char e2) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSetOf(e1, e2));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSetOf(char e1, char e2,
char e3) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSetOf(e1, e2, e3));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSetOf(char e1, char e2,
char e3, char e4) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSetOf(e1, e2, e3, e4));
return set;
}
@Override
@Nonnull
public HashCharSet newMutableSetOf(char e1, char e2,
char e3, char e4, char e5,
char... restElements) {
MutableLHashCharSetGO set = uninitializedMutableSet();
set.move(this.newUpdatableSetOf(e1, e2, e3, e4, e5, restElements));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elements, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, Iterable elems3, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, Iterable elems5, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elements) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, Iterable elems3) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterable elems1,
Iterable elems2, Iterable elems3,
Iterable elems4, Iterable elems5) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterator elements) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Iterator elements,
int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(
Consumer elementsSupplier) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elementsSupplier));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(
Consumer elementsSupplier,
int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elementsSupplier, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(char[] elements) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(char[] elements, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Character[] elements) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSet(Character[] elements, int expectedSize) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSet(elements, expectedSize));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSetOf(char e1) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSetOf(e1));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSetOf(char e1, char e2) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSetOf(e1, e2));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSetOf(char e1, char e2,
char e3) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSetOf(e1, e2, e3));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSetOf(char e1, char e2,
char e3, char e4) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSetOf(e1, e2, e3, e4));
return set;
}
@Override
@Nonnull
public HashCharSet newImmutableSetOf(char e1, char e2,
char e3, char e4, char e5,
char... restElements) {
ImmutableLHashCharSetGO set = uninitializedImmutableSet();
set.move(this.newUpdatableSetOf(e1, e2, e3, e4, e5, restElements));
return set;
}
}