merge with master
[platform/framework/web/wrt-commons.git] / modules / log / include / dpl / log / old_style_log_provider.h
1 /*
2  * Copyright (c) 2011 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        old_style_log_provider.h
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of old style log provider
21  */
22 #ifndef DPL_OLD_STYLE_LOG_PROVIDER_H
23 #define DPL_OLD_STYLE_LOG_PROVIDER_H
24
25 #include <dpl/log/abstract_log_provider.h>
26 #include <string>
27
28 namespace DPL {
29 namespace Log {
30 class OldStyleLogProvider :
31     public AbstractLogProvider
32 {
33   private:
34     bool m_showDebug;
35     bool m_showInfo;
36     bool m_showWarning;
37     bool m_showError;
38     bool m_showPedantic;
39
40     static std::string FormatMessage(const char *message,
41                                      const char *filename,
42                                      int line,
43                                      const char *function);
44
45   public:
46     OldStyleLogProvider(bool showDebug,
47                         bool showInfo,
48                         bool showWarning,
49                         bool showError,
50                         bool showPedantic);
51     virtual ~OldStyleLogProvider() {}
52
53     virtual void Debug(const char *message,
54                        const char *fileName,
55                        int line,
56                        const char *function);
57     virtual void Info(const char *message,
58                       const char *fileName,
59                       int line,
60                       const char *function);
61     virtual void Warning(const char *message,
62                          const char *fileName,
63                          int line,
64                          const char *function);
65     virtual void Error(const char *message,
66                        const char *fileName,
67                        int line,
68                        const char *function);
69     virtual void Pedantic(const char *message,
70                           const char *fileName,
71                           int line,
72                           const char *function);
73 };
74 }
75 } // namespace DPL
76
77 #endif // DPL_OLD_STYLE_LOG_PROVIDER_H