/* * 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.block; import io.airlift.slice.Slice; import org.openjdk.jol.info.ClassLayout; import java.util.List; import static java.util.Objects.requireNonNull; public class LazyBlock implements Block { private static final int INSTANCE_SIZE = ClassLayout.parseClass(LazyBlock.class).instanceSize(); private final int positionCount; private LazyBlockLoader<LazyBlock> loader; private Block block; public LazyBlock(int positionCount, LazyBlockLoader<LazyBlock> loader) { this.positionCount = positionCount; this.loader = requireNonNull(loader, "loader is null"); } @Override public int getPositionCount() { return positionCount; } @Override public int getSliceLength(int position) { assureLoaded(); return block.getSliceLength(position); } @Override public byte getByte(int position, int offset) { assureLoaded(); return block.getByte(position, offset); } @Override public short getShort(int position, int offset) { assureLoaded(); return block.getShort(position, offset); } @Override public int getInt(int position, int offset) { assureLoaded(); return block.getInt(position, offset); } @Override public long getLong(int position, int offset) { assureLoaded(); return block.getLong(position, offset); } @Override public Slice getSlice(int position, int offset, int length) { assureLoaded(); return block.getSlice(position, offset, length); } @Override public <T> T getObject(int position, Class<T> clazz) { assureLoaded(); return block.getObject(position, clazz); } @Override public boolean bytesEqual(int position, int offset, Slice otherSlice, int otherOffset, int length) { assureLoaded(); return block.bytesEqual(position, offset, otherSlice, otherOffset, length); } @Override public int bytesCompare(int position, int offset, int length, Slice otherSlice, int otherOffset, int otherLength) { assureLoaded(); return block.bytesCompare(position, offset, length, otherSlice, otherOffset, otherLength); } @Override public void writeBytesTo(int position, int offset, int length, BlockBuilder blockBuilder) { assureLoaded(); block.writeBytesTo(position, offset, length, blockBuilder); } @Override public void writePositionTo(int position, BlockBuilder blockBuilder) { assureLoaded(); block.writePositionTo(position, blockBuilder); } @Override public boolean equals(int position, int offset, Block otherBlock, int otherPosition, int otherOffset, int length) { assureLoaded(); return block.equals(position, offset, otherBlock, otherPosition, otherOffset, length); } @Override public long hash(int position, int offset, int length) { assureLoaded(); return block.hash(position, offset, length); } @Override public int compareTo(int leftPosition, int leftOffset, int leftLength, Block rightBlock, int rightPosition, int rightOffset, int rightLength) { assureLoaded(); return block.compareTo(leftPosition, leftOffset, leftLength, rightBlock, rightPosition, rightOffset, rightLength); } @Override public Block getSingleValueBlock(int position) { assureLoaded(); return block.getSingleValueBlock(position); } @Override public int getSizeInBytes() { assureLoaded(); return block.getSizeInBytes(); } @Override public int getRegionSizeInBytes(int position, int length) { assureLoaded(); return block.getRegionSizeInBytes(position, length); } @Override public int getRetainedSizeInBytes() { assureLoaded(); return INSTANCE_SIZE + block.getRetainedSizeInBytes(); } @Override public BlockEncoding getEncoding() { assureLoaded(); return new LazyBlockEncoding(block.getEncoding()); } @Override public Block copyPositions(List<Integer> positions) { assureLoaded(); return block.copyPositions(positions); } @Override public Block getRegion(int positionOffset, int length) { assureLoaded(); return block.getRegion(positionOffset, length); } @Override public Block copyRegion(int position, int length) { assureLoaded(); return block.copyRegion(position, length); } @Override public boolean isNull(int position) { assureLoaded(); return block.isNull(position); } public Block getBlock() { assureLoaded(); return block; } public void setBlock(Block block) { if (this.block != null) { throw new IllegalStateException("block already set"); } this.block = requireNonNull(block, "block is null"); } @Override public void assureLoaded() { if (block != null) { return; } loader.load(this); if (block == null) { throw new IllegalArgumentException("Lazy block loader did not load this block"); } // clear reference to loader to free resources, since load was successful loader = null; } }