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

io.trino.hive.formats.compression.BufferedOutputStreamSliceOutput 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.hive.formats.compression;

import io.airlift.slice.Slice;
import io.airlift.slice.SliceOutput;
import io.airlift.slice.Slices;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UncheckedIOException;
import java.nio.charset.Charset;
import java.util.Arrays;

import static com.google.common.base.Preconditions.checkArgument;
import static io.airlift.slice.SizeOf.SIZE_OF_BYTE;
import static io.airlift.slice.SizeOf.SIZE_OF_INT;
import static io.airlift.slice.SizeOf.SIZE_OF_LONG;
import static io.airlift.slice.SizeOf.SIZE_OF_SHORT;
import static io.airlift.slice.SizeOf.instanceSize;
import static java.lang.Math.toIntExact;

public class BufferedOutputStreamSliceOutput
        extends SliceOutput
{
    private static final int INSTANCE_SIZE = instanceSize(BufferedOutputStreamSliceOutput.class);
    private static final int CHUNK_SIZE = 4096;

    private final OutputStream outputStream;

    private final Slice slice;
    private final byte[] buffer;

    /**
     * Offset of buffer within stream.
     */
    private long bufferOffset;
    /**
     * Current position for writing in buffer.
     */
    private int bufferPosition;

    public BufferedOutputStreamSliceOutput(OutputStream outputStream)
    {
        if (outputStream == null) {
            throw new NullPointerException("outputStream is null");
        }

        this.outputStream = outputStream;
        this.buffer = new byte[CHUNK_SIZE];
        this.slice = Slices.wrappedBuffer(buffer);
    }

    @Override
    public void flush()
            throws IOException
    {
        flushBufferToOutputStream();
        outputStream.flush();
    }

    @Override
    public void close()
            throws IOException
    {
        try {
            flushBufferToOutputStream();
        }
        finally {
            outputStream.close();
        }
    }

    @Override
    public void reset()
    {
        throw new UnsupportedOperationException("OutputStream cannot be reset");
    }

    @Override
    public void reset(int position)
    {
        throw new UnsupportedOperationException("OutputStream cannot be reset");
    }

    @Override
    public int size()
    {
        return toIntExact(bufferOffset + bufferPosition);
    }

    @Override
    public long getRetainedSize()
    {
        return slice.getRetainedSize() + INSTANCE_SIZE;
    }

    @Override
    public int writableBytes()
    {
        return Integer.MAX_VALUE;
    }

    @Override
    public boolean isWritable()
    {
        return true;
    }

    @Override
    public void writeByte(int value)
    {
        ensureWritableBytes(SIZE_OF_BYTE);
        slice.setByte(bufferPosition, value);
        bufferPosition += SIZE_OF_BYTE;
    }

    @Override
    public void writeShort(int value)
    {
        ensureWritableBytes(SIZE_OF_SHORT);
        slice.setShort(bufferPosition, value);
        bufferPosition += SIZE_OF_SHORT;
    }

    @Override
    public void writeInt(int value)
    {
        ensureWritableBytes(SIZE_OF_INT);
        slice.setInt(bufferPosition, value);
        bufferPosition += SIZE_OF_INT;
    }

    @Override
    public void writeLong(long value)
    {
        ensureWritableBytes(SIZE_OF_LONG);
        slice.setLong(bufferPosition, value);
        bufferPosition += SIZE_OF_LONG;
    }

    @Override
    public void writeFloat(float value)
    {
        writeInt(Float.floatToIntBits(value));
    }

    @Override
    public void writeDouble(double value)
    {
        writeLong(Double.doubleToLongBits(value));
    }

    @Override
    public void writeBytes(Slice source)
    {
        writeBytes(source, 0, source.length());
    }

    @Override
    public void writeBytes(Slice source, int sourceIndex, int length)
    {
        if (length >= CHUNK_SIZE) {
            if (bufferPosition > 0) {
                // fill up the current buffer
                int flushLength = getFreeBufferLength();
                slice.setBytes(bufferPosition, source, sourceIndex, flushLength);
                bufferPosition = CHUNK_SIZE;
                flushBufferToOutputStream();
                sourceIndex += flushLength;
                length -= flushLength;
            }

            // line up the chunk to chunk size and flush directly to OutputStream
            while (length >= CHUNK_SIZE) {
                writeToOutputStream(source, sourceIndex, CHUNK_SIZE);
                sourceIndex += CHUNK_SIZE;
                length -= CHUNK_SIZE;
                bufferOffset += CHUNK_SIZE;
            }
        }

        if (length > 0) {
            // buffer the remaining data
            ensureWritableBytes(length);
            slice.setBytes(bufferPosition, source, sourceIndex, length);
            bufferPosition += length;
        }
    }

    @Override
    public void writeBytes(byte[] source)
    {
        writeBytes(source, 0, source.length);
    }

    @Override
    public void writeBytes(byte[] source, int sourceIndex, int length)
    {
        if (length >= CHUNK_SIZE) {
            if (bufferPosition > 0) {
                // fill up the current buffer
                int flushLength = getFreeBufferLength();
                slice.setBytes(bufferPosition, source, sourceIndex, flushLength);
                bufferPosition = CHUNK_SIZE;
                flushBufferToOutputStream();
                sourceIndex += flushLength;
                length -= flushLength;
            }

            // line up the chunk to chunk size and flush directly to OutputStream
            while (length >= CHUNK_SIZE) {
                writeToOutputStream(source, sourceIndex, CHUNK_SIZE);
                sourceIndex += CHUNK_SIZE;
                length -= CHUNK_SIZE;
                bufferOffset += CHUNK_SIZE;
            }
        }

        if (length > 0) {
            // buffer the remaining data
            ensureWritableBytes(length);
            slice.setBytes(bufferPosition, source, sourceIndex, length);
            bufferPosition += length;
        }
    }

    @Override
    public void writeShorts(short[] source, int sourceIndex, int length)
    {
        while (length > 0) {
            int flushLength = ensureBatchSize(length * Short.BYTES) / Short.BYTES;
            slice.setShorts(bufferPosition, source, sourceIndex, flushLength);
            bufferPosition += flushLength * Short.BYTES;
            sourceIndex += flushLength;
            length -= flushLength;
        }
    }

    @Override
    public void writeInts(int[] source, int sourceIndex, int length)
    {
        while (length > 0) {
            int flushLength = ensureBatchSize(length * Integer.BYTES) / Integer.BYTES;
            slice.setInts(bufferPosition, source, sourceIndex, flushLength);
            bufferPosition += flushLength * Integer.BYTES;
            sourceIndex += flushLength;
            length -= flushLength;
        }
    }

    @Override
    public void writeLongs(long[] source, int sourceIndex, int length)
    {
        while (length > 0) {
            int flushLength = ensureBatchSize(length * Long.BYTES) / Long.BYTES;
            slice.setLongs(bufferPosition, source, sourceIndex, flushLength);
            bufferPosition += flushLength * Long.BYTES;
            sourceIndex += flushLength;
            length -= flushLength;
        }
    }

    @Override
    public void writeFloats(float[] source, int sourceIndex, int length)
    {
        while (length > 0) {
            int flushLength = ensureBatchSize(length * Float.BYTES) / Float.BYTES;
            slice.setFloats(bufferPosition, source, sourceIndex, flushLength);
            bufferPosition += flushLength * Float.BYTES;
            sourceIndex += flushLength;
            length -= flushLength;
        }
    }

    @Override
    public void writeDoubles(double[] source, int sourceIndex, int length)
    {
        while (length > 0) {
            int flushLength = ensureBatchSize(length * Double.BYTES) / Double.BYTES;
            slice.setDoubles(bufferPosition, source, sourceIndex, flushLength);
            bufferPosition += flushLength * Double.BYTES;
            sourceIndex += flushLength;
            length -= flushLength;
        }
    }

    @Override
    public void writeBytes(InputStream in, int length)
            throws IOException
    {
        while (length > 0) {
            int batch = ensureBatchSize(length);
            slice.setBytes(bufferPosition, in, batch);
            bufferPosition += batch;
            length -= batch;
        }
    }

    @Override
    public void writeZero(int length)
    {
        checkArgument(length >= 0, "length must be 0 or greater than 0.");

        while (length > 0) {
            int batch = ensureBatchSize(length);
            Arrays.fill(buffer, bufferPosition, bufferPosition + batch, (byte) 0);
            bufferPosition += batch;
            length -= batch;
        }
    }

    @Override
    public SliceOutput appendLong(long value)
    {
        writeLong(value);
        return this;
    }

    @Override
    public SliceOutput appendDouble(double value)
    {
        writeDouble(value);
        return this;
    }

    @Override
    public SliceOutput appendInt(int value)
    {
        writeInt(value);
        return this;
    }

    @Override
    public SliceOutput appendShort(int value)
    {
        writeShort(value);
        return this;
    }

    @Override
    public SliceOutput appendByte(int value)
    {
        writeByte(value);
        return this;
    }

    @Override
    public SliceOutput appendBytes(byte[] source, int sourceIndex, int length)
    {
        writeBytes(source, sourceIndex, length);
        return this;
    }

    @Override
    public SliceOutput appendBytes(byte[] source)
    {
        writeBytes(source);
        return this;
    }

    @Override
    public SliceOutput appendBytes(Slice slice)
    {
        writeBytes(slice);
        return this;
    }

    @Override
    public Slice slice()
    {
        throw new UnsupportedOperationException();
    }

    @Override
    public Slice getUnderlyingSlice()
    {
        throw new UnsupportedOperationException();
    }

    @Override
    public String toString(Charset charset)
    {
        return toString();
    }

    @Override
    public String toString()
    {
        StringBuilder builder = new StringBuilder("OutputStreamSliceOutputAdapter{");
        builder.append("outputStream=").append(outputStream);
        builder.append("bufferSize=").append(slice.length());
        builder.append('}');
        return builder.toString();
    }

    private int getFreeBufferLength()
    {
        return CHUNK_SIZE - bufferPosition;
    }

    private void ensureWritableBytes(int minWritableBytes)
    {
        if (minWritableBytes > getFreeBufferLength()) {
            flushBufferToOutputStream();
        }
    }

    private int ensureBatchSize(int length)
    {
        ensureWritableBytes(Math.min(CHUNK_SIZE, length));
        return Math.min(length, CHUNK_SIZE - bufferPosition);
    }

    private void flushBufferToOutputStream()
    {
        writeToOutputStream(buffer, 0, bufferPosition);
        bufferOffset += bufferPosition;
        bufferPosition = 0;
    }

    private void writeToOutputStream(byte[] source, int sourceIndex, int length)
    {
        try {
            outputStream.write(source, sourceIndex, length);
        }
        catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }

    private void writeToOutputStream(Slice source, int sourceIndex, int length)
    {
        try {
            source.getBytes(sourceIndex, outputStream, length);
        }
        catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy