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

io.trino.orc.OrcDecompressor Maven / Gradle / Ivy

The 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.orc;

import io.airlift.units.DataSize;
import io.trino.orc.metadata.CompressionKind;

import java.util.Optional;

import static io.airlift.units.DataSize.Unit.MEGABYTE;
import static io.trino.orc.metadata.CompressionKind.NONE;
import static java.lang.Math.toIntExact;

public interface OrcDecompressor
{
    int MAX_BUFFER_SIZE = toIntExact(DataSize.of(4, MEGABYTE).toBytes());

    static Optional createOrcDecompressor(OrcDataSourceId orcDataSourceId, CompressionKind compression, int bufferSize)
            throws OrcCorruptionException
    {
        if ((compression != NONE) && ((bufferSize <= 0) || (bufferSize > MAX_BUFFER_SIZE))) {
            throw new OrcCorruptionException(orcDataSourceId, "Invalid compression block size: " + bufferSize);
        }
        return switch (compression) {
            case NONE -> Optional.empty();
            case ZLIB -> Optional.of(new OrcZlibDecompressor(orcDataSourceId, bufferSize));
            case SNAPPY -> Optional.of(new OrcSnappyDecompressor(orcDataSourceId, bufferSize));
            case LZ4 -> Optional.of(new OrcLz4Decompressor(orcDataSourceId, bufferSize));
            case ZSTD -> Optional.of(new OrcZstdDecompressor(orcDataSourceId, bufferSize));
        };
    }

    int decompress(byte[] input, int offset, int length, OutputBuffer output)
            throws OrcCorruptionException;

    interface OutputBuffer
    {
        byte[] initialize(int size);

        byte[] grow(int size);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy