Package com.facebook.presto.operator

Source Code of com.facebook.presto.operator.ChannelSet

/*
* 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.operator;

import com.facebook.presto.spi.Page;
import com.facebook.presto.spi.block.Block;
import com.facebook.presto.spi.block.BlockBuilderStatus;
import com.facebook.presto.spi.type.Type;
import com.google.common.collect.ImmutableList;

public class ChannelSet
{
    private final GroupByHash hash;
    private final boolean containsNull;

    public ChannelSet(GroupByHash hash, boolean containsNull)
    {
        this.hash = hash;
        this.containsNull = containsNull;
    }

    public Type getType()
    {
        return hash.getTypes().get(0);
    }

    public long getEstimatedSizeInBytes()
    {
        return hash.getEstimatedSize();
    }

    public int size()
    {
        return hash.getGroupCount();
    }

    public boolean containsNull()
    {
        return containsNull;
    }

    public boolean contains(int position, Block block)
    {
        return hash.contains(position, block);
    }

    public static class ChannelSetBuilder
    {
        private final GroupByHash hash;
        private final OperatorContext operatorContext;
        private final Block nullBlock;

        public ChannelSetBuilder(Type type, int expectedPositions, OperatorContext operatorContext)
        {
            this.hash = new GroupByHash(ImmutableList.of(type), new int[] {0}, expectedPositions);
            this.operatorContext = operatorContext;
            this.nullBlock = type.createBlockBuilder(new BlockBuilderStatus()).appendNull().build();
        }

        public ChannelSet build()
        {
            return new ChannelSet(hash, hash.contains(0, nullBlock));
        }

        public long getEstimatedSize()
        {
            return hash.getEstimatedSize();
        }

        public int size()
        {
            return hash.getGroupCount();
        }

        public void addBlock(Block block)
        {
            hash.getGroupIds(new Page(block));

            if (operatorContext != null) {
                operatorContext.setMemoryReservation(hash.getEstimatedSize());
            }
        }

        public void add(int position, Block block)
        {
            hash.putIfAbsent(position, block);
        }
    }
}
TOP

Related Classes of com.facebook.presto.operator.ChannelSet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.