mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
|
#pragma once
|
||
|
|
||
|
#include <DB/Interpreters/InterserverIOHandler.h>
|
||
|
#include <DB/IO/WriteBuffer.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
class Context;
|
||
|
|
||
|
namespace RemoteQueryExecutor
|
||
|
{
|
||
|
|
||
|
/** Сервис для выполнения SQL запросов.
|
||
|
*/
|
||
|
class Service final : public InterserverIOEndpoint
|
||
|
{
|
||
|
public:
|
||
|
Service(Context & context_);
|
||
|
Service(const Service &) = delete;
|
||
|
Service & operator=(const Service &) = delete;
|
||
|
std::string getId(const std::string & node_id) const override;
|
||
|
void processQuery(const Poco::Net::HTMLForm & params, ReadBuffer & body, WriteBuffer & out) override;
|
||
|
|
||
|
private:
|
||
|
Context & context;
|
||
|
};
|
||
|
|
||
|
/** Клиент для удалённого выполнения SQL запросов.
|
||
|
*/
|
||
|
class Client final
|
||
|
{
|
||
|
public:
|
||
|
Client() = default;
|
||
|
Client(const Client &) = delete;
|
||
|
Client & operator=(const Client &) = delete;
|
||
|
bool executeQuery(const InterserverIOEndpointLocation & location, const std::string & query);
|
||
|
void cancel() { is_cancelled = true; }
|
||
|
|
||
|
private:
|
||
|
std::atomic<bool> is_cancelled{false};
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|