io.deephaven.engine.table.impl.by.ssmminmax.IntSetResult 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
/**
* Copyright (c) 2016-2022 Deephaven Data Labs and Patent Pending
*/
/*
* ---------------------------------------------------------------------------------------------------------------------
* AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY - for any changes edit CharSetResult and regenerate
* ---------------------------------------------------------------------------------------------------------------------
*/
package io.deephaven.engine.table.impl.by.ssmminmax;
import io.deephaven.engine.table.WritableColumnSource;
import io.deephaven.engine.table.impl.sources.IntegerArraySource;
import io.deephaven.engine.table.impl.ssms.IntSegmentedSortedMultiset;
import io.deephaven.engine.table.impl.ssms.SegmentedSortedMultiSet;
import static io.deephaven.util.QueryConstants.NULL_INT;
public class IntSetResult implements SsmChunkedMinMaxOperator.SetResult {
private final boolean minimum;
private final IntegerArraySource resultColumn;
public IntSetResult(boolean minimum, WritableColumnSource resultColumn) {
this.minimum = minimum;
this.resultColumn = (IntegerArraySource) resultColumn;
}
@Override
public boolean setResult(SegmentedSortedMultiSet ssm, long destination) {
final int newResult;
if (ssm.size() == 0) {
newResult = NULL_INT;
} else {
final IntSegmentedSortedMultiset intSsm = (IntSegmentedSortedMultiset) ssm;
newResult = minimum ? intSsm.getMinInt() : intSsm.getMaxInt();
}
return setResult(destination, newResult);
}
@Override
public boolean setResultNull(long destination) {
return setResult(destination, NULL_INT);
}
private boolean setResult(long destination, int newResult) {
final int oldResult = resultColumn.getAndSetUnsafe(destination, newResult);
return oldResult != newResult;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy