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

io.trino.parquet.writer.ArrayColumnWriter Maven / Gradle / Ivy

There is a newer version: 464
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.parquet.writer;

import com.google.common.collect.ImmutableList;
import io.trino.parquet.writer.repdef.DefLevelWriterProvider;
import io.trino.parquet.writer.repdef.DefLevelWriterProviders;
import io.trino.parquet.writer.repdef.RepLevelWriterProvider;
import io.trino.parquet.writer.repdef.RepLevelWriterProviders;
import io.trino.spi.block.ColumnarArray;

import java.io.IOException;
import java.util.List;

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

public class ArrayColumnWriter
        implements ColumnWriter
{
    private static final int INSTANCE_SIZE = instanceSize(ArrayColumnWriter.class);

    private final ColumnWriter elementWriter;
    private final int maxDefinitionLevel;
    private final int maxRepetitionLevel;

    public ArrayColumnWriter(ColumnWriter elementWriter, int maxDefinitionLevel, int maxRepetitionLevel)
    {
        this.elementWriter = requireNonNull(elementWriter, "elementWriter is null");
        this.maxDefinitionLevel = maxDefinitionLevel;
        this.maxRepetitionLevel = maxRepetitionLevel;
    }

    @Override
    public void writeBlock(ColumnChunk columnChunk)
            throws IOException
    {
        ColumnarArray columnarArray = ColumnarArray.toColumnarArray(columnChunk.getBlock());
        elementWriter.writeBlock(
                new ColumnChunk(columnarArray.getElementsBlock(),
                        ImmutableList.builder()
                                .addAll(columnChunk.getDefLevelWriterProviders())
                                .add(DefLevelWriterProviders.of(columnarArray, maxDefinitionLevel))
                                .build(),
                        ImmutableList.builder()
                                .addAll(columnChunk.getRepLevelWriterProviders())
                                .add(RepLevelWriterProviders.of(columnarArray, maxRepetitionLevel))
                                .build()));
    }

    @Override
    public void close()
    {
        elementWriter.close();
    }

    @Override
    public List getBuffer()
            throws IOException
    {
        return ImmutableList.copyOf(elementWriter.getBuffer());
    }

    @Override
    public long getBufferedBytes()
    {
        return elementWriter.getBufferedBytes();
    }

    @Override
    public long getRetainedBytes()
    {
        return INSTANCE_SIZE + elementWriter.getRetainedBytes();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy