support TDM_DEBUG_PATH
[platform/core/uifw/libtdm.git] / common / tdm_log.c
1 /**************************************************************************
2  *
3  * libtdm
4  *
5  * Copyright 2015 Samsung Electronics co., Ltd. All Rights Reserved.
6  *
7  * Contact: Eunchul Kim <chulspro.kim@samsung.com>,
8  *          JinYoung Jeon <jy0.jeon@samsung.com>,
9  *          Taeheon Kim <th908.kim@samsung.com>,
10  *          YoungJun Cho <yj44.cho@samsung.com>,
11  *          SooChan Lim <sc1.lim@samsung.com>,
12  *          Boram Park <sc1.lim@samsung.com>
13  *
14  * Permission is hereby granted, free of charge, to any person obtaining a
15  * copy of this software and associated documentation files (the
16  * "Software"), to deal in the Software without restriction, including
17  * without limitation the rights to use, copy, modify, merge, publish,
18  * distribute, sub license, and/or sell copies of the Software, and to
19  * permit persons to whom the Software is furnished to do so, subject to
20  * the following conditions:
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  *
26  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
27  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
29  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
30  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
31  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
32  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33  *
34 **************************************************************************/
35
36 #ifdef HAVE_CONFIG_H
37 #include "config.h"
38 #endif
39
40 #include <stdio.h>
41 #include <unistd.h>
42 #include <time.h>
43 #include <assert.h>
44 #include <sys/syscall.h>
45 #include <dlog.h>
46
47 #include "tdm.h"
48 #include "tdm_log.h"
49 #include "tdm_macro.h"
50
51 //#define TDM_CONFIG_ASSERT
52
53 #define LOG_MAX_LEN    4076
54
55 #define COLOR_RED "\x1b[31m"      /* for error */
56 #define COLOR_YELLOW "\x1b[33m"   /* for warning */
57 #define COLOR_GREEN "\x1b[32m"    /* for info */
58 #define COLOR_RESET "\x1b[0m"
59
60 #undef LOG_TAG
61 #define LOG_TAG "TDM"
62
63 static unsigned int dlog_enable;
64 static unsigned int color_enable = 1;
65 static unsigned int debug_level = TDM_LOG_LEVEL_INFO;
66
67 static unsigned int need_check_env = 1;
68
69 static void
70 _tdm_log_check_env(void)
71 {
72         const char *str;
73         char *end;
74
75         str = getenv("TDM_DEBUG_LEVEL");
76         if (str)
77                 debug_level = strtol(str, &end, 10);
78
79         str = getenv("TDM_DEBUG");
80         if (str && (strstr(str, "1")))
81                 debug_level = TDM_LOG_LEVEL_DBG;
82
83         str = getenv("TDM_DLOG");
84         if (str && (strstr(str, "1")))
85                 dlog_enable = 1;
86 }
87
88 EXTERN void
89 tdm_log_enable_color(unsigned int enable)
90 {
91         color_enable = enable;
92 }
93
94 EXTERN void
95 tdm_log_enable_dlog(unsigned int enable)
96 {
97         dlog_enable = enable;
98 }
99
100 EXTERN void
101 tdm_log_enable_debug(unsigned int enable)
102 {
103         if (enable)
104                 debug_level = TDM_LOG_LEVEL_DBG;
105         else
106                 debug_level = TDM_LOG_LEVEL_INFO;
107 }
108
109 EXTERN void
110 tdm_log_set_debug_level(int level)
111 {
112         debug_level = level;
113 }
114
115 EXTERN void
116 tdm_log_print(int level, const char *fmt, ...)
117 {
118         va_list arg;
119
120         if (need_check_env) {
121                 need_check_env = 0;
122                 _tdm_log_check_env();
123         }
124
125         if (level > debug_level)
126                 return;
127
128         if (dlog_enable) {
129                 log_priority dlog_prio;
130                 switch (level) {
131                 case TDM_LOG_LEVEL_ERR:
132                         dlog_prio = DLOG_ERROR;
133                         break;
134                 case TDM_LOG_LEVEL_WRN:
135                         dlog_prio = DLOG_WARN;
136                         break;
137                 case TDM_LOG_LEVEL_INFO:
138                         dlog_prio = DLOG_INFO;
139                         break;
140                 case TDM_LOG_LEVEL_DBG:
141                         dlog_prio = DLOG_DEBUG;
142                         break;
143                 default:
144                         return;
145                 }
146                 va_start(arg, fmt);
147                 dlog_vprint(dlog_prio, LOG_TAG, fmt, arg);
148                 va_end(arg);
149         } else {
150                 struct timespec ts;
151                 char *lvl_str[] = {"TDM_NON", "TDM_ERR", "TDM_WRN", "TDM_INF", "TDM_DBG"};
152                 char *color[] = {COLOR_RESET, COLOR_RED, COLOR_YELLOW, COLOR_GREEN, COLOR_RESET};
153
154                 clock_gettime(CLOCK_MONOTONIC, &ts);
155
156                 if (color_enable)
157                         printf("%s", color[level]);
158                 printf("[%s]", lvl_str[level]);
159                 if (color_enable)
160                         printf(COLOR_RESET);
161                 printf("[%d.%06d]", (int)ts.tv_sec, (int)ts.tv_nsec / 1000);
162                 va_start(arg, fmt);
163                 vprintf(fmt, arg);
164                 va_end(arg);
165         }
166
167 #ifdef TDM_CONFIG_ASSERT
168         if (level < 3)
169                 assert(0);
170 #endif
171 }