All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.trino.operator.aggregation.state.LongDecimalWithOverflowAndLongStateSerializer Maven / Gradle / Ivy

There is a newer version: 465
Show 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 io.trino.operator.aggregation.state;

import io.airlift.slice.Slice;
import io.airlift.slice.Slices;
import io.trino.spi.block.Block;
import io.trino.spi.block.BlockBuilder;
import io.trino.spi.block.VariableWidthBlock;
import io.trino.spi.function.AccumulatorStateSerializer;
import io.trino.spi.type.Type;

import static io.trino.spi.type.VarbinaryType.VARBINARY;

public class LongDecimalWithOverflowAndLongStateSerializer
        implements AccumulatorStateSerializer
{
    @Override
    public Type getSerializedType()
    {
        return VARBINARY;
    }

    @Override
    public void serialize(LongDecimalWithOverflowAndLongState state, BlockBuilder out)
    {
        long count = state.getLong();
        if (count == 0) {
            out.appendNull();
            return;
        }

        long overflow = state.getOverflow();
        long[] decimal = state.getDecimalArray();
        int offset = state.getDecimalArrayOffset();
        Slice buffer = Slices.allocate(Long.BYTES * 4);
        long high = decimal[offset];
        long low = decimal[offset + 1];

        buffer.setLong(0, low);
        buffer.setLong(Long.BYTES, high);
        // if high = 0, the count will overwrite it
        int countOffset = 1 + (high == 0 ? 0 : 1);
        // append count, overflow
        buffer.setLong(Long.BYTES * countOffset, count);
        buffer.setLong(Long.BYTES * (countOffset + 1), overflow);

        // cases
        // high == 0 (countOffset = 1)
        //    overflow == 0 & count == 1  -> bufferLength = 1
        //    overflow != 0 || count != 1 -> bufferLength = 3
        // high != 0 (countOffset = 2)
        //    overflow == 0 & count == 1  -> bufferLength = 2
        //    overflow != 0 || count != 1 -> bufferLength = 4
        int bufferLength = countOffset + ((overflow == 0 & count == 1) ? 0 : 2);
        VARBINARY.writeSlice(out, buffer, 0, bufferLength * Long.BYTES);
    }

    @Override
    public void deserialize(Block block, int index, LongDecimalWithOverflowAndLongState state)
    {
        if (block.isNull(index)) {
            return;
        }

        index = block.getUnderlyingValuePosition(index);
        block = block.getUnderlyingValueBlock();
        VariableWidthBlock variableWidthBlock = (VariableWidthBlock) block;
        Slice slice = variableWidthBlock.getRawSlice();
        int sliceOffset = variableWidthBlock.getRawSliceOffset(index);
        int sliceLength = variableWidthBlock.getSliceLength(index);

        long[] decimal = state.getDecimalArray();
        int offset = state.getDecimalArrayOffset();

        long low = slice.getLong(sliceOffset);

        long high = 0;
        long overflow = 0;
        long count = 1;
        switch (sliceLength) {
            case 4 * Long.BYTES:
                overflow = slice.getLong(sliceOffset + Long.BYTES * 3);
                count = slice.getLong(sliceOffset + Long.BYTES * 2);
                // fall through
            case 2 * Long.BYTES:
                high = slice.getLong(sliceOffset + Long.BYTES);
                break;
            case 3 * Long.BYTES:
                overflow = slice.getLong(sliceOffset + Long.BYTES * 2);
                count = slice.getLong(sliceOffset + Long.BYTES);
        }

        decimal[offset + 1] = low;
        decimal[offset] = high;
        state.setOverflow(overflow);
        state.setLong(count);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy