#include "StorageMongoDBSocketFactory.h" #include #if !defined(ARCADIA_BUILD) # include "config_core.h" # include #endif #include #include #if USE_SSL # include #endif #ifdef __clang__ # pragma clang diagnostic ignored "-Wunused-parameter" #endif #if USE_EMBEDDED_COMPILER # pragma GCC diagnostic ignored "-Wunused-parameter" #endif namespace DB { namespace ErrorCodes { extern const int FEATURE_IS_NOT_ENABLED_AT_BUILD_TIME; } Poco::Net::StreamSocket StorageMongoDBSocketFactory::createSocket(const std::string & host, int port, Poco::Timespan connectTimeout, bool secure) { return secure ? createSecureSocket(host, port, connectTimeout) : createPlainSocket(host, port, connectTimeout); } Poco::Net::StreamSocket StorageMongoDBSocketFactory::createPlainSocket(const std::string & host, int port, Poco::Timespan connectTimeout) { Poco::Net::SocketAddress address(host, port); Poco::Net::StreamSocket socket; socket.connect(address, connectTimeout); return socket; } Poco::Net::StreamSocket StorageMongoDBSocketFactory::createSecureSocket(const std::string & host, int port, Poco::Timespan connectTimeout) { #if USE_SSL Poco::Net::SocketAddress address(host, port); Poco::Net::SecureStreamSocket socket; socket.connect(address, connectTimeout); return socket; #else throw Exception("SSL is not enabled at build time.", ErrorCodes::FEATURE_IS_NOT_ENABLED_AT_BUILD_TIME); #endif } }