ClickHouse/dbms/src/Dictionaries/HTTPDictionarySource.cpp

78 lines
2.2 KiB
C++
Raw Normal View History

2016-11-15 19:51:06 +00:00
#include <DB/Dictionaries/HTTPDictionarySource.h>
#include <DB/Interpreters/Context.h>
#include <DB/Dictionaries/OwningBufferBlockInputStream.h>
#include <DB/IO/ReadBufferFromHTTP.h>
2016-11-16 00:34:57 +00:00
//#include <Poco/Net/HTTPRequest.h> // HTTP_GET
2016-11-15 19:51:06 +00:00
namespace DB
{
2016-11-15 22:05:49 +00:00
HTTPDictionarySource::HTTPDictionarySource(const Poco::Util::AbstractConfiguration & config, const std::string & config_prefix, Block & sample_block, const Context & context) :
host{config.getString(config_prefix + ".host")},
port{std::stoi(config.getString(config_prefix + ".port"))},
path{config.getString(config_prefix + ".path")},
2016-11-16 00:34:57 +00:00
method{config.getString(config_prefix + ".method")},
2016-11-15 23:55:45 +00:00
format{config.getString(config_prefix + ".format")},
2016-11-15 22:05:49 +00:00
sample_block{sample_block},
context(context)
2016-11-15 19:51:06 +00:00
{
2016-11-15 22:05:49 +00:00
last_modification = std::time(nullptr);
2016-11-15 19:51:06 +00:00
}
2016-11-15 22:05:49 +00:00
HTTPDictionarySource::HTTPDictionarySource(const HTTPDictionarySource & other) :
host{other.host},
port{other.port},
path{other.path},
format{other.format},
sample_block{other.sample_block}, context(other.context),
last_modification{other.last_modification}
2016-11-15 19:51:06 +00:00
{
}
BlockInputStreamPtr HTTPDictionarySource::loadAll()
{
2016-11-16 00:34:57 +00:00
auto in_ptr = std::make_unique<ReadBufferFromHTTP>(host, port, path, ReadBufferFromHTTP::Params(), method);
2016-11-15 19:51:06 +00:00
auto stream = context.getInputFormat( format, *in_ptr, sample_block, max_block_size);
return std::make_shared<OwningBufferBlockInputStream>(stream, std::move(in_ptr));
}
BlockInputStreamPtr HTTPDictionarySource::loadIds(const std::vector<UInt64> & ids)
{
throw Exception{"Method unsupported", ErrorCodes::NOT_IMPLEMENTED};
}
BlockInputStreamPtr HTTPDictionarySource::loadKeys(
const ConstColumnPlainPtrs & key_columns, const std::vector<std::size_t> & requested_rows)
{
throw Exception{"Method unsupported", ErrorCodes::NOT_IMPLEMENTED};
}
bool HTTPDictionarySource::isModified() const
{
return getLastModification() > last_modification;
}
bool HTTPDictionarySource::supportsSelectiveLoad() const
{
2016-11-17 01:09:46 +00:00
return true;
2016-11-15 19:51:06 +00:00
}
DictionarySourcePtr HTTPDictionarySource::clone() const
{
return std::make_unique<HTTPDictionarySource>(*this);
}
std::string HTTPDictionarySource::toString() const
{
2016-11-15 23:55:45 +00:00
return "http://" + host + ":" + std::to_string(port) + "/" + path;
2016-11-15 19:51:06 +00:00
}
LocalDateTime HTTPDictionarySource::getLastModification() const
{
return last_modification;
}
}