ClickHouse/dbms/src/DataStreams/JSONRowOutputStream.cpp

185 lines
3.9 KiB
C++
Raw Normal View History

2013-05-15 11:18:58 +00:00
#include <DB/DataStreams/JSONRowOutputStream.h>
#include <DB/IO/WriteHelpers.h>
namespace DB
{
using Poco::SharedPtr;
2013-05-22 14:57:43 +00:00
JSONRowOutputStream::JSONRowOutputStream(WriteBuffer & ostr_, const Block & sample_)
: dst_ostr(ostr_), ostr(dst_ostr), field_number(0), row_count(0), applied_limit(false), rows_before_limit(0)
2013-05-15 11:18:58 +00:00
{
NamesAndTypesList columns(sample_.getColumnsList());
fields.assign(columns.begin(), columns.end());
}
void JSONRowOutputStream::writePrefix()
{
writeCString("{\n", ostr);
writeCString("\t\"meta\":\n", ostr);
writeCString("\t[\n", ostr);
2013-05-15 11:18:58 +00:00
for (size_t i = 0; i < fields.size(); ++i)
{
writeCString("\t\t{\n", ostr);
2013-05-15 11:18:58 +00:00
writeCString("\t\t\t\"name\": ", ostr);
writeDoubleQuotedString(fields[i].name, ostr);
writeCString(",\n", ostr);
writeCString("\t\t\t\"type\": ", ostr);
writeDoubleQuotedString(fields[i].type->getName(), ostr);
2013-05-15 11:18:58 +00:00
writeChar('\n', ostr);
writeCString("\t\t}", ostr);
2013-05-15 11:18:58 +00:00
if (i + 1 < fields.size())
writeChar(',', ostr);
writeChar('\n', ostr);
}
writeCString("\t],\n", ostr);
2013-05-15 11:18:58 +00:00
writeChar('\n', ostr);
writeCString("\t\"data\":\n", ostr);
writeCString("\t[\n", ostr);
2013-05-15 11:18:58 +00:00
}
void JSONRowOutputStream::writeField(const Field & field)
{
writeCString("\t\t\t", ostr);
writeDoubleQuotedString(fields[field_number].name, ostr);
writeCString(": ", ostr);
fields[field_number].type->serializeTextJSON(field, ostr);
2013-05-15 11:18:58 +00:00
++field_number;
}
void JSONRowOutputStream::writeFieldDelimiter()
{
writeCString(",\n", ostr);
2013-05-15 11:18:58 +00:00
}
void JSONRowOutputStream::writeRowStartDelimiter()
{
if (row_count > 0)
writeCString(",\n", ostr);
writeCString("\t\t{\n", ostr);
2013-05-15 11:18:58 +00:00
}
void JSONRowOutputStream::writeRowEndDelimiter()
{
writeChar('\n', ostr);
writeCString("\t\t}", ostr);
2013-05-15 11:18:58 +00:00
field_number = 0;
++row_count;
}
void JSONRowOutputStream::writeSuffix()
{
writeChar('\n', ostr);
writeCString("\t]", ostr);
writeTotals();
writeExtremes();
writeCString(",\n\n", ostr);
writeCString("\t\"rows\": ", ostr);
2013-05-15 11:18:58 +00:00
writeIntText(row_count, ostr);
2013-05-20 12:21:51 +00:00
writeRowsBeforeLimitAtLeast();
2013-05-15 11:18:58 +00:00
writeChar('\n', ostr);
writeCString("}\n", ostr);
ostr.next();
2013-05-15 11:18:58 +00:00
}
2013-05-20 12:21:51 +00:00
void JSONRowOutputStream::writeRowsBeforeLimitAtLeast()
{
2013-05-22 14:57:43 +00:00
if (applied_limit)
2013-05-20 12:21:51 +00:00
{
writeCString(",\n\n", ostr);
2013-05-22 14:57:43 +00:00
writeCString("\t\"rows_before_limit_at_least\": ", ostr);
writeIntText(rows_before_limit, ostr);
2013-05-20 12:21:51 +00:00
}
}
void JSONRowOutputStream::writeTotals()
{
if (totals)
{
writeCString(",\n", ostr);
writeChar('\n', ostr);
writeCString("\t\"totals\":\n", ostr);
writeCString("\t{\n", ostr);
size_t totals_columns = totals.columns();
for (size_t i = 0; i < totals_columns; ++i)
{
const ColumnWithNameAndType & column = totals.getByPosition(i);
if (i != 0)
writeCString(",\n", ostr);
writeCString("\t\t", ostr);
writeDoubleQuotedString(column.name, ostr);
writeCString(": ", ostr);
column.type->serializeTextJSON((*column.column)[0], ostr);
}
writeChar('\n', ostr);
writeCString("\t}", ostr);
}
}
static void writeExtremesElement(const char * title, const Block & extremes, size_t row_num, WriteBuffer & ostr)
{
writeCString("\t\t\"", ostr);
writeCString(title, ostr);
writeCString("\":\n", ostr);
writeCString("\t\t{\n", ostr);
size_t extremes_columns = extremes.columns();
for (size_t i = 0; i < extremes_columns; ++i)
{
const ColumnWithNameAndType & column = extremes.getByPosition(i);
if (i != 0)
writeCString(",\n", ostr);
writeCString("\t\t\t", ostr);
writeDoubleQuotedString(column.name, ostr);
writeCString(": ", ostr);
column.type->serializeTextJSON((*column.column)[row_num], ostr);
}
writeChar('\n', ostr);
writeCString("\t\t}", ostr);
}
void JSONRowOutputStream::writeExtremes()
{
if (extremes)
{
writeCString(",\n", ostr);
writeChar('\n', ostr);
writeCString("\t\"extremes\":\n", ostr);
writeCString("\t{\n", ostr);
writeExtremesElement("min", extremes, 0, ostr);
writeCString(",\n", ostr);
writeExtremesElement("max", extremes, 1, ostr);
writeChar('\n', ostr);
writeCString("\t}", ostr);
}
}
2013-05-15 11:18:58 +00:00
}