Fix SDL configuration file path Valgrind errors
[ric-plt/sdl.git] / src / databaseconfigurationimpl.cpp
1 /*
2    Copyright (c) 2018-2019 Nokia.
3
4    Licensed under the Apache License, Version 2.0 (the "License");
5    you may not use this file except in compliance with the License.
6    You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10    Unless required by applicable law or agreed to in writing, software
11    distributed under the License is distributed on an "AS IS" BASIS,
12    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13    See the License for the specific language governing permissions and
14    limitations under the License.
15 */
16
17 /*
18  * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19  * platform project (RICP).
20 */
21
22 #include "private/databaseconfigurationimpl.hpp"
23 #include <arpa/inet.h>
24 #include <boost/crc.hpp>
25
26 using namespace shareddatalayer;
27
28 namespace
29 {
30     const std::string& getDefaultHost()
31     {
32         static const std::string defaultHost("localhost");
33         return defaultHost;
34     }
35
36     const uint16_t DEFAULT_PORT(6379U);
37     const uint16_t DEFAULT_SENTINEL_PORT(26379U);
38 }
39
40 DatabaseConfigurationImpl::DatabaseConfigurationImpl():
41     dbType(DbType::UNKNOWN)
42 {
43 }
44
45 DatabaseConfigurationImpl::~DatabaseConfigurationImpl()
46 {
47 }
48
49 void DatabaseConfigurationImpl::checkAndApplyDbType(const std::string& type)
50 {
51     if (type == "redis-standalone")
52         dbType = DatabaseConfiguration::DbType::REDIS_STANDALONE;
53     else if (type == "redis-cluster")
54         dbType = DatabaseConfiguration::DbType::REDIS_CLUSTER;
55     else if (type == "redis-sentinel")
56         dbType = DatabaseConfiguration::DbType::REDIS_SENTINEL;
57     else if (type == "sdl-standalone-cluster")
58         dbType = DatabaseConfiguration::DbType::SDL_STANDALONE_CLUSTER;
59     else if (type == "sdl-sentinel-cluster")
60         dbType = DatabaseConfiguration::DbType::SDL_SENTINEL_CLUSTER;
61     else
62         throw DatabaseConfiguration::InvalidDbType(type);
63 }
64
65 DatabaseConfiguration::DbType DatabaseConfigurationImpl::getDbType() const
66 {
67    return dbType;
68 }
69
70 void DatabaseConfigurationImpl::checkAndApplyServerAddress(const std::string& address)
71 {
72     serverAddresses.push_back(HostAndPort(address, htons(DEFAULT_PORT)));
73 }
74
75 bool DatabaseConfigurationImpl::isEmpty() const
76 {
77     return serverAddresses.empty();
78 }
79
80 DatabaseConfiguration::Addresses DatabaseConfigurationImpl::getServerAddresses() const
81 {
82     return serverAddresses;
83 }
84
85 DatabaseConfiguration::Addresses DatabaseConfigurationImpl::getServerAddresses(const boost::optional<std::size_t>& addressIndex) const
86 {
87     if (addressIndex)
88         return { HostAndPort(serverAddresses.at(*addressIndex)) };
89
90     return serverAddresses;
91 }
92
93 DatabaseConfiguration::Addresses DatabaseConfigurationImpl::getDefaultServerAddresses() const
94 {
95     return { HostAndPort(getDefaultHost(), htons(DEFAULT_PORT)) };
96 }
97
98 void DatabaseConfigurationImpl::checkAndApplySentinelAddress(const std::string& address)
99 {
100     sentinelAddress = HostAndPort(address, htons(DEFAULT_SENTINEL_PORT));
101 }
102
103 boost::optional<HostAndPort> DatabaseConfigurationImpl::getSentinelAddress() const
104 {
105     return sentinelAddress;
106 }
107
108 boost::optional<HostAndPort> DatabaseConfigurationImpl::getSentinelAddress(const boost::optional<std::size_t>& addressIndex) const
109 {
110     if (addressIndex)
111         return { HostAndPort(serverAddresses.at(*addressIndex).getHost(), sentinelAddress->getPort()) };
112
113     return getSentinelAddress();
114 }
115
116 void DatabaseConfigurationImpl::checkAndApplySentinelMasterName(const std::string& name)
117 {
118     sentinelMasterName = name;
119 }
120
121 std::string DatabaseConfigurationImpl::getSentinelMasterName() const
122 {
123     return sentinelMasterName;
124 }