blob: 8ae4f9a888693eb10cbf059904ada3995dcb577d [file] [log] [blame]
Rolf Badorekef2bf512019-08-20 11:17:15 +03001/*
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
Timo Tietavainena0745d22019-11-28 09:55:22 +020017/*
18 * This source code is part of the near-RT RIC (RAN Intelligent Controller)
19 * platform project (RICP).
20*/
21
Rolf Badorekef2bf512019-08-20 11:17:15 +030022#ifndef SHAREDDATALAYER_DATABASECONFIGURATIONIMPL_HPP_
23#define SHAREDDATALAYER_DATABASECONFIGURATIONIMPL_HPP_
24
25#include "private/databaseconfiguration.hpp"
26
27namespace 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
Rolf Badorek2dcf9402019-10-01 18:33:58 +030040 void checkAndApplySentinelAddress(const std::string& address) override;
41
42 void checkAndApplySentinelMasterName(const std::string& name) override;
43
Rolf Badorekef2bf512019-08-20 11:17:15 +030044 DatabaseConfiguration::DbType getDbType() const override;
45
46 DatabaseConfigurationImpl::Addresses getServerAddresses() const override;
47
48 DatabaseConfiguration::Addresses getDefaultServerAddresses() const override;
49
Rolf Badorek2dcf9402019-10-01 18:33:58 +030050 boost::optional<HostAndPort> getSentinelAddress() const override;
51
52 std::string getSentinelMasterName() const override;
53
Rolf Badorekef2bf512019-08-20 11:17:15 +030054 bool isEmpty() const override;
55
56 private:
57 DbType dbType;
58 Addresses serverAddresses;
Rolf Badorek2dcf9402019-10-01 18:33:58 +030059 boost::optional<HostAndPort> sentinelAddress;
60 std::string sentinelMasterName;
Rolf Badorekef2bf512019-08-20 11:17:15 +030061 };
62}
63
64#endif