mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 06:01:57 +00:00
129 lines
3.5 KiB
C++
129 lines
3.5 KiB
C++
#include <DataStreams/RemoteBlockOutputStream.h>
|
|
|
|
#include <Client/Connection.h>
|
|
#include <common/logger_useful.h>
|
|
|
|
#include <Common/NetException.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
{
|
|
extern const int UNEXPECTED_PACKET_FROM_SERVER;
|
|
extern const int LOGICAL_ERROR;
|
|
}
|
|
|
|
|
|
RemoteBlockOutputStream::RemoteBlockOutputStream(Connection & connection_, const String & query_, const Settings * settings_)
|
|
: connection(connection_), query(query_), settings(settings_)
|
|
{
|
|
/** Send query and receive "header", that describe table structure.
|
|
* Header is needed to know, what structure is required for blocks to be passed to 'write' method.
|
|
*/
|
|
connection.sendQuery(query, "", QueryProcessingStage::Complete, settings, nullptr);
|
|
|
|
while (true)
|
|
{
|
|
Connection::Packet packet = connection.receivePacket();
|
|
|
|
if (Protocol::Server::Data == packet.type)
|
|
{
|
|
header = packet.block;
|
|
|
|
if (!header)
|
|
throw Exception("Logical error: empty block received as table structure", ErrorCodes::LOGICAL_ERROR);
|
|
break;
|
|
}
|
|
else if (Protocol::Server::Exception == packet.type)
|
|
{
|
|
packet.exception->rethrow();
|
|
break;
|
|
}
|
|
else if (Protocol::Server::Log == packet.type)
|
|
{
|
|
/// Do nothing
|
|
}
|
|
else
|
|
throw NetException("Unexpected packet from server (expected Data or Exception, got "
|
|
+ String(Protocol::Server::toString(packet.type)) + ")", ErrorCodes::UNEXPECTED_PACKET_FROM_SERVER);
|
|
}
|
|
}
|
|
|
|
|
|
void RemoteBlockOutputStream::write(const Block & block)
|
|
{
|
|
assertBlocksHaveEqualStructure(block, header, "RemoteBlockOutputStream");
|
|
|
|
try
|
|
{
|
|
connection.sendData(block);
|
|
}
|
|
catch (const NetException & e)
|
|
{
|
|
/// Try to get more detailed exception from server
|
|
auto packet_type = connection.checkPacket();
|
|
if (packet_type && *packet_type == Protocol::Server::Exception)
|
|
{
|
|
Connection::Packet packet = connection.receivePacket();
|
|
packet.exception->rethrow();
|
|
}
|
|
|
|
throw;
|
|
}
|
|
}
|
|
|
|
|
|
void RemoteBlockOutputStream::writePrepared(ReadBuffer & input, size_t size)
|
|
{
|
|
/// We cannot use 'header'. Input must contain block with proper structure.
|
|
connection.sendPreparedData(input, size);
|
|
}
|
|
|
|
|
|
void RemoteBlockOutputStream::writeSuffix()
|
|
{
|
|
/// Empty block means end of data.
|
|
connection.sendData(Block());
|
|
|
|
/// Wait for EndOfStream or Exception packet, skip Log packets.
|
|
while (true)
|
|
{
|
|
Connection::Packet packet = connection.receivePacket();
|
|
|
|
if (Protocol::Server::EndOfStream == packet.type)
|
|
break;
|
|
else if (Protocol::Server::Exception == packet.type)
|
|
packet.exception->rethrow();
|
|
else if (Protocol::Server::Log == packet.type)
|
|
{
|
|
// Do nothing
|
|
}
|
|
else
|
|
throw NetException("Unexpected packet from server (expected EndOfStream or Exception, got "
|
|
+ String(Protocol::Server::toString(packet.type)) + ")", ErrorCodes::UNEXPECTED_PACKET_FROM_SERVER);
|
|
}
|
|
|
|
finished = true;
|
|
}
|
|
|
|
RemoteBlockOutputStream::~RemoteBlockOutputStream()
|
|
{
|
|
/// If interrupted in the middle of the loop of communication with the server, then interrupt the connection,
|
|
/// to not leave the connection in unsynchronized state.
|
|
if (!finished)
|
|
{
|
|
try
|
|
{
|
|
connection.disconnect();
|
|
}
|
|
catch (...)
|
|
{
|
|
tryLogCurrentException(__PRETTY_FUNCTION__);
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|