ClickHouse/dbms/src/Dictionaries/FileDictionarySource.cpp

74 lines
2.3 KiB
C++
Raw Normal View History

#include "FileDictionarySource.h"
2017-05-25 19:26:17 +00:00
#include <DataStreams/OwningBlockInputStream.h>
#include <IO/ReadBufferFromFile.h>
#include <Interpreters/Context.h>
2016-12-08 02:49:04 +00:00
#include <Poco/File.h>
#include "DictionarySourceFactory.h"
#include "DictionaryStructure.h"
2016-12-08 02:49:04 +00:00
namespace DB
{
2019-02-10 16:55:12 +00:00
static const UInt64 max_block_size = 8192;
2016-12-08 02:49:04 +00:00
FileDictionarySource::FileDictionarySource(
2019-08-03 11:02:40 +00:00
const std::string & filename_, const std::string & format_, Block & sample_block_, const Context & context_)
: filename{filename_}, format{format_}, sample_block{sample_block_}, context(context_)
{
}
2016-12-08 02:49:04 +00:00
FileDictionarySource::FileDictionarySource(const FileDictionarySource & other)
: filename{other.filename}
, format{other.format}
, sample_block{other.sample_block}
, context(other.context)
, last_modification{other.last_modification}
{
}
2016-12-08 02:49:04 +00:00
BlockInputStreamPtr FileDictionarySource::loadAll()
{
auto in_ptr = std::make_unique<ReadBufferFromFile>(filename);
auto stream = context.getInputFormat(format, *in_ptr, sample_block, max_block_size);
last_modification = getLastModification();
2016-12-08 02:49:04 +00:00
return std::make_shared<OwningBlockInputStream<ReadBuffer>>(stream, std::move(in_ptr));
2016-12-08 02:49:04 +00:00
}
std::string FileDictionarySource::toString() const
{
return "File: " + filename + ' ' + format;
2016-12-08 02:49:04 +00:00
}
Poco::Timestamp FileDictionarySource::getLastModification() const
{
return Poco::File{filename}.getLastModified();
2016-12-08 02:49:04 +00:00
}
void registerDictionarySourceFile(DictionarySourceFactory & factory)
{
auto createTableSource = [=](const DictionaryStructure & dict_struct,
const Poco::Util::AbstractConfiguration & config,
const std::string & config_prefix,
Block & sample_block,
2019-10-10 20:47:47 +00:00
const Context & context) -> DictionarySourcePtr
{
if (dict_struct.has_expressions)
throw Exception{"Dictionary source of type `file` does not support attribute expressions", ErrorCodes::LOGICAL_ERROR};
const auto filename = config.getString(config_prefix + ".file.path");
const auto format = config.getString(config_prefix + ".file.format");
return std::make_unique<FileDictionarySource>(filename, format, sample_block, context);
};
factory.registerSource("file", createTableSource);
}
2016-12-08 02:49:04 +00:00
}