blob: 909e4e4243efc908ace300fbd37e382aef35247e [file] [log] [blame]
/*
Copyright (c) 2018-2019 Nokia.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "private/databaseconfigurationimpl.hpp"
#include <arpa/inet.h>
using namespace shareddatalayer;
namespace
{
const std::string& getDefaultHost()
{
static const std::string defaultHost("localhost");
return defaultHost;
}
const uint16_t DEFAULT_PORT(6379U);
const uint16_t DEFAULT_SENTINEL_PORT(26379U);
}
DatabaseConfigurationImpl::DatabaseConfigurationImpl():
dbType(DbType::UNKNOWN)
{
}
DatabaseConfigurationImpl::~DatabaseConfigurationImpl()
{
}
void DatabaseConfigurationImpl::checkAndApplyDbType(const std::string& type)
{
if (type == "redis-standalone")
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);
}
DatabaseConfiguration::DbType DatabaseConfigurationImpl::getDbType() const
{
return dbType;
}
void DatabaseConfigurationImpl::checkAndApplyServerAddress(const std::string& address)
{
serverAddresses.push_back(HostAndPort(address, htons(DEFAULT_PORT)));
}
bool DatabaseConfigurationImpl::isEmpty() const
{
return serverAddresses.empty();
}
DatabaseConfiguration::Addresses DatabaseConfigurationImpl::getServerAddresses() const
{
return serverAddresses;
}
DatabaseConfiguration::Addresses DatabaseConfigurationImpl::getDefaultServerAddresses() const
{
return { HostAndPort(getDefaultHost(), htons(DEFAULT_PORT)) };
}
void DatabaseConfigurationImpl::checkAndApplySentinelAddress(const std::string& address)
{
sentinelAddress = HostAndPort(address, htons(DEFAULT_SENTINEL_PORT));
}
boost::optional<HostAndPort> DatabaseConfigurationImpl::getSentinelAddress() const
{
return sentinelAddress;
}
void DatabaseConfigurationImpl::checkAndApplySentinelMasterName(const std::string& name)
{
sentinelMasterName = name;
}
std::string DatabaseConfigurationImpl::getSentinelMasterName() const
{
return sentinelMasterName;
}