io.deephaven.engine.table.impl.sources.immutable.ImmutableConstantLongSource 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-2023 Deephaven Data Labs and Patent Pending
*/
/*
* ---------------------------------------------------------------------------------------------------------------------
* AUTO-GENERATED CLASS - DO NOT EDIT MANUALLY - for any changes edit ImmutableConstantCharSource and regenerate
* ---------------------------------------------------------------------------------------------------------------------
*/
package io.deephaven.engine.table.impl.sources.immutable;
import java.time.Instant;
import java.time.ZonedDateTime;
import java.time.LocalDate;
import java.time.LocalTime;
import io.deephaven.base.verify.Require;
import java.time.ZoneId;
import io.deephaven.engine.table.ColumnSource;
import io.deephaven.chunk.LongChunk;
import io.deephaven.chunk.WritableLongChunk;
import io.deephaven.chunk.WritableChunk;
import io.deephaven.chunk.attributes.Values;
import io.deephaven.engine.rowset.RowSequence;
import io.deephaven.engine.rowset.chunkattributes.RowKeys;
import io.deephaven.engine.table.impl.AbstractColumnSource;
import io.deephaven.engine.table.impl.ImmutableColumnSourceGetDefaults;
import io.deephaven.engine.table.impl.sources.*;
import io.deephaven.engine.table.impl.util.ShiftData;
import org.jetbrains.annotations.NotNull;
import static io.deephaven.engine.rowset.RowSequence.NULL_ROW_KEY;
// region boxing imports
import static io.deephaven.util.QueryConstants.NULL_LONG;
// endregion boxing imports
/**
* Constant-value immutable {@link io.deephaven.engine.table.ColumnSource} of {@code long}.
*/
public class ImmutableConstantLongSource
extends AbstractColumnSource
implements ImmutableColumnSourceGetDefaults.ForLong, ShiftData.ShiftCallback, InMemoryColumnSource,
RowKeyAgnosticChunkSource , ConvertibleTimeSource {
private final long value;
// region constructor
public ImmutableConstantLongSource(final long value) {
super(Long.class);
this.value = value;
}
// endregion constructor
@Override
public final long getLong(final long rowKey) {
if (rowKey == NULL_ROW_KEY) {
return NULL_LONG;
}
return value;
}
@Override
public final void fillChunk(
@NotNull final FillContext context,
@NotNull final WritableChunk super Values> destination,
@NotNull final RowSequence rowSequence) {
final int size = rowSequence.intSize();
destination.setSize(size);
destination.asWritableLongChunk().fillWithValue(0, size, value);
}
@Override
public final void fillPrevChunk(
@NotNull final FillContext context,
@NotNull final WritableChunk super Values> destination,
@NotNull final RowSequence rowSequence) {
fillChunk(context, destination, rowSequence);
}
@Override
public final void shift(final long start, final long end, final long offset) {}
@Override
public void fillChunkUnordered(
@NotNull FillContext context,
@NotNull WritableChunk super Values> dest,
@NotNull LongChunk extends RowKeys> keys) {
final WritableLongChunk super Values> destChunk = dest.asWritableLongChunk();
for (int ii = 0; ii < keys.size(); ++ii) {
destChunk.set(ii, keys.get(ii) == RowSequence.NULL_ROW_KEY ? NULL_LONG : value);
}
destChunk.setSize(keys.size());
}
@Override
public void fillPrevChunkUnordered(
@NotNull FillContext context,
@NotNull WritableChunk super Values> dest,
@NotNull LongChunk extends RowKeys> keys) {
fillChunkUnordered(context , dest, keys);
}
@Override
public boolean providesFillUnordered() {
return true;
}
// region reinterpretation
@Override
public boolean allowsReinterpret(@NotNull final Class alternateDataType) {
return alternateDataType == long.class || alternateDataType == Instant.class;
}
@SuppressWarnings("unchecked")
@Override
protected ColumnSource doReinterpret(@NotNull Class alternateDataType) {
if (alternateDataType == this.getType()) {
return (ColumnSource) this;
} else if (alternateDataType == Instant.class) {
return (ColumnSource) toInstant();
}
throw new IllegalArgumentException("Cannot reinterpret `" + getType().getName() + "` to `" + alternateDataType.getName() + "`");
}
@Override
public boolean supportsTimeConversion() {
return true;
}
@Override
public ColumnSource toZonedDateTime(@NotNull final ZoneId zone) {
return new ImmutableConstantZonedDateTimeSource(Require.neqNull(zone, "zone"), this);
}
@Override
public ColumnSource toLocalDate(@NotNull final ZoneId zone) {
return new LongAsLocalDateColumnSource(this, zone);
}
@Override
public ColumnSource toLocalTime(@NotNull final ZoneId zone) {
return new LongAsLocalTimeColumnSource(this, zone);
}
@Override
public ColumnSource toInstant() {
return new ImmutableConstantInstantSource(this);
}
@Override
public ColumnSource toEpochNano() {
return this;
}
// endregion reinterpretation
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy