package com.mongodb.internal.connection;
import com.mongodb.MongoInternalException;
import org.bson.ByteBuf;
import org.bson.io.BsonOutput;
import org.xerial.snappy.Snappy;
import org.xerial.snappy.SnappyInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.List;
class SnappyCompressor extends Compressor {
@Override
public String getName() {
return "snappy";
}
@Override
public byte getId() {
return 1;
}
@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[Snappy.maxCompressedLength(uncompressedSize)];
int compressedSize = Snappy.compress(singleByteArraySource, 0, singleByteArraySource.length, out, 0);
target.writeBytes(out, 0, compressedSize);
} catch (IOException e) {
throw new MongoInternalException("Unexpected IOException", 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 SnappyInputStream(source);
}
}