mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <Processors/Sources/SourceWithProgress.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/** A stream of blocks from which you can read the next block from an explicitly provided list.
|
||
|
* Also see OneBlockInputStream.
|
||
|
*/
|
||
|
class BlocksListSource : public SourceWithProgress
|
||
|
{
|
||
|
public:
|
||
|
/// Acquires the ownership of the block list.
|
||
|
explicit BlocksListSource(BlocksList && list_)
|
||
|
: SourceWithProgress(list_.empty() ? Block() : list_.front().cloneEmpty())
|
||
|
, list(std::move(list_)), it(list.begin()), end(list.end()) {}
|
||
|
|
||
|
/// Uses a list of blocks lying somewhere else.
|
||
|
BlocksListSource(BlocksList::iterator & begin_, BlocksList::iterator & end_)
|
||
|
: SourceWithProgress(begin_ == end_ ? Block() : begin_->cloneEmpty())
|
||
|
, it(begin_), end(end_) {}
|
||
|
|
||
|
String getName() const override { return "BlocksListSource"; }
|
||
|
|
||
|
protected:
|
||
|
|
||
|
Chunk generate() override
|
||
|
{
|
||
|
if (it == end)
|
||
|
return {};
|
||
|
|
||
|
Block res = *it;
|
||
|
++it;
|
||
|
|
||
|
size_t num_rows = res.rows();
|
||
|
return Chunk(res.getColumns(), num_rows);
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
BlocksList list;
|
||
|
BlocksList::iterator it;
|
||
|
const BlocksList::iterator end;
|
||
|
};
|
||
|
|
||
|
}
|