mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
8b3afeb60d
commit f968e7e7f0d84c89fd26dea1d541bd9f6041d7c8 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Tue Feb 16 06:11:29 2016 +0300 Addition [#METR-2944]. commit 7524981fa7c4f22929dd5009444a0ae28500f620 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Tue Feb 16 06:08:43 2016 +0300 Fixed error (incomplete) [#METR-2944]. commit 2f1e7bf9f46cd9ce958ade9041c00ce067940fd2 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Tue Feb 16 05:37:43 2016 +0300 Improving performance of row formats [#METR-2944]. commit 9848910f235863c9571ef1ebe0d87d4929ee283c Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Tue Feb 16 00:37:12 2016 +0300 Improving performance of text formats [#METR-2944]. commit 3aedc7fd784af962e64ffdd10ec23ac53827d8e2 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Tue Feb 16 00:18:00 2016 +0300 Improving performance of row formats [#METR-2944]. commit cb5932c2b0385604477e69c8262dc31a4bb4b23b Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Mon Feb 15 00:53:27 2016 +0300 Fixed error. commit 42863fd4eddeef594e846c598b92877b6ff86fa6 Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Sun Feb 14 23:13:46 2016 +0300 Improving performance of row formats [#METR-2944]. commit 71c6fb19a85a79297433ceb486fdb97e551d964f Author: Alexey Milovidov <milovidov@yandex-team.ru> Date: Sun Feb 14 16:58:56 2016 +0300 Improving performance of row formats [#METR-2944].
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
#pragma once
|
||
|
||
#include <DB/IO/WriteBuffer.h>
|
||
#include <DB/DataStreams/IRowOutputStream.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
/** Поток для вывода данных в формате csv.
|
||
* Не соответствует https://tools.ietf.org/html/rfc4180 потому что использует LF, а не CR LF.
|
||
*/
|
||
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 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 { 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;
|
||
Block totals;
|
||
Block extremes;
|
||
};
|
||
|
||
}
|
||
|