io.deephaven.engine.table.impl.updateby.delta.ByteDeltaOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-table Show documentation
Show all versions of deephaven-engine-table Show documentation
Engine Table: Implementation and closely-coupled utilities
/*
* ---------------------------------------------------------------------------------------------------------------------
* AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY - for any changes edit CharDeltaOperator and regenerate
* ---------------------------------------------------------------------------------------------------------------------
*/
package io.deephaven.engine.table.impl.updateby.delta;
import io.deephaven.api.updateby.DeltaControl;
import io.deephaven.api.updateby.NullBehavior;
import io.deephaven.base.verify.Assert;
import io.deephaven.chunk.Chunk;
import io.deephaven.chunk.ByteChunk;
import io.deephaven.chunk.attributes.Values;
import io.deephaven.engine.rowset.RowSet;
import io.deephaven.engine.table.ColumnSource;
import io.deephaven.engine.table.Table;
import io.deephaven.engine.table.impl.MatchPair;
import io.deephaven.engine.table.impl.sources.ReinterpretUtils;
import io.deephaven.engine.table.impl.updateby.UpdateByOperator;
import io.deephaven.engine.table.impl.updateby.internal.BaseByteUpdateByOperator;
import io.deephaven.engine.table.impl.util.RowRedirection;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import static io.deephaven.engine.rowset.RowSequence.NULL_ROW_KEY;
import static io.deephaven.util.QueryConstants.NULL_BYTE;
public class ByteDeltaOperator extends BaseByteUpdateByOperator {
private final DeltaControl control;
private ColumnSource> inputSource;
// region extra-fields
// endregion extra-fields
protected class Context extends BaseByteUpdateByOperator.Context {
public ByteChunk extends Values> byteValueChunk;
private byte lastVal = NULL_BYTE;
@SuppressWarnings("unused")
protected Context(final int affectedChunkSize, final int influencerChunkSize) {
super(affectedChunkSize);
}
@Override
public void setValueChunks(@NotNull final Chunk extends Values>[] valueChunks) {
byteValueChunk = valueChunks[0].asByteChunk();
}
@Override
public void push(int pos, int count) {
Assert.eq(count, "push count", 1);
// read the value from the values chunk
final byte currentVal = byteValueChunk.get(pos);
if (currentVal == NULL_BYTE) {
curVal = NULL_BYTE;
} else if (lastVal == NULL_BYTE) {
curVal = control.nullBehavior() == NullBehavior.NullDominates
? NULL_BYTE
: (control.nullBehavior() == NullBehavior.ZeroDominates
? (byte)0
: currentVal);
} else {
curVal = (byte)(currentVal - lastVal);
}
lastVal = currentVal;
}
}
public ByteDeltaOperator(
@NotNull final MatchPair pair,
@NotNull final DeltaControl control
// region extra-constructor-args
// endregion extra-constructor-args
) {
super(pair, new String[] { pair.rightColumn });
this.control = control;
// region constructor
// endregion constructor
}
@Override
public UpdateByOperator copy() {
return new ByteDeltaOperator(pair, control);
}
@Override
public void initializeSources(@NotNull final Table source, @Nullable final RowRedirection rowRedirection) {
super.initializeSources(source, rowRedirection);
inputSource = ReinterpretUtils.maybeConvertToPrimitive(source.getColumnSource(pair.rightColumn));
}
@Override
public void initializeCumulative(
@NotNull final UpdateByOperator.Context context,
final long firstUnmodifiedKey,
final long firstUnmodifiedTimestamp,
@NotNull final RowSet bucketRowSet) {
Context ctx = (Context) context;
ctx.reset();
if (firstUnmodifiedKey != NULL_ROW_KEY) {
// Retrieve the value from the input column.
ctx.lastVal = inputSource.getByte(firstUnmodifiedKey);
} else {
ctx.lastVal = NULL_BYTE;
}
}
// region extra-methods
// endregion extra-methods
@NotNull
@Override
public UpdateByOperator.Context makeUpdateContext(final int affectedChunkSize, final int influencerChunkSize) {
return new Context(affectedChunkSize, influencerChunkSize);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy