mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
84 lines
2.0 KiB
C++
84 lines
2.0 KiB
C++
#pragma once
|
|
#include <Core/Types.h>
|
|
#include <Core/UUID.h>
|
|
#include <tuple>
|
|
#include <Parsers/IAST_fwd.h>
|
|
#include <Core/QualifiedTableName.h>
|
|
#include <Common/Exception.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
static constexpr char const * TABLE_WITH_UUID_NAME_PLACEHOLDER = "_";
|
|
|
|
class ASTQueryWithTableAndOutput;
|
|
class ASTIdentifier;
|
|
class Context;
|
|
|
|
struct StorageID
|
|
{
|
|
String database_name;
|
|
String table_name;
|
|
UUID uuid = UUIDHelpers::Nil;
|
|
|
|
StorageID(const String & database, const String & table, UUID uuid_ = UUIDHelpers::Nil)
|
|
: database_name(database), table_name(table), uuid(uuid_)
|
|
{
|
|
assertNotEmpty();
|
|
}
|
|
|
|
StorageID(const ASTQueryWithTableAndOutput & query);
|
|
StorageID(const ASTIdentifier & table_identifier_node);
|
|
StorageID(const ASTPtr & node);
|
|
|
|
String getDatabaseName() const;
|
|
|
|
String getTableName() const;
|
|
|
|
String getFullTableName() const;
|
|
|
|
String getNameForLogs() const;
|
|
|
|
operator bool () const
|
|
{
|
|
return !empty();
|
|
}
|
|
|
|
bool empty() const
|
|
{
|
|
return table_name.empty() && !hasUUID();
|
|
}
|
|
|
|
bool hasUUID() const
|
|
{
|
|
return uuid != UUIDHelpers::Nil;
|
|
}
|
|
|
|
bool operator<(const StorageID & rhs) const;
|
|
|
|
void assertNotEmpty() const
|
|
{
|
|
if (empty())
|
|
throw Exception("Both table name and UUID are empty", ErrorCodes::LOGICAL_ERROR);
|
|
if (table_name == TABLE_WITH_UUID_NAME_PLACEHOLDER && !hasUUID())
|
|
throw Exception("Table name was replaced with placeholder, but UUID is Nil", ErrorCodes::LOGICAL_ERROR);
|
|
if (table_name.empty() && !database_name.empty())
|
|
throw Exception("Table name is empty, but database name is not", ErrorCodes::LOGICAL_ERROR);
|
|
}
|
|
|
|
/// Avoid implicit construction of empty StorageID. However, it's needed for deferred initialization.
|
|
static StorageID createEmpty() { return {}; }
|
|
|
|
QualifiedTableName getQualifiedName() const { return {database_name, getTableName()}; }
|
|
|
|
private:
|
|
StorageID() = default;
|
|
};
|
|
|
|
}
|