io.deephaven.engine.table.impl.updateby.minmax.LongCumMinMaxOperator 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 ShortCumMinMaxOperator and regenerate
* ---------------------------------------------------------------------------------------------------------------------
*/
package io.deephaven.engine.table.impl.updateby.minmax;
import java.time.Instant;
import java.util.Map;
import java.util.Collections;
import io.deephaven.engine.table.ColumnSource;
import io.deephaven.engine.table.impl.sources.ReinterpretUtils;
import io.deephaven.base.verify.Assert;
import io.deephaven.chunk.Chunk;
import io.deephaven.chunk.LongChunk;
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.BaseLongUpdateByOperator;
import io.deephaven.engine.table.impl.util.RowRedirection;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import static io.deephaven.util.QueryConstants.*;
public class LongCumMinMaxOperator extends BaseLongUpdateByOperator {
private final boolean isMax;
// region extra-fields
private final Class> type;
// endregion extra-fields
protected class Context extends BaseLongUpdateByOperator.Context {
public LongChunk extends Values> longValueChunk;
protected Context(final int chunkSize) {
super(chunkSize);
}
@Override
public void setValueChunks(@NotNull final Chunk extends Values>[] valueChunks) {
longValueChunk = valueChunks[0].asLongChunk();
}
@Override
public void push(int pos, int count) {
Assert.eq(count, "push count", 1);
final long val = longValueChunk.get(pos);
if (curVal == NULL_LONG) {
curVal = val;
} else if (val != NULL_LONG) {
if ((isMax && val > curVal) ||
(!isMax && val < curVal)) {
curVal = val;
}
}
}
}
public LongCumMinMaxOperator(@NotNull final MatchPair pair,
final boolean isMax,
@Nullable final RowRedirection rowRedirection
// region extra-constructor-args
,@NotNull final Class> type
// endregion extra-constructor-args
) {
super(pair, new String[] { pair.rightColumn }, rowRedirection);
this.isMax = isMax;
// region constructor
this.type = type;
// endregion constructor
}
// region extra-methods
@NotNull
@Override
public Map> getOutputColumns() {
final ColumnSource> actualOutput;
if(type == Instant.class) {
actualOutput = ReinterpretUtils.longToInstantSource(outputSource);
} else {
actualOutput = outputSource;
}
return Collections.singletonMap(pair.leftColumn, actualOutput);
}
// endregion extra-methods
@NotNull
@Override
public UpdateByOperator.Context makeUpdateContext(final int affectedChunkSize, final int influencerChunkSize) {
return new Context(affectedChunkSize);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy