mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
44 lines
896 B
C++
44 lines
896 B
C++
#include <IO/WriteBufferFromOStream.h>
|
|
#include <Common/logger_useful.h>
|
|
|
|
#include <ostream>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int CANNOT_WRITE_TO_OSTREAM;
|
|
}
|
|
|
|
void WriteBufferFromOStream::nextImpl()
|
|
{
|
|
if (!offset())
|
|
return;
|
|
|
|
ostr->write(working_buffer.begin(), offset());
|
|
ostr->flush();
|
|
|
|
if (!ostr->good())
|
|
throw Exception(ErrorCodes::CANNOT_WRITE_TO_OSTREAM, "Cannot write to ostream at offset {}", count());
|
|
}
|
|
|
|
WriteBufferFromOStream::WriteBufferFromOStream(
|
|
size_t size,
|
|
char * existing_memory,
|
|
size_t alignment)
|
|
: BufferWithOwnMemory<WriteBuffer>(size, existing_memory, alignment)
|
|
{
|
|
}
|
|
|
|
WriteBufferFromOStream::WriteBufferFromOStream(
|
|
std::ostream & ostr_,
|
|
size_t size,
|
|
char * existing_memory,
|
|
size_t alignment)
|
|
: BufferWithOwnMemory<WriteBuffer>(size, existing_memory, alignment), ostr(&ostr_)
|
|
{
|
|
}
|
|
|
|
}
|