All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.koloboke.collect.impl.hash.QHashObjSetFactoryGO Maven / Gradle / Ivy

Go to download

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.HashObjSetFactory;
import java.util.function.Consumer;
import java.util.function.Predicate;
import com.koloboke.collect.set.hash.HashObjSet;

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 QHashObjSetFactoryGO extends QHashObjSetFactorySO {

    public QHashObjSetFactoryGO(HashConfig hashConf, int defaultExpectedSize
            , boolean isNullAllowed
            ) {
        super(hashConf, defaultExpectedSize, isNullAllowed
            );
    }

    

    abstract HashObjSetFactory thisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullAllowed
            );

    abstract HashObjSetFactory lHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullAllowed
            );

    abstract HashObjSetFactory qHashLikeThisWith(HashConfig hashConf, int defaultExpectedSize, boolean isNullAllowed
            );

    @Override
    public final HashObjSetFactory withHashConfig(@Nonnull HashConfig hashConf) {
        if (configIsSuitableForMutableLHash(hashConf))
            return lHashLikeThisWith(hashConf, getDefaultExpectedSize()
            , isNullKeyAllowed());
        return qHashLikeThisWith(hashConf, getDefaultExpectedSize()
            , isNullKeyAllowed());
    }

    @Override
    public final HashObjSetFactory withDefaultExpectedSize(int defaultExpectedSize) {
        if (defaultExpectedSize == getDefaultExpectedSize())
            return this;
        return thisWith(getHashConfig(), defaultExpectedSize
                , isNullKeyAllowed());
    }


    @Override
    public String toString() {
        return "HashObjSetFactory[" + commonString() + keySpecialString() + "]";
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj instanceof HashObjSetFactory) {
            HashObjSetFactory factory = (HashObjSetFactory) obj;
            return commonEquals(factory) && keySpecialEquals(factory);
        } else {
            return false;
        }
    }

    @Override
    public int hashCode() {
        return keySpecialHashCode(commonHashCode());
    }

    

    

    

    private  UpdatableQHashObjSetGO shrunk(UpdatableQHashObjSetGO set) {
        Predicate shrinkCondition;
        if ((shrinkCondition = hashConf.getShrinkCondition()) != null) {
            if (shrinkCondition.test(set))
                set.shrink();
        }
        return set;
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet() {
        return this.newUpdatableSet(getDefaultExpectedSize());
    }
    @Override
    @Nonnull
    public  MutableQHashObjSetGO newMutableSet() {
        return this.newMutableSet(getDefaultExpectedSize());
    }

    private static int sizeOr(Iterable elems, int defaultSize) {
        return elems instanceof Collection ? ((Collection) elems).size() : defaultSize;
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterable elements) {
        return this.newUpdatableSet(elements, sizeOr(elements, getDefaultExpectedSize()));
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO 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  UpdatableQHashObjSetGO 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  UpdatableQHashObjSetGO 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  UpdatableQHashObjSetGO 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  UpdatableQHashObjSetGO newUpdatableSet(Iterable elements,
            int expectedSize) {
        return shrunk(super.newUpdatableSet(elements, expectedSize));
    }


    @SuppressWarnings("unchecked")
    private static  void addAll(UpdatableQHashObjSetGO set,
            Iterable elems) {
        if (elems instanceof Collection) {
            set.addAll((Collection) elems);
        } else {
            for (E e : elems) {
                set.add(e);
            }
        }
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterable elems1,
            Iterable elems2, int expectedSize) {
        UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        addAll(set, elems1);
        addAll(set, elems2);
        return shrunk(set);
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            int expectedSize) {
        UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        addAll(set, elems1);
        addAll(set, elems2);
        addAll(set, elems3);
        return shrunk(set);
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, int expectedSize) {
        UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        addAll(set, elems1);
        addAll(set, elems2);
        addAll(set, elems3);
        addAll(set, elems4);
        return shrunk(set);
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, Iterable elems5,
            int expectedSize) {
        UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        addAll(set, elems1);
        addAll(set, elems2);
        addAll(set, elems3);
        addAll(set, elems4);
        addAll(set, elems5);
        return shrunk(set);
    }


    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterator elements) {
        return this.newUpdatableSet(elements, getDefaultExpectedSize());
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(Iterator elements,
            int expectedSize) {
        UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        while (elements.hasNext()) {
            set.add(elements.next());
        }
        return shrunk(set);
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(
            Consumer> elementsSupplier) {
        return this.newUpdatableSet(elementsSupplier, getDefaultExpectedSize());
    }

    

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(
            Consumer> elementsSupplier,
            int expectedSize) {
        final UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        elementsSupplier.accept(new com.koloboke.function.Consumer() {
            @Override
            public void accept(E2 e) {
                set.add(e);
            }
        });
        return shrunk(set);
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(E2[] elements) {
        return this.newUpdatableSet(elements, elements.length);
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSet(E2[] elements,
            int expectedSize) {
        UpdatableQHashObjSetGO set = newUpdatableSet(expectedSize);
        for (E2 e : elements) {
            set.add(e);
        }
        return shrunk(set);
    }


    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSetOf(E2 e1) {
        UpdatableQHashObjSetGO set = newUpdatableSet(1);
        set.add(e1);
        return set;
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSetOf(
            E2 e1, E2 e2) {
        UpdatableQHashObjSetGO set = newUpdatableSet(2);
        set.add(e1);
        set.add(e2);
        return set;
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSetOf(
            E2 e1, E2 e2, E2 e3) {
        UpdatableQHashObjSetGO set = newUpdatableSet(3);
        set.add(e1);
        set.add(e2);
        set.add(e3);
        return set;
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSetOf(
            E2 e1, E2 e2, E2 e3, E2 e4) {
        UpdatableQHashObjSetGO set = newUpdatableSet(4);
        set.add(e1);
        set.add(e2);
        set.add(e3);
        set.add(e4);
        return set;
    }

    @Override
    @Nonnull
    public  UpdatableQHashObjSetGO newUpdatableSetOf(E2 e1,
            E2 e2, E2 e3, E2 e4, E2 e5,
            E2... restElements) {
        UpdatableQHashObjSetGO set = newUpdatableSet(5 + restElements.length);
        set.add(e1);
        set.add(e2);
        set.add(e3);
        set.add(e4);
        set.add(e5);
        for (E2 e : restElements) {
            set.add(e);
        }
        return shrunk(set);
    }

    
    

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elements, int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elements, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3, int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, Iterable elems5, int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5, expectedSize));
        return set;
    }

    
    

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elements) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elements));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, Iterable elems5) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5));
        return set;
    }


    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterator elements) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elements));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(Iterator elements,
            int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elements, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(
            Consumer> elementsSupplier) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elementsSupplier));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(
            Consumer> elementsSupplier,
            int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elementsSupplier, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(E2[] elements) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elements));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSet(E2[] elements, int expectedSize) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSet(elements, expectedSize));
        return set;
    }


    @Override
    @Nonnull
    public  HashObjSet newMutableSetOf(E2 e1) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSetOf(e1));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSetOf(E2 e1, E2 e2) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSetOf(e1, e2));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSetOf(E2 e1, E2 e2,
            E2 e3) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSetOf(e1, e2, e3));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSetOf(E2 e1, E2 e2,
            E2 e3, E2 e4) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSetOf(e1, e2, e3, e4));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newMutableSetOf(E2 e1, E2 e2,
            E2 e3, E2 e4, E2 e5,
            E2... restElements) {
        MutableQHashObjSetGO set = uninitializedMutableSet();
        set.move(this.newUpdatableSetOf(e1, e2, e3, e4, e5, restElements));
        return set;
    }
    
    

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elements, int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elements, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3, int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, Iterable elems5, int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5, expectedSize));
        return set;
    }

    
    

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elements) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elements));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterable elems1,
            Iterable elems2, Iterable elems3,
            Iterable elems4, Iterable elems5) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elems1, elems2, elems3, elems4, elems5));
        return set;
    }


    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterator elements) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elements));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(Iterator elements,
            int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elements, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(
            Consumer> elementsSupplier) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elementsSupplier));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(
            Consumer> elementsSupplier,
            int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elementsSupplier, expectedSize));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(E2[] elements) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elements));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSet(E2[] elements, int expectedSize) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSet(elements, expectedSize));
        return set;
    }


    @Override
    @Nonnull
    public  HashObjSet newImmutableSetOf(E2 e1) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSetOf(e1));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSetOf(E2 e1, E2 e2) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSetOf(e1, e2));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSetOf(E2 e1, E2 e2,
            E2 e3) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSetOf(e1, e2, e3));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSetOf(E2 e1, E2 e2,
            E2 e3, E2 e4) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSetOf(e1, e2, e3, e4));
        return set;
    }

    @Override
    @Nonnull
    public  HashObjSet newImmutableSetOf(E2 e1, E2 e2,
            E2 e3, E2 e4, E2 e5,
            E2... restElements) {
        ImmutableQHashObjSetGO set = uninitializedImmutableSet();
        set.move(this.newUpdatableSetOf(e1, e2, e3, e4, e5, restElements));
        return set;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy