ClickHouse/src/Parsers/ASTDictionary.cpp

214 lines
6.0 KiB
C++

#include <Parsers/ASTDictionary.h>
#include <Poco/String.h>
namespace DB
{
ASTPtr ASTDictionaryRange::clone() const
{
auto res = std::make_shared<ASTDictionaryRange>(*this);
res->children.clear();
res->min_attr_name = min_attr_name;
res->max_attr_name = max_attr_name;
return res;
}
void ASTDictionaryRange::formatImpl(const FormatSettings & settings,
FormatState &,
FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "RANGE"
<< (settings.hilite ? hilite_none : "")
<< "("
<< (settings.hilite ? hilite_keyword : "")
<< "MIN "
<< (settings.hilite ? hilite_none : "")
<< min_attr_name << " "
<< (settings.hilite ? hilite_keyword : "")
<< "MAX "
<< (settings.hilite ? hilite_none : "")
<< max_attr_name << ")";
}
ASTPtr ASTDictionaryLifetime::clone() const
{
auto res = std::make_shared<ASTDictionaryLifetime>(*this);
res->children.clear();
res->min_sec = min_sec;
res->max_sec = max_sec;
return res;
}
void ASTDictionaryLifetime::formatImpl(const FormatSettings & settings,
FormatState &,
FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "LIFETIME"
<< (settings.hilite ? hilite_none : "")
<< "("
<< (settings.hilite ? hilite_keyword : "")
<< "MIN "
<< (settings.hilite ? hilite_none : "")
<< min_sec << " "
<< (settings.hilite ? hilite_keyword : "")
<< "MAX "
<< (settings.hilite ? hilite_none : "")
<< max_sec << ")";
}
ASTPtr ASTDictionaryLayout::clone() const
{
auto res = std::make_shared<ASTDictionaryLayout>(*this);
res->children.clear();
res->layout_type = layout_type;
res->parameters.clear();
res->has_brackets = has_brackets;
for (const auto & parameter : parameters)
{
res->parameters.emplace_back(parameter.first, nullptr);
res->set(res->parameters.back().second, parameter.second->clone());
}
return res;
}
void ASTDictionaryLayout::formatImpl(const FormatSettings & settings,
FormatState & state,
FormatStateStacked frame) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "LAYOUT"
<< (settings.hilite ? hilite_none : "")
<< "("
<< (settings.hilite ? hilite_keyword : "")
<< Poco::toUpper(layout_type)
<< (settings.hilite ? hilite_none : "");
if (has_brackets)
settings.ostr << "(";
bool first = true;
for (const auto & parameter : parameters)
{
settings.ostr << (first ? "" : " ")
<< (settings.hilite ? hilite_keyword : "")
<< Poco::toUpper(parameter.first)
<< (settings.hilite ? hilite_none : "")
<< " ";
parameter.second->formatImpl(settings, state, frame);
first = false;
}
if (has_brackets)
settings.ostr << ")";
settings.ostr << ")";
}
ASTPtr ASTDictionarySettings::clone() const
{
auto res = std::make_shared<ASTDictionarySettings>(*this);
res->children.clear();
res->changes = changes;
return res;
}
void ASTDictionarySettings::formatImpl(const FormatSettings & settings,
FormatState &,
FormatStateStacked) const
{
settings.ostr << (settings.hilite ? hilite_keyword : "")
<< "SETTINGS"
<< (settings.hilite ? hilite_none : "")
<< "(";
for (auto it = changes.begin(); it != changes.end(); ++it)
{
if (it != changes.begin())
settings.ostr << ", ";
settings.ostr << it->name << " = " << applyVisitor(FieldVisitorToString(), it->value);
}
settings.ostr << (settings.hilite ? hilite_none : "") << ")";
}
ASTPtr ASTDictionary::clone() const
{
auto res = std::make_shared<ASTDictionary>(*this);
res->children.clear();
if (source)
res->set(res->source, source->clone());
if (primary_key)
res->set(res->primary_key, primary_key->clone());
if (lifetime)
res->set(res->lifetime, lifetime->clone());
if (layout)
res->set(res->layout, layout->clone());
if (range)
res->set(res->range, range->clone());
if (dict_settings)
res->set(res->dict_settings, dict_settings->clone());
return res;
}
void ASTDictionary::formatImpl(const FormatSettings & settings, FormatState & state, FormatStateStacked frame) const
{
if (primary_key)
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << settings.nl_or_ws << "PRIMARY KEY "
<< (settings.hilite ? hilite_none : "");
primary_key->formatImpl(settings, state, frame);
}
if (source)
{
settings.ostr << (settings.hilite ? hilite_keyword : "") << settings.nl_or_ws << "SOURCE("
<< (settings.hilite ? hilite_none : "");
source->formatImpl(settings, state, frame);
settings.ostr << ")";
}
if (lifetime)
{
settings.ostr << settings.nl_or_ws;
lifetime->formatImpl(settings, state, frame);
}
if (layout)
{
settings.ostr << settings.nl_or_ws;
layout->formatImpl(settings, state, frame);
}
if (range)
{
settings.ostr << settings.nl_or_ws;
range->formatImpl(settings, state, frame);
}
if (dict_settings)
{
settings.ostr << settings.nl_or_ws;
dict_settings->formatImpl(settings, state, frame);
}
}
}