ClickHouse/programs/library-bridge/Handlers.h

61 lines
1.8 KiB
C++
Raw Normal View History

2021-03-05 09:38:00 +00:00
#pragma once
#include <Interpreters/Context.h>
#include <Server/HTTP/HTTPRequestHandler.h>
2021-03-07 15:23:20 +00:00
#include <common/logger_useful.h>
2021-03-05 09:38:00 +00:00
#include "SharedLibraryHandler.h"
namespace DB
{
2021-04-05 13:13:07 +00:00
/// Handler for requests to Library Dictionary Source, returns response in RowBinary format.
/// When a library dictionary source is created, it sends libNew request to library bridge (which is started on first
/// request to it, if it was not yet started). On this request a new sharedLibrayHandler is added to a
/// sharedLibraryHandlerFactory by a dictionary uuid. With libNew request come: library_path, library_settings,
/// names of dictionary attributes, sample block to parse block of null values, block of null values. Everything is
/// passed in binary format and is urlencoded. When dictionary is cloned, a new handler is created.
/// Each handler is unique to dictionary.
2021-03-05 09:38:00 +00:00
class LibraryRequestHandler : public HTTPRequestHandler
{
public:
LibraryRequestHandler(
size_t keep_alive_timeout_,
2021-03-07 11:31:55 +00:00
Context & context_)
2021-03-05 09:38:00 +00:00
: log(&Poco::Logger::get("LibraryRequestHandler"))
, keep_alive_timeout(keep_alive_timeout_)
, context(context_)
{
}
void handleRequest(HTTPServerRequest & request, HTTPServerResponse & response) override;
private:
2021-03-10 18:02:43 +00:00
static constexpr inline auto FORMAT = "RowBinary";
2021-03-05 09:38:00 +00:00
void processError(HTTPServerResponse & response, const std::string & message);
Poco::Logger * log;
size_t keep_alive_timeout;
Context & context;
};
class PingHandler : public HTTPRequestHandler
{
public:
explicit PingHandler(size_t keep_alive_timeout_)
: keep_alive_timeout(keep_alive_timeout_)
{
}
void handleRequest(HTTPServerRequest & request, HTTPServerResponse & response) override;
private:
2021-04-05 14:15:10 +00:00
const size_t keep_alive_timeout;
2021-03-05 09:38:00 +00:00
};
}