ClickHouse/dbms/include/DB/Dictionaries/HTTPDictionarySource.h

58 lines
1.4 KiB
C++
Raw Normal View History

2016-11-15 19:51:06 +00:00
#pragma once
#include <DB/Dictionaries/IDictionarySource.h>
2016-11-18 01:48:13 +00:00
#include <DB/Dictionaries/DictionaryStructure.h>
2016-11-15 19:51:06 +00:00
namespace DB
{
/// Allows loading dictionaries from executable
class HTTPDictionarySource final : public IDictionarySource
{
static constexpr auto max_block_size = 8192;
public:
2016-11-18 01:48:13 +00:00
HTTPDictionarySource(const DictionaryStructure & dict_struct_, const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix, Block & sample_block,
2016-11-15 19:51:06 +00:00
const Context & context);
HTTPDictionarySource(const HTTPDictionarySource & other);
BlockInputStreamPtr loadAll() override;
BlockInputStreamPtr loadIds(const std::vector<UInt64> & ids) override;
BlockInputStreamPtr loadKeys(
const ConstColumnPlainPtrs & key_columns, const std::vector<std::size_t> & requested_rows) override;
bool isModified() const override;
bool supportsSelectiveLoad() const override;
DictionarySourcePtr clone() const override;
//DictionarySourcePtr clone() const override { return std::make_unique<HTTPDictionarySource>(*this); }
std::string toString() const override;
private:
Logger * log = &Logger::get("HTTPDictionarySource");
LocalDateTime getLastModification() const;
2016-11-18 01:48:13 +00:00
const DictionaryStructure dict_struct;
2016-11-15 22:05:49 +00:00
const std::string host;
int port;
const std::string path;
2016-11-19 00:56:15 +00:00
//const std::string method;
2016-11-15 22:05:49 +00:00
2016-11-15 19:51:06 +00:00
const std::string format;
Block sample_block;
const Context & context;
const std::string load_all_query;
};
}