mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <Dictionaries/IDictionary.h>
|
|
#include <Interpreters/ExternalLoader.h>
|
|
#include <common/logger_useful.h>
|
|
#include <memory>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class Context;
|
|
|
|
/// Manages user-defined dictionaries.
|
|
class ExternalDictionaries : public ExternalLoader
|
|
{
|
|
public:
|
|
using DictPtr = std::shared_ptr<IDictionaryBase>;
|
|
|
|
/// Dictionaries will be loaded immediately and then will be updated in separate thread, each 'reload_period' seconds.
|
|
ExternalDictionaries(
|
|
std::unique_ptr<IExternalLoaderConfigRepository> config_repository,
|
|
Context & context,
|
|
bool throw_on_error);
|
|
|
|
/// Forcibly reloads specified dictionary.
|
|
void reloadDictionary(const std::string & name) { reload(name); }
|
|
|
|
DictPtr getDictionary(const std::string & name) const
|
|
{
|
|
return std::static_pointer_cast<IDictionaryBase>(getLoadable(name));
|
|
}
|
|
|
|
protected:
|
|
|
|
std::unique_ptr<IExternalLoadable> create(const std::string & name, const Configuration & config,
|
|
const std::string & config_prefix) override;
|
|
|
|
using ExternalLoader::getObjectsMap;
|
|
|
|
friend class StorageSystemDictionaries;
|
|
friend class DatabaseDictionary;
|
|
|
|
private:
|
|
|
|
Context & context;
|
|
};
|
|
|
|
}
|