#include #include #include 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(size, existing_memory, alignment) { } WriteBufferFromOStream::WriteBufferFromOStream( std::ostream & ostr_, size_t size, char * existing_memory, size_t alignment) : BufferWithOwnMemory(size, existing_memory, alignment), ostr(&ostr_) { } }