mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
4e76629aaf
- lots of static_cast - add safe_cast - types adjustments - config - IStorage::read/watch - ... - some TODO's (to convert types in future) P.S. That was quite a journey... v2: fixes after rebase v3: fix conflicts after #42308 merged Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com>
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <Poco/MongoDB/Connection.h>
|
|
|
|
#include <Storages/IStorage.h>
|
|
#include <Storages/ExternalDataSourceConfiguration.h>
|
|
|
|
namespace DB
|
|
{
|
|
/* Implements storage in the MongoDB database.
|
|
* Use ENGINE = mysql(host_port, database_name, table_name, user_name, password)
|
|
* Read only.
|
|
*/
|
|
|
|
class StorageMongoDB final : public IStorage
|
|
{
|
|
public:
|
|
StorageMongoDB(
|
|
const StorageID & table_id_,
|
|
const std::string & host_,
|
|
uint16_t port_,
|
|
const std::string & database_name_,
|
|
const std::string & collection_name_,
|
|
const std::string & username_,
|
|
const std::string & password_,
|
|
const std::string & options_,
|
|
const ColumnsDescription & columns_,
|
|
const ConstraintsDescription & constraints_,
|
|
const String & comment);
|
|
|
|
std::string getName() const override { return "MongoDB"; }
|
|
|
|
Pipe read(
|
|
const Names & column_names,
|
|
const StorageSnapshotPtr & storage_snapshot,
|
|
SelectQueryInfo & query_info,
|
|
ContextPtr context,
|
|
QueryProcessingStage::Enum processed_stage,
|
|
size_t max_block_size,
|
|
size_t num_streams) override;
|
|
|
|
SinkToStoragePtr write(
|
|
const ASTPtr & query,
|
|
const StorageMetadataPtr & /*metadata_snapshot*/,
|
|
ContextPtr context) override;
|
|
|
|
static StorageMongoDBConfiguration getConfiguration(ASTs engine_args, ContextPtr context);
|
|
|
|
private:
|
|
void connectIfNotConnected();
|
|
|
|
const std::string database_name;
|
|
const std::string collection_name;
|
|
const std::string username;
|
|
const std::string password;
|
|
const std::string uri;
|
|
|
|
std::shared_ptr<Poco::MongoDB::Connection> connection;
|
|
bool authenticated = false;
|
|
std::mutex connection_mutex; /// Protects the variables `connection` and `authenticated`.
|
|
};
|
|
|
|
}
|