ComputedStatistics.java
/*
* 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 com.facebook.presto.spi.statistics;
import com.facebook.presto.common.block.Block;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static java.util.Collections.unmodifiableList;
import static java.util.Collections.unmodifiableMap;
import static java.util.Objects.requireNonNull;
public class ComputedStatistics
{
private final List<String> groupingColumns;
private final List<Block> groupingValues;
private final Map<TableStatisticType, Block> tableStatistics;
private final Map<ColumnStatisticMetadata, Block> columnStatistics;
private ComputedStatistics(
List<String> groupingColumns,
List<Block> groupingValues,
Map<TableStatisticType, Block> tableStatistics,
Map<ColumnStatisticMetadata, Block> columnStatistics)
{
this.groupingColumns = unmodifiableList(new ArrayList<>(requireNonNull(groupingColumns, "groupingColumns is null")));
this.groupingValues = unmodifiableList(new ArrayList<>(requireNonNull(groupingValues, "groupingValues is null")));
if (!groupingValues.stream().allMatch(ComputedStatistics::isSingleValueBlock)) {
throw new IllegalArgumentException("grouping value blocks are expected to be single value blocks");
}
this.tableStatistics = unmodifiableMap(new HashMap<>(requireNonNull(tableStatistics, "tableStatistics is null")));
if (!tableStatistics.values().stream().allMatch(ComputedStatistics::isSingleValueBlock)) {
throw new IllegalArgumentException("computed table statistics blocks are expected to be single value blocks");
}
this.columnStatistics = unmodifiableMap(new HashMap<>(requireNonNull(columnStatistics, "columnStatistics is null")));
if (!columnStatistics.values().stream().allMatch(ComputedStatistics::isSingleValueBlock)) {
throw new IllegalArgumentException("computed column statistics blocks are expected to be single value blocks");
}
}
private static boolean isSingleValueBlock(Block block)
{
return block.getPositionCount() == 1;
}
public List<String> getGroupingColumns()
{
return groupingColumns;
}
public List<Block> getGroupingValues()
{
return groupingValues;
}
public Map<TableStatisticType, Block> getTableStatistics()
{
return tableStatistics;
}
public Map<ColumnStatisticMetadata, Block> getColumnStatistics()
{
return columnStatistics;
}
public static Builder builder(List<String> groupingColumns, List<Block> groupingValues)
{
return new Builder(groupingColumns, groupingValues);
}
public static class Builder
{
private final List<String> groupingColumns;
private final List<Block> groupingValues;
private final Map<TableStatisticType, Block> tableStatistics = new HashMap<>();
private final Map<ColumnStatisticMetadata, Block> columnStatistics = new HashMap<>();
private Builder(List<String> groupingColumns, List<Block> groupingValues)
{
this.groupingColumns = requireNonNull(groupingColumns, "groupingColumns is null");
this.groupingValues = requireNonNull(groupingValues, "groupingValues is null");
}
public Builder addTableStatistic(TableStatisticType type, Block value)
{
tableStatistics.put(type, value);
return this;
}
public Builder addColumnStatistic(ColumnStatisticMetadata columnStatisticMetadata, Block value)
{
columnStatistics.put(columnStatisticMetadata, value);
return this;
}
public ComputedStatistics build()
{
return new ComputedStatistics(groupingColumns, groupingValues, tableStatistics, columnStatistics);
}
}
}