ClickHouse/dbms/include/DB/DataStreams/NativeBlockInputStream.h

41 lines
1.3 KiB
C
Raw Normal View History

2011-08-19 19:18:15 +00:00
#pragma once
#include <DB/DataTypes/DataTypeFactory.h>
2011-09-04 21:23:19 +00:00
#include <DB/DataStreams/IProfilingBlockInputStream.h>
2011-08-19 19:18:15 +00:00
namespace DB
{
/** Десериализует поток блоков из родного бинарного формата (с именами и типами столбцов).
* Предназначено для взаимодействия между серверами.
*/
2011-09-04 21:23:19 +00:00
class NativeBlockInputStream : public IProfilingBlockInputStream
2011-08-19 19:18:15 +00:00
{
public:
/** В случае указания ненулевой server_revision, может ожидаться и считываться дополнительная информация о блоке,
* в зависимости от поддерживаемой для указанной ревизии.
*/
NativeBlockInputStream(ReadBuffer & istr_, const DataTypeFactory & data_type_factory_, UInt64 server_revision_ = 0)
: istr(istr_), data_type_factory(data_type_factory_), server_revision(server_revision_) {}
2011-08-19 19:18:15 +00:00
String getName() const override { return "NativeBlockInputStream"; }
String getID() const override
{
std::stringstream res;
res << this;
return res.str();
}
2012-10-20 02:10:47 +00:00
protected:
Block readImpl() override;
2012-10-20 02:10:47 +00:00
2011-08-19 19:18:15 +00:00
private:
ReadBuffer & istr;
2012-08-02 17:33:31 +00:00
const DataTypeFactory & data_type_factory;
UInt64 server_revision;
2011-08-19 19:18:15 +00:00
};
}