#pragma once #include #include #include namespace DB { struct DictionaryStructure; class TableFunctionDictionary; class StorageDictionary final : public ext::shared_ptr_helper, public IStorage, public WithContext { friend struct ext::shared_ptr_helper; 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 drop() override; void shutdown() 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; ext::scope_guard remove_repository_callback; protected: 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_); }; }