ClickHouse/dbms/include/DB/IO/ReadBufferFromPocoSocket.h

63 lines
1.6 KiB
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <Poco/Net/Socket.h>
#include <Poco/Net/NetException.h>
#include <DB/Core/Exception.h>
#include <DB/Core/ErrorCodes.h>
#include <DB/IO/ReadBuffer.h>
#include <DB/IO/BufferWithOwnMemory.h>
namespace DB
{
/** Работает с готовым Poco::Net::Socket. Операции блокирующие.
*/
class ReadBufferFromPocoSocket : public BufferWithOwnMemory<ReadBuffer>
{
protected:
Poco::Net::Socket & socket;
bool nextImpl()
{
ssize_t bytes_read = 0;
/// Добавляем в эксепшены более подробную информацию.
try
{
bytes_read = socket.impl()->receiveBytes(internal_buffer.begin(), internal_buffer.size());
}
catch (Poco::Net::NetException & e)
{
throw Exception(e.displayText(), " while reading from socket (" + socket.address().toString() + ")", ErrorCodes::NETWORK_ERROR);
}
catch (Poco::TimeoutException & e)
{
throw Exception("Timeout exceeded while reading from socket (" + socket.address().toString() + ")", ErrorCodes::SOCKET_TIMEOUT);
}
if (bytes_read < 0)
throw Exception("Cannot read from socket", ErrorCodes::CANNOT_READ_FROM_SOCKET);
if (bytes_read)
working_buffer.resize(bytes_read);
else
return false;
return true;
}
public:
ReadBufferFromPocoSocket(Poco::Net::Socket & socket_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE)
: BufferWithOwnMemory<ReadBuffer>(buf_size), socket(socket_) {}
bool poll(size_t timeout_microseconds)
{
return offset() != buffer().size() || socket.poll(timeout_microseconds, Poco::Net::Socket::SELECT_READ | Poco::Net::Socket::SELECT_ERROR);
}
};
}