ClickHouse/dbms/include/DB/DataStreams/ConcatBlockInputStream.h
2012-06-25 02:52:51 +00:00

51 lines
1.0 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <DB/DataStreams/IProfilingBlockInputStream.h>
namespace DB
{
using Poco::SharedPtr;
/** Объединяет несколько источников в один.
* В отличие от UnionBlockInputStream, делает это последовательно.
* Блоки разных источников не перемежаются друг с другом.
*/
class ConcatBlockInputStream : public IProfilingBlockInputStream
{
public:
ConcatBlockInputStream(BlockInputStreams inputs_)
{
children.insert(children.end(), inputs_.begin(), inputs_.end());
current_stream = children.begin();
}
Block readImpl()
{
Block res;
while (current_stream != children.end())
{
res = (*current_stream)->read();
if (res)
break;
else
++current_stream;
}
return res;
}
String getName() const { return "ConcatBlockInputStream"; }
BlockInputStreamPtr clone() { return new ConcatBlockInputStream(children); }
private:
BlockInputStreams::iterator current_stream;
};
}