ClickHouse/dbms/src/Formats/TabSeparatedRowOutputStream.h

52 lines
1.4 KiB
C++
Raw Normal View History

2011-08-09 19:19:00 +00:00
#pragma once
2010-03-04 19:20:28 +00:00
#include <Core/Block.h>
#include <Formats/FormatSettings.h>
#include <Formats/IRowOutputStream.h>
2010-03-04 19:20:28 +00:00
namespace DB
{
2016-08-13 01:57:35 +00:00
class WriteBuffer;
2017-05-13 22:19:04 +00:00
/** A stream for outputting data in tsv format.
2010-03-04 19:20:28 +00:00
*/
class TabSeparatedRowOutputStream : public IRowOutputStream
{
public:
2017-05-13 22:19:04 +00:00
/** 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
*/
TabSeparatedRowOutputStream(WriteBuffer & ostr_, const Block & sample_, bool with_names_, bool with_types_, const FormatSettings & format_settings);
2010-03-04 19:20:28 +00:00
void writeField(const IColumn & column, const IDataType & type, size_t row_num) override;
void writeFieldDelimiter() override;
void writeRowEndDelimiter() override;
void writePrefix() override;
void writeSuffix() override;
void flush() override;
void setTotals(const Block & totals_) override { totals = totals_; }
void setExtremes(const Block & extremes_) override { extremes = extremes_; }
2010-03-04 19:20:28 +00:00
/// https://www.iana.org/assignments/media-types/text/tab-separated-values
String getContentType() const override { return "text/tab-separated-values; charset=UTF-8"; }
2012-08-17 19:53:11 +00:00
protected:
void writeTotals();
void writeExtremes();
WriteBuffer & ostr;
const Block sample;
bool with_names;
bool with_types;
const FormatSettings format_settings;
Block totals;
Block extremes;
2010-03-04 19:20:28 +00:00
};
}