io.trino.operator.aggregation.histogram.HistogramState Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.trino.operator.aggregation.histogram;
import io.trino.spi.block.Block;
import io.trino.spi.block.MapBlockBuilder;
import io.trino.spi.block.SqlMap;
import io.trino.spi.block.ValueBlock;
import io.trino.spi.function.AccumulatorState;
import io.trino.spi.function.AccumulatorStateMetadata;
import static io.trino.spi.type.BigintType.BIGINT;
@AccumulatorStateMetadata(
stateFactoryClass = HistogramStateFactory.class,
stateSerializerClass = HistogramStateSerializer.class,
typeParameters = "T",
serializedType = "map(T, BIGINT)")
public interface HistogramState
extends AccumulatorState
{
void add(ValueBlock block, int position, long count);
default void merge(HistogramState other)
{
SqlMap serializedState = ((SingleHistogramState) other).removeTempSerializedState();
int rawOffset = serializedState.getRawOffset();
Block rawKeyBlock = serializedState.getRawKeyBlock();
Block rawValueBlock = serializedState.getRawValueBlock();
ValueBlock rawKeyValues = rawKeyBlock.getUnderlyingValueBlock();
ValueBlock rawValueValues = rawValueBlock.getUnderlyingValueBlock();
for (int i = 0; i < serializedState.getSize(); i++) {
add(rawKeyValues, rawKeyBlock.getUnderlyingValuePosition(rawOffset + i), BIGINT.getLong(rawValueValues, rawValueBlock.getUnderlyingValuePosition(rawOffset + i)));
}
}
void writeAll(MapBlockBuilder out);
}