tizen 2.3 release
[framework/web/wearable/wrt-security.git] / commons / modules / log / include / dpl / log / dlog_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        dlog_log_provider.h
18  * @author      Przemyslaw Dobrowolski (p.dobrowolsk@samsung.com)
19  * @version     1.0
20  * @brief       This file is the implementation file of DLOG log provider
21  */
22 #ifndef DPL_DLOG_LOG_PROVIDER_H
23 #define DPL_DLOG_LOG_PROVIDER_H
24
25 #include <dpl/log/abstract_log_provider.h>
26 #include <dpl/free_deleter.h>
27 #include <memory>
28 #include <string>
29
30 namespace DPL {
31 namespace Log {
32 class DLOGLogProvider :
33     public AbstractLogProvider
34 {
35   private:
36     std::unique_ptr<char[],free_deleter> 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     DLOGLogProvider();
45     virtual ~DLOGLogProvider();
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     virtual void Pedantic(const char *message,
64                           const char *fileName,
65                           int line,
66                           const char *function);
67
68     // Set global Tag according to DLOG
69     void SetTag(const char *tag);
70 };
71 }
72 } // namespace DPL
73
74 #endif // DPL_DLOG_LOG_PROVIDER_H