Logging: Add systemd journal log provider
[platform/core/security/security-manager.git] / src / dpl / log / include / dpl / log / sd_journal_provider.h
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        sd_journal_provider.h
18  * @author      Marcin Lis (m.lis@samsung.com)
19  * @version     1.0
20  * @brief       This file contains the implementation of systemd journal log provider
21  */
22
23 #ifndef SECURITYMANAGER_SD_JOURNAL_PROVIDER_H
24 #define SECURITYMANAGER_SD_JOURNAL_PROVIDER_H
25
26 #include <dpl/log/abstract_log_provider.h>
27 #include <memory>
28 #include <string>
29
30 namespace SecurityManager {
31 namespace Log {
32 class SdJournalProvider :
33     public AbstractLogProvider
34 {
35   private:
36     std::string m_tag;
37
38     static std::string FormatMessage(const char *message,
39                                      const char *filename,
40                                      int line,
41                                      const char *function);
42
43   public:
44     SdJournalProvider();
45     virtual ~SdJournalProvider();
46
47     virtual void Debug(const char *message,
48                        const char *fileName,
49                        int line,
50                        const char *function);
51     virtual void Info(const char *message,
52                       const char *fileName,
53                       int line,
54                       const char *function);
55     virtual void Warning(const char *message,
56                          const char *fileName,
57                          int line,
58                          const char *function);
59     virtual void Error(const char *message,
60                        const char *fileName,
61                        int line,
62                        const char *function);
63
64     // All Pedantic logs are translated to Debug
65     virtual void Pedantic(const char *message,
66                           const char *fileName,
67                           int line,
68                           const char *function);
69
70     // Set global Tag for all Security Manager Logs
71     void SetTag(const char *tag);
72
73 }; // class SdJournalProvider
74
75 } // namespace Log
76 } // namespace SecurityManager
77
78 #endif // SECURITYMANAGER_SD_JOURNAL_PROVIDER_H