mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
105 lines
3.1 KiB
C++
105 lines
3.1 KiB
C++
#pragma once
|
||
|
||
#include <DB/DataStreams/IBlockOutputStream.h>
|
||
|
||
#include <DB/Client/Connection.h>
|
||
#include <Yandex/logger_useful.h>
|
||
|
||
|
||
namespace DB
|
||
{
|
||
|
||
/** Позволяет выполнить запрос INSERT на удалённом сервере и отправить данные.
|
||
*/
|
||
class RemoteBlockOutputStream : public IBlockOutputStream
|
||
{
|
||
public:
|
||
RemoteBlockOutputStream(Connection & connection_, const String & query_, Settings * settings_ = nullptr)
|
||
: connection(connection_), query(query_), settings(settings_)
|
||
{
|
||
}
|
||
|
||
|
||
/** Отправляет запрос и получает блок-пример, описывающий структуру таблицы.
|
||
* Он нужен, чтобы знать, какие блоки передавать в метод write.
|
||
* Вызывайте только перед write.
|
||
*/
|
||
Block sendQueryAndGetSampleBlock()
|
||
{
|
||
connection.sendQuery(query, "", QueryProcessingStage::Complete, settings);
|
||
sent_query = true;
|
||
|
||
Connection::Packet packet = connection.receivePacket();
|
||
|
||
if (Protocol::Server::Data == packet.type)
|
||
return sample_block = packet.block;
|
||
else if (Protocol::Server::Exception == packet.type)
|
||
{
|
||
packet.exception->rethrow();
|
||
return Block();
|
||
}
|
||
else
|
||
throw Exception("Unexpected packet from server (expected Data or Exception, got "
|
||
+ String(Protocol::Server::toString(packet.type)) + ")", ErrorCodes::UNEXPECTED_PACKET_FROM_SERVER);
|
||
}
|
||
|
||
|
||
void write(const Block & block)
|
||
{
|
||
if (!sent_query)
|
||
sendQueryAndGetSampleBlock();
|
||
|
||
if (!blocksHaveEqualStructure(block, sample_block))
|
||
{
|
||
std::stringstream message;
|
||
message << "Block structure is different from table structure.\n"
|
||
<< "\nTable structure:\n(" << sample_block.dumpStructure() << ")\nBlock structure:\n(" << block.dumpStructure() << ")\n";
|
||
|
||
LOG_ERROR(&Logger::get("RemoteBlockOutputStream"), message.str());
|
||
throw DB::Exception(message.str());
|
||
}
|
||
|
||
connection.sendData(block);
|
||
}
|
||
|
||
|
||
/// Отправить блок данных, который уже был заранее сериализован (и, если надо, сжат), который следует прочитать из input-а.
|
||
void writePrepared(ReadBuffer & input, size_t size = 0)
|
||
{
|
||
if (!sent_query)
|
||
sendQueryAndGetSampleBlock(); /// Никак не можем использовать sample_block.
|
||
|
||
connection.sendPreparedData(input, size);
|
||
}
|
||
|
||
|
||
void writeSuffix()
|
||
{
|
||
/// Пустой блок означает конец данных.
|
||
connection.sendData(Block());
|
||
|
||
/// Получаем пакет EndOfStream.
|
||
Connection::Packet packet = connection.receivePacket();
|
||
|
||
if (Protocol::Server::EndOfStream == packet.type)
|
||
{
|
||
/// Ничего.
|
||
}
|
||
else if (Protocol::Server::Exception == packet.type)
|
||
packet.exception->rethrow();
|
||
else
|
||
throw Exception("Unexpected packet from server (expected EndOfStream or Exception, got "
|
||
+ String(Protocol::Server::toString(packet.type)) + ")", ErrorCodes::UNEXPECTED_PACKET_FROM_SERVER);
|
||
}
|
||
|
||
private:
|
||
Connection & connection;
|
||
String query;
|
||
Settings * settings;
|
||
Block sample_block;
|
||
|
||
bool sent_query = false;
|
||
};
|
||
|
||
}
|