ClickHouse/src/Dictionaries/FileDictionarySource.h

69 lines
2.0 KiB
C++
Raw Normal View History

#pragma once
#include <Poco/Timestamp.h>
#include "IDictionarySource.h"
#include <Core/Block.h>
#include <Interpreters/Context.h>
namespace DB
{
2020-02-25 18:10:48 +00:00
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
}
2016-12-08 02:49:04 +00:00
/// Allows loading dictionaries from a file with given format, does not support "random access"
class FileDictionarySource final : public IDictionarySource
{
public:
FileDictionarySource(const std::string & filepath_, const std::string & format_,
Block & sample_block_, ContextPtr context_, bool check_config);
FileDictionarySource(const FileDictionarySource & other);
BlockInputStreamPtr loadAll() override;
BlockInputStreamPtr loadUpdatedAll() override
{
2021-04-10 18:48:36 +00:00
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method loadUpdatedAll is unsupported for FileDictionarySource");
}
2017-12-01 20:21:35 +00:00
BlockInputStreamPtr loadIds(const std::vector<UInt64> & /*ids*/) override
{
2021-04-10 18:48:36 +00:00
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method loadIds is unsupported for FileDictionarySource");
}
BlockInputStreamPtr loadKeys(const Columns & /*key_columns*/, const std::vector<size_t> & /*requested_rows*/) override
{
2021-04-10 18:48:36 +00:00
throw Exception(ErrorCodes::NOT_IMPLEMENTED, "Method loadKeys is unsupported for FileDictionarySource");
}
bool isModified() const override
{
// We can't count on that the mtime increases or that it has
// a particular relation to system time, so just check for strict
// equality.
return getLastModification() != last_modification;
}
bool supportsSelectiveLoad() const override { return false; }
///Not supported for FileDictionarySource
bool hasUpdateField() const override { return false; }
DictionarySourcePtr clone() const override { return std::make_unique<FileDictionarySource>(*this); }
std::string toString() const override;
private:
Poco::Timestamp getLastModification() const;
const std::string filepath;
const std::string format;
Block sample_block;
ContextPtr context;
Poco::Timestamp last_modification;
};
}