mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 04:52:10 +00:00
32 lines
660 B
C++
32 lines
660 B
C++
#pragma once
|
|
#include <DataStreams/IBlockOutputStream.h>
|
|
#include <IO/WriteBuffer.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Prints internal server logs
|
|
/// Input blocks have to have the same structure as SystemLogsQueue::getSampleBlock()
|
|
/// NOTE: IRowOutputStream does not suite well for this case
|
|
class InternalTextLogsRowOutputStream : public IBlockOutputStream
|
|
{
|
|
public:
|
|
InternalTextLogsRowOutputStream(WriteBuffer & buf_out, bool color_) : wb(buf_out), color(color_) {}
|
|
|
|
Block getHeader() const override;
|
|
|
|
void write(const Block & block) override;
|
|
|
|
void flush() override
|
|
{
|
|
wb.next();
|
|
}
|
|
|
|
private:
|
|
WriteBuffer & wb;
|
|
bool color;
|
|
};
|
|
|
|
}
|