mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
244 lines
5.7 KiB
C++
244 lines
5.7 KiB
C++
#include <sys/ioctl.h>
|
||
#include <unistd.h>
|
||
|
||
#include <DB/Functions/FunctionsMiscellaneous.h>
|
||
|
||
#include <DB/DataStreams/PrettyBlockOutputStream.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
PrettyBlockOutputStream::PrettyBlockOutputStream(WriteBuffer & ostr_, bool no_escapes_, size_t max_rows_)
|
||
: ostr(ostr_), max_rows(max_rows_), total_rows(0), terminal_width(0), no_escapes(no_escapes_)
|
||
{
|
||
struct winsize w;
|
||
if (0 == ioctl(STDOUT_FILENO, TIOCGWINSZ, &w))
|
||
terminal_width = w.ws_col;
|
||
}
|
||
|
||
|
||
void PrettyBlockOutputStream::calculateWidths(Block & block, Widths_t & max_widths, Widths_t & name_widths)
|
||
{
|
||
size_t rows = block.rows();
|
||
size_t columns = block.columns();
|
||
|
||
max_widths.resize(columns);
|
||
name_widths.resize(columns);
|
||
|
||
FunctionVisibleWidth visible_width_func;
|
||
DataTypePtr visible_width_type = std::make_shared<DataTypeUInt64>();
|
||
|
||
/// Вычислим ширину всех значений
|
||
for (size_t i = 0; i < columns; ++i)
|
||
{
|
||
ColumnWithTypeAndName column;
|
||
column.type = visible_width_type;
|
||
column.name = "visibleWidth(" + block.getByPosition(i).name + ")";
|
||
|
||
size_t result_number = block.columns();
|
||
block.insert(column);
|
||
|
||
ColumnNumbers arguments;
|
||
arguments.push_back(i);
|
||
|
||
visible_width_func.execute(block, arguments, result_number);
|
||
|
||
column.column = block.getByPosition(i + columns).column;
|
||
|
||
if (const ColumnUInt64 * col = typeid_cast<const ColumnUInt64 *>(&*column.column))
|
||
{
|
||
const ColumnUInt64::Container_t & res = col->getData();
|
||
for (size_t j = 0; j < rows; ++j)
|
||
if (res[j] > max_widths[i])
|
||
max_widths[i] = res[j];
|
||
}
|
||
else if (const ColumnConstUInt64 * col = typeid_cast<const ColumnConstUInt64 *>(&*column.column))
|
||
{
|
||
UInt64 res = col->getData();
|
||
max_widths[i] = res;
|
||
}
|
||
else
|
||
throw Exception("Illegal column " + column.column->getName()
|
||
+ " of result of function " + visible_width_func.getName(),
|
||
ErrorCodes::ILLEGAL_COLUMN);
|
||
|
||
/// И не только значений, но и их имён
|
||
stringWidthConstant(block.getByPosition(i).name, name_widths[i]);
|
||
if (name_widths[i] > max_widths[i])
|
||
max_widths[i] = name_widths[i];
|
||
}
|
||
}
|
||
|
||
|
||
void PrettyBlockOutputStream::write(const Block & block_)
|
||
{
|
||
if (total_rows >= max_rows)
|
||
{
|
||
total_rows += block_.rows();
|
||
return;
|
||
}
|
||
|
||
/// Будем вставлять суда столбцы с вычисленными значениями видимых длин.
|
||
Block block = block_;
|
||
|
||
size_t rows = block.rows();
|
||
size_t columns = block.columns();
|
||
|
||
Widths_t max_widths;
|
||
Widths_t name_widths;
|
||
calculateWidths(block, max_widths, name_widths);
|
||
|
||
/// Создадим разделители
|
||
std::stringstream top_separator;
|
||
std::stringstream middle_names_separator;
|
||
std::stringstream middle_values_separator;
|
||
std::stringstream bottom_separator;
|
||
|
||
top_separator << "┏";
|
||
middle_names_separator << "┡";
|
||
middle_values_separator << "├";
|
||
bottom_separator << "└";
|
||
for (size_t i = 0; i < columns; ++i)
|
||
{
|
||
if (i != 0)
|
||
{
|
||
top_separator << "┳";
|
||
middle_names_separator << "╇";
|
||
middle_values_separator << "┼";
|
||
bottom_separator << "┴";
|
||
}
|
||
|
||
for (size_t j = 0; j < max_widths[i] + 2; ++j)
|
||
{
|
||
top_separator << "━";
|
||
middle_names_separator << "━";
|
||
middle_values_separator << "─";
|
||
bottom_separator << "─";
|
||
}
|
||
}
|
||
top_separator << "┓\n";
|
||
middle_names_separator << "┩\n";
|
||
middle_values_separator << "┤\n";
|
||
bottom_separator << "┘\n";
|
||
|
||
std::string top_separator_s = top_separator.str();
|
||
std::string middle_names_separator_s = middle_names_separator.str();
|
||
std::string middle_values_separator_s = middle_values_separator.str();
|
||
std::string bottom_separator_s = bottom_separator.str();
|
||
|
||
/// Выведем блок
|
||
writeString(top_separator_s, ostr);
|
||
|
||
/// Имена
|
||
writeCString("┃ ", ostr);
|
||
for (size_t i = 0; i < columns; ++i)
|
||
{
|
||
if (i != 0)
|
||
writeCString(" ┃ ", ostr);
|
||
|
||
const ColumnWithTypeAndName & col = block.getByPosition(i);
|
||
|
||
if (!no_escapes)
|
||
writeCString("\033[1m", ostr);
|
||
|
||
if (col.type->isNumeric())
|
||
{
|
||
for (size_t k = 0; k < max_widths[i] - name_widths[i]; ++k)
|
||
writeChar(' ', ostr);
|
||
|
||
writeEscapedString(col.name, ostr);
|
||
}
|
||
else
|
||
{
|
||
writeEscapedString(col.name, ostr);
|
||
|
||
for (size_t k = 0; k < max_widths[i] - name_widths[i]; ++k)
|
||
writeChar(' ', ostr);
|
||
}
|
||
|
||
if (!no_escapes)
|
||
writeCString("\033[0m", ostr);
|
||
}
|
||
writeCString(" ┃\n", ostr);
|
||
|
||
writeString(middle_names_separator_s, ostr);
|
||
|
||
for (size_t i = 0; i < rows && total_rows + i < max_rows; ++i)
|
||
{
|
||
if (i != 0)
|
||
writeString(middle_values_separator_s, ostr);
|
||
|
||
writeCString("│ ", ostr);
|
||
|
||
for (size_t j = 0; j < columns; ++j)
|
||
{
|
||
if (j != 0)
|
||
writeCString(" │ ", ostr);
|
||
|
||
const ColumnWithTypeAndName & col = block.getByPosition(j);
|
||
|
||
if (col.type->isNumeric())
|
||
{
|
||
size_t width = get<UInt64>((*block.getByPosition(columns + j).column)[i]);
|
||
for (size_t k = 0; k < max_widths[j] - width; ++k)
|
||
writeChar(' ', ostr);
|
||
|
||
col.type->serializeTextEscaped(*col.column.get(), i, ostr);
|
||
}
|
||
else
|
||
{
|
||
col.type->serializeTextEscaped(*col.column.get(), i, ostr);
|
||
|
||
size_t width = get<UInt64>((*block.getByPosition(columns + j).column)[i]);
|
||
for (size_t k = 0; k < max_widths[j] - width; ++k)
|
||
writeChar(' ', ostr);
|
||
}
|
||
}
|
||
|
||
writeCString(" │\n", ostr);
|
||
}
|
||
|
||
writeString(bottom_separator_s, ostr);
|
||
|
||
total_rows += rows;
|
||
}
|
||
|
||
|
||
void PrettyBlockOutputStream::writeSuffix()
|
||
{
|
||
if (total_rows >= max_rows)
|
||
{
|
||
writeCString(" Showed first ", ostr);
|
||
writeIntText(max_rows, ostr);
|
||
writeCString(".\n", ostr);
|
||
}
|
||
|
||
total_rows = 0;
|
||
writeTotals();
|
||
writeExtremes();
|
||
}
|
||
|
||
|
||
void PrettyBlockOutputStream::writeTotals()
|
||
{
|
||
if (totals)
|
||
{
|
||
writeCString("\nTotals:\n", ostr);
|
||
write(totals);
|
||
}
|
||
}
|
||
|
||
|
||
void PrettyBlockOutputStream::writeExtremes()
|
||
{
|
||
if (extremes)
|
||
{
|
||
writeCString("\nExtremes:\n", ostr);
|
||
write(extremes);
|
||
}
|
||
}
|
||
|
||
|
||
}
|