2012-03-09 15:46:52 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/BufferWithOwnMemory.h>
|
2021-02-19 12:51:26 +00:00
|
|
|
#include <IO/ReadBuffer.h>
|
2023-03-03 19:30:43 +00:00
|
|
|
#include <Common/AsyncTaskExecutor.h>
|
2021-02-19 12:51:26 +00:00
|
|
|
#include <Poco/Net/Socket.h>
|
2012-03-09 15:46:52 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2021-02-19 12:51:26 +00:00
|
|
|
/// Works with the ready Poco::Net::Socket. Blocking operations.
|
2012-03-09 15:46:52 +00:00
|
|
|
class ReadBufferFromPocoSocket : public BufferWithOwnMemory<ReadBuffer>
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
Poco::Net::Socket & socket;
|
2013-11-20 00:49:47 +00:00
|
|
|
|
2017-05-28 14:29:40 +00:00
|
|
|
/** For error messages. It is necessary to receive this address in advance, because,
|
|
|
|
* for example, if the connection is broken, the address will not be received anymore
|
|
|
|
* (getpeername will return an error).
|
2013-11-20 00:49:47 +00:00
|
|
|
*/
|
|
|
|
Poco::Net::SocketAddress peer_address;
|
|
|
|
|
2024-01-03 16:47:15 +00:00
|
|
|
ProfileEvents::Event read_event;
|
|
|
|
|
2016-08-19 01:54:23 +00:00
|
|
|
bool nextImpl() override;
|
2012-03-09 15:46:52 +00:00
|
|
|
|
|
|
|
public:
|
2021-02-19 12:51:26 +00:00
|
|
|
explicit ReadBufferFromPocoSocket(Poco::Net::Socket & socket_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE);
|
2024-01-03 16:47:15 +00:00
|
|
|
explicit ReadBufferFromPocoSocket(Poco::Net::Socket & socket_, const ProfileEvents::Event & read_event_, size_t buf_size = DBMS_DEFAULT_BUFFER_SIZE);
|
2012-05-09 08:16:09 +00:00
|
|
|
|
2021-02-19 12:51:26 +00:00
|
|
|
bool poll(size_t timeout_microseconds) const;
|
2020-12-02 17:02:14 +00:00
|
|
|
|
2021-01-19 19:21:06 +00:00
|
|
|
void setAsyncCallback(AsyncCallback async_callback_) { async_callback = std::move(async_callback_); }
|
2020-12-02 17:02:14 +00:00
|
|
|
|
|
|
|
private:
|
2021-01-19 19:21:06 +00:00
|
|
|
AsyncCallback async_callback;
|
2021-02-06 00:54:27 +00:00
|
|
|
std::string socket_description;
|
2012-03-09 15:46:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|