2018-06-06 20:57:07 +00:00
|
|
|
#pragma once
|
|
|
|
#include <IO/WriteBuffer.h>
|
2021-10-14 10:25:43 +00:00
|
|
|
#include <Core/Block.h>
|
2018-06-06 20:57:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Prints internal server logs
|
|
|
|
/// Input blocks have to have the same structure as SystemLogsQueue::getSampleBlock()
|
2021-04-13 20:04:13 +00:00
|
|
|
/// NOTE: IRowOutputFormat does not suite well for this case
|
2021-10-08 14:03:54 +00:00
|
|
|
class InternalTextLogs
|
2018-06-06 20:57:07 +00:00
|
|
|
{
|
|
|
|
public:
|
2021-10-08 14:03:54 +00:00
|
|
|
InternalTextLogs(WriteBuffer & buf_out, bool color_) : wb(buf_out), color(color_) {}
|
2018-06-06 20:57:07 +00:00
|
|
|
|
|
|
|
|
2021-10-08 14:03:54 +00:00
|
|
|
void write(const Block & block);
|
2018-06-06 20:57:07 +00:00
|
|
|
|
2021-10-08 14:03:54 +00:00
|
|
|
void flush()
|
2018-06-06 20:57:07 +00:00
|
|
|
{
|
|
|
|
wb.next();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
WriteBuffer & wb;
|
2020-02-21 20:01:38 +00:00
|
|
|
bool color;
|
2018-06-06 20:57:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|