2020-01-04 07:31:00 +00:00
|
|
|
#include <IO/CompressionMethod.h>
|
|
|
|
|
2020-11-09 22:52:22 +00:00
|
|
|
#include <IO/BrotliReadBuffer.h>
|
|
|
|
#include <IO/BrotliWriteBuffer.h>
|
|
|
|
#include <IO/LZMADeflatingWriteBuffer.h>
|
|
|
|
#include <IO/LZMAInflatingReadBuffer.h>
|
2020-01-04 07:31:00 +00:00
|
|
|
#include <IO/ReadBuffer.h>
|
|
|
|
#include <IO/WriteBuffer.h>
|
|
|
|
#include <IO/ZlibDeflatingWriteBuffer.h>
|
2020-11-09 22:52:22 +00:00
|
|
|
#include <IO/ZlibInflatingReadBuffer.h>
|
2020-11-17 16:02:10 +00:00
|
|
|
#include <IO/ZstdDeflatingWriteBuffer.h>
|
|
|
|
#include <IO/ZstdInflatingReadBuffer.h>
|
2020-01-04 07:31:00 +00:00
|
|
|
|
2020-04-16 12:31:57 +00:00
|
|
|
#if !defined(ARCADIA_BUILD)
|
|
|
|
# include <Common/config.h>
|
|
|
|
#endif
|
2020-01-04 07:31:00 +00:00
|
|
|
|
2021-03-03 11:51:09 +00:00
|
|
|
#include <boost/algorithm/string/case_conv.hpp>
|
|
|
|
|
2020-01-04 07:31:00 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
std::string toContentEncodingName(CompressionMethod method)
|
|
|
|
{
|
|
|
|
switch (method)
|
|
|
|
{
|
2020-11-09 22:52:22 +00:00
|
|
|
case CompressionMethod::Gzip:
|
|
|
|
return "gzip";
|
|
|
|
case CompressionMethod::Zlib:
|
|
|
|
return "deflate";
|
|
|
|
case CompressionMethod::Brotli:
|
|
|
|
return "br";
|
|
|
|
case CompressionMethod::Xz:
|
|
|
|
return "xz";
|
2020-11-17 16:02:10 +00:00
|
|
|
case CompressionMethod::Zstd:
|
|
|
|
return "zstd";
|
2020-11-09 22:52:22 +00:00
|
|
|
case CompressionMethod::None:
|
|
|
|
return "";
|
2020-01-04 07:31:00 +00:00
|
|
|
}
|
|
|
|
__builtin_unreachable();
|
|
|
|
}
|
|
|
|
|
|
|
|
CompressionMethod chooseCompressionMethod(const std::string & path, const std::string & hint)
|
|
|
|
{
|
|
|
|
std::string file_extension;
|
|
|
|
if (hint.empty() || hint == "auto")
|
|
|
|
{
|
|
|
|
auto pos = path.find_last_of('.');
|
|
|
|
if (pos != std::string::npos)
|
|
|
|
file_extension = path.substr(pos + 1, std::string::npos);
|
|
|
|
}
|
|
|
|
|
2021-03-03 11:51:09 +00:00
|
|
|
std::string method_str = file_extension.empty() ? hint : std::move(file_extension);
|
|
|
|
boost::algorithm::to_lower(method_str);
|
2020-01-04 07:31:00 +00:00
|
|
|
|
2021-03-03 11:51:09 +00:00
|
|
|
if (method_str == "gzip" || method_str == "gz")
|
2020-01-04 07:31:00 +00:00
|
|
|
return CompressionMethod::Gzip;
|
2021-03-03 11:51:09 +00:00
|
|
|
if (method_str == "deflate")
|
2020-01-04 07:31:00 +00:00
|
|
|
return CompressionMethod::Zlib;
|
2021-03-03 11:51:09 +00:00
|
|
|
if (method_str == "brotli" || method_str == "br")
|
2020-01-04 07:31:00 +00:00
|
|
|
return CompressionMethod::Brotli;
|
2021-03-03 11:51:09 +00:00
|
|
|
if (method_str == "lzma" || method_str == "xz")
|
2020-11-09 22:52:22 +00:00
|
|
|
return CompressionMethod::Xz;
|
2021-03-03 11:51:09 +00:00
|
|
|
if (method_str == "zstd" || method_str == "zst")
|
2020-11-17 16:02:10 +00:00
|
|
|
return CompressionMethod::Zstd;
|
2020-01-04 18:50:19 +00:00
|
|
|
if (hint.empty() || hint == "auto" || hint == "none")
|
2020-01-04 07:31:00 +00:00
|
|
|
return CompressionMethod::None;
|
|
|
|
|
2020-11-09 22:52:22 +00:00
|
|
|
throw Exception(
|
2021-03-03 11:51:09 +00:00
|
|
|
"Unknown compression method " + hint + ". Only 'auto', 'none', 'gzip', 'deflate', 'br', 'xz', 'zstd' are supported as compression methods",
|
2020-01-04 07:31:00 +00:00
|
|
|
ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-04 22:59:08 +00:00
|
|
|
std::unique_ptr<ReadBuffer> wrapReadBufferWithCompressionMethod(
|
2020-11-09 22:52:22 +00:00
|
|
|
std::unique_ptr<ReadBuffer> nested, CompressionMethod method, size_t buf_size, char * existing_memory, size_t alignment)
|
2020-01-04 07:31:00 +00:00
|
|
|
{
|
|
|
|
if (method == CompressionMethod::Gzip || method == CompressionMethod::Zlib)
|
2020-01-04 22:59:08 +00:00
|
|
|
return std::make_unique<ZlibInflatingReadBuffer>(std::move(nested), method, buf_size, existing_memory, alignment);
|
2020-01-04 07:31:00 +00:00
|
|
|
#if USE_BROTLI
|
|
|
|
if (method == CompressionMethod::Brotli)
|
2020-01-04 22:59:08 +00:00
|
|
|
return std::make_unique<BrotliReadBuffer>(std::move(nested), buf_size, existing_memory, alignment);
|
2020-01-04 07:31:00 +00:00
|
|
|
#endif
|
2020-10-31 23:56:41 +00:00
|
|
|
if (method == CompressionMethod::Xz)
|
2020-11-09 22:52:22 +00:00
|
|
|
return std::make_unique<LZMAInflatingReadBuffer>(std::move(nested), buf_size, existing_memory, alignment);
|
2020-11-17 16:02:10 +00:00
|
|
|
if (method == CompressionMethod::Zstd)
|
|
|
|
return std::make_unique<ZstdInflatingReadBuffer>(std::move(nested), buf_size, existing_memory, alignment);
|
2020-01-04 07:31:00 +00:00
|
|
|
|
|
|
|
if (method == CompressionMethod::None)
|
|
|
|
return nested;
|
|
|
|
|
|
|
|
throw Exception("Unsupported compression method", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-04 22:59:08 +00:00
|
|
|
std::unique_ptr<WriteBuffer> wrapWriteBufferWithCompressionMethod(
|
2020-11-09 22:52:22 +00:00
|
|
|
std::unique_ptr<WriteBuffer> nested, CompressionMethod method, int level, size_t buf_size, char * existing_memory, size_t alignment)
|
2020-01-04 07:31:00 +00:00
|
|
|
{
|
|
|
|
if (method == DB::CompressionMethod::Gzip || method == CompressionMethod::Zlib)
|
2020-01-04 22:59:08 +00:00
|
|
|
return std::make_unique<ZlibDeflatingWriteBuffer>(std::move(nested), method, level, buf_size, existing_memory, alignment);
|
2020-01-04 07:31:00 +00:00
|
|
|
|
|
|
|
#if USE_BROTLI
|
|
|
|
if (method == DB::CompressionMethod::Brotli)
|
2020-01-04 22:59:08 +00:00
|
|
|
return std::make_unique<BrotliWriteBuffer>(std::move(nested), level, buf_size, existing_memory, alignment);
|
2020-01-04 07:31:00 +00:00
|
|
|
#endif
|
2020-11-09 22:52:22 +00:00
|
|
|
if (method == CompressionMethod::Xz)
|
|
|
|
return std::make_unique<LZMADeflatingWriteBuffer>(std::move(nested), level, buf_size, existing_memory, alignment);
|
2020-01-04 07:31:00 +00:00
|
|
|
|
2020-11-17 16:02:10 +00:00
|
|
|
if (method == CompressionMethod::Zstd)
|
|
|
|
return std::make_unique<ZstdDeflatingWriteBuffer>(std::move(nested), level, buf_size, existing_memory, alignment);
|
|
|
|
|
2020-01-04 07:31:00 +00:00
|
|
|
if (method == CompressionMethod::None)
|
|
|
|
return nested;
|
|
|
|
|
|
|
|
throw Exception("Unsupported compression method", ErrorCodes::NOT_IMPLEMENTED);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|