2015-10-30 11:33:40 +00:00
|
|
|
#include "compression.hh"
|
2016-04-22 16:15:02 +00:00
|
|
|
#include "util.hh"
|
2016-04-29 15:43:37 +00:00
|
|
|
#include "finally.hh"
|
2018-02-11 18:47:42 +00:00
|
|
|
#include "logging.hh"
|
2015-10-30 11:33:40 +00:00
|
|
|
|
|
|
|
#include <lzma.h>
|
2016-04-29 15:43:37 +00:00
|
|
|
#include <bzlib.h>
|
2015-12-31 13:18:20 +00:00
|
|
|
#include <cstdio>
|
2016-04-29 15:43:37 +00:00
|
|
|
#include <cstring>
|
2015-10-30 11:33:40 +00:00
|
|
|
|
2017-12-29 20:42:14 +00:00
|
|
|
#include <brotli/decode.h>
|
|
|
|
#include <brotli/encode.h>
|
|
|
|
|
2019-12-13 08:29:33 +00:00
|
|
|
#include <zlib.h>
|
|
|
|
|
2016-05-04 13:46:25 +00:00
|
|
|
#include <iostream>
|
2016-02-15 20:45:56 +00:00
|
|
|
|
2016-05-04 13:46:25 +00:00
|
|
|
namespace nix {
|
2016-02-15 20:45:56 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
// Don't feed brotli too much at once.
|
|
|
|
struct ChunkedCompressionSink : CompressionSink
|
2018-03-16 15:59:31 +00:00
|
|
|
{
|
2018-08-21 13:20:23 +00:00
|
|
|
uint8_t outbuf[32 * 1024];
|
2018-08-06 13:40:29 +00:00
|
|
|
|
|
|
|
void write(const unsigned char * data, size_t len) override
|
|
|
|
{
|
|
|
|
const size_t CHUNK_SIZE = sizeof(outbuf) << 2;
|
|
|
|
while (len) {
|
|
|
|
size_t n = std::min(CHUNK_SIZE, len);
|
|
|
|
writeInternal(data, n);
|
|
|
|
data += n;
|
|
|
|
len -= n;
|
2018-03-16 15:59:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
virtual void writeInternal(const unsigned char * data, size_t len) = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct NoneSink : CompressionSink
|
2015-10-30 11:33:40 +00:00
|
|
|
{
|
2018-08-06 13:40:29 +00:00
|
|
|
Sink & nextSink;
|
|
|
|
NoneSink(Sink & nextSink) : nextSink(nextSink) { }
|
|
|
|
void finish() override { flush(); }
|
|
|
|
void write(const unsigned char * data, size_t len) override { nextSink(data, len); }
|
|
|
|
};
|
2018-03-16 15:59:31 +00:00
|
|
|
|
2019-12-13 08:29:33 +00:00
|
|
|
struct GzipDecompressionSink : CompressionSink
|
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
z_stream strm;
|
|
|
|
bool finished = false;
|
|
|
|
uint8_t outbuf[BUFSIZ];
|
|
|
|
|
|
|
|
GzipDecompressionSink(Sink & nextSink) : nextSink(nextSink)
|
|
|
|
{
|
|
|
|
strm.zalloc = Z_NULL;
|
|
|
|
strm.zfree = Z_NULL;
|
|
|
|
strm.opaque = Z_NULL;
|
|
|
|
strm.avail_in = 0;
|
|
|
|
strm.next_in = Z_NULL;
|
|
|
|
strm.next_out = outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
|
|
|
|
// Enable gzip and zlib decoding (+32) with 15 windowBits
|
|
|
|
int ret = inflateInit2(&strm,15+32);
|
|
|
|
if (ret != Z_OK)
|
|
|
|
throw CompressionError("unable to initialise gzip encoder");
|
|
|
|
}
|
|
|
|
|
|
|
|
~GzipDecompressionSink()
|
|
|
|
{
|
|
|
|
inflateEnd(&strm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
CompressionSink::flush();
|
|
|
|
write(nullptr, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void write(const unsigned char * data, size_t len) override
|
|
|
|
{
|
|
|
|
assert(len <= std::numeric_limits<decltype(strm.avail_in)>::max());
|
|
|
|
|
|
|
|
strm.next_in = (Bytef *) data;
|
|
|
|
strm.avail_in = len;
|
|
|
|
|
|
|
|
while (!finished && (!data || strm.avail_in)) {
|
|
|
|
checkInterrupt();
|
|
|
|
|
|
|
|
int ret = inflate(&strm,Z_SYNC_FLUSH);
|
|
|
|
if (ret != Z_OK && ret != Z_STREAM_END)
|
|
|
|
throw CompressionError("error while decompressing gzip file: %d: %d: %d",ret, len, strm.avail_in);
|
|
|
|
|
|
|
|
|
|
|
|
finished = ret == Z_STREAM_END;
|
|
|
|
|
|
|
|
if (strm.avail_out < sizeof(outbuf) || strm.avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - strm.avail_out);
|
|
|
|
strm.next_out = (Bytef *) outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
struct XzDecompressionSink : CompressionSink
|
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
uint8_t outbuf[BUFSIZ];
|
|
|
|
lzma_stream strm = LZMA_STREAM_INIT;
|
|
|
|
bool finished = false;
|
2015-10-30 11:33:40 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
XzDecompressionSink(Sink & nextSink) : nextSink(nextSink)
|
|
|
|
{
|
|
|
|
lzma_ret ret = lzma_stream_decoder(
|
|
|
|
&strm, UINT64_MAX, LZMA_CONCATENATED);
|
|
|
|
if (ret != LZMA_OK)
|
|
|
|
throw CompressionError("unable to initialise lzma decoder");
|
2015-10-30 11:33:40 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
strm.next_out = outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
2015-10-30 11:33:40 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
~XzDecompressionSink()
|
|
|
|
{
|
|
|
|
lzma_end(&strm);
|
|
|
|
}
|
2015-10-30 11:33:40 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
CompressionSink::flush();
|
|
|
|
write(nullptr, 0);
|
2015-10-30 11:33:40 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
void write(const unsigned char * data, size_t len) override
|
|
|
|
{
|
|
|
|
strm.next_in = data;
|
|
|
|
strm.avail_in = len;
|
2018-03-16 15:59:31 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
while (!finished && (!data || strm.avail_in)) {
|
|
|
|
checkInterrupt();
|
2016-04-29 15:43:37 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
lzma_ret ret = lzma_code(&strm, data ? LZMA_RUN : LZMA_FINISH);
|
|
|
|
if (ret != LZMA_OK && ret != LZMA_STREAM_END)
|
|
|
|
throw CompressionError("error %d while decompressing xz file", ret);
|
|
|
|
|
|
|
|
finished = ret == LZMA_STREAM_END;
|
2018-03-16 15:59:31 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
if (strm.avail_out < sizeof(outbuf) || strm.avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - strm.avail_out);
|
|
|
|
strm.next_out = outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
2016-04-29 15:43:37 +00:00
|
|
|
}
|
2018-08-06 13:40:29 +00:00
|
|
|
}
|
|
|
|
};
|
2016-04-29 15:43:37 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
struct BzipDecompressionSink : ChunkedCompressionSink
|
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
bz_stream strm;
|
|
|
|
bool finished = false;
|
2016-04-29 15:43:37 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
BzipDecompressionSink(Sink & nextSink) : nextSink(nextSink)
|
|
|
|
{
|
|
|
|
memset(&strm, 0, sizeof(strm));
|
|
|
|
int ret = BZ2_bzDecompressInit(&strm, 0, 0);
|
2016-04-29 15:43:37 +00:00
|
|
|
if (ret != BZ_OK)
|
2018-08-06 13:40:29 +00:00
|
|
|
throw CompressionError("unable to initialise bzip2 decoder");
|
|
|
|
|
|
|
|
strm.next_out = (char *) outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
2016-04-29 15:43:37 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
~BzipDecompressionSink()
|
|
|
|
{
|
|
|
|
BZ2_bzDecompressEnd(&strm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
flush();
|
|
|
|
write(nullptr, 0);
|
|
|
|
}
|
|
|
|
|
2018-08-21 13:20:23 +00:00
|
|
|
void writeInternal(const unsigned char * data, size_t len) override
|
2018-08-06 13:40:29 +00:00
|
|
|
{
|
|
|
|
assert(len <= std::numeric_limits<decltype(strm.avail_in)>::max());
|
|
|
|
|
|
|
|
strm.next_in = (char *) data;
|
|
|
|
strm.avail_in = len;
|
|
|
|
|
|
|
|
while (strm.avail_in) {
|
|
|
|
checkInterrupt();
|
|
|
|
|
|
|
|
int ret = BZ2_bzDecompress(&strm);
|
|
|
|
if (ret != BZ_OK && ret != BZ_STREAM_END)
|
|
|
|
throw CompressionError("error while decompressing bzip2 file");
|
|
|
|
|
|
|
|
finished = ret == BZ_STREAM_END;
|
|
|
|
|
|
|
|
if (strm.avail_out < sizeof(outbuf) || strm.avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - strm.avail_out);
|
|
|
|
strm.next_out = (char *) outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
2018-03-16 15:59:31 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-06 13:40:29 +00:00
|
|
|
}
|
|
|
|
};
|
2018-03-16 15:59:31 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
struct BrotliDecompressionSink : ChunkedCompressionSink
|
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
BrotliDecoderState * state;
|
|
|
|
bool finished = false;
|
2017-12-29 20:42:14 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
BrotliDecompressionSink(Sink & nextSink) : nextSink(nextSink)
|
|
|
|
{
|
|
|
|
state = BrotliDecoderCreateInstance(nullptr, nullptr, nullptr);
|
|
|
|
if (!state)
|
|
|
|
throw CompressionError("unable to initialize brotli decoder");
|
|
|
|
}
|
2017-12-29 20:42:14 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
~BrotliDecompressionSink()
|
|
|
|
{
|
|
|
|
BrotliDecoderDestroyInstance(state);
|
2017-12-29 20:42:14 +00:00
|
|
|
}
|
2018-08-06 13:40:29 +00:00
|
|
|
|
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
flush();
|
|
|
|
writeInternal(nullptr, 0);
|
|
|
|
}
|
|
|
|
|
2018-08-21 13:20:23 +00:00
|
|
|
void writeInternal(const unsigned char * data, size_t len) override
|
2018-08-06 13:40:29 +00:00
|
|
|
{
|
|
|
|
const uint8_t * next_in = data;
|
|
|
|
size_t avail_in = len;
|
|
|
|
uint8_t * next_out = outbuf;
|
|
|
|
size_t avail_out = sizeof(outbuf);
|
|
|
|
|
|
|
|
while (!finished && (!data || avail_in)) {
|
|
|
|
checkInterrupt();
|
|
|
|
|
|
|
|
if (!BrotliDecoderDecompressStream(state,
|
|
|
|
&avail_in, &next_in,
|
|
|
|
&avail_out, &next_out,
|
|
|
|
nullptr))
|
|
|
|
throw CompressionError("error while decompressing brotli file");
|
|
|
|
|
|
|
|
if (avail_out < sizeof(outbuf) || avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - avail_out);
|
|
|
|
next_out = outbuf;
|
|
|
|
avail_out = sizeof(outbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
finished = BrotliDecoderIsFinished(state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-03-13 13:40:15 +00:00
|
|
|
|
2018-03-16 15:59:31 +00:00
|
|
|
ref<std::string> decompress(const std::string & method, const std::string & in)
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
2018-08-06 13:40:29 +00:00
|
|
|
StringSink ssink;
|
|
|
|
auto sink = makeDecompressionSink(method, ssink);
|
|
|
|
(*sink)(in);
|
|
|
|
sink->finish();
|
|
|
|
return ssink.s;
|
2016-05-04 13:46:25 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
ref<CompressionSink> makeDecompressionSink(const std::string & method, Sink & nextSink)
|
2016-04-29 15:02:57 +00:00
|
|
|
{
|
2018-08-06 13:40:29 +00:00
|
|
|
if (method == "none" || method == "")
|
|
|
|
return make_ref<NoneSink>(nextSink);
|
2016-04-29 15:02:57 +00:00
|
|
|
else if (method == "xz")
|
2018-08-06 13:40:29 +00:00
|
|
|
return make_ref<XzDecompressionSink>(nextSink);
|
2016-04-29 15:43:37 +00:00
|
|
|
else if (method == "bzip2")
|
2018-08-06 13:40:29 +00:00
|
|
|
return make_ref<BzipDecompressionSink>(nextSink);
|
2019-12-13 08:29:33 +00:00
|
|
|
else if (method == "gzip")
|
|
|
|
return make_ref<GzipDecompressionSink>(nextSink);
|
2017-03-13 13:40:15 +00:00
|
|
|
else if (method == "br")
|
2018-08-06 13:40:29 +00:00
|
|
|
return make_ref<BrotliDecompressionSink>(nextSink);
|
2016-04-29 15:02:57 +00:00
|
|
|
else
|
2018-03-16 15:59:31 +00:00
|
|
|
throw UnknownCompressionMethod("unknown compression method '%s'", method);
|
2016-04-29 15:02:57 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
struct XzCompressionSink : CompressionSink
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
uint8_t outbuf[BUFSIZ];
|
|
|
|
lzma_stream strm = LZMA_STREAM_INIT;
|
|
|
|
bool finished = false;
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
XzCompressionSink(Sink & nextSink, bool parallel) : nextSink(nextSink)
|
|
|
|
{
|
|
|
|
lzma_ret ret;
|
|
|
|
bool done = false;
|
|
|
|
|
|
|
|
if (parallel) {
|
|
|
|
#ifdef HAVE_LZMA_MT
|
|
|
|
lzma_mt mt_options = {};
|
|
|
|
mt_options.flags = 0;
|
|
|
|
mt_options.timeout = 300; // Using the same setting as the xz cmd line
|
|
|
|
mt_options.preset = LZMA_PRESET_DEFAULT;
|
|
|
|
mt_options.filters = NULL;
|
|
|
|
mt_options.check = LZMA_CHECK_CRC64;
|
|
|
|
mt_options.threads = lzma_cputhreads();
|
|
|
|
mt_options.block_size = 0;
|
|
|
|
if (mt_options.threads == 0)
|
|
|
|
mt_options.threads = 1;
|
|
|
|
// FIXME: maybe use lzma_stream_encoder_mt_memusage() to control the
|
|
|
|
// number of threads.
|
|
|
|
ret = lzma_stream_encoder_mt(&strm, &mt_options);
|
|
|
|
done = true;
|
|
|
|
#else
|
2018-09-17 14:36:11 +00:00
|
|
|
printMsg(lvlError, "warning: parallel XZ compression requested but not supported, falling back to single-threaded compression");
|
2018-08-06 13:40:29 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!done)
|
|
|
|
ret = lzma_easy_encoder(&strm, 6, LZMA_CHECK_CRC64);
|
|
|
|
|
2016-05-04 13:46:25 +00:00
|
|
|
if (ret != LZMA_OK)
|
2017-03-21 18:23:07 +00:00
|
|
|
throw CompressionError("unable to initialise lzma encoder");
|
2018-08-06 13:40:29 +00:00
|
|
|
|
2016-05-04 13:46:25 +00:00
|
|
|
// FIXME: apply the x86 BCJ filter?
|
|
|
|
|
|
|
|
strm.next_out = outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
~XzCompressionSink()
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
|
|
|
lzma_end(&strm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
CompressionSink::flush();
|
2018-08-06 13:40:29 +00:00
|
|
|
write(nullptr, 0);
|
2016-05-04 13:46:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void write(const unsigned char * data, size_t len) override
|
|
|
|
{
|
|
|
|
strm.next_in = data;
|
|
|
|
strm.avail_in = len;
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
while (!finished && (!data || strm.avail_in)) {
|
2016-05-04 13:46:25 +00:00
|
|
|
checkInterrupt();
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
lzma_ret ret = lzma_code(&strm, data ? LZMA_RUN : LZMA_FINISH);
|
|
|
|
if (ret != LZMA_OK && ret != LZMA_STREAM_END)
|
|
|
|
throw CompressionError("error %d while compressing xz file", ret);
|
|
|
|
|
|
|
|
finished = ret == LZMA_STREAM_END;
|
2016-05-04 13:46:25 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
if (strm.avail_out < sizeof(outbuf) || strm.avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - strm.avail_out);
|
2016-05-04 13:46:25 +00:00
|
|
|
strm.next_out = outbuf;
|
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
struct BzipCompressionSink : ChunkedCompressionSink
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
bz_stream strm;
|
|
|
|
bool finished = false;
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
BzipCompressionSink(Sink & nextSink) : nextSink(nextSink)
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
|
|
|
memset(&strm, 0, sizeof(strm));
|
|
|
|
int ret = BZ2_bzCompressInit(&strm, 9, 0, 30);
|
|
|
|
if (ret != BZ_OK)
|
2017-03-21 18:23:07 +00:00
|
|
|
throw CompressionError("unable to initialise bzip2 encoder");
|
2016-05-04 13:46:25 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
strm.next_out = (char *) outbuf;
|
2016-05-04 13:46:25 +00:00
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
~BzipCompressionSink()
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
|
|
|
BZ2_bzCompressEnd(&strm);
|
|
|
|
}
|
|
|
|
|
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
flush();
|
2018-08-06 13:40:29 +00:00
|
|
|
writeInternal(nullptr, 0);
|
2018-05-02 10:54:30 +00:00
|
|
|
}
|
|
|
|
|
2018-08-21 13:20:23 +00:00
|
|
|
void writeInternal(const unsigned char * data, size_t len) override
|
2016-05-04 13:46:25 +00:00
|
|
|
{
|
2018-05-02 10:54:30 +00:00
|
|
|
assert(len <= std::numeric_limits<decltype(strm.avail_in)>::max());
|
2016-05-04 13:46:25 +00:00
|
|
|
|
|
|
|
strm.next_in = (char *) data;
|
|
|
|
strm.avail_in = len;
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
while (!finished && (!data || strm.avail_in)) {
|
2016-05-04 13:46:25 +00:00
|
|
|
checkInterrupt();
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
int ret = BZ2_bzCompress(&strm, data ? BZ_RUN : BZ_FINISH);
|
|
|
|
if (ret != BZ_RUN_OK && ret != BZ_FINISH_OK && ret != BZ_STREAM_END)
|
|
|
|
throw CompressionError("error %d while compressing bzip2 file", ret);
|
2016-05-04 13:46:25 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
finished = ret == BZ_STREAM_END;
|
|
|
|
|
|
|
|
if (strm.avail_out < sizeof(outbuf) || strm.avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - strm.avail_out);
|
|
|
|
strm.next_out = (char *) outbuf;
|
2016-05-04 13:46:25 +00:00
|
|
|
strm.avail_out = sizeof(outbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
struct BrotliCompressionSink : ChunkedCompressionSink
|
2017-12-29 20:42:14 +00:00
|
|
|
{
|
|
|
|
Sink & nextSink;
|
|
|
|
uint8_t outbuf[BUFSIZ];
|
|
|
|
BrotliEncoderState *state;
|
|
|
|
bool finished = false;
|
2017-03-14 14:03:53 +00:00
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
BrotliCompressionSink(Sink & nextSink) : nextSink(nextSink)
|
2017-03-14 14:03:53 +00:00
|
|
|
{
|
2017-12-29 20:42:14 +00:00
|
|
|
state = BrotliEncoderCreateInstance(nullptr, nullptr, nullptr);
|
|
|
|
if (!state)
|
|
|
|
throw CompressionError("unable to initialise brotli encoder");
|
2017-03-14 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
~BrotliCompressionSink()
|
2017-03-14 14:03:53 +00:00
|
|
|
{
|
2017-12-29 20:42:14 +00:00
|
|
|
BrotliEncoderDestroyInstance(state);
|
2017-03-14 14:03:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void finish() override
|
|
|
|
{
|
|
|
|
flush();
|
2018-08-06 13:40:29 +00:00
|
|
|
writeInternal(nullptr, 0);
|
2017-12-29 20:42:14 +00:00
|
|
|
}
|
2018-05-02 10:54:30 +00:00
|
|
|
|
2018-08-21 13:20:23 +00:00
|
|
|
void writeInternal(const unsigned char * data, size_t len) override
|
2017-12-29 20:42:14 +00:00
|
|
|
{
|
2018-08-06 13:40:29 +00:00
|
|
|
const uint8_t * next_in = data;
|
2017-12-29 20:42:14 +00:00
|
|
|
size_t avail_in = len;
|
2018-08-06 13:40:29 +00:00
|
|
|
uint8_t * next_out = outbuf;
|
2017-12-29 20:42:14 +00:00
|
|
|
size_t avail_out = sizeof(outbuf);
|
|
|
|
|
2018-08-06 13:40:29 +00:00
|
|
|
while (!finished && (!data || avail_in)) {
|
2017-12-29 20:42:14 +00:00
|
|
|
checkInterrupt();
|
|
|
|
|
|
|
|
if (!BrotliEncoderCompressStream(state,
|
2018-08-06 13:40:29 +00:00
|
|
|
data ? BROTLI_OPERATION_PROCESS : BROTLI_OPERATION_FINISH,
|
|
|
|
&avail_in, &next_in,
|
|
|
|
&avail_out, &next_out,
|
|
|
|
nullptr))
|
|
|
|
throw CompressionError("error while compressing brotli compression");
|
2017-12-29 20:42:14 +00:00
|
|
|
|
|
|
|
if (avail_out < sizeof(outbuf) || avail_in == 0) {
|
|
|
|
nextSink(outbuf, sizeof(outbuf) - avail_out);
|
|
|
|
next_out = outbuf;
|
|
|
|
avail_out = sizeof(outbuf);
|
|
|
|
}
|
2018-08-06 13:40:29 +00:00
|
|
|
|
|
|
|
finished = BrotliEncoderIsFinished(state);
|
2017-12-29 20:42:14 +00:00
|
|
|
}
|
2017-03-14 14:03:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-07 16:54:08 +00:00
|
|
|
ref<CompressionSink> makeCompressionSink(const std::string & method, Sink & nextSink, const bool parallel)
|
2016-04-29 15:02:57 +00:00
|
|
|
{
|
|
|
|
if (method == "none")
|
2016-05-04 13:46:25 +00:00
|
|
|
return make_ref<NoneSink>(nextSink);
|
2016-04-29 15:02:57 +00:00
|
|
|
else if (method == "xz")
|
2018-08-06 13:40:29 +00:00
|
|
|
return make_ref<XzCompressionSink>(nextSink, parallel);
|
2016-04-29 15:43:37 +00:00
|
|
|
else if (method == "bzip2")
|
2018-08-06 13:40:29 +00:00
|
|
|
return make_ref<BzipCompressionSink>(nextSink);
|
2017-03-14 14:03:53 +00:00
|
|
|
else if (method == "br")
|
2018-08-06 13:40:29 +00:00
|
|
|
return make_ref<BrotliCompressionSink>(nextSink);
|
2016-04-29 15:02:57 +00:00
|
|
|
else
|
2017-07-30 11:27:57 +00:00
|
|
|
throw UnknownCompressionMethod(format("unknown compression method '%s'") % method);
|
2016-04-29 15:02:57 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 15:59:31 +00:00
|
|
|
ref<std::string> compress(const std::string & method, const std::string & in, const bool parallel)
|
|
|
|
{
|
|
|
|
StringSink ssink;
|
|
|
|
auto sink = makeCompressionSink(method, ssink, parallel);
|
|
|
|
(*sink)(in);
|
|
|
|
sink->finish();
|
|
|
|
return ssink.s;
|
|
|
|
}
|
|
|
|
|
2015-10-30 11:33:40 +00:00
|
|
|
}
|