support dlog for debugging
[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 debug_enable;
65
66 static unsigned int need_check_env = 1;
67
68 static void
69 _tdm_log_check_env(void)
70 {
71         const char *str;
72
73         str = getenv("TDM_DEBUG");
74         if (str && (strstr(str, "1")))
75                 debug_enable = 1;
76
77         str = getenv("TDM_DLOG");
78         if (str && (strstr(str, "1")))
79                 dlog_enable = 1;
80 }
81
82 EXTERN void
83 tdm_log_enable_dlog(unsigned int enable)
84 {
85         dlog_enable = enable;
86 }
87
88 EXTERN void
89 tdm_log_enable_debug(unsigned int enable)
90 {
91         debug_enable = enable;
92 }
93
94 EXTERN void
95 tdm_log_print(int level, const char *fmt, ...)
96 {
97         va_list arg;
98
99         if (need_check_env) {
100                 need_check_env = 0;
101                 _tdm_log_check_env();
102         }
103
104         if (level > 3 && !debug_enable)
105                 return;
106
107         if (dlog_enable) {
108                 log_priority dlog_prio;
109                 switch (level) {
110                 case TDM_LOG_LEVEL_ERR:
111                         dlog_prio = DLOG_ERROR;
112                         break;
113                 case TDM_LOG_LEVEL_WRN:
114                         dlog_prio = DLOG_WARN;
115                         break;
116                 case TDM_LOG_LEVEL_INFO:
117                         dlog_prio = DLOG_INFO;
118                         break;
119                 case TDM_LOG_LEVEL_DBG:
120                         dlog_prio = DLOG_DEBUG;
121                         break;
122                 default:
123                         return;
124                 }
125                 va_start(arg, fmt);
126                 dlog_vprint(dlog_prio, LOG_TAG, fmt, arg);
127                 va_end(arg);
128         } else {
129                 struct timespec ts;
130                 char *lvl_str[] = {"TDM_NON", "TDM_ERR", "TDM_WRN", "TDM_INF", "TDM_DBG"};
131                 char *color[] = {COLOR_RESET, COLOR_RED, COLOR_YELLOW, COLOR_GREEN, COLOR_RESET};
132
133                 clock_gettime(CLOCK_MONOTONIC, &ts);
134
135                 printf("%s", color[level]);
136                 printf("[%s]", lvl_str[level]);
137                 printf(COLOR_RESET"[%d.%06d]", (int)ts.tv_sec, (int)ts.tv_nsec / 1000);
138                 va_start(arg, fmt);
139                 vprintf(fmt, arg);
140                 va_end(arg);
141         }
142
143 #ifdef TDM_CONFIG_ASSERT
144         if (level < 3)
145                 assert(0);
146 #endif
147 }