mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-11 17:02:25 +00:00
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <DataTypes/IDataType.h>
|
|
#include <Formats/IRowOutputStream.h>
|
|
#include <Formats/ProtobufWriter.h>
|
|
|
|
|
|
namespace google
|
|
{
|
|
namespace protobuf
|
|
{
|
|
class Message;
|
|
}
|
|
}
|
|
|
|
|
|
namespace DB
|
|
{
|
|
class Block;
|
|
class FormatSchemaInfo;
|
|
|
|
/** Stream designed to serialize data in the google protobuf format.
|
|
* Each row is written as a separated message.
|
|
* These messages are delimited according to documentation
|
|
* https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/util/delimited_message_util.h
|
|
* Serializing in the protobuf format requires the 'format_schema' setting to be set, e.g.
|
|
* SELECT * from table FORMAT Protobuf SETTINGS format_schema = 'schema:Message'
|
|
* where schema is the name of "schema.proto" file specifying protobuf schema.
|
|
*/
|
|
class ProtobufRowOutputStream : public IRowOutputStream
|
|
{
|
|
public:
|
|
ProtobufRowOutputStream(WriteBuffer & out, const Block & header, const FormatSchemaInfo & format_schema);
|
|
|
|
void write(const Block & block, size_t row_num) override;
|
|
std::string getContentType() const override { return "application/octet-stream"; }
|
|
|
|
private:
|
|
DataTypes data_types;
|
|
ProtobufWriter writer;
|
|
std::vector<size_t> value_indices;
|
|
};
|
|
|
|
}
|