2020-05-13 23:20:45 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <ext/shared_ptr_helper.h>
|
|
|
|
|
|
|
|
#include <Storages/IStorage.h>
|
2020-06-26 14:28:00 +00:00
|
|
|
|
|
|
|
#include <Poco/MongoDB/Connection.h>
|
2020-05-13 23:20:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
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 ext::shared_ptr_helper<StorageMongoDB>, public IStorage
|
|
|
|
{
|
|
|
|
friend struct ext::shared_ptr_helper<StorageMongoDB>;
|
|
|
|
public:
|
|
|
|
StorageMongoDB(
|
|
|
|
const StorageID & table_id_,
|
|
|
|
const std::string & host_,
|
|
|
|
short unsigned int port_,
|
|
|
|
const std::string & database_name_,
|
|
|
|
const std::string & collection_name_,
|
|
|
|
const std::string & username_,
|
|
|
|
const std::string & password_,
|
|
|
|
const ColumnsDescription & columns_,
|
2021-04-23 12:18:23 +00:00
|
|
|
const ConstraintsDescription & constraints_,
|
|
|
|
const String & comment);
|
2020-05-13 23:20:45 +00:00
|
|
|
|
|
|
|
std::string getName() const override { return "MongoDB"; }
|
|
|
|
|
2020-08-03 13:54:14 +00:00
|
|
|
Pipe read(
|
2020-05-13 23:20:45 +00:00
|
|
|
const Names & column_names,
|
2020-06-26 14:28:00 +00:00
|
|
|
const StorageMetadataPtr & metadata_snapshot,
|
2020-09-20 17:52:17 +00:00
|
|
|
SelectQueryInfo & query_info,
|
2021-04-10 23:33:54 +00:00
|
|
|
ContextPtr context,
|
2020-05-13 23:20:45 +00:00
|
|
|
QueryProcessingStage::Enum processed_stage,
|
|
|
|
size_t max_block_size,
|
|
|
|
unsigned num_streams) override;
|
|
|
|
|
|
|
|
private:
|
2021-02-05 08:47:02 +00:00
|
|
|
void connectIfNotConnected();
|
|
|
|
|
|
|
|
const std::string host;
|
|
|
|
const short unsigned int port;
|
|
|
|
const std::string database_name;
|
|
|
|
const std::string collection_name;
|
|
|
|
const std::string username;
|
|
|
|
const std::string password;
|
2020-05-13 23:20:45 +00:00
|
|
|
|
|
|
|
std::shared_ptr<Poco::MongoDB::Connection> connection;
|
2021-02-05 08:47:02 +00:00
|
|
|
bool authentified = false;
|
2021-02-09 15:55:36 +00:00
|
|
|
std::mutex connection_mutex; /// Protects the variables `connection` and `authentified`.
|
2020-05-13 23:20:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|