1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
#include <Formats/NativeReader.h>
#include <Formats/NativeWriter.h>
#include <Formats/FormatFactory.h>
#include <Processors/Formats/IInputFormat.h>
#include <Processors/Formats/IOutputFormat.h>
#include <Processors/Formats/ISchemaReader.h>
#include <Processors/Transforms/AggregatingTransform.h>
namespace DB
{
class NativeInputFormat final : public IInputFormat
{
public:
NativeInputFormat(ReadBuffer & buf, const Block & header_, const FormatSettings & settings)
: IInputFormat(header_, &buf)
, reader(std::make_unique<NativeReader>(
buf,
header_,
0,
settings.skip_unknown_fields,
settings.null_as_default,
settings.native.allow_types_conversion,
settings.defaults_for_omitted_fields ? &block_missing_values : nullptr))
, header(header_) {}
String getName() const override { return "Native"; }
void resetParser() override
{
IInputFormat::resetParser();
reader->resetParser();
}
Chunk generate() override
{
block_missing_values.clear();
size_t block_start = getDataOffsetMaybeCompressed(*in);
auto block = reader->read();
approx_bytes_read_for_chunk = getDataOffsetMaybeCompressed(*in) - block_start;
if (!block)
return {};
assertBlocksHaveEqualStructure(getPort().getHeader(), block, getName());
block.checkNumberOfRows();
size_t num_rows = block.rows();
return Chunk(block.getColumns(), num_rows);
}
void setReadBuffer(ReadBuffer & in_) override
{
reader = std::make_unique<NativeReader>(in_, header, 0);
IInputFormat::setReadBuffer(in_);
}
const BlockMissingValues & getMissingValues() const override { return block_missing_values; }
size_t getApproxBytesReadForChunk() const override { return approx_bytes_read_for_chunk; }
private:
std::unique_ptr<NativeReader> reader;
Block header;
BlockMissingValues block_missing_values;
size_t approx_bytes_read_for_chunk = 0;
};
class NativeOutputFormat final : public IOutputFormat
{
public:
NativeOutputFormat(WriteBuffer & buf, const Block & header, UInt64 client_protocol_version = 0)
: IOutputFormat(header, buf)
, writer(buf, client_protocol_version, header)
{
}
String getName() const override { return "Native"; }
std::string getContentType() const override
{
return writer.getContentType();
}
protected:
void consume(Chunk chunk) override
{
if (chunk)
{
auto block = getPort(PortKind::Main).getHeader();
block.setColumns(chunk.detachColumns());
writer.write(block);
}
}
private:
NativeWriter writer;
};
class NativeSchemaReader : public ISchemaReader
{
public:
explicit NativeSchemaReader(ReadBuffer & in_) : ISchemaReader(in_) {}
NamesAndTypesList readSchema() override
{
auto reader = NativeReader(in, 0);
auto block = reader.read();
return block.getNamesAndTypesList();
}
};
void registerInputFormatNative(FormatFactory & factory)
{
factory.registerInputFormat("Native", [](
ReadBuffer & buf,
const Block & sample,
const RowInputFormatParams &,
const FormatSettings & settings)
{
return std::make_shared<NativeInputFormat>(buf, sample, settings);
});
factory.markFormatSupportsSubsetOfColumns("Native");
}
void registerOutputFormatNative(FormatFactory & factory)
{
factory.registerOutputFormat("Native", [](
WriteBuffer & buf,
const Block & sample,
const FormatSettings & settings)
{
return std::make_shared<NativeOutputFormat>(buf, sample, settings.client_protocol_version);
});
}
void registerNativeSchemaReader(FormatFactory & factory)
{
factory.registerSchemaReader("Native", [](ReadBuffer & buf, const FormatSettings &)
{
return std::make_shared<NativeSchemaReader>(buf);
});
}
}
|