mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 09:22:05 +00:00
78 lines
2.2 KiB
C++
78 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <Storages/StorageXDBC.h>
|
|
#include <TableFunctions/ITableFunction.h>
|
|
#include <Poco/Util/AbstractConfiguration.h>
|
|
#include <Bridge/XDBCBridgeHelper.h>
|
|
|
|
#include <Common/config.h>
|
|
|
|
namespace DB
|
|
{
|
|
/**
|
|
* Base class for table functions, that works over external bridge
|
|
* Xdbc (Xdbc connect string, table) - creates a temporary StorageXDBC.
|
|
*/
|
|
class ITableFunctionXDBC : public ITableFunction
|
|
{
|
|
private:
|
|
StoragePtr executeImpl(const ASTPtr & ast_function, ContextPtr context, const std::string & table_name, ColumnsDescription cached_columns) const override;
|
|
|
|
/* A factory method to create bridge helper, that will assist in remote interaction */
|
|
virtual BridgeHelperPtr createBridgeHelper(ContextPtr context,
|
|
Poco::Timespan http_timeout_,
|
|
const std::string & connection_string_) const = 0;
|
|
|
|
ColumnsDescription getActualTableStructure(ContextPtr context) const override;
|
|
|
|
void parseArguments(const ASTPtr & ast_function, ContextPtr context) override;
|
|
|
|
void startBridgeIfNot(ContextPtr context) const;
|
|
|
|
String connection_string;
|
|
String schema_name;
|
|
String remote_table_name;
|
|
mutable BridgeHelperPtr helper;
|
|
};
|
|
|
|
class TableFunctionJDBC : public ITableFunctionXDBC
|
|
{
|
|
public:
|
|
static constexpr auto name = "jdbc";
|
|
std::string getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
private:
|
|
BridgeHelperPtr createBridgeHelper(ContextPtr context,
|
|
Poco::Timespan http_timeout_,
|
|
const std::string & connection_string_) const override
|
|
{
|
|
return std::make_shared<XDBCBridgeHelper<JDBCBridgeMixin>>(context, http_timeout_, connection_string_);
|
|
}
|
|
|
|
const char * getStorageTypeName() const override { return "JDBC"; }
|
|
};
|
|
|
|
class TableFunctionODBC : public ITableFunctionXDBC
|
|
{
|
|
public:
|
|
static constexpr auto name = "odbc";
|
|
std::string getName() const override
|
|
{
|
|
return name;
|
|
}
|
|
|
|
private:
|
|
BridgeHelperPtr createBridgeHelper(ContextPtr context,
|
|
Poco::Timespan http_timeout_,
|
|
const std::string & connection_string_) const override
|
|
{
|
|
return std::make_shared<XDBCBridgeHelper<ODBCBridgeMixin>>(context, http_timeout_, connection_string_);
|
|
}
|
|
|
|
const char * getStorageTypeName() const override { return "ODBC"; }
|
|
};
|
|
}
|