40447580be233e5c87b512a00cee6e0ad8960884
[ric-plt/sdl.git] / include / private / databaseconfigurationimpl.hpp
1 /*
2    Copyright (c) 2018-2022 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 #ifndef SHAREDDATALAYER_DATABASECONFIGURATIONIMPL_HPP_
23 #define SHAREDDATALAYER_DATABASECONFIGURATIONIMPL_HPP_
24
25 #include "private/databaseconfiguration.hpp"
26
27 namespace shareddatalayer
28 {
29     class DatabaseConfigurationImpl: public DatabaseConfiguration
30     {
31     public:
32         DatabaseConfigurationImpl();
33
34         ~DatabaseConfigurationImpl() override;
35
36         void checkAndApplyDbType(const std::string& type) override;
37
38         void checkAndApplyServerAddress(const std::string& address) override;
39
40         void checkAndApplySentinelPorts(const std::string& sentinelPortsEnvStr) override;
41
42         void checkAndApplySentinelMasterNames(const std::string& sentinelMasterNamesEnvStr) override;
43
44         DatabaseConfiguration::DbType getDbType() const override;
45
46         DatabaseConfigurationImpl::Addresses getServerAddresses() const override;
47
48         DatabaseConfigurationImpl::Addresses getServerAddresses(const boost::optional<std::size_t>& addressIndex) const override;
49
50         DatabaseConfiguration::Addresses getDefaultServerAddresses() const override;
51
52         boost::optional<HostAndPort> getSentinelAddress(const boost::optional<std::size_t>& addressIndex) const override;
53
54         std::string getSentinelMasterName(const boost::optional<std::size_t>& addressIndex) const override;
55
56         bool isEmpty() const override;
57
58     private:
59         DbType dbType;
60         Addresses serverAddresses;
61         SentinelPorts sentinelPorts;
62         SentinelMasterNames sentinelMasterNames;
63     };
64 }
65
66 #endif