X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fdatabaseconfigurationimpl.cpp;h=909e4e4243efc908ace300fbd37e382aef35247e;hb=2dcf940b7a815456af601cdc6fd8ebbc57bda161;hp=f1fb2bedf2447e3d88341c2500029e46147e65cc;hpb=ef2bf51d04aaf01fa0cabdcaf905b23423067662;p=ric-plt%2Fsdl.git diff --git a/src/databaseconfigurationimpl.cpp b/src/databaseconfigurationimpl.cpp index f1fb2be..909e4e4 100644 --- a/src/databaseconfigurationimpl.cpp +++ b/src/databaseconfigurationimpl.cpp @@ -28,6 +28,7 @@ namespace } const uint16_t DEFAULT_PORT(6379U); + const uint16_t DEFAULT_SENTINEL_PORT(26379U); } DatabaseConfigurationImpl::DatabaseConfigurationImpl(): @@ -45,6 +46,8 @@ void DatabaseConfigurationImpl::checkAndApplyDbType(const std::string& type) dbType = DatabaseConfiguration::DbType::REDIS_STANDALONE; else if (type == "redis-cluster") dbType = DatabaseConfiguration::DbType::REDIS_CLUSTER; + else if (type == "redis-sentinel") + dbType = DatabaseConfiguration::DbType::REDIS_SENTINEL; else throw DatabaseConfiguration::InvalidDbType(type); } @@ -73,3 +76,23 @@ DatabaseConfiguration::Addresses DatabaseConfigurationImpl::getDefaultServerAddr { return { HostAndPort(getDefaultHost(), htons(DEFAULT_PORT)) }; } + +void DatabaseConfigurationImpl::checkAndApplySentinelAddress(const std::string& address) +{ + sentinelAddress = HostAndPort(address, htons(DEFAULT_SENTINEL_PORT)); +} + +boost::optional DatabaseConfigurationImpl::getSentinelAddress() const +{ + return sentinelAddress; +} + +void DatabaseConfigurationImpl::checkAndApplySentinelMasterName(const std::string& name) +{ + sentinelMasterName = name; +} + +std::string DatabaseConfigurationImpl::getSentinelMasterName() const +{ + return sentinelMasterName; +}