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

io.trino.operator.aggregation.state.QuantileDigestStateFactory 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 io.trino.operator.aggregation.state;

import io.airlift.stats.QuantileDigest;
import io.trino.array.ObjectBigArray;
import io.trino.spi.function.AccumulatorStateFactory;

import static io.airlift.slice.SizeOf.instanceSize;
import static java.util.Objects.requireNonNull;

public class QuantileDigestStateFactory
        implements AccumulatorStateFactory
{
    @Override
    public QuantileDigestState createSingleState()
    {
        return new SingleQuantileDigestState();
    }

    @Override
    public QuantileDigestState createGroupedState()
    {
        return new GroupedQuantileDigestState();
    }

    public static class GroupedQuantileDigestState
            extends AbstractGroupedAccumulatorState
            implements QuantileDigestState
    {
        private static final int INSTANCE_SIZE = instanceSize(GroupedQuantileDigestState.class);
        private final ObjectBigArray qdigests = new ObjectBigArray<>();
        private long size;

        @Override
        public void ensureCapacity(int size)
        {
            qdigests.ensureCapacity(size);
        }

        @Override
        public QuantileDigest getQuantileDigest()
        {
            return qdigests.get(getGroupId());
        }

        @Override
        public void setQuantileDigest(QuantileDigest value)
        {
            requireNonNull(value, "value is null");
            qdigests.set(getGroupId(), value);
        }

        @Override
        public void addMemoryUsage(int value)
        {
            size += value;
        }

        @Override
        public long getEstimatedSize()
        {
            return INSTANCE_SIZE + size + qdigests.sizeOf();
        }
    }

    public static class SingleQuantileDigestState
            implements QuantileDigestState
    {
        private static final int INSTANCE_SIZE = instanceSize(SingleQuantileDigestState.class);
        private QuantileDigest qdigest;

        @Override
        public QuantileDigest getQuantileDigest()
        {
            return qdigest;
        }

        @Override
        public void setQuantileDigest(QuantileDigest value)
        {
            qdigest = value;
        }

        @Override
        public void addMemoryUsage(int value)
        {
            // noop
        }

        @Override
        public long getEstimatedSize()
        {
            long estimatedSize = INSTANCE_SIZE;
            if (qdigest != null) {
                estimatedSize += qdigest.estimatedInMemorySizeInBytes();
            }
            return estimatedSize;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy