com.github.luben.zstd.ZstdDictCompress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zstd-jni Show documentation
Show all versions of zstd-jni Show documentation
JNI bindings for Zstd native library that provides fast and high compression lossless algorithm for Java and all JVM languages.
package com.github.luben.zstd;
import com.github.luben.zstd.util.Native;
public class ZstdDictCompress extends SharedDictBase {
static {
Native.load();
}
private long nativePtr = 0;
private native void init(byte[] dict, int dict_offset, int dict_size, int level);
private native void free();
/**
* Convenience constructor to create a new dictionary for use with fast compress
*
* @param dict buffer containing dictionary to load/parse with exact length
* @param level compression level
*/
public ZstdDictCompress(byte[] dict, int level) {
this(dict, 0, dict.length, level);
}
/**
* Create a new dictionary for use with fast compress
*
* @param dict buffer containing dictionary
* @param offset the offset into the buffer to read from
* @param length number of bytes to use from the buffer
* @param level compression level
*/
public ZstdDictCompress(byte[] dict, int offset, int length, int level) {
if (dict.length - offset < 0) {
throw new IllegalArgumentException("Dictionary buffer is to short");
}
init(dict, offset, length, level);
if (0 == nativePtr) {
throw new IllegalStateException("ZSTD_createCDict failed");
}
// Ensures that even if ZstdDictCompress is created and published through a race, no thread could observe
// nativePtr == 0.
storeFence();
}
@Override
void doClose() {
if (nativePtr != 0) {
free();
nativePtr = 0;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy