ClickHouse/dbms/Dictionaries/DictionarySourceFactory.h

57 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
#include "IDictionarySource.h"
#include <Core/Block.h>
2016-01-12 02:21:15 +00:00
#include <unordered_map>
2016-12-08 02:49:04 +00:00
namespace Poco
{
namespace Util
{
class AbstractConfiguration;
}
class Logger;
}
2016-12-08 02:49:04 +00:00
namespace DB
{
class Context;
2016-12-12 06:02:35 +00:00
struct DictionaryStructure;
/// creates IDictionarySource instance from config and DictionaryStructure
class DictionarySourceFactory : private boost::noncopyable
{
public:
static DictionarySourceFactory & instance();
using Creator = std::function<DictionarySourcePtr(
const DictionaryStructure & dict_struct,
const Poco::Util::AbstractConfiguration & config,
const std::string & config_prefix,
Block & sample_block,
const Context & context,
bool check_config)>;
DictionarySourceFactory();
void registerSource(const std::string & source_type, Creator create_source);
DictionarySourcePtr create(
const std::string & name,
const Poco::Util::AbstractConfiguration & config,
const std::string & config_prefix,
const DictionaryStructure & dict_struct,
const Context & context,
bool check_config) const;
private:
2017-11-27 19:06:10 +00:00
using SourceRegistry = std::unordered_map<std::string, Creator>;
SourceRegistry registered_sources;
Poco::Logger * log;
};
}