2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/ZlibDeflatingWriteBuffer.h>
|
2017-01-07 16:11:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
ZlibDeflatingWriteBuffer::ZlibDeflatingWriteBuffer(
|
2017-04-01 07:20:54 +00:00
|
|
|
WriteBuffer & out_,
|
|
|
|
ZlibCompressionMethod compression_method,
|
|
|
|
int compression_level,
|
|
|
|
size_t buf_size,
|
|
|
|
char * existing_memory,
|
|
|
|
size_t alignment)
|
|
|
|
: BufferWithOwnMemory<WriteBuffer>(buf_size, existing_memory, alignment)
|
|
|
|
, out(out_)
|
2017-01-07 16:11:30 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
zstr.zalloc = Z_NULL;
|
|
|
|
zstr.zfree = Z_NULL;
|
|
|
|
zstr.opaque = Z_NULL;
|
|
|
|
zstr.next_in = 0;
|
|
|
|
zstr.avail_in = 0;
|
|
|
|
zstr.next_out = 0;
|
|
|
|
zstr.avail_out = 0;
|
|
|
|
|
|
|
|
int window_bits = 15;
|
|
|
|
if (compression_method == ZlibCompressionMethod::Gzip)
|
|
|
|
{
|
|
|
|
window_bits += 16;
|
|
|
|
}
|
2017-01-07 16:11:30 +00:00
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wold-style-cast"
|
2017-04-01 07:20:54 +00:00
|
|
|
int rc = deflateInit2(&zstr, compression_level, Z_DEFLATED, window_bits, 8, Z_DEFAULT_STRATEGY);
|
2017-01-07 16:11:30 +00:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (rc != Z_OK)
|
|
|
|
throw Exception(std::string("deflateInit2 failed: ") + zError(rc), ErrorCodes::ZLIB_DEFLATE_FAILED);
|
2017-01-07 16:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ZlibDeflatingWriteBuffer::~ZlibDeflatingWriteBuffer()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
finish();
|
|
|
|
|
|
|
|
int rc = deflateEnd(&zstr);
|
|
|
|
if (rc != Z_OK)
|
|
|
|
throw Exception(std::string("deflateEnd failed: ") + zError(rc), ErrorCodes::ZLIB_DEFLATE_FAILED);
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
|
|
}
|
2017-01-07 16:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ZlibDeflatingWriteBuffer::nextImpl()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!offset())
|
|
|
|
return;
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
zstr.next_in = reinterpret_cast<unsigned char *>(working_buffer.begin());
|
|
|
|
zstr.avail_in = offset();
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
do
|
|
|
|
{
|
|
|
|
out.nextIfAtEnd();
|
|
|
|
zstr.next_out = reinterpret_cast<unsigned char *>(out.position());
|
|
|
|
zstr.avail_out = out.buffer().end() - out.position();
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
int rc = deflate(&zstr, Z_NO_FLUSH);
|
|
|
|
out.position() = out.buffer().end() - zstr.avail_out;
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (rc != Z_OK)
|
|
|
|
throw Exception(std::string("deflate failed: ") + zError(rc), ErrorCodes::ZLIB_DEFLATE_FAILED);
|
|
|
|
}
|
|
|
|
while (zstr.avail_in > 0 || zstr.avail_out == 0);
|
2017-01-07 16:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ZlibDeflatingWriteBuffer::finish()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (finished)
|
|
|
|
return;
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
next();
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
out.nextIfAtEnd();
|
|
|
|
zstr.next_out = reinterpret_cast<unsigned char *>(out.position());
|
|
|
|
zstr.avail_out = out.buffer().end() - out.position();
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
int rc = deflate(&zstr, Z_FINISH);
|
|
|
|
out.position() = out.buffer().end() - zstr.avail_out;
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
if (rc == Z_STREAM_END)
|
|
|
|
return;
|
|
|
|
if (rc != Z_OK)
|
|
|
|
throw Exception(std::string("deflate finish failed: ") + zError(rc), ErrorCodes::ZLIB_DEFLATE_FAILED);
|
|
|
|
}
|
2017-01-07 16:11:30 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
finished = true;
|
2017-01-07 16:11:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|