mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
6a573b4092
* Allow use mysql format without ssl * fix * fix * fix * Also disable poco's optional libraries * clean * fix * fix * Requested changes * clean * Requested fixes * Update MySQLHandler.cpp
47 lines
871 B
C++
47 lines
871 B
C++
#pragma once
|
|
|
|
#include <Common/config.h>
|
|
#include <Poco/Net/TCPServerConnectionFactory.h>
|
|
#include <atomic>
|
|
#include "IServer.h"
|
|
#if USE_SSL
|
|
#include <openssl/rsa.h>
|
|
#endif
|
|
|
|
namespace DB
|
|
{
|
|
|
|
class MySQLHandlerFactory : public Poco::Net::TCPServerConnectionFactory
|
|
{
|
|
private:
|
|
IServer & server;
|
|
Poco::Logger * log;
|
|
|
|
#if USE_SSL
|
|
struct RSADeleter
|
|
{
|
|
void operator()(RSA * ptr) { RSA_free(ptr); }
|
|
};
|
|
using RSAPtr = std::unique_ptr<RSA, RSADeleter>;
|
|
|
|
RSAPtr public_key;
|
|
RSAPtr private_key;
|
|
|
|
bool ssl_enabled = true;
|
|
#else
|
|
bool ssl_enabled = false;
|
|
#endif
|
|
|
|
std::atomic<size_t> last_connection_id = 0;
|
|
public:
|
|
explicit MySQLHandlerFactory(IServer & server_);
|
|
|
|
void readRSAKeys();
|
|
|
|
void generateRSAKeys();
|
|
|
|
Poco::Net::TCPServerConnection * createConnection(const Poco::Net::StreamSocket & socket) override;
|
|
};
|
|
|
|
}
|