RIC:1060: Change in PTL
[ric-plt/sdl.git] / include / private / systemlogger.hpp
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 #ifndef SHAREDDATALAYER_SYSTEMLOGGER_HPP_
23 #define SHAREDDATALAYER_SYSTEMLOGGER_HPP_
24
25 #include <memory>
26 #include <string>
27 #include "private/logger.hpp"
28
29 namespace shareddatalayer
30 {
31     class SystemLogger: public Logger
32     {
33     public:
34         explicit SystemLogger(const std::string& prefix);
35
36         ~SystemLogger();
37
38         std::ostream& emerg() override;
39
40         std::ostream& alert() override;
41
42         std::ostream& crit() override;
43
44         std::ostream& error() override;
45
46         std::ostream& warning() override;
47
48         std::ostream& notice() override;
49
50         std::ostream& info() override;
51
52         std::ostream& debug() override;
53
54     private:
55         const std::string prefix;
56         std::unique_ptr<std::ostream> osEmerg;
57         std::unique_ptr<std::ostream> osAlert;
58         std::unique_ptr<std::ostream> osCrit;
59         std::unique_ptr<std::ostream> osError;
60         std::unique_ptr<std::ostream> osWarning;
61         std::unique_ptr<std::ostream> osNotice;
62         std::unique_ptr<std::ostream> osInfo;
63         std::unique_ptr<std::ostream> osDebug;
64     };
65 }
66
67 #endif