com.facebook.presto.jdbc.internal.common.block.ShortArrayBlockEncoding Maven / Gradle / Ivy
The newest version!
/*
* 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.jdbc.internal.common.block;
import com.facebook.presto.jdbc.internal.io.airlift.slice.SliceInput;
import com.facebook.presto.jdbc.internal.io.airlift.slice.SliceOutput;
import com.facebook.presto.jdbc.internal.io.airlift.slice.Slices;
import static com.facebook.presto.jdbc.internal.common.block.EncoderUtil.decodeNullBits;
import static com.facebook.presto.jdbc.internal.common.block.EncoderUtil.encodeNullsAsBits;
public class ShortArrayBlockEncoding
implements BlockEncoding
{
public static final String NAME = "SHORT_ARRAY";
@Override
public String getName()
{
return NAME;
}
@Override
public void writeBlock(BlockEncodingSerde blockEncodingSerde, SliceOutput sliceOutput, Block block)
{
int positionCount = block.getPositionCount();
sliceOutput.appendInt(positionCount);
encodeNullsAsBits(sliceOutput, block);
boolean mayHaveNull = block.mayHaveNull();
for (int position = 0; position < positionCount; position++) {
if (!mayHaveNull || !block.isNull(position)) {
sliceOutput.writeShort(block.getShort(position));
}
}
}
@Override
public Block readBlock(BlockEncodingSerde blockEncodingSerde, SliceInput sliceInput)
{
int positionCount = sliceInput.readInt();
boolean[] valueIsNull = decodeNullBits(sliceInput, positionCount).orElse(null);
short[] values = new short[positionCount];
if (valueIsNull == null) {
// No nulls present, read values array directly from input
sliceInput.readBytes(Slices.wrappedShortArray(values));
}
else {
for (int position = 0; position < values.length; position++) {
if (!valueIsNull[position]) {
values[position] = sliceInput.readShort();
}
}
}
return new ShortArrayBlock(0, positionCount, valueIsNull, values);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy