mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
117 lines
3.1 KiB
C++
117 lines
3.1 KiB
C++
#include <IO/WriteBuffer.h>
|
|
#include <IO/WriteHelpers.h>
|
|
#include <Formats/FormatFactory.h>
|
|
#include <Formats/PrettySpaceBlockOutputStream.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void PrettySpaceBlockOutputStream::write(const Block & block)
|
|
{
|
|
UInt64 max_rows = format_settings.pretty.max_rows;
|
|
|
|
if (total_rows >= max_rows)
|
|
{
|
|
total_rows += block.rows();
|
|
return;
|
|
}
|
|
|
|
size_t rows = block.rows();
|
|
size_t columns = block.columns();
|
|
|
|
WidthsPerColumn widths;
|
|
Widths max_widths;
|
|
Widths name_widths;
|
|
calculateWidths(block, widths, max_widths, name_widths, format_settings);
|
|
|
|
/// Names
|
|
for (size_t i = 0; i < columns; ++i)
|
|
{
|
|
if (i != 0)
|
|
writeCString(" ", ostr);
|
|
|
|
const ColumnWithTypeAndName & col = block.getByPosition(i);
|
|
|
|
if (col.type->shouldAlignRightInPrettyFormats())
|
|
{
|
|
for (ssize_t k = 0; k < std::max(static_cast<ssize_t>(0), static_cast<ssize_t>(max_widths[i] - name_widths[i])); ++k)
|
|
writeChar(' ', ostr);
|
|
|
|
if (format_settings.pretty.color)
|
|
writeCString("\033[1m", ostr);
|
|
writeString(col.name, ostr);
|
|
if (format_settings.pretty.color)
|
|
writeCString("\033[0m", ostr);
|
|
}
|
|
else
|
|
{
|
|
if (format_settings.pretty.color)
|
|
writeCString("\033[1m", ostr);
|
|
writeString(col.name, ostr);
|
|
if (format_settings.pretty.color)
|
|
writeCString("\033[0m", ostr);
|
|
|
|
for (ssize_t k = 0; k < std::max(static_cast<ssize_t>(0), static_cast<ssize_t>(max_widths[i] - name_widths[i])); ++k)
|
|
writeChar(' ', ostr);
|
|
}
|
|
}
|
|
writeCString("\n\n", ostr);
|
|
|
|
for (size_t i = 0; i < rows && total_rows + i < max_rows; ++i)
|
|
{
|
|
for (size_t j = 0; j < columns; ++j)
|
|
{
|
|
if (j != 0)
|
|
writeCString(" ", ostr);
|
|
|
|
writeValueWithPadding(block.getByPosition(j), i, widths[j].empty() ? max_widths[j] : widths[j][i], max_widths[j]);
|
|
}
|
|
|
|
writeChar('\n', ostr);
|
|
}
|
|
|
|
total_rows += rows;
|
|
}
|
|
|
|
|
|
void PrettySpaceBlockOutputStream::writeSuffix()
|
|
{
|
|
if (total_rows >= format_settings.pretty.max_rows)
|
|
{
|
|
writeCString("\nShowed first ", ostr);
|
|
writeIntText(format_settings.pretty.max_rows, ostr);
|
|
writeCString(".\n", ostr);
|
|
}
|
|
|
|
total_rows = 0;
|
|
writeTotals();
|
|
writeExtremes();
|
|
}
|
|
|
|
|
|
void registerOutputFormatPrettySpace(FormatFactory & factory)
|
|
{
|
|
factory.registerOutputFormat("PrettySpace", [](
|
|
WriteBuffer & buf,
|
|
const Block & sample,
|
|
const Context &,
|
|
const FormatSettings & format_settings)
|
|
{
|
|
return std::make_shared<PrettySpaceBlockOutputStream>(buf, sample, format_settings);
|
|
});
|
|
|
|
factory.registerOutputFormat("PrettySpaceNoEscapes", [](
|
|
WriteBuffer & buf,
|
|
const Block & sample,
|
|
const Context &,
|
|
const FormatSettings & format_settings)
|
|
{
|
|
FormatSettings changed_settings = format_settings;
|
|
changed_settings.pretty.color = false;
|
|
return std::make_shared<PrettySpaceBlockOutputStream>(buf, sample, changed_settings);
|
|
});
|
|
}
|
|
|
|
}
|