mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 19:14:30 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
163 lines
5.7 KiB
C++
163 lines
5.7 KiB
C++
#include <Compression/CompressionFactory.h>
|
|
#include <Parsers/parseQuery.h>
|
|
#include <Parsers/ParserCreateQuery.h>
|
|
#include <Parsers/ASTFunction.h>
|
|
#include <Parsers/ASTIdentifier.h>
|
|
#include <Parsers/ASTLiteral.h>
|
|
#include <Common/typeid_cast.h>
|
|
#include <Poco/String.h>
|
|
#include <IO/ReadBuffer.h>
|
|
#include <Parsers/queryToString.h>
|
|
#include <Compression/CompressionCodecMultiple.h>
|
|
#include <Compression/CompressionCodecLZ4.h>
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
extern const int UNKNOWN_CODEC;
|
|
extern const int UNEXPECTED_AST_STRUCTURE;
|
|
extern const int DATA_TYPE_CANNOT_HAVE_ARGUMENTS;
|
|
}
|
|
|
|
CompressionCodecPtr CompressionCodecFactory::getDefaultCodec() const
|
|
{
|
|
return default_codec;
|
|
}
|
|
|
|
|
|
CompressionCodecPtr CompressionCodecFactory::get(const String & family_name, std::optional<int> level) const
|
|
{
|
|
if (level)
|
|
{
|
|
auto literal = std::make_shared<ASTLiteral>(static_cast<UInt64>(*level));
|
|
return get(makeASTFunction("CODEC", makeASTFunction(Poco::toUpper(family_name), literal)));
|
|
}
|
|
else
|
|
{
|
|
auto identifier = std::make_shared<ASTIdentifier>(Poco::toUpper(family_name));
|
|
return get(makeASTFunction("CODEC", identifier));
|
|
}
|
|
}
|
|
|
|
|
|
CompressionCodecPtr CompressionCodecFactory::get(const ASTPtr & ast, DataTypePtr column_type) const
|
|
{
|
|
if (const auto * func = ast->as<ASTFunction>())
|
|
{
|
|
Codecs codecs;
|
|
codecs.reserve(func->arguments->children.size());
|
|
for (const auto & inner_codec_ast : func->arguments->children)
|
|
{
|
|
if (const auto * family_name = inner_codec_ast->as<ASTIdentifier>())
|
|
codecs.emplace_back(getImpl(family_name->name, {}, column_type));
|
|
else if (const auto * ast_func = inner_codec_ast->as<ASTFunction>())
|
|
codecs.emplace_back(getImpl(ast_func->name, ast_func->arguments, column_type));
|
|
else
|
|
throw Exception("Unexpected AST element for compression codec", ErrorCodes::UNEXPECTED_AST_STRUCTURE);
|
|
}
|
|
|
|
if (codecs.size() == 1)
|
|
return codecs.back();
|
|
else if (codecs.size() > 1)
|
|
return std::make_shared<CompressionCodecMultiple>(codecs);
|
|
}
|
|
|
|
throw Exception("Unknown codec family: " + queryToString(ast), ErrorCodes::UNKNOWN_CODEC);
|
|
}
|
|
|
|
CompressionCodecPtr CompressionCodecFactory::get(const uint8_t byte_code) const
|
|
{
|
|
const auto family_code_and_creator = family_code_with_codec.find(byte_code);
|
|
|
|
if (family_code_and_creator == family_code_with_codec.end())
|
|
throw Exception("Unknown codec family code: " + toString(byte_code), ErrorCodes::UNKNOWN_CODEC);
|
|
|
|
return family_code_and_creator->second({}, nullptr);
|
|
}
|
|
|
|
|
|
CompressionCodecPtr CompressionCodecFactory::getImpl(const String & family_name, const ASTPtr & arguments, DataTypePtr column_type) const
|
|
{
|
|
if (family_name == "Multiple")
|
|
throw Exception("Codec Multiple cannot be specified directly", ErrorCodes::UNKNOWN_CODEC);
|
|
|
|
const auto family_and_creator = family_name_with_codec.find(family_name);
|
|
|
|
if (family_and_creator == family_name_with_codec.end())
|
|
throw Exception("Unknown codec family: " + family_name, ErrorCodes::UNKNOWN_CODEC);
|
|
|
|
return family_and_creator->second(arguments, column_type);
|
|
}
|
|
|
|
void CompressionCodecFactory::registerCompressionCodecWithType(
|
|
const String & family_name,
|
|
std::optional<uint8_t> byte_code,
|
|
CreatorWithType creator)
|
|
{
|
|
if (creator == nullptr)
|
|
throw Exception("CompressionCodecFactory: the codec family " + family_name + " has been provided a null constructor",
|
|
ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (!family_name_with_codec.emplace(family_name, creator).second)
|
|
throw Exception("CompressionCodecFactory: the codec family name '" + family_name + "' is not unique", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (byte_code)
|
|
if (!family_code_with_codec.emplace(*byte_code, creator).second)
|
|
throw Exception("CompressionCodecFactory: the codec family name '" + family_name + "' is not unique", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
void CompressionCodecFactory::registerCompressionCodec(const String & family_name, std::optional<uint8_t> byte_code, Creator creator)
|
|
{
|
|
registerCompressionCodecWithType(family_name, byte_code, [family_name, creator](const ASTPtr & ast, DataTypePtr /* data_type */)
|
|
{
|
|
return creator(ast);
|
|
});
|
|
}
|
|
|
|
void CompressionCodecFactory::registerSimpleCompressionCodec(
|
|
const String & family_name,
|
|
std::optional<uint8_t> byte_code,
|
|
SimpleCreator creator)
|
|
{
|
|
registerCompressionCodec(family_name, byte_code, [family_name, creator](const ASTPtr & ast)
|
|
{
|
|
if (ast)
|
|
throw Exception("Compression codec " + family_name + " cannot have arguments", ErrorCodes::DATA_TYPE_CANNOT_HAVE_ARGUMENTS);
|
|
return creator();
|
|
});
|
|
}
|
|
|
|
|
|
void registerCodecNone(CompressionCodecFactory & factory);
|
|
void registerCodecZSTD(CompressionCodecFactory & factory);
|
|
void registerCodecDelta(CompressionCodecFactory & factory);
|
|
void registerCodecT64(CompressionCodecFactory & factory);
|
|
void registerCodecDoubleDelta(CompressionCodecFactory & factory);
|
|
void registerCodecGorilla(CompressionCodecFactory & factory);
|
|
|
|
CompressionCodecFactory::CompressionCodecFactory()
|
|
{
|
|
default_codec = std::make_shared<CompressionCodecLZ4>();
|
|
registerCodecLZ4(*this);
|
|
registerCodecNone(*this);
|
|
registerCodecZSTD(*this);
|
|
registerCodecMultiple(*this);
|
|
registerCodecLZ4HC(*this);
|
|
registerCodecDelta(*this);
|
|
registerCodecT64(*this);
|
|
registerCodecDoubleDelta(*this);
|
|
registerCodecGorilla(*this);
|
|
}
|
|
|
|
CompressionCodecFactory & CompressionCodecFactory::instance()
|
|
{
|
|
static CompressionCodecFactory ret;
|
|
return ret;
|
|
}
|
|
|
|
}
|