package com.mongodb.internal.connection;
import com.github.luben.zstd.Zstd;
import com.github.luben.zstd.ZstdInputStream;
import com.mongodb.MongoInternalException;
import org.bson.ByteBuf;
import org.bson.io.BsonOutput;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
class ZstdCompressor extends Compressor {
@Override
public String getName() {
return "zstd";
}
@Override
public byte getId() {
return 3;
}
@Override
public void compress(final List<ByteBuf> source, final BsonOutput target) {
int uncompressedSize = getUncompressedSize(source);
byte[] singleByteArraySource = new byte[uncompressedSize];
copy(source, singleByteArraySource);
try {
byte[] out = new byte[(int) Zstd.compressBound(uncompressedSize)];
int compressedSize = (int) Zstd.compress(out, singleByteArraySource, Zstd.maxCompressionLevel());
target.writeBytes(out, 0, compressedSize);
} catch (RuntimeException e) {
throw new MongoInternalException("Unexpected RuntimeException", e);
}
}
private int getUncompressedSize(final List<ByteBuf> source) {
int uncompressedSize = 0;
for (ByteBuf cur : source) {
uncompressedSize += cur.remaining();
}
return uncompressedSize;
}
private void copy(final List<ByteBuf> source, final byte[] in) {
int offset = 0;
for (ByteBuf cur : source) {
int remaining = cur.remaining();
cur.get(in, offset, remaining);
offset += remaining;
}
}
@Override
InputStream getInputStream(final InputStream source) throws IOException {
return new ZstdInputStream(source);
}
}