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

io.deephaven.engine.table.impl.sources.SwitchColumnSource Maven / Gradle / Ivy

There is a newer version: 0.37.1
Show newest version
/**
 * Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
 */
package io.deephaven.engine.table.impl.sources;

import io.deephaven.base.verify.Assert;
import io.deephaven.base.verify.Require;
import io.deephaven.chunk.attributes.Values;
import io.deephaven.engine.context.ExecutionContext;
import io.deephaven.engine.table.Context;
import io.deephaven.engine.table.SharedContext;
import io.deephaven.chunk.*;
import io.deephaven.engine.rowset.RowSequence;
import io.deephaven.engine.table.ColumnSource;
import io.deephaven.engine.table.impl.AbstractColumnSource;
import io.deephaven.engine.updategraph.UpdateCommitter;
import io.deephaven.util.SafeCloseable;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;

import java.util.function.Consumer;

public class SwitchColumnSource extends AbstractColumnSource {

    private final UpdateCommitter> updateCommitter;
    private final Consumer> onPreviousCommitted;

    private ColumnSource currentSource;
    private ColumnSource prevSource;
    private long prevValidityStep = -1;

    public SwitchColumnSource(ColumnSource currentSource) {
        this(currentSource, null);
    }

    public SwitchColumnSource(@NotNull final ColumnSource currentSource,
            @Nullable final Consumer> onPreviousCommitted) {
        super(currentSource.getType(), currentSource.getComponentType());
        this.updateCommitter = new UpdateCommitter<>(this, updateGraph, SwitchColumnSource::clearPrevious);
        this.onPreviousCommitted = onPreviousCommitted;
        this.currentSource = currentSource;
    }

    private void clearPrevious() {
        final ColumnSource captured = prevSource;
        prevValidityStep = -1;
        prevSource = null;
        if (onPreviousCommitted != null) {
            onPreviousCommitted.accept(captured);
        }
    }

    public void setNewCurrent(ColumnSource newCurrent) {
        Assert.eq(newCurrent.getType(), "newCurrent.getType()", getType(), "getType()");
        Assert.eq(newCurrent.getComponentType(), "newCurrent.getComponentType()", getComponentType(),
                "getComponentType()");
        prevSource = currentSource;
        prevValidityStep = updateGraph.clock().currentStep();
        currentSource = newCurrent;
        updateCommitter.maybeActivate();
    }

    @Override
    public boolean isImmutable() {
        return false;
    }

    private abstract class SwitchContext implements Context {

        final int chunkCapacity;
        final SharedContext sharedContext;

        private CT currentContext;
        private CT prevContext;

        private SwitchContext(final int chunkCapacity, final SharedContext sharedContext) {
            this.chunkCapacity = Require.geqZero(chunkCapacity, "chunkCapacity");
            this.sharedContext = sharedContext;
        }

        abstract CT makeContext(@NotNull final ColumnSource innerSource);

        public CT getCurrentContext() {
            return currentContext == null
                    ? currentContext = makeContext(currentSource)
                    : currentContext;
        }

        public CT getPrevContext() {
            return prevInvalid()
                    ? getCurrentContext()
                    : prevContext == null
                            ? prevContext = makeContext(prevSource)
                            : prevContext;
        }

        @Override
        public void close() {
            // noinspection EmptyTryBlock
            try (final SafeCloseable ignored1 = currentContext;
                    final SafeCloseable ignored2 = prevContext) {
            }
        }
    }

    private class SwitchFillContext extends SwitchContext implements FillContext {

        private SwitchFillContext(final int chunkCapacity, final SharedContext sharedContext) {
            super(chunkCapacity, sharedContext);
        }

        @Override
        FillContext makeContext(@NotNull final ColumnSource innerSource) {
            return innerSource.makeFillContext(chunkCapacity, sharedContext);
        }
    }

    @Override
    public FillContext makeFillContext(final int chunkCapacity, final SharedContext sharedContext) {
        return new SwitchFillContext(chunkCapacity, sharedContext);
    }

    @Override
    public void fillChunk(@NotNull final FillContext context,
            @NotNull final WritableChunk destination,
            @NotNull final RowSequence rowSequence) {
        // noinspection unchecked
        currentSource.fillChunk(((SwitchFillContext) context).getCurrentContext(), destination, rowSequence);
    }

    @Override
    public void fillPrevChunk(@NotNull final FillContext context,
            @NotNull final WritableChunk destination,
            @NotNull final RowSequence rowSequence) {
        if (prevInvalid()) {
            // noinspection unchecked
            currentSource.fillPrevChunk(((SwitchFillContext) context).getCurrentContext(), destination, rowSequence);
            return;
        }
        // noinspection unchecked
        prevSource.fillPrevChunk(((SwitchFillContext) context).getPrevContext(), destination, rowSequence);
    }

    private class SwitchGetContext extends SwitchContext implements GetContext {

        private SwitchGetContext(final int chunkCapacity, final SharedContext sharedContext) {
            super(chunkCapacity, sharedContext);
        }

        @Override
        GetContext makeContext(@NotNull final ColumnSource innerSource) {
            return innerSource.makeGetContext(chunkCapacity, sharedContext);
        }
    }

    @Override
    public GetContext makeGetContext(final int chunkCapacity, final SharedContext sharedContext) {
        return new SwitchGetContext(chunkCapacity, sharedContext);
    }

    @Override
    public Chunk getChunk(@NotNull final GetContext context,
            @NotNull final RowSequence rowSequence) {
        // noinspection unchecked
        return currentSource.getChunk(((SwitchGetContext) context).getCurrentContext(), rowSequence);
    }

    @Override
    public Chunk getPrevChunk(@NotNull final GetContext context,
            @NotNull final RowSequence rowSequence) {
        if (prevInvalid()) {
            // noinspection unchecked
            return currentSource.getPrevChunk(((SwitchGetContext) context).getCurrentContext(), rowSequence);
        }
        // noinspection unchecked
        return prevSource.getPrevChunk(((SwitchGetContext) context).getPrevContext(), rowSequence);
    }

    @Override
    public T get(final long rowKey) {
        return currentSource.get(rowKey);
    }

    @Override
    public Boolean getBoolean(final long rowKey) {
        return currentSource.getBoolean(rowKey);
    }

    @Override
    public byte getByte(final long rowKey) {
        return currentSource.getByte(rowKey);
    }

    @Override
    public char getChar(final long rowKey) {
        return currentSource.getChar(rowKey);
    }

    @Override
    public double getDouble(final long rowKey) {
        return currentSource.getDouble(rowKey);
    }

    @Override
    public float getFloat(final long rowKey) {
        return currentSource.getFloat(rowKey);
    }

    @Override
    public int getInt(final long rowKey) {
        return currentSource.getInt(rowKey);
    }

    @Override
    public long getLong(final long rowKey) {
        return currentSource.getLong(rowKey);
    }

    @Override
    public short getShort(final long rowKey) {
        return currentSource.getShort(rowKey);
    }

    @Override
    public T getPrev(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrev(rowKey);
        }
        return prevSource.getPrev(rowKey);
    }

    @Override
    public Boolean getPrevBoolean(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevBoolean(rowKey);
        }
        return prevSource.getPrevBoolean(rowKey);
    }

    @Override
    public byte getPrevByte(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevByte(rowKey);
        }
        return prevSource.getPrevByte(rowKey);
    }

    @Override
    public char getPrevChar(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevChar(rowKey);
        }
        return prevSource.getPrevChar(rowKey);
    }

    @Override
    public double getPrevDouble(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevDouble(rowKey);
        }
        return prevSource.getPrevDouble(rowKey);
    }

    @Override
    public float getPrevFloat(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevFloat(rowKey);
        }
        return prevSource.getPrevFloat(rowKey);
    }

    @Override
    public int getPrevInt(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevInt(rowKey);
        }
        return prevSource.getPrevInt(rowKey);
    }

    @Override
    public long getPrevLong(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevLong(rowKey);
        }
        return prevSource.getPrevLong(rowKey);
    }

    @Override
    public short getPrevShort(final long rowKey) {
        if (prevInvalid()) {
            return currentSource.getPrevShort(rowKey);
        }
        return prevSource.getPrevShort(rowKey);
    }

    private boolean prevInvalid() {
        return prevValidityStep == -1 || prevValidityStep != updateGraph.clock().currentStep();
    }

    @Override
    public boolean isStateless() {
        return currentSource.isStateless() && (prevInvalid() || prevSource.isStateless());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy