VariableWidthBlock.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.common.block;
import io.airlift.slice.Slice;
import io.airlift.slice.SliceOutput;
import io.airlift.slice.Slices;
import io.airlift.slice.UnsafeSlice;
import org.openjdk.jol.info.ClassLayout;
import javax.annotation.Nullable;
import java.util.Arrays;
import java.util.Objects;
import java.util.Optional;
import java.util.OptionalInt;
import java.util.function.ObjLongConsumer;
import static com.facebook.presto.common.block.BlockUtil.appendNullToIsNullArray;
import static com.facebook.presto.common.block.BlockUtil.appendNullToOffsetsArray;
import static com.facebook.presto.common.block.BlockUtil.checkArrayRange;
import static com.facebook.presto.common.block.BlockUtil.checkValidPositions;
import static com.facebook.presto.common.block.BlockUtil.checkValidRegion;
import static com.facebook.presto.common.block.BlockUtil.compactArray;
import static com.facebook.presto.common.block.BlockUtil.compactOffsets;
import static com.facebook.presto.common.block.BlockUtil.compactSlice;
import static com.facebook.presto.common.block.BlockUtil.internalPositionInRange;
import static io.airlift.slice.SizeOf.sizeOf;
import static io.airlift.slice.Slices.EMPTY_SLICE;
import static java.lang.String.format;
/**
* A block that contains positionCount elements.
* All block methods are supported: getInt(), getLong(), etc.
* Whether the values they return make sense depends on what
* was stored at that position.
*/
public class VariableWidthBlock
extends AbstractVariableWidthBlock
{
private static final int INSTANCE_SIZE = ClassLayout.parseClass(VariableWidthBlock.class).instanceSize();
private final int arrayOffset;
private final int positionCount;
private final Slice slice;
private final int[] offsets;
@Nullable
private final boolean[] valueIsNull;
private final long retainedSizeInBytes;
private final long sizeInBytes;
public VariableWidthBlock(int positionCount, Slice slice, int[] offsets, Optional<boolean[]> valueIsNull)
{
this(0, positionCount, slice, offsets, valueIsNull.orElse(null));
}
VariableWidthBlock(int arrayOffset, int positionCount, Slice slice, int[] offsets, boolean[] valueIsNull)
{
if (arrayOffset < 0) {
throw new IllegalArgumentException("arrayOffset is negative");
}
this.arrayOffset = arrayOffset;
if (positionCount < 0) {
throw new IllegalArgumentException("positionCount is negative");
}
this.positionCount = positionCount;
if (slice == null) {
throw new IllegalArgumentException("slice is null");
}
this.slice = slice;
if (offsets.length - arrayOffset < (positionCount + 1)) {
throw new IllegalArgumentException("offsets length is less than positionCount");
}
this.offsets = offsets;
if (valueIsNull != null && valueIsNull.length - arrayOffset < positionCount) {
throw new IllegalArgumentException("valueIsNull length is less than positionCount");
}
this.valueIsNull = valueIsNull;
sizeInBytes = offsets[arrayOffset + positionCount] - offsets[arrayOffset] + ((Integer.BYTES + Byte.BYTES) * (long) positionCount);
retainedSizeInBytes = INSTANCE_SIZE + slice.getRetainedSize() + sizeOf(valueIsNull) + sizeOf(offsets);
}
@Override
public final int getPositionOffset(int position)
{
return offsets[position + arrayOffset];
}
@Override
public int getSliceLength(int position)
{
checkReadablePosition(position);
return getSliceLengthUnchecked(position + arrayOffset);
}
@Override
public boolean mayHaveNull()
{
return valueIsNull != null;
}
@Override
protected boolean isEntryNull(int position)
{
return valueIsNull != null && valueIsNull[position + arrayOffset];
}
@Override
public int getPositionCount()
{
return positionCount;
}
@Override
public long getSizeInBytes()
{
return sizeInBytes;
}
@Override
public OptionalInt fixedSizeInBytesPerPosition()
{
return OptionalInt.empty(); // size is variable based on the per element length
}
@Override
public long getRegionSizeInBytes(int position, int length)
{
return offsets[arrayOffset + position + length] - offsets[arrayOffset + position] + ((Integer.BYTES + Byte.BYTES) * (long) length);
}
@Override
public long getPositionsSizeInBytes(boolean[] positions, int usedPositionCount)
{
checkValidPositions(positions, positionCount);
if (usedPositionCount == 0) {
return 0;
}
if (usedPositionCount == positionCount) {
return getSizeInBytes();
}
int sizeInBytes = 0;
for (int i = 0; i < positions.length; ++i) {
if (positions[i]) {
sizeInBytes += (offsets[arrayOffset + i + 1] - offsets[arrayOffset + i]);
}
}
return sizeInBytes + ((Integer.BYTES + Byte.BYTES) * (long) usedPositionCount);
}
@Override
public long getRetainedSizeInBytes()
{
return retainedSizeInBytes;
}
@Override
public void retainedBytesForEachPart(ObjLongConsumer<Object> consumer)
{
// For VariableWidthBlocks created from deserialized pages, it refers to byte array of whole page.
// When a page size is calculated, this byte array gets counted x number of times resulting in incorrect page size
// This problem is solved by accounting slice memory & underlying byte array separately while ensuring same object is counted once
if (slice.getBase() != null && slice.hasByteArray()) {
consumer.accept(slice, EMPTY_SLICE.getRetainedSize());
consumer.accept(slice.getBase(), sizeOf((byte[]) slice.getBase()));
}
else {
consumer.accept(slice, slice.getRetainedSize());
}
consumer.accept(offsets, sizeOf(offsets));
if (valueIsNull != null) {
consumer.accept(valueIsNull, sizeOf(valueIsNull));
}
consumer.accept(this, INSTANCE_SIZE);
}
@Override
public Block copyPositions(int[] positions, int offset, int length)
{
checkArrayRange(positions, offset, length);
int finalLength = 0;
for (int i = offset; i < offset + length; i++) {
finalLength += getSliceLength(positions[i]);
}
SliceOutput newSlice = Slices.allocate(finalLength).getOutput();
int[] newOffsets = new int[length + 1];
boolean[] newValueIsNull = null;
if (valueIsNull != null) {
newValueIsNull = new boolean[length];
}
for (int i = 0; i < length; i++) {
int position = positions[offset + i];
if (!isEntryNull(position)) {
newSlice.writeBytes(slice, getPositionOffset(position), getSliceLength(position));
}
else if (newValueIsNull != null) {
newValueIsNull[i] = true;
}
newOffsets[i + 1] = newSlice.size();
}
return new VariableWidthBlock(0, length, newSlice.slice(), newOffsets, newValueIsNull);
}
@Override
public Slice getRawSlice(int position)
{
return slice;
}
@Override
public Block getRegion(int positionOffset, int length)
{
checkValidRegion(getPositionCount(), positionOffset, length);
return new VariableWidthBlock(positionOffset + arrayOffset, length, slice, offsets, valueIsNull);
}
@Override
public Block copyRegion(int positionOffset, int length)
{
checkValidRegion(getPositionCount(), positionOffset, length);
positionOffset += arrayOffset;
int[] newOffsets = compactOffsets(offsets, positionOffset, length);
Slice newSlice = compactSlice(slice, offsets[positionOffset], newOffsets[length]);
boolean[] newValueIsNull = valueIsNull == null ? null : compactArray(valueIsNull, positionOffset, length);
if (newOffsets == offsets && newSlice == slice && newValueIsNull == valueIsNull) {
return this;
}
return new VariableWidthBlock(0, length, newSlice, newOffsets, newValueIsNull);
}
@Override
public String toString()
{
return format("VariableWidthBlock(%d){positionCount=%d,slice=%s}", hashCode(), getPositionCount(), slice);
}
@Override
public byte getByteUnchecked(int internalPosition)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return UnsafeSlice.getByteUnchecked(getRawSlice(internalPosition), offsets[internalPosition]);
}
@Override
public short getShortUnchecked(int internalPosition)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return UnsafeSlice.getShortUnchecked(getRawSlice(internalPosition), offsets[internalPosition]);
}
@Override
public int getIntUnchecked(int internalPosition)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return UnsafeSlice.getIntUnchecked(getRawSlice(internalPosition), offsets[internalPosition]);
}
@Override
public long getLongUnchecked(int internalPosition)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return UnsafeSlice.getLongUnchecked(getRawSlice(internalPosition), offsets[internalPosition]);
}
@Override
public long getLongUnchecked(int internalPosition, int offset)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return UnsafeSlice.getLongUnchecked(getRawSlice(internalPosition), offsets[internalPosition] + offset);
}
@Override
public Slice getSliceUnchecked(int internalPosition, int offset, int length)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return getRawSlice(internalPosition).slice(offsets[internalPosition] + offset, length);
}
@Override
public int getSliceLengthUnchecked(int internalPosition)
{
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return offsets[internalPosition + 1] - offsets[internalPosition];
}
@Override
public int getOffsetBase()
{
return arrayOffset;
}
@Override
public boolean isNullUnchecked(int internalPosition)
{
assert mayHaveNull() : "no nulls present";
assert internalPositionInRange(internalPosition, getOffsetBase(), getPositionCount());
return valueIsNull[internalPosition];
}
@Override
public Block appendNull()
{
boolean[] newValueIsNull = appendNullToIsNullArray(valueIsNull, arrayOffset, positionCount);
int[] newOffsets = appendNullToOffsetsArray(offsets, arrayOffset, positionCount);
return new VariableWidthBlock(arrayOffset, positionCount + 1, slice, newOffsets, newValueIsNull);
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
VariableWidthBlock other = (VariableWidthBlock) obj;
return this.arrayOffset == other.arrayOffset &&
this.positionCount == other.positionCount &&
Objects.equals(this.slice, other.slice) &&
Arrays.equals(this.offsets, other.offsets) &&
Arrays.equals(this.valueIsNull, other.valueIsNull) &&
this.retainedSizeInBytes == other.retainedSizeInBytes &&
this.sizeInBytes == other.sizeInBytes;
}
@Override
public int hashCode()
{
return Objects.hash(arrayOffset,
positionCount,
slice,
Arrays.hashCode(offsets),
Arrays.hashCode(valueIsNull),
retainedSizeInBytes,
sizeInBytes);
}
}