io.trino.orc.metadata.statistics.IntegerStatisticsBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-orc Show documentation
Show all versions of trino-orc Show documentation
Trino - ORC file format support
The newest version!
/*
* 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.orc.metadata.statistics;
import java.util.List;
import java.util.Optional;
import static io.trino.orc.metadata.statistics.IntegerStatistics.INTEGER_VALUE_BYTES;
import static java.lang.Math.addExact;
import static java.util.Objects.requireNonNull;
public class IntegerStatisticsBuilder
implements LongValueStatisticsBuilder
{
private long nonNullValueCount;
private long minimum = Long.MAX_VALUE;
private long maximum = Long.MIN_VALUE;
private long sum;
private boolean overflow;
private final BloomFilterBuilder bloomFilterBuilder;
public IntegerStatisticsBuilder(BloomFilterBuilder bloomFilterBuilder)
{
this.bloomFilterBuilder = requireNonNull(bloomFilterBuilder, "bloomFilterBuilder is null");
}
@Override
public void addValue(long value)
{
nonNullValueCount++;
minimum = Math.min(value, minimum);
maximum = Math.max(value, maximum);
if (!overflow) {
try {
sum = addExact(sum, value);
}
catch (ArithmeticException e) {
overflow = true;
}
}
bloomFilterBuilder.addLong(value);
}
private void addIntegerStatistics(long valueCount, IntegerStatistics value)
{
requireNonNull(value, "value is null");
requireNonNull(value.getMin(), "value.getMin() is null");
requireNonNull(value.getMax(), "value.getMax() is null");
nonNullValueCount += valueCount;
minimum = Math.min(value.getMin(), minimum);
maximum = Math.max(value.getMax(), maximum);
if (value.getSum() == null) {
// if input value does not have a sum tag this stat as overflowed
// to prevent creation of the sum stats (since it was not provided
// for these values).
overflow = true;
}
else if (!overflow) {
try {
sum = addExact(sum, value.getSum());
}
catch (ArithmeticException e) {
overflow = true;
}
}
}
private Optional buildIntegerStatistics()
{
if (nonNullValueCount == 0) {
return Optional.empty();
}
return Optional.of(new IntegerStatistics(minimum, maximum, overflow ? null : sum));
}
@Override
public ColumnStatistics buildColumnStatistics()
{
Optional integerStatistics = buildIntegerStatistics();
return new ColumnStatistics(
nonNullValueCount,
integerStatistics.map(s -> INTEGER_VALUE_BYTES).orElse(0L),
null,
integerStatistics.orElse(null),
null,
null,
null,
null,
null,
null,
null,
bloomFilterBuilder.buildBloomFilter());
}
public static Optional mergeIntegerStatistics(List stats)
{
IntegerStatisticsBuilder integerStatisticsBuilder = new IntegerStatisticsBuilder(new NoOpBloomFilterBuilder());
for (ColumnStatistics columnStatistics : stats) {
IntegerStatistics partialStatistics = columnStatistics.getIntegerStatistics();
if (columnStatistics.getNumberOfValues() > 0) {
if (partialStatistics == null) {
// there are non null values but no statistics, so we cannot say anything about the data
return Optional.empty();
}
integerStatisticsBuilder.addIntegerStatistics(columnStatistics.getNumberOfValues(), partialStatistics);
}
}
return integerStatisticsBuilder.buildIntegerStatistics();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy