mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-20 05:05:38 +00:00
fafecb3c25
* Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development): removed very old tests #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447 * Formats: better modularity (development) #2447
56 lines
1.4 KiB
C++
56 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <DataStreams/IBlockOutputStream.h>
|
|
#include <Formats/FormatSettings.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class WriteBuffer;
|
|
class Context;
|
|
|
|
|
|
/** Prints the result in the form of beautiful tables.
|
|
*/
|
|
class PrettyBlockOutputStream : public IBlockOutputStream
|
|
{
|
|
public:
|
|
/// no_escapes - do not use ANSI escape sequences - to display in the browser, not in the console.
|
|
PrettyBlockOutputStream(WriteBuffer & ostr_, const Block & header_, const FormatSettings & format_settings);
|
|
|
|
Block getHeader() const override { return header; }
|
|
void write(const Block & block) override;
|
|
void writeSuffix() override;
|
|
|
|
void flush() override;
|
|
|
|
void setTotals(const Block & totals_) override { totals = totals_; }
|
|
void setExtremes(const Block & extremes_) override { extremes = extremes_; }
|
|
|
|
protected:
|
|
void writeTotals();
|
|
void writeExtremes();
|
|
|
|
WriteBuffer & ostr;
|
|
const Block header;
|
|
size_t total_rows = 0;
|
|
size_t terminal_width = 0;
|
|
|
|
const FormatSettings format_settings;
|
|
|
|
Block totals;
|
|
Block extremes;
|
|
|
|
using Widths = PODArray<size_t>;
|
|
using WidthsPerColumn = std::vector<Widths>;
|
|
|
|
static void calculateWidths(
|
|
const Block & block, WidthsPerColumn & widths, Widths & max_widths, Widths & name_widths, const FormatSettings & format_settings);
|
|
|
|
void writeValueWithPadding(const ColumnWithTypeAndName & elem, size_t row_num, size_t value_width, size_t pad_to_width);
|
|
};
|
|
|
|
}
|