ClickHouse/dbms/include/DB/DataStreams/MergeSortingBlockInputStream.h
2012-07-23 06:23:29 +00:00

40 lines
955 B
C++

#pragma once
#include <DB/Core/SortDescription.h>
#include <DB/DataStreams/IProfilingBlockInputStream.h>
namespace DB
{
/** Соединяет поток сортированных по отдельности блоков в сортированный целиком поток.
*/
class MergeSortingBlockInputStream : public IProfilingBlockInputStream
{
public:
MergeSortingBlockInputStream(BlockInputStreamPtr input_, SortDescription & description_)
: input(input_), description(description_), has_been_read(false)
{
children.push_back(input);
}
Block readImpl();
String getName() const { return "MergeSortingBlockInputStream"; }
BlockInputStreamPtr clone() { return new MergeSortingBlockInputStream(input, description); }
private:
BlockInputStreamPtr input;
SortDescription description;
/// Всё было прочитано
bool has_been_read;
void merge(Block & left, Block & right);
Block merge(Blocks & blocks);
};
}