2013-05-15 11:18:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <DB/Core/Block.h>
|
2016-08-17 03:29:26 +00:00
|
|
|
#include <DB/Core/Progress.h>
|
2013-05-15 11:18:58 +00:00
|
|
|
#include <DB/IO/WriteBuffer.h>
|
2016-08-17 03:29:26 +00:00
|
|
|
#include <DB/Common/Stopwatch.h>
|
2013-05-15 11:18:58 +00:00
|
|
|
#include <DB/DataStreams/IRowOutputStream.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2016-08-17 04:38:19 +00:00
|
|
|
/** Stream for output data in JSON format.
|
2013-05-15 11:18:58 +00:00
|
|
|
*/
|
|
|
|
class JSONRowOutputStream : public IRowOutputStream
|
|
|
|
{
|
|
|
|
public:
|
2016-08-17 20:03:22 +00:00
|
|
|
JSONRowOutputStream(WriteBuffer & ostr_, const Block & sample_,
|
2016-09-30 16:21:09 +00:00
|
|
|
bool write_statistics_, bool force_quoting_64bit_integers_);
|
2013-05-15 11:18:58 +00:00
|
|
|
|
2016-02-16 16:39:39 +00:00
|
|
|
void writeField(const IColumn & column, const IDataType & type, size_t row_num) override;
|
2014-11-08 23:52:18 +00:00
|
|
|
void writeFieldDelimiter() override;
|
|
|
|
void writeRowStartDelimiter() override;
|
|
|
|
void writeRowEndDelimiter() override;
|
|
|
|
void writePrefix() override;
|
|
|
|
void writeSuffix() override;
|
|
|
|
|
2015-02-15 09:45:29 +00:00
|
|
|
void flush() override
|
|
|
|
{
|
|
|
|
ostr->next();
|
|
|
|
|
|
|
|
if (validating_ostr)
|
|
|
|
dst_ostr.next();
|
|
|
|
}
|
2014-11-08 23:52:18 +00:00
|
|
|
|
|
|
|
void setRowsBeforeLimit(size_t rows_before_limit_) override
|
2013-05-22 14:57:43 +00:00
|
|
|
{
|
|
|
|
applied_limit = true;
|
|
|
|
rows_before_limit = rows_before_limit_;
|
|
|
|
}
|
2013-05-15 11:18:58 +00:00
|
|
|
|
2014-11-08 23:52:18 +00:00
|
|
|
void setTotals(const Block & totals_) override { totals = totals_; }
|
|
|
|
void setExtremes(const Block & extremes_) override { extremes = extremes_; }
|
2013-09-01 04:55:41 +00:00
|
|
|
|
2016-08-17 03:29:26 +00:00
|
|
|
void onProgress(const Progress & value) override;
|
|
|
|
|
2015-10-29 20:38:37 +00:00
|
|
|
String getContentType() const override { return "application/json; charset=UTF-8"; }
|
|
|
|
|
2013-05-15 11:18:58 +00:00
|
|
|
protected:
|
2014-11-08 23:52:18 +00:00
|
|
|
|
2013-05-20 12:21:51 +00:00
|
|
|
void writeRowsBeforeLimitAtLeast();
|
2013-09-01 04:55:41 +00:00
|
|
|
virtual void writeTotals();
|
2013-09-07 02:03:13 +00:00
|
|
|
virtual void writeExtremes();
|
2016-08-17 03:29:26 +00:00
|
|
|
void writeStatistics();
|
2014-11-08 23:52:18 +00:00
|
|
|
|
2014-08-14 20:27:41 +00:00
|
|
|
WriteBuffer & dst_ostr;
|
2016-08-17 04:38:19 +00:00
|
|
|
std::unique_ptr<WriteBuffer> validating_ostr; /// Validates UTF-8 sequences, replaces bad sequences with replacement character.
|
2015-02-15 09:45:29 +00:00
|
|
|
WriteBuffer * ostr;
|
|
|
|
|
|
|
|
size_t field_number = 0;
|
|
|
|
size_t row_count = 0;
|
|
|
|
bool applied_limit = false;
|
|
|
|
size_t rows_before_limit = 0;
|
2014-07-09 11:45:51 +00:00
|
|
|
NamesAndTypes fields;
|
2013-09-01 04:55:41 +00:00
|
|
|
Block totals;
|
2013-09-07 02:03:13 +00:00
|
|
|
Block extremes;
|
2016-08-17 03:29:26 +00:00
|
|
|
|
|
|
|
Progress progress;
|
|
|
|
Stopwatch watch;
|
2016-08-17 20:03:22 +00:00
|
|
|
bool write_statistics;
|
2016-09-30 16:21:09 +00:00
|
|
|
bool force_quoting_64bit_integers;
|
2013-05-15 11:18:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|