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

org.apache.flink.runtime.io.compression.Lz4BlockCompressor Maven / Gradle / Ivy

There is a newer version: 1.13.6
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF 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.apache.flink.runtime.io.compression;

import net.jpountz.lz4.LZ4Compressor;
import net.jpountz.lz4.LZ4Exception;
import net.jpountz.lz4.LZ4Factory;

import java.nio.BufferOverflowException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;

import static org.apache.flink.runtime.io.compression.Lz4BlockCompressionFactory.HEADER_LENGTH;

/**
 * Encode data into LZ4 format (not compatible with the LZ4 Frame format).
 * It reads from and writes to byte arrays provided from the outside, thus reducing copy time.
 *
 * 

This class is copied and modified from {@link net.jpountz.lz4.LZ4BlockOutputStream}. */ public class Lz4BlockCompressor implements BlockCompressor { private final LZ4Compressor compressor; public Lz4BlockCompressor() { this.compressor = LZ4Factory.fastestInstance().fastCompressor(); } @Override public int getMaxCompressedSize(int srcSize) { return HEADER_LENGTH + compressor.maxCompressedLength(srcSize); } @Override public int compress(ByteBuffer src, int srcOff, int srcLen, ByteBuffer dst, int dstOff) throws InsufficientBufferException { try { final int prevSrcOff = src.position() + srcOff; final int prevDstOff = dst.position() + dstOff; int maxCompressedSize = compressor.maxCompressedLength(srcLen); int compressedLength = compressor.compress( src, prevSrcOff, srcLen, dst, prevDstOff + HEADER_LENGTH, maxCompressedSize ); src.position(prevSrcOff + srcLen); dst.position(prevDstOff); dst.order(ByteOrder.LITTLE_ENDIAN); dst.putInt(compressedLength); dst.putInt(srcLen); dst.position(prevDstOff + compressedLength + HEADER_LENGTH); return HEADER_LENGTH + compressedLength; } catch (LZ4Exception | ArrayIndexOutOfBoundsException | BufferOverflowException e) { throw new InsufficientBufferException(e); } } @Override public int compress(byte[] src, int srcOff, int srcLen, byte[] dst, int dstOff) throws InsufficientBufferException { try { int compressedLength = compressor.compress( src, srcOff, srcLen, dst, dstOff + HEADER_LENGTH ); writeIntLE(compressedLength, dst, dstOff); writeIntLE(srcLen, dst, dstOff + 4); return HEADER_LENGTH + compressedLength; } catch (LZ4Exception | BufferOverflowException | ArrayIndexOutOfBoundsException e) { throw new InsufficientBufferException(e); } } private static void writeIntLE(int i, byte[] buf, int offset) { buf[offset++] = (byte) i; buf[offset++] = (byte) (i >>> 8); buf[offset++] = (byte) (i >>> 16); buf[offset] = (byte) (i >>> 24); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy