2015-01-14 02:44:25 +00:00
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <DB/DataStreams/IProfilingBlockInputStream.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/** Инициализировать другой источник при первом вызове read, и затем использовать его.
|
|
|
|
|
* Это нужно, например, для чтения из таблицы, которая будет заполнена
|
|
|
|
|
* после создания объекта LazyBlockInputStream, но до первого вызова read.
|
|
|
|
|
*/
|
|
|
|
|
class LazyBlockInputStream : public IProfilingBlockInputStream
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
using Generator = std::function<BlockInputStreamPtr()>;
|
|
|
|
|
|
|
|
|
|
LazyBlockInputStream(Generator generator_)
|
|
|
|
|
: generator(generator_) {}
|
|
|
|
|
|
2015-06-08 20:22:02 +00:00
|
|
|
|
String getName() const override { return "Lazy"; }
|
2015-01-14 02:44:25 +00:00
|
|
|
|
|
|
|
|
|
String getID() const override
|
|
|
|
|
{
|
|
|
|
|
std::stringstream res;
|
|
|
|
|
res << "Lazy(" << this << ")";
|
|
|
|
|
return res.str();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Block readImpl() override
|
|
|
|
|
{
|
|
|
|
|
if (!input)
|
|
|
|
|
{
|
|
|
|
|
input = generator();
|
|
|
|
|
|
|
|
|
|
if (!input)
|
|
|
|
|
return Block();
|
|
|
|
|
|
|
|
|
|
children.push_back(input);
|
2015-09-14 02:39:54 +00:00
|
|
|
|
|
|
|
|
|
if (IProfilingBlockInputStream * p_input = dynamic_cast<IProfilingBlockInputStream *>(input.get()))
|
|
|
|
|
{
|
|
|
|
|
/// Они могли быть установлены раньше, но не были протащены в input.
|
|
|
|
|
if (progress_callback)
|
|
|
|
|
p_input->setProgressCallback(progress_callback);
|
|
|
|
|
if (process_list_elem)
|
|
|
|
|
p_input->setProcessListElement(process_list_elem);
|
|
|
|
|
}
|
2015-01-14 02:44:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return input->read();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Generator generator;
|
|
|
|
|
BlockInputStreamPtr input;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|