ClickHouse/dbms/include/DB/DataStreams/CSVRowOutputStream.h

53 lines
1.4 KiB
C
Raw Normal View History

#pragma once
#include <DB/IO/WriteBuffer.h>
#include <DB/DataStreams/IRowOutputStream.h>
namespace DB
{
/** Поток для вывода данных в формате csv.
*/
class CSVRowOutputStream : public IRowOutputStream
{
public:
/** with_names - выводить в первой строке заголовок с именами столбцов
* with_types - выводить на следующей строке заголовок с именами типов
*/
CSVRowOutputStream(WriteBuffer & ostr_, const Block & sample_, bool with_names_ = false, bool with_types_ = false);
void writeField(const Field & field) override;
void writeFieldDelimiter() override;
void writeRowEndDelimiter() override;
void writePrefix() override;
void writeSuffix() override;
void flush() override { ostr.next(); }
void setTotals(const Block & totals_) override { totals = totals_; }
void setExtremes(const Block & extremes_) override { extremes = extremes_; }
/// https://www.iana.org/assignments/media-types/text/csv
String getContentType() const override
{
return String("text/csv; charset=UTF-8; header=") + ((with_names || with_types) ? "present" : "absent");
}
protected:
void writeTotals();
void writeExtremes();
WriteBuffer & ostr;
const Block sample;
bool with_names;
bool with_types;
DataTypes data_types;
size_t field_number;
Block totals;
Block extremes;
};
}