ClickHouse/src/Storages/StorageDictionary.h
2021-04-27 22:09:03 +03:00

102 lines
3.1 KiB
C++

#pragma once
#include <atomic>
#include <ext/shared_ptr_helper.h>
#include <Storages/IStorage.h>
#include <Interpreters/IExternalLoaderConfigRepository.h>
namespace DB
{
struct DictionaryStructure;
class TableFunctionDictionary;
class StorageDictionary final : public ext::shared_ptr_helper<StorageDictionary>, public IStorage, public WithContext
{
friend struct ext::shared_ptr_helper<StorageDictionary>;
friend class TableFunctionDictionary;
public:
std::string getName() const override { return "Dictionary"; }
~StorageDictionary() override;
void checkTableCanBeDropped() const override;
void checkTableCanBeDetached() const override;
Pipe read(
const Names & column_names,
const StorageMetadataPtr & /*metadata_snapshot*/,
SelectQueryInfo & query_info,
ContextPtr context,
QueryProcessingStage::Enum processed_stage,
size_t max_block_size,
unsigned threads) override;
static NamesAndTypesList getNamesAndTypes(const DictionaryStructure & dictionary_structure);
static String generateNamesAndTypesDescription(const NamesAndTypesList & list);
bool isDictionary() const override { return true; }
void shutdown() override;
void startup() override;
void renameInMemory(const StorageID & new_table_id) override;
Poco::Timestamp getUpdateTime() const;
LoadablesConfigurationPtr getConfiguration() const;
const String & getDictionaryName() const { return dictionary_name; }
/// Specifies where the table is located relative to the dictionary.
enum class Location
{
/// Table was created automatically as an element of a database with the Dictionary engine.
DictionaryDatabase,
/// Table was created automatically along with a dictionary
/// and has the same database and name as the dictionary.
/// It provides table-like access to the dictionary.
/// User cannot drop that table.
SameDatabaseAndNameAsDictionary,
/// Table was created explicitly by a statement like
/// CREATE TABLE ... ENGINE=Dictionary
/// User chose the table's database and name and can drop that table.
Custom,
};
private:
const String dictionary_name;
const Location location;
mutable std::mutex dictionary_config_mutex;
Poco::Timestamp update_time;
LoadablesConfigurationPtr configuration;
std::atomic<bool> remove_repository_callback_executed = false;
ext::scope_guard remove_repository_callback;
void removeDictionaryConfigurationFromRepository();
StorageDictionary(
const StorageID & table_id_,
const String & dictionary_name_,
const ColumnsDescription & columns_,
Location location_,
ContextPtr context_);
StorageDictionary(
const StorageID & table_id_,
const String & dictionary_name_,
const DictionaryStructure & dictionary_structure,
Location location_,
ContextPtr context_);
StorageDictionary(
const StorageID & table_id_,
LoadablesConfigurationPtr dictionary_configuration_,
ContextPtr context_);
};
}