mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
104 lines
3.0 KiB
C++
104 lines
3.0 KiB
C++
#include <IO/CascadeWriteBuffer.h>
|
|
#include <Common/Exception.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int CURRENT_WRITE_BUFFER_IS_EXHAUSTED;
|
|
extern const int CANNOT_WRITE_AFTER_END_OF_BUFFER;
|
|
extern const int CANNOT_CREATE_IO_BUFFER;
|
|
}
|
|
|
|
CascadeWriteBuffer::CascadeWriteBuffer(WriteBufferPtrs && prepared_sources_, WriteBufferConstructors && lazy_sources_)
|
|
: WriteBuffer(nullptr, 0), prepared_sources(std::move(prepared_sources_)), lazy_sources(std::move(lazy_sources_))
|
|
{
|
|
first_lazy_source_num = prepared_sources.size();
|
|
num_sources = first_lazy_source_num + lazy_sources.size();
|
|
|
|
/// fill lazy sources by nullptr
|
|
prepared_sources.resize(num_sources);
|
|
|
|
curr_buffer_num = 0;
|
|
curr_buffer = setNextBuffer();
|
|
set(curr_buffer->buffer().begin(), curr_buffer->buffer().size());
|
|
}
|
|
|
|
|
|
void CascadeWriteBuffer::nextImpl()
|
|
{
|
|
try
|
|
{
|
|
curr_buffer->position() = position();
|
|
curr_buffer->next();
|
|
}
|
|
catch (const Exception & e)
|
|
{
|
|
if (curr_buffer_num < num_sources && e.code() == ErrorCodes::CURRENT_WRITE_BUFFER_IS_EXHAUSTED)
|
|
{
|
|
/// TODO: protocol should require set(position(), 0) before Exception
|
|
|
|
/// good situation, fetch next WriteBuffer
|
|
++curr_buffer_num;
|
|
curr_buffer = setNextBuffer();
|
|
}
|
|
else
|
|
throw;
|
|
}
|
|
|
|
set(curr_buffer->position(), curr_buffer->buffer().end() - curr_buffer->position());
|
|
// std::cerr << "CascadeWriteBuffer a count=" << count() << " bytes=" << bytes << " offset=" << offset()
|
|
// << " bytes+size=" << bytes + buffer().size() << "\n";
|
|
}
|
|
|
|
|
|
void CascadeWriteBuffer::getResultBuffers(WriteBufferPtrs & res)
|
|
{
|
|
/// Sync position with underlying buffer before invalidating
|
|
curr_buffer->position() = position();
|
|
|
|
res = std::move(prepared_sources);
|
|
|
|
curr_buffer = nullptr;
|
|
curr_buffer_num = num_sources = 0;
|
|
prepared_sources.clear();
|
|
lazy_sources.clear();
|
|
}
|
|
|
|
|
|
WriteBuffer * CascadeWriteBuffer::setNextBuffer()
|
|
{
|
|
if (first_lazy_source_num <= curr_buffer_num && curr_buffer_num < num_sources)
|
|
{
|
|
if (!prepared_sources[curr_buffer_num])
|
|
{
|
|
WriteBufferPtr prev_buf = (curr_buffer_num > 0) ? prepared_sources[curr_buffer_num - 1] : nullptr;
|
|
prepared_sources[curr_buffer_num] = lazy_sources[curr_buffer_num - first_lazy_source_num](prev_buf);
|
|
}
|
|
}
|
|
else if (curr_buffer_num >= num_sources)
|
|
throw Exception("There are no WriteBuffers to write result", ErrorCodes::CANNOT_WRITE_AFTER_END_OF_BUFFER);
|
|
|
|
WriteBuffer * res = prepared_sources[curr_buffer_num].get();
|
|
if (!res)
|
|
throw Exception("Required WriteBuffer is not created", ErrorCodes::CANNOT_CREATE_IO_BUFFER);
|
|
|
|
/// Check that returned buffer isn't empty
|
|
if (!res->hasPendingData())
|
|
res->next();
|
|
|
|
return res;
|
|
}
|
|
|
|
|
|
CascadeWriteBuffer::~CascadeWriteBuffer()
|
|
{
|
|
/// Sync position with underlying buffer before exit
|
|
if (curr_buffer)
|
|
curr_buffer->position() = position();
|
|
}
|
|
|
|
|
|
}
|