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

org.elasticsearch.common.compress.lzf.LZFOutputStream Maven / Gradle / Ivy

There is a newer version: 8.15.1
Show newest version
/*
 * Licensed to Elastic Search and Shay Banon under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. Elastic Search licenses this
 * file to you 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 org.elasticsearch.common.compress.lzf;

import java.io.IOException;
import java.io.OutputStream;

public class LZFOutputStream extends OutputStream {
    private static int OUTPUT_BUFFER_SIZE = LZFChunk.MAX_CHUNK_LEN;
    private static int BYTE_MASK = 0xff;

    private final OutputStream outputStream;

    private final byte[] outputBuffer = new byte[OUTPUT_BUFFER_SIZE];
    private final ChunkEncoder encoder = new ChunkEncoder(OUTPUT_BUFFER_SIZE);
    private int position = 0;

    public LZFOutputStream(final OutputStream outputStream) {
        this.outputStream = outputStream;
    }

    @Override
    public void write(final int singleByte) throws IOException {
        if (position >= outputBuffer.length) {
            writeCompressedBlock();
        }
        outputBuffer[position++] = (byte) (singleByte & BYTE_MASK);
    }

    @Override
    public void write(final byte[] buffer, final int offset, final int length) throws IOException {
        int inputCursor = offset;
        int remainingBytes = length;
        while (remainingBytes > 0) {
            if (position >= outputBuffer.length) {
                writeCompressedBlock();
            }
            int chunkLength = (remainingBytes > (outputBuffer.length - position)) ? outputBuffer.length - position : remainingBytes;
            System.arraycopy(buffer, inputCursor, outputBuffer, position, chunkLength);
            position += chunkLength;
            remainingBytes -= chunkLength;
            inputCursor += chunkLength;
        }
    }

    @Override
    public void flush() throws IOException {
        try {
            writeCompressedBlock();
        } finally {
            outputStream.flush();
        }
    }

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

    /**
     * Compress and write the current block to the OutputStream
     */
    private void writeCompressedBlock() throws IOException {
        if (position > 0) {
            encoder.encodeChunk(outputStream, outputBuffer, 0, position);
            position = 0;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy