io.deephaven.engine.table.impl.sources.regioned.RegionedColumnSourceDouble 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 RegionedColumnSourceChar and regenerate
* ---------------------------------------------------------------------------------------------------------------------
*/
package io.deephaven.engine.table.impl.sources.regioned;
import io.deephaven.engine.rowset.RowSequence;
import io.deephaven.engine.table.ColumnDefinition;
import io.deephaven.engine.table.impl.locations.ColumnLocation;
import io.deephaven.engine.table.impl.locations.TableDataException;
import io.deephaven.engine.table.impl.locations.TableLocationKey;
import io.deephaven.engine.table.impl.ColumnSourceGetDefaults;
import io.deephaven.chunk.attributes.Values;
import org.jetbrains.annotations.NotNull;
import static io.deephaven.util.type.TypeUtils.unbox;
/**
* Regioned column source implementation for columns of doubles.
*/
abstract class RegionedColumnSourceDouble
extends RegionedColumnSourceArray>
implements ColumnSourceGetDefaults.ForDouble /* MIXIN_INTERFACES */ {
RegionedColumnSourceDouble(@NotNull final ColumnRegionDouble nullRegion,
@NotNull final MakeDeferred> makeDeferred) {
super(nullRegion, double.class, makeDeferred);
}
@Override
public double getDouble(final long rowKey) {
return (rowKey == RowSequence.NULL_ROW_KEY ? getNullRegion() : lookupRegion(rowKey)).getDouble(rowKey);
}
interface MakeRegionDefault extends MakeRegion> {
@Override
default ColumnRegionDouble makeRegion(@NotNull final ColumnDefinition> columnDefinition,
@NotNull final ColumnLocation columnLocation,
final int regionIndex) {
if (columnLocation.exists()) {
return columnLocation.makeColumnRegionDouble(columnDefinition);
}
return null;
}
}
// region reinterpretation
// endregion reinterpretation
static final class AsValues extends RegionedColumnSourceDouble implements MakeRegionDefault {
AsValues() {
super(ColumnRegionDouble.createNull(PARAMETERS.regionMask), DeferredColumnRegionDouble::new);
}
}
static final class Partitioning extends RegionedColumnSourceDouble {
Partitioning() {
super(ColumnRegionDouble.createNull(PARAMETERS.regionMask),
(pm, rs) -> rs.get() // No need to interpose a deferred region in this case
);
}
@Override
public ColumnRegionDouble makeRegion(@NotNull final ColumnDefinition> columnDefinition,
@NotNull final ColumnLocation columnLocation,
final int regionIndex) {
final TableLocationKey locationKey = columnLocation.getTableLocation().getKey();
final Object partitioningColumnValue = locationKey.getPartitionValue(columnDefinition.getName());
if (partitioningColumnValue != null && !Double.class.isAssignableFrom(partitioningColumnValue.getClass())) {
throw new TableDataException("Unexpected partitioning column value type for " + columnDefinition.getName()
+ ": " + partitioningColumnValue + " is not a Double at location " + locationKey);
}
return new ColumnRegionDouble.Constant<>(regionMask(), unbox((Double) partitioningColumnValue));
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy