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

io.deephaven.chunk.ResettableBooleanChunk Maven / Gradle / Ivy

The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
// ****** AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY
// ****** Edit ResettableCharChunk and run "./gradlew replicateSourcesAndChunks" to regenerate
//
// @formatter:off
package io.deephaven.chunk;

import io.deephaven.chunk.attributes.Any;
import io.deephaven.chunk.util.pools.MultiChunkPool;
import io.deephaven.util.type.ArrayTypeUtils;

import static io.deephaven.chunk.util.pools.ChunkPoolConstants.POOL_RESETTABLE_CHUNKS;

/**
 * {@link ResettableReadOnlyChunk} implementation for boolean data.
 */
public class ResettableBooleanChunk
        extends BooleanChunk
        implements ResettableReadOnlyChunk {

    public static  ResettableBooleanChunk makeResettableChunk() {
        if (POOL_RESETTABLE_CHUNKS) {
            return MultiChunkPool.forThisThread().takeResettableBooleanChunk();
        }
        return new ResettableBooleanChunk<>();
    }

    public static  ResettableBooleanChunk makeResettableChunkForPool() {
        return new ResettableBooleanChunk<>() {
            @Override
            public void close() {
                MultiChunkPool.forThisThread().giveResettableBooleanChunk(this);
            }
        };
    }

    private ResettableBooleanChunk(boolean[] data, int offset, int capacity) {
        super(data, offset, capacity);
    }

    private ResettableBooleanChunk() {
        this(ArrayTypeUtils.EMPTY_BOOLEAN_ARRAY, 0, 0);
    }

    @Override
    public ResettableBooleanChunk slice(int offset, int capacity) {
        ChunkHelpers.checkSliceArgs(size, offset, capacity);
        return new ResettableBooleanChunk<>(data, this.offset + offset, capacity);
    }

    @Override
    public  BooleanChunk resetFromChunk(Chunk other, int offset,
            int capacity) {
        return resetFromTypedChunk(other.asBooleanChunk(), offset, capacity);
    }

    @Override
    public  BooleanChunk resetFromArray(Object array, int offset, int capacity) {
        final boolean[] typedArray = (boolean[]) array;
        return resetFromTypedArray(typedArray, offset, capacity);
    }

    @Override
    public  BooleanChunk resetFromArray(Object array) {
        final boolean[] typedArray = (boolean[]) array;
        return resetFromTypedArray(typedArray, 0, typedArray.length);
    }

    @Override
    public  BooleanChunk clear() {
        return resetFromArray(ArrayTypeUtils.EMPTY_BOOLEAN_ARRAY, 0, 0);
    }

    public  BooleanChunk resetFromTypedChunk(BooleanChunk other, int offset,
            int capacity) {
        ChunkHelpers.checkSliceArgs(other.size, offset, capacity);
        return resetFromTypedArray(other.data, other.offset + offset, capacity);
    }

    public  BooleanChunk resetFromTypedArray(boolean[] data, int offset, int capacity) {
        ChunkHelpers.checkArrayArgs(data.length, offset, capacity);
        this.data = data;
        this.offset = offset;
        this.capacity = capacity;
        this.size = capacity;
        return BooleanChunk.downcast(this);
    }

    @Override
    public void close() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy