#pragma once #include #include #include #include #include #include namespace DB { /// Allows loading dictionaries from a file with given format, does not support "random access" class FileDictionarySource final : public IDictionarySource { static const auto max_block_size = 8192; public: FileDictionarySource(const std::string & filename, const std::string & format, Block & sample_block, const Context & context) : filename{filename}, format{format}, sample_block{sample_block}, context(context), last_modification{getLastModification()} {} FileDictionarySource(const FileDictionarySource & other) : filename{other.filename}, format{other.format}, sample_block{other.sample_block}, context(other.context), last_modification{other.last_modification} {} BlockInputStreamPtr loadAll() override { auto in_ptr = std::make_unique(filename); auto stream = context.getFormatFactory().getInput( format, *in_ptr, sample_block, max_block_size, context.getDataTypeFactory()); last_modification = getLastModification(); return new OwningBufferBlockInputStream{stream, std::move(in_ptr)}; } BlockInputStreamPtr loadId(const std::uint64_t id) override { throw Exception{ "Method unsupported", ErrorCodes::NOT_IMPLEMENTED }; } BlockInputStreamPtr loadIds(const std::vector ids) override { throw Exception{ "Method unsupported", ErrorCodes::NOT_IMPLEMENTED }; } bool isModified() const override { return getLastModification() > last_modification; } bool supportsSelectiveLoad() const override { return false; } DictionarySourcePtr clone() const override { return std::make_unique(*this); } private: Poco::Timestamp getLastModification() const { return Poco::File{filename}.getLastModified(); } const std::string filename; const std::string format; Block sample_block; const Context & context; Poco::Timestamp last_modification; }; }