#include #include #include #include #include namespace DB { decltype(HTTPDictionarySource::max_block_size) HTTPDictionarySource::max_block_size; 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")}, format{format}, sample_block{sample_block}, context(context) { //last_modification = LocalDateTime {std::time(nullptr)}; last_modification = std::time(nullptr); std::cerr << __FUNCTION__ << ":" << __LINE__ << "Ok." << std::endl; } 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} { } BlockInputStreamPtr HTTPDictionarySource::loadAll() { std::cerr << " http go " << toString() << std::endl; ReadBufferFromHTTP::Params params = { //{"endpoint", getEndpointId(location.name)}, //{"compress", "false"}, //{"query", query} }; ReadBufferFromHTTP in{host, port, params}; /* auto in_ptr = std::make_unique(host, port, path); auto stream = context.getInputFormat( format, *in_ptr, sample_block, max_block_size); return std::make_shared(stream, std::move(in_ptr)); */ throw Exception{"Method unsupported", ErrorCodes::NOT_IMPLEMENTED}; } BlockInputStreamPtr HTTPDictionarySource::loadIds(const std::vector & ids) { throw Exception{"Method unsupported", ErrorCodes::NOT_IMPLEMENTED}; } BlockInputStreamPtr HTTPDictionarySource::loadKeys( const ConstColumnPlainPtrs & key_columns, const std::vector & requested_rows) { throw Exception{"Method unsupported", ErrorCodes::NOT_IMPLEMENTED}; } bool HTTPDictionarySource::isModified() const { return getLastModification() > last_modification; } bool HTTPDictionarySource::supportsSelectiveLoad() const { return false; } DictionarySourcePtr HTTPDictionarySource::clone() const { return std::make_unique(*this); } std::string HTTPDictionarySource::toString() const { std::cerr << " TS " << std::endl; return "HTTP: " + host + ":" + std::to_string(port) + path; } LocalDateTime HTTPDictionarySource::getLastModification() const { return last_modification; } }