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

44 lines
1.2 KiB
C
Raw Normal View History

2012-03-11 08:55:04 +00:00
#pragma once
#include <DB/DataStreams/IBlockInputStream.h>
#include <DB/DataStreams/IBlockOutputStream.h>
#include <DB/Interpreters/ProcessList.h>
2012-03-11 08:55:04 +00:00
namespace DB
{
struct BlockIO
{
/** process_list_entry должен уничтожаться позже, чем in и out,
* так как внутри in и out есть ссылка на объект внутри process_list_entry
* (MemoryTracker * current_memory_tracker),
* которая может использоваться до уничтожения in и out.
*/
ProcessList::EntryPtr process_list_entry;
2012-03-11 08:55:04 +00:00
BlockInputStreamPtr in;
BlockOutputStreamPtr out;
2012-03-19 12:57:56 +00:00
Block in_sample; /// Пример блока, который будет прочитан из in.
Block out_sample; /// Пример блока, которого нужно писать в out.
BlockIO & operator= (const BlockIO & rhs)
{
/// Обеспечиваем правильный порядок уничтожения.
out = nullptr;
in = nullptr;
process_list_entry = nullptr;
process_list_entry = rhs.process_list_entry;
in = rhs.in;
out = rhs.out;
in_sample = rhs.in_sample;
out_sample = rhs.out_sample;
return *this;
}
2012-03-11 08:55:04 +00:00
};
}