| /** |
| * Copyright 2012 Twitter, Inc. |
| * |
| * 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 parquet.column.values.bitpacking; |
| |
| import java.io.IOException; |
| import java.util.Arrays; |
| |
| import parquet.Log; |
| import parquet.bytes.BytesUtils; |
| import parquet.column.values.ValuesReader; |
| |
| public class ByteBitPackingValuesReader extends ValuesReader { |
| private static final int VALUES_AT_A_TIME = 8; // because we're using unpack8Values() |
| |
| private static final Log LOG = Log.getLog(ByteBitPackingValuesReader.class); |
| |
| private final int bitWidth; |
| private final BytePacker packer; |
| private final int[] decoded = new int[VALUES_AT_A_TIME]; |
| private int decodedPosition = VALUES_AT_A_TIME - 1; |
| private byte[] encoded; |
| private int encodedPos; |
| |
| public ByteBitPackingValuesReader(int bound) { |
| this.bitWidth = BytesUtils.getWidthFromMaxInt(bound); |
| this.packer = ByteBitPacking.getPacker(bitWidth); |
| } |
| |
| @Override |
| public int readInteger() { |
| ++ decodedPosition; |
| if (decodedPosition == decoded.length) { |
| if (encodedPos + bitWidth > encoded.length) { |
| packer.unpack8Values(Arrays.copyOfRange(encoded, encodedPos, encodedPos + bitWidth), 0, decoded, 0); |
| } else { |
| packer.unpack8Values(encoded, encodedPos, decoded, 0); |
| } |
| encodedPos += bitWidth; |
| decodedPosition = 0; |
| } |
| return decoded[decodedPosition]; |
| } |
| |
| @Override |
| public int initFromPage(long valueCount, byte[] page, int offset) |
| throws IOException { |
| // TODO: int vs long |
| int effectiveBitLength = (int)valueCount * bitWidth; |
| int length = BytesUtils.paddedByteCountFromBits(effectiveBitLength); // ceil |
| if (Log.DEBUG) LOG.debug("reading " + length + " bytes for " + valueCount + " values of size " + bitWidth + " bits." ); |
| this.encoded = page; |
| this.encodedPos = offset; |
| this.decodedPosition = VALUES_AT_A_TIME - 1; |
| return offset + length; |
| } |
| |
| } |