ClickHouse/dbms/include/DB/IO/WriteBufferFromOStream.h

44 lines
754 B
C
Raw Normal View History

2011-10-15 23:40:56 +00:00
#pragma once
2010-06-01 13:35:09 +00:00
#include <iostream>
#include <DB/Core/Exception.h>
#include <DB/Core/ErrorCodes.h>
2010-06-04 18:25:25 +00:00
#include <DB/IO/WriteBuffer.h>
#include <DB/IO/BufferWithOwnMemory.h>
2010-06-01 13:35:09 +00:00
namespace DB
{
class WriteBufferFromOStream : public BufferWithOwnMemory<WriteBuffer>
2010-06-01 13:35:09 +00:00
{
private:
std::ostream & ostr;
void nextImpl()
2010-06-01 13:35:09 +00:00
{
2011-06-27 19:34:03 +00:00
if (!offset())
return;
ostr.write(working_buffer.begin(), offset());
2010-06-04 18:25:25 +00:00
ostr.flush();
2010-06-01 13:35:09 +00:00
if (!ostr.good())
throw Exception("Cannot write to ostream", ErrorCodes::CANNOT_WRITE_TO_OSTREAM);
}
2011-06-26 21:30:59 +00:00
public:
2011-11-29 17:23:30 +00:00
WriteBufferFromOStream(std::ostream & ostr_, size_t size = DBMS_DEFAULT_BUFFER_SIZE)
: BufferWithOwnMemory<WriteBuffer>(size), ostr(ostr_) {}
2011-06-26 21:30:59 +00:00
2010-06-01 13:35:09 +00:00
~WriteBufferFromOStream()
{
if (!std::uncaught_exception())
next();
2010-06-01 13:35:09 +00:00
}
};
}