mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 20:02:05 +00:00
ee37f551a2
* make interpreter factory an instance * add registerInterpreter * register interpreters individually * try wire everything up * fix style * fix test
139 lines
3.8 KiB
C++
139 lines
3.8 KiB
C++
#include <Interpreters/InterpreterFactory.h>
|
|
#include <Interpreters/Access/InterpreterShowAccessEntitiesQuery.h>
|
|
#include <Parsers/Access/ASTShowAccessEntitiesQuery.h>
|
|
#include <Parsers/formatAST.h>
|
|
#include <Common/StringUtils/StringUtils.h>
|
|
#include <Common/quoteString.h>
|
|
#include <Interpreters/Context.h>
|
|
#include <Interpreters/executeQuery.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int NOT_IMPLEMENTED;
|
|
}
|
|
|
|
|
|
InterpreterShowAccessEntitiesQuery::InterpreterShowAccessEntitiesQuery(const ASTPtr & query_ptr_, ContextMutablePtr context_)
|
|
: WithMutableContext(context_), query_ptr(query_ptr_)
|
|
{
|
|
}
|
|
|
|
|
|
BlockIO InterpreterShowAccessEntitiesQuery::execute()
|
|
{
|
|
return executeQuery(getRewrittenQuery(), getContext(), QueryFlags{ .internal = true }).second;
|
|
}
|
|
|
|
|
|
String InterpreterShowAccessEntitiesQuery::getRewrittenQuery() const
|
|
{
|
|
auto & query = query_ptr->as<ASTShowAccessEntitiesQuery &>();
|
|
query.replaceEmptyDatabase(getContext()->getCurrentDatabase());
|
|
|
|
String origin;
|
|
String expr = "*";
|
|
String filter;
|
|
String order;
|
|
|
|
switch (query.type)
|
|
{
|
|
case AccessEntityType::ROW_POLICY:
|
|
{
|
|
origin = "row_policies";
|
|
expr = "name";
|
|
|
|
if (!query.short_name.empty())
|
|
filter = "short_name = " + quoteString(query.short_name);
|
|
|
|
if (query.database_and_table_name)
|
|
{
|
|
const String & database = query.database_and_table_name->first;
|
|
const String & table_name = query.database_and_table_name->second;
|
|
if (!database.empty())
|
|
filter += String{filter.empty() ? "" : " AND "} + "database = " + quoteString(database);
|
|
if (!table_name.empty())
|
|
filter += String{filter.empty() ? "" : " AND "} + "table = " + quoteString(table_name);
|
|
if (!database.empty() && !table_name.empty())
|
|
expr = "short_name";
|
|
}
|
|
break;
|
|
}
|
|
|
|
case AccessEntityType::QUOTA:
|
|
{
|
|
if (query.current_quota)
|
|
{
|
|
origin = "quota_usage";
|
|
order = "duration";
|
|
}
|
|
else
|
|
{
|
|
origin = "quotas";
|
|
expr = "name";
|
|
}
|
|
break;
|
|
}
|
|
|
|
case AccessEntityType::SETTINGS_PROFILE:
|
|
{
|
|
origin = "settings_profiles";
|
|
expr = "name";
|
|
break;
|
|
}
|
|
|
|
case AccessEntityType::USER:
|
|
{
|
|
origin = "users";
|
|
expr = "name";
|
|
break;
|
|
}
|
|
|
|
case AccessEntityType::ROLE:
|
|
{
|
|
if (query.current_roles)
|
|
{
|
|
origin = "current_roles";
|
|
order = "role_name";
|
|
}
|
|
else if (query.enabled_roles)
|
|
{
|
|
origin = "enabled_roles";
|
|
order = "role_name";
|
|
}
|
|
else
|
|
{
|
|
origin = "roles";
|
|
expr = "name";
|
|
}
|
|
break;
|
|
}
|
|
|
|
case AccessEntityType::MAX:
|
|
break;
|
|
}
|
|
|
|
if (origin.empty())
|
|
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "{}: type is not supported by SHOW query", toString(query.type));
|
|
|
|
if (order.empty() && expr != "*")
|
|
order = expr;
|
|
|
|
return "SELECT " + expr + " from system." + origin +
|
|
(filter.empty() ? "" : " WHERE " + filter) +
|
|
(order.empty() ? "" : " ORDER BY " + order);
|
|
}
|
|
|
|
void registerInterpreterShowAccessEntitiesQuery(InterpreterFactory & factory)
|
|
{
|
|
auto create_fn = [] (const InterpreterFactory::Arguments & args)
|
|
{
|
|
return std::make_unique<InterpreterShowAccessEntitiesQuery>(args.query, args.context);
|
|
};
|
|
factory.registerInterpreter("InterpreterShowAccessEntitiesQuery", create_fn);
|
|
}
|
|
|
|
}
|