org.apache.parquet.internal.column.columnindex.DoubleColumnIndexBuilder Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.parquet.internal.column.columnindex;
import static java.nio.ByteOrder.LITTLE_ENDIAN;
import java.nio.ByteBuffer;
import org.apache.parquet.filter2.predicate.Statistics;
import org.apache.parquet.io.api.Binary;
import org.apache.parquet.schema.PrimitiveComparator;
import org.apache.parquet.schema.PrimitiveType;
import it.unimi.dsi.fastutil.doubles.DoubleArrayList;
import it.unimi.dsi.fastutil.doubles.DoubleList;
class DoubleColumnIndexBuilder extends ColumnIndexBuilder {
private static class DoubleColumnIndex extends ColumnIndexBase {
private double[] minValues;
private double[] maxValues;
private DoubleColumnIndex(PrimitiveType type) {
super(type);
}
@Override
ByteBuffer getMinValueAsBytes(int pageIndex) {
return convert(minValues[pageIndex]);
}
@Override
ByteBuffer getMaxValueAsBytes(int pageIndex) {
return convert(maxValues[pageIndex]);
}
@Override
String getMinValueAsString(int pageIndex) {
return stringifier.stringify(minValues[pageIndex]);
}
@Override
String getMaxValueAsString(int pageIndex) {
return stringifier.stringify(maxValues[pageIndex]);
}
@Override
@SuppressWarnings("unchecked")
> Statistics createStats(int arrayIndex) {
return (Statistics) new Statistics<>(minValues[arrayIndex], maxValues[arrayIndex], comparator);
}
@Override
ValueComparator createValueComparator(Object value) {
final double v = (double) value;
return new ValueComparator() {
@Override
int compareValueToMin(int arrayIndex) {
return comparator.compare(v, minValues[arrayIndex]);
}
@Override
int compareValueToMax(int arrayIndex) {
return comparator.compare(v, maxValues[arrayIndex]);
}
};
}
}
private final DoubleList minValues = new DoubleArrayList();
private final DoubleList maxValues = new DoubleArrayList();
private boolean invalid;
private static double convert(ByteBuffer buffer) {
return buffer.order(LITTLE_ENDIAN).getDouble(0);
}
private static ByteBuffer convert(double value) {
return ByteBuffer.allocate(Double.BYTES).order(LITTLE_ENDIAN).putDouble(0, value);
}
@Override
void addMinMaxFromBytes(ByteBuffer min, ByteBuffer max) {
minValues.add(convert(min));
maxValues.add(convert(max));
}
@Override
void addMinMax(Object min, Object max) {
double dMin = (double) min;
double dMax = (double) max;
if (Double.isNaN(dMin) || Double.isNaN(dMax)) {
// Invalidate this column index in case of NaN as the sorting order of values is undefined for this case
invalid = true;
}
// Sorting order is undefined for -0.0 so let min = -0.0 and max = +0.0 to ensure that no 0.0 values are skipped
if (Double.compare(dMin, +0.0) == 0) {
dMin = -0.0;
}
if (Double.compare(dMax, -0.0) == 0) {
dMax = +0.0;
}
minValues.add(dMin);
maxValues.add(dMax);
}
@Override
ColumnIndexBase createColumnIndex(PrimitiveType type) {
if (invalid) {
return null;
}
DoubleColumnIndex columnIndex = new DoubleColumnIndex(type);
columnIndex.minValues = minValues.toDoubleArray();
columnIndex.maxValues = maxValues.toDoubleArray();
return columnIndex;
}
@Override
void clearMinMax() {
minValues.clear();
maxValues.clear();
}
@Override
int compareMinValues(PrimitiveComparator comparator, int index1, int index2) {
return comparator.compare(minValues.get(index1), minValues.get(index2));
}
@Override
int compareMaxValues(PrimitiveComparator comparator, int index1, int index2) {
return comparator.compare(maxValues.get(index1), maxValues.get(index2));
}
@Override
int sizeOf(Object value) {
return Double.BYTES;
}
}