Java tutorial
/* * 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.orc.writer; import com.facebook.presto.orc.checkpoint.BooleanStreamCheckpoint; import com.facebook.presto.orc.checkpoint.FloatStreamCheckpoint; import com.facebook.presto.orc.metadata.ColumnEncoding; import com.facebook.presto.orc.metadata.CompressionKind; import com.facebook.presto.orc.metadata.MetadataWriter; import com.facebook.presto.orc.metadata.RowGroupIndex; import com.facebook.presto.orc.metadata.Stream; import com.facebook.presto.orc.metadata.Stream.StreamKind; import com.facebook.presto.orc.metadata.statistics.ColumnStatistics; import com.facebook.presto.orc.metadata.statistics.DoubleStatisticsBuilder; import com.facebook.presto.orc.stream.FloatOutputStream; import com.facebook.presto.orc.stream.PresentOutputStream; import com.facebook.presto.spi.block.Block; import com.facebook.presto.spi.type.Type; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import io.airlift.slice.SliceOutput; import org.openjdk.jol.info.ClassLayout; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.Optional; import static com.facebook.presto.orc.metadata.ColumnEncoding.ColumnEncodingKind.DIRECT; import static com.facebook.presto.orc.metadata.CompressionKind.NONE; import static com.google.common.base.Preconditions.checkArgument; import static com.google.common.base.Preconditions.checkState; import static java.lang.Float.intBitsToFloat; import static java.util.Objects.requireNonNull; public class FloatColumnWriter implements ColumnWriter { private static final int INSTANCE_SIZE = ClassLayout.parseClass(FloatColumnWriter.class).instanceSize(); private static final ColumnEncoding COLUMN_ENCODING = new ColumnEncoding(DIRECT, 0); private final int column; private final Type type; private final boolean compressed; private final FloatOutputStream dataStream; private final PresentOutputStream presentStream; private final List<ColumnStatistics> rowGroupColumnStatistics = new ArrayList<>(); private DoubleStatisticsBuilder statisticsBuilder = new DoubleStatisticsBuilder(); private boolean closed; public FloatColumnWriter(int column, Type type, CompressionKind compression, int bufferSize) { checkArgument(column >= 0, "column is negative"); this.column = column; this.type = requireNonNull(type, "type is null"); this.compressed = requireNonNull(compression, "compression is null") != NONE; this.dataStream = new FloatOutputStream(compression, bufferSize); this.presentStream = new PresentOutputStream(compression, bufferSize); } @Override public Map<Integer, ColumnEncoding> getColumnEncodings() { return ImmutableMap.of(column, COLUMN_ENCODING); } @Override public void beginRowGroup() { presentStream.recordCheckpoint(); dataStream.recordCheckpoint(); } @Override public void writeBlock(Block block) { checkState(!closed); checkArgument(block.getPositionCount() > 0, "Block is empty"); // record nulls for (int position = 0; position < block.getPositionCount(); position++) { presentStream.writeBoolean(!block.isNull(position)); } // record values for (int position = 0; position < block.getPositionCount(); position++) { if (!block.isNull(position)) { int intBits = (int) type.getLong(block, position); float value = intBitsToFloat(intBits); dataStream.writeFloat(value); statisticsBuilder.addValue(value); } } } @Override public Map<Integer, ColumnStatistics> finishRowGroup() { checkState(!closed); ColumnStatistics statistics = statisticsBuilder.buildColumnStatistics(); rowGroupColumnStatistics.add(statistics); statisticsBuilder = new DoubleStatisticsBuilder(); return ImmutableMap.of(column, statistics); } @Override public void close() { closed = true; dataStream.close(); presentStream.close(); } @Override public Map<Integer, ColumnStatistics> getColumnStripeStatistics() { checkState(closed); return ImmutableMap.of(column, ColumnStatistics.mergeColumnStatistics(rowGroupColumnStatistics)); } @Override public List<Stream> writeIndexStreams(SliceOutput outputStream, MetadataWriter metadataWriter) throws IOException { checkState(closed); ImmutableList.Builder<RowGroupIndex> rowGroupIndexes = ImmutableList.builder(); List<FloatStreamCheckpoint> dataCheckpoints = dataStream.getCheckpoints(); Optional<List<BooleanStreamCheckpoint>> presentCheckpoints = presentStream.getCheckpoints(); for (int i = 0; i < rowGroupColumnStatistics.size(); i++) { int groupId = i; ColumnStatistics columnStatistics = rowGroupColumnStatistics.get(groupId); FloatStreamCheckpoint dataCheckpoint = dataCheckpoints.get(groupId); Optional<BooleanStreamCheckpoint> presentCheckpoint = presentCheckpoints .map(checkpoints -> checkpoints.get(groupId)); List<Integer> positions = createFloatColumnPositionList(compressed, dataCheckpoint, presentCheckpoint); rowGroupIndexes.add(new RowGroupIndex(positions, columnStatistics)); } int length = metadataWriter.writeRowIndexes(outputStream, rowGroupIndexes.build()); return ImmutableList.of(new Stream(column, StreamKind.ROW_INDEX, length, false)); } private static List<Integer> createFloatColumnPositionList(boolean compressed, FloatStreamCheckpoint dataCheckpoint, Optional<BooleanStreamCheckpoint> presentCheckpoint) { ImmutableList.Builder<Integer> positionList = ImmutableList.builder(); presentCheckpoint.ifPresent( booleanStreamCheckpoint -> positionList.addAll(booleanStreamCheckpoint.toPositionList(compressed))); positionList.addAll(dataCheckpoint.toPositionList(compressed)); return positionList.build(); } @Override public List<Stream> writeDataStreams(SliceOutput outputStream) throws IOException { checkState(closed); ImmutableList.Builder<Stream> dataStreams = ImmutableList.builder(); presentStream.writeDataStreams(column, outputStream).ifPresent(dataStreams::add); dataStream.writeDataStreams(column, outputStream).ifPresent(dataStreams::add); return dataStreams.build(); } @Override public long getBufferedBytes() { return dataStream.getBufferedBytes() + presentStream.getBufferedBytes(); } @Override public long getRetainedBytes() { // NOTE: we do not include stats because they should be small and it would be annoying to calculate the size return INSTANCE_SIZE + dataStream.getRetainedBytes() + presentStream.getRetainedBytes(); } @Override public void reset() { closed = false; dataStream.reset(); presentStream.reset(); rowGroupColumnStatistics.clear(); statisticsBuilder = new DoubleStatisticsBuilder(); } }