erase tdm log macros semicolon
[platform/core/uifw/libtdm.git] / include / tdm_log.h
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 #ifndef _TDM_LOG_H_
37 #define _TDM_LOG_H_
38
39
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43
44 #include <unistd.h>
45 #include <time.h>
46 #include <assert.h>
47 #include <sys/syscall.h>
48
49
50 /**
51  * @file tdm_log.h
52  * @brief The header file to print logs in frontend and backend modules
53  * @details
54  * The TDM debug log can be enable by setting "TDM_DEBUG" enviroment
55  * @par Example
56  * @code
57  *  $ export TDM_DEBUG=1
58  * @endcode
59  */
60 extern int tdm_debug;
61
62 //#define TDM_CONFIG_DLOG
63 //#define TDM_CONFIG_ASSERT
64
65 #undef TDM_ASSERT
66 #ifdef TDM_CONFIG_ASSERT
67 #define TDM_ASSERT(o) assert(o)
68 #else
69 #define TDM_ASSERT(o)
70 #endif
71
72 #ifdef TDM_CONFIG_DLOG
73
74 #include <dlog.h>
75
76 #ifdef LOG_TAG
77 #undef LOG_TAG
78 #endif
79 #define LOG_TAG "TDM"
80
81 #define TDM_DBG(fmt, args...) \
82         do { \
83                 if (tdm_debug) { \
84                         struct timespec ts;     \
85                         clock_gettime(CLOCK_MONOTONIC, &ts);    \
86                         LOGD("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
87                         printf("[TDM_DBG][%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec, \
88                                 (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
89                 } \
90         } while (0)
91
92 #define TDM_INFO(fmt, args...) \
93         do { \
94                 struct timespec ts;     \
95                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
96                 LOGI("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
97                 printf("[TDM_INF][%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec, \
98                         (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
99         } while (0)
100
101 #define TDM_WRN(fmt, args...) \
102         do { \
103                 struct timespec ts;     \
104                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
105                 LOGI("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
106                 printf("[TDM_WRN][%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec, \
107                         (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
108         } while (0)
109
110 #define TDM_ERR(fmt, args...) \
111         do { \
112                 struct timespec ts;     \
113                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
114                 LOGE("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
115                 printf("[TDM_ERR][%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec, \
116                         (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
117         } while (0)
118
119 #else /* TDM_CONFIG_DLOG */
120
121 #include <stdio.h>
122
123 #define COLOR_RED "\x1b[31m"      /* for error */
124 #define COLOR_YELLOW "\x1b[33m"   /* for warning */
125 #define COLOR_GREEN "\x1b[32m"    /* for info */
126 #define COLOR_RESET "\x1b[0m"
127
128 #define TDM_DBG(fmt, args...) \
129         do { \
130                 if (tdm_debug) { \
131                         struct timespec ts;     \
132                         clock_gettime(CLOCK_MONOTONIC, &ts);    \
133                         printf("[TDM_DBG][%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec, \
134                                 (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
135                 } \
136         } while (0)
137
138 #define TDM_INFO(fmt, args...) \
139         do { \
140                 struct timespec ts;     \
141                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
142                 printf(COLOR_GREEN"[TDM_INF]"COLOR_RESET"[%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec, \
143                         (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
144         } while (0)
145
146 #define TDM_WRN(fmt, args...) \
147         do { \
148                 struct timespec ts;     \
149                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
150                 printf(COLOR_YELLOW"[TDM_WRN]"COLOR_RESET"[%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec,        \
151                         (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
152                 TDM_ASSERT(0); \
153         } while (0)
154
155 #define TDM_ERR(fmt, args...) \
156         do { \
157                 struct timespec ts;     \
158                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
159                 printf(COLOR_RED"[TDM_ERR]"COLOR_RESET"[%d.%06d][%d][%s %d] "fmt"\n", (int)ts.tv_sec,   \
160                         (int)ts.tv_nsec / 1000, (int)syscall(SYS_gettid), __func__, __LINE__, ##args); \
161                 TDM_ASSERT(0); \
162         } while (0)
163
164 #endif /* TDM_CONFIG_DLOG */
165
166 #ifdef __cplusplus
167 }
168 #endif
169
170 #endif /* _TDM_LOG_H_ */