Initialize Tizen 2.3
[framework/web/wrt-commons.git] / modules_mobile / log / src / dlog_log_provider.cpp
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.cpp
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 #include <stddef.h>
23 #include <dpl/log/dlog_log_provider.h>
24 #include <cstring>
25 #include <sstream>
26 #include <dlog.h>
27
28 namespace DPL {
29 namespace Log {
30 std::string DLOGLogProvider::FormatMessage(const char *message,
31                                            const char *filename,
32                                            int line,
33                                            const char *function)
34 {
35     std::ostringstream val;
36
37     val << std::string("[") <<
38     LocateSourceFileName(filename) << std::string(":") << line <<
39     std::string("] ") << function << std::string("(): ") << message;
40
41     return val.str();
42 }
43
44 DLOGLogProvider::DLOGLogProvider()
45 {}
46
47 DLOGLogProvider::~DLOGLogProvider()
48 {}
49
50 void DLOGLogProvider::SetTag(const char *tag)
51 {
52     m_tag.Reset(strdup(tag));
53 }
54
55 void DLOGLogProvider::Debug(const char *message,
56                             const char *filename,
57                             int line,
58                             const char *function)
59 {
60 #ifdef SECURE_LOG
61     SECURE_LOG(LOG_DEBUG, m_tag.Get(), "%s",
62         FormatMessage(message, filename, line, function).c_str());
63 #else
64     LOG(LOG_DEBUG, m_tag.Get(), "%s",
65         FormatMessage(message, filename, line, function).c_str());
66 #endif
67 }
68
69 void DLOGLogProvider::Info(const char *message,
70                            const char *filename,
71                            int line,
72                            const char *function)
73 {
74 #ifdef SECURE_LOG
75     SECURE_LOG(LOG_INFO, m_tag.Get(), "%s",
76         FormatMessage(message, filename, line, function).c_str());
77 #else
78     LOG(LOG_INFO, m_tag.Get(), "%s",
79         FormatMessage(message, filename, line, function).c_str());
80 #endif
81 }
82
83 void DLOGLogProvider::Warning(const char *message,
84                               const char *filename,
85                               int line,
86                               const char *function)
87 {
88 #ifdef SECURE_LOG
89     SECURE_LOG(LOG_WARN, m_tag.Get(), "%s",
90         FormatMessage(message, filename, line, function).c_str());
91 #else
92     LOG(LOG_WARN, m_tag.Get(), "%s",
93         FormatMessage(message, filename, line, function).c_str());
94 #endif
95 }
96
97 void DLOGLogProvider::Error(const char *message,
98                             const char *filename,
99                             int line,
100                             const char *function)
101 {
102 #ifdef SECURE_LOG
103     SECURE_LOG(LOG_ERROR, m_tag.Get(), "%s",
104         FormatMessage(message, filename, line, function).c_str());
105 #else
106     LOG(LOG_ERROR, m_tag.Get(), "%s",
107         FormatMessage(message, filename, line, function).c_str());
108 #endif
109 }
110
111 void DLOGLogProvider::Pedantic(const char *message,
112                                const char *filename,
113                                int line,
114                                const char *function)
115 {
116 #ifdef SECURE_LOG
117     SECURE_LOG(LOG_DEBUG, "DPL", "%s", FormatMessage(message,
118                                               filename,
119                                               line,
120                                               function).c_str());
121 #else
122     LOG(LOG_DEBUG, "DPL", "%s", FormatMessage(message,
123                                               filename,
124                                               line,
125                                               function).c_str());
126 #endif
127 }
128 }
129 } // namespace DPL