mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-15 10:52:30 +00:00
36 lines
961 B
C++
36 lines
961 B
C++
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <Server/IServer.h>
|
|
#include <Server/TCPServerConnectionFactory.h>
|
|
#include <Core/PostgreSQLProtocol.h>
|
|
#include "config.h"
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class PostgreSQLHandlerFactory : public TCPServerConnectionFactory
|
|
{
|
|
private:
|
|
IServer & server;
|
|
LoggerPtr log;
|
|
ProfileEvents::Event read_event;
|
|
ProfileEvents::Event write_event;
|
|
|
|
#if USE_SSL
|
|
bool ssl_enabled = true;
|
|
#else
|
|
bool ssl_enabled = false;
|
|
#endif
|
|
|
|
std::atomic<Int32> last_connection_id = 0;
|
|
std::vector<std::shared_ptr<PostgreSQLProtocol::PGAuthentication::AuthenticationMethod>> auth_methods;
|
|
|
|
public:
|
|
explicit PostgreSQLHandlerFactory(IServer & server_, const ProfileEvents::Event & read_event_ = ProfileEvents::end(), const ProfileEvents::Event & write_event_ = ProfileEvents::end());
|
|
|
|
Poco::Net::TCPServerConnection * createConnection(const Poco::Net::StreamSocket & socket, TCPServer & server) override;
|
|
};
|
|
}
|