2019-02-19 18:41:18 +00:00
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <IO/WriteBufferFromString.h>
|
|
|
|
#include <Processors/Formats/Impl/TSKVRowOutputFormat.h>
|
|
|
|
#include <Formats/FormatFactory.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-10-07 18:51:10 +00:00
|
|
|
TSKVRowOutputFormat::TSKVRowOutputFormat(WriteBuffer & out_, const Block & header, const RowOutputFormatParams & params_, const FormatSettings & format_settings_)
|
|
|
|
: TabSeparatedRowOutputFormat(out_, header, false, false, params_, format_settings_)
|
2019-02-19 18:41:18 +00:00
|
|
|
{
|
2020-04-22 06:34:20 +00:00
|
|
|
const auto & sample = getPort(PortKind::Main).getHeader();
|
2019-02-19 18:41:18 +00:00
|
|
|
NamesAndTypesList columns(sample.getNamesAndTypesList());
|
|
|
|
fields.assign(columns.begin(), columns.end());
|
|
|
|
|
|
|
|
for (auto & field : fields)
|
|
|
|
{
|
|
|
|
WriteBufferFromOwnString wb;
|
|
|
|
writeAnyEscapedString<'='>(field.name.data(), field.name.data() + field.name.size(), wb);
|
|
|
|
writeCString("=", wb);
|
|
|
|
field.name = wb.str();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-03-09 14:46:52 +00:00
|
|
|
void TSKVRowOutputFormat::writeField(const IColumn & column, const ISerialization & serialization, size_t row_num)
|
2019-02-19 18:41:18 +00:00
|
|
|
{
|
|
|
|
writeString(fields[field_number].name, out);
|
2021-03-09 14:46:52 +00:00
|
|
|
serialization.serializeTextEscaped(column, row_num, out, format_settings);
|
2019-02-19 18:41:18 +00:00
|
|
|
++field_number;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void TSKVRowOutputFormat::writeRowEndDelimiter()
|
|
|
|
{
|
|
|
|
writeChar('\n', out);
|
|
|
|
field_number = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void registerOutputFormatProcessorTSKV(FormatFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerOutputFormatProcessor("TSKV", [](
|
|
|
|
WriteBuffer & buf,
|
|
|
|
const Block & sample,
|
2020-10-06 12:47:52 +00:00
|
|
|
const RowOutputFormatParams & params,
|
2019-02-19 18:41:18 +00:00
|
|
|
const FormatSettings & settings)
|
|
|
|
{
|
2020-10-06 12:47:52 +00:00
|
|
|
return std::make_shared<TSKVRowOutputFormat>(buf, sample, params, settings);
|
2019-02-19 18:41:18 +00:00
|
|
|
});
|
2020-10-06 14:02:01 +00:00
|
|
|
factory.markOutputFormatSupportsParallelFormatting("TSKV");
|
2019-02-19 18:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|