ClickHouse/programs/odbc-bridge/MainHandler.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
922 B
C++
Raw Normal View History

#pragma once
#include <Interpreters/Context_fwd.h>
#include <Server/HTTP/HTTPRequestHandler.h>
#include <Poco/Logger.h>
#include <mutex>
#include <unordered_map>
namespace DB
{
/** Main handler for requests to ODBC driver
* requires connection_string and columns in request params
* and also query in request body
* response in RowBinary format
*/
class ODBCHandler : public HTTPRequestHandler, WithContext
{
public:
2021-03-22 11:40:29 +00:00
ODBCHandler(
ContextPtr context_,
2020-04-28 00:56:44 +00:00
const String & mode_)
: WithContext(context_)
2024-01-23 17:04:50 +00:00
, log(getLogger("ODBCHandler"))
2020-04-28 00:56:44 +00:00
, mode(mode_)
{
}
void handleRequest(HTTPServerRequest & request, HTTPServerResponse & response, const ProfileEvents::Event & write_event) override;
private:
2024-01-23 17:04:50 +00:00
LoggerPtr log;
2020-04-28 00:56:44 +00:00
String mode;
static inline std::mutex mutex;
void processError(HTTPServerResponse & response, const std::string & message);
};
}