Tizen 2.0 Release
[framework/web/wrt-commons.git] / modules / 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 {
30 namespace Log
31 {
32
33 std::string DLOGLogProvider::FormatMessage(const char *message, const char *filename, int line, 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
48 DLOGLogProvider::~DLOGLogProvider()
49 {
50 }
51
52 void DLOGLogProvider::SetTag(const char *tag)
53 {
54     m_tag.Reset(strdup(tag));
55 }
56
57 void DLOGLogProvider::Debug(const char *message, const char *filename, int line, const char *function)
58 {
59     LOG(LOG_DEBUG, m_tag.Get(), "%s" , FormatMessage(message, filename, line, function).c_str());
60 }
61
62 void DLOGLogProvider::Info(const char *message, const char *filename, int line, const char *function)
63 {
64     LOG(LOG_INFO, m_tag.Get(), "%s" , FormatMessage(message, filename, line, function).c_str());
65 }
66
67 void DLOGLogProvider::Warning(const char *message, const char *filename, int line, const char *function)
68 {
69     LOG(LOG_WARN, m_tag.Get(), "%s" , FormatMessage(message, filename, line, function).c_str());
70 }
71
72 void DLOGLogProvider::Error(const char *message, const char *filename, int line, const char *function)
73 {
74     LOG(LOG_ERROR, m_tag.Get(), "%s" , FormatMessage(message, filename, line, function).c_str());
75 }
76
77 void DLOGLogProvider::Pedantic(const char *message, const char *filename, int line, const char *function)
78 {
79     LOG(LOG_DEBUG, "DPL", "%s",  FormatMessage(message, filename, line, function).c_str());
80 }
81
82 }
83 } // namespace DPL