2019-03-16 02:08:21 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Poco/Net/TCPServerConnection.h>
|
|
|
|
#include <Common/getFQDNOrHostName.h>
|
2019-03-26 18:30:41 +00:00
|
|
|
#include <Core/MySQLProtocol.h>
|
2019-03-16 02:08:21 +00:00
|
|
|
#include "IServer.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Handler for MySQL wire protocol connections. Allows to connect to ClickHouse using MySQL client.
|
|
|
|
class MySQLHandler : public Poco::Net::TCPServerConnection {
|
|
|
|
public:
|
|
|
|
MySQLHandler(IServer &server_, const Poco::Net::StreamSocket &socket_)
|
|
|
|
: Poco::Net::TCPServerConnection(socket_)
|
|
|
|
, server(server_)
|
|
|
|
, log(&Poco::Logger::get("MySQLHandler"))
|
|
|
|
, connection_context(server.context())
|
|
|
|
, connection_id(last_connection_id++)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void run() final;
|
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
void comQuery(String payload);
|
2019-03-16 02:08:21 +00:00
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
void comFieldList(String payload);
|
2019-03-16 02:08:21 +00:00
|
|
|
|
|
|
|
void comPing();
|
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
void comInitDB(String payload);
|
2019-03-16 02:08:21 +00:00
|
|
|
private:
|
|
|
|
IServer & server;
|
|
|
|
Poco::Logger * log;
|
|
|
|
Context connection_context;
|
|
|
|
|
|
|
|
std::shared_ptr<ReadBuffer> in;
|
|
|
|
std::shared_ptr<WriteBuffer> out;
|
|
|
|
|
2019-03-26 18:30:41 +00:00
|
|
|
MySQLProtocol::PacketSender packet_sender;
|
2019-03-16 02:08:21 +00:00
|
|
|
|
|
|
|
uint32_t connection_id = 0;
|
|
|
|
|
|
|
|
uint32_t capabilities;
|
|
|
|
|
|
|
|
static uint32_t last_connection_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|