com.facebook.presto.jdbc.internal.spi.block.SingleMapBlockEncoding Maven / Gradle / Ivy
/*
* 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.spi.block;
import com.facebook.presto.jdbc.internal.spi.function.OperatorType;
import com.facebook.presto.jdbc.internal.spi.type.Type;
import com.facebook.presto.jdbc.internal.spi.type.TypeManager;
import com.facebook.presto.jdbc.internal.spi.type.TypeSerde;
import com.facebook.presto.jdbc.internal.airlift.slice.SliceInput;
import com.facebook.presto.jdbc.internal.airlift.slice.SliceOutput;
import java.lang.invoke.MethodHandle;
import static com.facebook.presto.jdbc.internal.spi.block.AbstractMapBlock.HASH_MULTIPLIER;
import static com.facebook.presto.jdbc.internal.spi.block.MethodHandleUtil.compose;
import static com.facebook.presto.jdbc.internal.spi.block.MethodHandleUtil.nativeValueGetter;
import static com.facebook.presto.jdbc.internal.airlift.slice.Slices.wrappedIntArray;
import static java.lang.String.format;
import static java.util.Arrays.asList;
import static java.util.Collections.singletonList;
import static java.util.Objects.requireNonNull;
public class SingleMapBlockEncoding
implements BlockEncoding
{
public static final BlockEncodingFactory FACTORY = new SingleMapBlockEncodingFactory();
private static final String NAME = "MAP_ELEMENT";
private final Type keyType;
private final MethodHandle keyNativeHashCode;
private final MethodHandle keyBlockNativeEquals;
private final BlockEncoding keyBlockEncoding;
private final BlockEncoding valueBlockEncoding;
public SingleMapBlockEncoding(Type keyType, MethodHandle keyNativeHashCode, MethodHandle keyBlockNativeEquals, BlockEncoding keyBlockEncoding, BlockEncoding valueBlockEncoding)
{
this.keyType = requireNonNull(keyType, "keyType is null");
// keyNativeHashCode can only be null due to map block kill switch. deprecated.new-map-block
this.keyNativeHashCode = keyNativeHashCode;
// keyBlockNativeEquals can only be null due to map block kill switch. deprecated.new-map-block
this.keyBlockNativeEquals = keyBlockNativeEquals;
this.keyBlockEncoding = requireNonNull(keyBlockEncoding, "keyBlockEncoding is null");
this.valueBlockEncoding = requireNonNull(valueBlockEncoding, "valueBlockEncoding is null");
}
@Override
public String getName()
{
return NAME;
}
@Override
public void writeBlock(SliceOutput sliceOutput, Block block)
{
SingleMapBlock singleMapBlock = (SingleMapBlock) block;
int offset = singleMapBlock.getOffset();
int positionCount = singleMapBlock.getPositionCount();
keyBlockEncoding.writeBlock(sliceOutput, singleMapBlock.getKeyBlock().getRegion(offset / 2, positionCount / 2));
valueBlockEncoding.writeBlock(sliceOutput, singleMapBlock.getValueBlock().getRegion(offset / 2, positionCount / 2));
int[] hashTable = singleMapBlock.getHashTable();
sliceOutput.appendInt(positionCount / 2 * HASH_MULTIPLIER);
sliceOutput.writeBytes(wrappedIntArray(hashTable, offset / 2 * HASH_MULTIPLIER, positionCount / 2 * HASH_MULTIPLIER));
}
@Override
public Block readBlock(SliceInput sliceInput)
{
Block keyBlock = keyBlockEncoding.readBlock(sliceInput);
Block valueBlock = valueBlockEncoding.readBlock(sliceInput);
int[] hashTable = new int[sliceInput.readInt()];
sliceInput.readBytes(wrappedIntArray(hashTable));
if (keyBlock.getPositionCount() != valueBlock.getPositionCount() || keyBlock.getPositionCount() * HASH_MULTIPLIER != hashTable.length) {
throw new IllegalArgumentException(
format("Deserialized SingleMapBlock violates invariants: key %d, value %d, hash %d", keyBlock.getPositionCount(), valueBlock.getPositionCount(), hashTable.length));
}
return new SingleMapBlock(0, keyBlock.getPositionCount() * 2, keyBlock, valueBlock, hashTable, keyType, keyNativeHashCode, keyBlockNativeEquals);
}
@Override
public BlockEncodingFactory getFactory()
{
return FACTORY;
}
public static class SingleMapBlockEncodingFactory
implements BlockEncodingFactory
{
@Override
public String getName()
{
return NAME;
}
@Override
public SingleMapBlockEncoding readEncoding(TypeManager typeManager, BlockEncodingSerde serde, SliceInput input)
{
Type keyType = TypeSerde.readType(typeManager, input);
MethodHandle keyNativeHashCode = typeManager.resolveOperator(OperatorType.HASH_CODE, singletonList(keyType));
MethodHandle keyNativeEquals = typeManager.resolveOperator(OperatorType.EQUAL, asList(keyType, keyType));
MethodHandle keyBlockNativeEquals = compose(keyNativeEquals, nativeValueGetter(keyType));
BlockEncoding keyBlockEncoding = serde.readBlockEncoding(input);
BlockEncoding valueBlockEncoding = serde.readBlockEncoding(input);
return new SingleMapBlockEncoding(keyType, keyNativeHashCode, keyBlockNativeEquals, keyBlockEncoding, valueBlockEncoding);
}
@Override
public void writeEncoding(BlockEncodingSerde serde, SliceOutput output, SingleMapBlockEncoding blockEncoding)
{
TypeSerde.writeType(output, blockEncoding.keyType);
serde.writeBlockEncoding(output, blockEncoding.keyBlockEncoding);
serde.writeBlockEncoding(output, blockEncoding.valueBlockEncoding);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy