mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
148 lines
3.6 KiB
C++
148 lines
3.6 KiB
C++
#include <Parsers/ASTIdentifier.h>
|
|
#include <Common/typeid_cast.h>
|
|
#include <IO/WriteBufferFromOStream.h>
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void ASTIdentifier::formatImplWithoutAlias(const FormatSettings & settings, FormatState &, FormatStateStacked) const
|
|
{
|
|
auto format_element = [&](const String & elem_name)
|
|
{
|
|
settings.ostr << (settings.hilite ? hilite_identifier : "");
|
|
settings.writeIdentifier(elem_name);
|
|
settings.ostr << (settings.hilite ? hilite_none : "");
|
|
};
|
|
|
|
/// A simple or compound identifier?
|
|
|
|
if (name_parts.size() > 1)
|
|
{
|
|
for (size_t i = 0, size = name_parts.size(); i < size; ++i)
|
|
{
|
|
if (i != 0)
|
|
settings.ostr << '.';
|
|
|
|
format_element(name_parts[i]);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
format_element(name);
|
|
}
|
|
}
|
|
|
|
void ASTIdentifier::appendColumnNameImpl(WriteBuffer & ostr) const
|
|
{
|
|
writeString(name, ostr);
|
|
}
|
|
|
|
ASTPtr createTableIdentifier(const String & database_name, const String & table_name)
|
|
{
|
|
if (database_name.empty())
|
|
return ASTIdentifier::createSpecial(table_name);
|
|
|
|
ASTPtr database_and_table = ASTIdentifier::createSpecial(database_name + "." + table_name, {database_name, table_name});
|
|
return database_and_table;
|
|
}
|
|
|
|
bool isIdentifier(const IAST * const ast)
|
|
{
|
|
if (ast)
|
|
return typeid_cast<const ASTIdentifier *>(ast);
|
|
return false;
|
|
}
|
|
|
|
std::optional<String> getIdentifierName(const IAST * const ast)
|
|
{
|
|
if (ast)
|
|
if (auto node = typeid_cast<const ASTIdentifier *>(ast))
|
|
return node->name;
|
|
return {};
|
|
}
|
|
|
|
bool getIdentifierName(const ASTPtr & ast, String & name)
|
|
{
|
|
if (ast)
|
|
if (auto node = typeid_cast<const ASTIdentifier *>(ast.get()))
|
|
{
|
|
name = node->name;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
std::optional<String> getColumnIdentifierName(const ASTIdentifier & node)
|
|
{
|
|
if (!node.special)
|
|
return node.name;
|
|
return {};
|
|
}
|
|
|
|
std::optional<String> getColumnIdentifierName(const ASTPtr & ast)
|
|
{
|
|
if (ast)
|
|
if (auto id = typeid_cast<const ASTIdentifier *>(ast.get()))
|
|
if (!id->special)
|
|
return id->name;
|
|
return {};
|
|
}
|
|
|
|
std::optional<String> getTableIdentifierName(const ASTIdentifier & node)
|
|
{
|
|
if (node.special)
|
|
return node.name;
|
|
return {};
|
|
}
|
|
|
|
std::optional<String> getTableIdentifierName(const ASTPtr & ast)
|
|
{
|
|
if (ast)
|
|
if (auto id = typeid_cast<const ASTIdentifier *>(ast.get()))
|
|
if (id->special)
|
|
return id->name;
|
|
return {};
|
|
}
|
|
|
|
void setIdentifierSpecial(ASTPtr & ast)
|
|
{
|
|
if (ast)
|
|
if (ASTIdentifier * id = typeid_cast<ASTIdentifier *>(ast.get()))
|
|
id->setSpecial();
|
|
}
|
|
|
|
void addIdentifierQualifier(ASTIdentifier & identifier, const String & database, const String & table, const String & alias)
|
|
{
|
|
if (!alias.empty())
|
|
{
|
|
identifier.name_parts.emplace_back(alias);
|
|
}
|
|
else
|
|
{
|
|
if (!database.empty())
|
|
identifier.name_parts.emplace_back(database);
|
|
identifier.name_parts.emplace_back(table);
|
|
}
|
|
}
|
|
|
|
bool doesIdentifierBelongTo(const ASTIdentifier & identifier, const String & database, const String & table)
|
|
{
|
|
size_t num_components = identifier.name_parts.size();
|
|
if (num_components >= 3)
|
|
return identifier.name_parts[0] == database &&
|
|
identifier.name_parts[1] == table;
|
|
return false;
|
|
}
|
|
|
|
bool doesIdentifierBelongTo(const ASTIdentifier & identifier, const String & table)
|
|
{
|
|
size_t num_components = identifier.name_parts.size();
|
|
if (num_components >= 2)
|
|
return identifier.name_parts[0] == table;
|
|
return false;
|
|
}
|
|
|
|
}
|