io.deephaven.engine.table.impl.updateby.rollingsum.BigDecimalRollingSumOperator 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
package io.deephaven.engine.table.impl.updateby.rollingsum;
import io.deephaven.base.RingBuffer;
import io.deephaven.chunk.Chunk;
import io.deephaven.chunk.ObjectChunk;
import io.deephaven.chunk.attributes.Values;
import io.deephaven.engine.table.impl.MatchPair;
import io.deephaven.engine.table.impl.updateby.UpdateByOperator;
import io.deephaven.engine.table.impl.updateby.internal.BaseObjectUpdateByOperator;
import io.deephaven.engine.table.impl.util.RowRedirection;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.math.BigDecimal;
import java.math.MathContext;
public final class BigDecimalRollingSumOperator extends BaseObjectUpdateByOperator {
private static final int RING_BUFFER_INITIAL_CAPACITY = 512;
@NotNull
private final MathContext mathContext;
protected class Context extends BaseObjectUpdateByOperator.Context {
protected ObjectChunk objectInfluencerValuesChunk;
protected RingBuffer objectWindowValues;
protected Context(final int chunkSize) {
super(chunkSize);
objectWindowValues = new RingBuffer<>(RING_BUFFER_INITIAL_CAPACITY);
}
@Override
public void close() {
super.close();
objectWindowValues = null;
}
@Override
public void setValueChunks(@NotNull final Chunk extends Values>[] valueChunks) {
objectInfluencerValuesChunk = valueChunks[0].asObjectChunk();
}
@Override
public void push(int pos, int count) {
for (int ii = 0; ii < count; ii++) {
BigDecimal val = objectInfluencerValuesChunk.get(pos + ii);
objectWindowValues.add(val);
// increase the running sum
if (val != null) {
if (curVal == null) {
curVal = val;
} else {
curVal = curVal.add(val, mathContext);
}
} else {
nullCount++;
}
}
}
@Override
public void pop(int count) {
for (int ii = 0; ii < count; ii++) {
BigDecimal val = objectWindowValues.remove();
// reduce the running sum
if (val != null) {
curVal = curVal.subtract(val, mathContext);
} else {
nullCount--;
}
}
}
@Override
public void writeToOutputChunk(int outIdx) {
if (objectWindowValues.size() == nullCount) {
outputValues.set(outIdx, null);
curVal = null;
} else {
outputValues.set(outIdx, curVal);
}
}
@Override
public void reset() {
super.reset();
objectWindowValues.clear();
}
}
@NotNull
@Override
public UpdateByOperator.Context makeUpdateContext(final int affectedChunkSize, final int influencerChunkSize) {
return new Context(affectedChunkSize);
}
public BigDecimalRollingSumOperator(@NotNull final MatchPair pair,
@NotNull final String[] affectingColumns,
@Nullable final RowRedirection rowRedirection,
@Nullable final String timestampColumnName,
final long reverseWindowScaleUnits,
final long forwardWindowScaleUnits,
@NotNull final MathContext mathContext) {
super(pair, affectingColumns, rowRedirection, timestampColumnName, reverseWindowScaleUnits,
forwardWindowScaleUnits, true, BigDecimal.class);
this.mathContext = mathContext;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy