Package io.trino.spi.block
Class ShortArrayBlock
java.lang.Object
io.trino.spi.block.ShortArrayBlock
- All Implemented Interfaces:
Block
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionShortArrayBlock
(int positionCount, Optional<boolean[]> valueIsNull, short[] values) -
Method Summary
Modifier and TypeMethodDescriptioncopyPositions
(int[] positions, int offset, int length) Returns a block containing the specified positions.copyRegion
(int positionOffset, int length) Returns a block starting at the specified position and extends for the specified length.Returns a block that contains a copy of the contents of the current block, and an appended null at the end.Returns the number of bytes (in terms ofBlock.getSizeInBytes()
) required per position that this block contains, assuming that the number of bytes required is a known static quantity and not dependent on any particular specific position.Get the encoding for this block.long
getEstimatedDataSizeForStats
(int position) Returns the estimated in memory data size for stats of position.int
Returns the number of positions in this block.long
getPositionsSizeInBytes
(boolean[] positions, int selectedPositionsCount) Returns the size of all positions marked true in the positions array.getRegion
(int positionOffset, int length) Returns a block starting at the specified position and extends for the specified length.long
getRegionSizeInBytes
(int position, int length) Returns the size ofblock.getRegion(position, length)
.long
Returns the retained size of this block in memory, including over-allocations.short
getShort
(int position, int offset) Gets a little endian short atoffset
in the value atposition
.getSingleValueBlock
(int position) Gets the value at the specified position as a single element block.long
Returns the size of this block as if it was compacted, ignoring any over-allocations and any unloaded nested blocks.boolean
isNull
(int position) Is the specified position null?boolean
Is it possible the block may have a null value? If false, the block cannot contain a null, but if true, the block may or may not have a null.void
retainedBytesForEachPart
(ObjLongConsumer<Object> consumer) consumer
visits each of the internal data container and accepts the size for it.toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.trino.spi.block.Block
bytesCompare, bytesEqual, compareTo, equals, getByte, getChildren, getInt, getLoadedBlock, getLogicalSizeInBytes, getLong, getObject, getPositions, getSlice, getSliceLength, hash, isLoaded, writeSliceTo
-
Field Details
-
SIZE_IN_BYTES_PER_POSITION
public static final int SIZE_IN_BYTES_PER_POSITION- See Also:
-
-
Constructor Details
-
ShortArrayBlock
-
-
Method Details
-
fixedSizeInBytesPerPosition
Description copied from interface:Block
Returns the number of bytes (in terms ofBlock.getSizeInBytes()
) required per position that this block contains, assuming that the number of bytes required is a known static quantity and not dependent on any particular specific position. This allows for some complex block wrappings to potentially avoid having to callBlock.getPositionsSizeInBytes(boolean[], int)
which would require computing the specific positions selected- Specified by:
fixedSizeInBytesPerPosition
in interfaceBlock
- Returns:
- The size in bytes, per position, if this block type does not require specific position information to compute its size
-
getSizeInBytes
public long getSizeInBytes()Description copied from interface:Block
Returns the size of this block as if it was compacted, ignoring any over-allocations and any unloaded nested blocks. For example, in dictionary blocks, this only counts each dictionary entry once, rather than each time a value is referenced.- Specified by:
getSizeInBytes
in interfaceBlock
-
getRegionSizeInBytes
public long getRegionSizeInBytes(int position, int length) Description copied from interface:Block
Returns the size ofblock.getRegion(position, length)
. The method can be expensive. Do not use it outside an implementation of Block.- Specified by:
getRegionSizeInBytes
in interfaceBlock
-
getPositionsSizeInBytes
public long getPositionsSizeInBytes(boolean[] positions, int selectedPositionsCount) Description copied from interface:Block
Returns the size of all positions marked true in the positions array. This is equivalent to multiple calls ofblock.getRegionSizeInBytes(position, length)
where you mark all positions for the regions first. The 'selectedPositionsCount' variable may be used to skip iterating through the positions array in case this is a fixed-width block- Specified by:
getPositionsSizeInBytes
in interfaceBlock
-
getRetainedSizeInBytes
public long getRetainedSizeInBytes()Description copied from interface:Block
Returns the retained size of this block in memory, including over-allocations. This method is called from the inner most execution loop and must be fast.- Specified by:
getRetainedSizeInBytes
in interfaceBlock
-
getEstimatedDataSizeForStats
public long getEstimatedDataSizeForStats(int position) Description copied from interface:Block
Returns the estimated in memory data size for stats of position. Do not use it for other purpose.- Specified by:
getEstimatedDataSizeForStats
in interfaceBlock
-
retainedBytesForEachPart
Description copied from interface:Block
consumer
visits each of the internal data container and accepts the size for it. This method can be helpful in cases such as memory counting for internal data structure. Also, the method should be non-recursive, only visit the elements at the top level, and specifically should not call retainedBytesForEachPart on nested blocksconsumer
should be called at least once with the current block and must include the instance size of the current block- Specified by:
retainedBytesForEachPart
in interfaceBlock
-
getPositionCount
public int getPositionCount()Description copied from interface:Block
Returns the number of positions in this block.- Specified by:
getPositionCount
in interfaceBlock
-
getShort
public short getShort(int position, int offset) Description copied from interface:Block
Gets a little endian short atoffset
in the value atposition
. -
mayHaveNull
public boolean mayHaveNull()Description copied from interface:Block
Is it possible the block may have a null value? If false, the block cannot contain a null, but if true, the block may or may not have a null.- Specified by:
mayHaveNull
in interfaceBlock
-
isNull
public boolean isNull(int position) Description copied from interface:Block
Is the specified position null? -
getSingleValueBlock
Description copied from interface:Block
Gets the value at the specified position as a single element block. The method must copy the data into a new block.This method is useful for operators that hold on to a single value without holding on to the entire block.
- Specified by:
getSingleValueBlock
in interfaceBlock
-
copyPositions
Description copied from interface:Block
Returns a block containing the specified positions. Positions to copy are stored in a subarray withinpositions
array that starts atoffset
and has length oflength
. All specified positions must be valid for this block.The returned block must be a compact representation of the original block.
- Specified by:
copyPositions
in interfaceBlock
-
getRegion
Description copied from interface:Block
Returns a block starting at the specified position and extends for the specified length. The specified region must be entirely contained within this block.The region can be a view over this block. If this block is released the region block may also be released. If the region block is released this block may also be released.
-
copyRegion
Description copied from interface:Block
Returns a block starting at the specified position and extends for the specified length. The specified region must be entirely contained within this block.The region returned must be a compact representation of the original block, unless their internal representation will be exactly the same. This method is useful for operators that hold on to a range of values without holding on to the entire block.
- Specified by:
copyRegion
in interfaceBlock
-
getEncodingName
Description copied from interface:Block
Get the encoding for this block.- Specified by:
getEncodingName
in interfaceBlock
-
copyWithAppendedNull
Description copied from interface:Block
Returns a block that contains a copy of the contents of the current block, and an appended null at the end. The original block will not be modified. The purpose of this method is to leverage the contents of a block and the structure of the implementation to efficiently produce a copy of the block with a NULL element inserted - so that it can be used as a dictionary. This method is expected to be invoked on completely builtBlock
instances i.e. not on in-progress block builders.- Specified by:
copyWithAppendedNull
in interfaceBlock
-
toString
-