mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 10:22:10 +00:00
50 lines
1.3 KiB
C++
50 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include <Core/Block.h>
|
|
#include <Formats/FormatSettings.h>
|
|
#include <Processors/Formats/IRowOutputFormat.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class WriteBuffer;
|
|
|
|
/** A stream for outputting data in tsv format.
|
|
*/
|
|
class TabSeparatedRowOutputFormat : public IRowOutputFormat
|
|
{
|
|
public:
|
|
/** with_names - output in the first line a header with column names
|
|
* with_types - output the next line header with the names of the types
|
|
*/
|
|
TabSeparatedRowOutputFormat(
|
|
WriteBuffer & out_,
|
|
const Block & header_,
|
|
bool with_names_,
|
|
bool with_types_,
|
|
const RowOutputFormatParams & params_,
|
|
const FormatSettings & format_settings_);
|
|
|
|
String getName() const override { return "TabSeparatedRowOutputFormat"; }
|
|
|
|
void writeField(const IColumn & column, const ISerialization & serialization, size_t row_num) override;
|
|
void writeFieldDelimiter() override;
|
|
void writeRowEndDelimiter() override;
|
|
void writeBeforeTotals() override;
|
|
void writeBeforeExtremes() override;
|
|
|
|
void doWritePrefix() override;
|
|
|
|
/// https://www.iana.org/assignments/media-types/text/tab-separated-values
|
|
String getContentType() const override { return "text/tab-separated-values; charset=UTF-8"; }
|
|
|
|
protected:
|
|
|
|
bool with_names;
|
|
bool with_types;
|
|
const FormatSettings format_settings;
|
|
};
|
|
|
|
}
|