ClickHouse/src/IO/CompressionMethod.cpp

125 lines
4.4 KiB
C++
Raw Normal View History

#include <IO/CompressionMethod.h>
#include <IO/BrotliReadBuffer.h>
#include <IO/BrotliWriteBuffer.h>
#include <IO/LZMADeflatingWriteBuffer.h>
#include <IO/LZMAInflatingReadBuffer.h>
#include <IO/ReadBuffer.h>
#include <IO/WriteBuffer.h>
#include <IO/ZlibDeflatingWriteBuffer.h>
#include <IO/ZlibInflatingReadBuffer.h>
2020-11-17 16:02:10 +00:00
#include <IO/ZstdDeflatingWriteBuffer.h>
#include <IO/ZstdInflatingReadBuffer.h>
#if !defined(ARCADIA_BUILD)
# include <Common/config.h>
#endif
2021-03-03 11:51:09 +00:00
#include <boost/algorithm/string/case_conv.hpp>
namespace DB
{
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
}
std::string toContentEncodingName(CompressionMethod method)
{
switch (method)
{
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";
case CompressionMethod::None:
return "";
}
__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);
2021-03-03 11:51:09 +00:00
if (method_str == "gzip" || method_str == "gz")
return CompressionMethod::Gzip;
2021-03-03 11:51:09 +00:00
if (method_str == "deflate")
return CompressionMethod::Zlib;
2021-03-03 11:51:09 +00:00
if (method_str == "brotli" || method_str == "br")
return CompressionMethod::Brotli;
2021-03-03 11:51:09 +00:00
if (method_str == "lzma" || method_str == "xz")
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")
return CompressionMethod::None;
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",
ErrorCodes::NOT_IMPLEMENTED);
}
2020-01-04 22:59:08 +00:00
std::unique_ptr<ReadBuffer> wrapReadBufferWithCompressionMethod(
std::unique_ptr<ReadBuffer> nested, CompressionMethod method, size_t buf_size, char * existing_memory, size_t alignment)
{
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);
#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);
#endif
if (method == CompressionMethod::Xz)
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);
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(
std::unique_ptr<WriteBuffer> nested, CompressionMethod method, int level, size_t buf_size, char * existing_memory, size_t alignment)
{
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);
#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);
#endif
if (method == CompressionMethod::Xz)
return std::make_unique<LZMADeflatingWriteBuffer>(std::move(nested), level, buf_size, existing_memory, alignment);
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);
if (method == CompressionMethod::None)
return nested;
throw Exception("Unsupported compression method", ErrorCodes::NOT_IMPLEMENTED);
}
}