enhance log for buffer debugging
[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 /**
45  * @file tdm_log.h
46  * @brief The header file to print logs in frontend and backend modules
47  * @details
48  * The TDM debug log can be enable by setting "TDM_DEBUG" enviroment
49  * @par Example
50  * @code
51    $ export TDM_DEBUG=1
52  * @endcode
53  */
54 extern int tdm_debug;
55 extern int tdm_debug_buffer;
56
57 //#define TDM_CONFIG_DLOG
58 #ifdef TDM_CONFIG_DLOG
59
60 #include <dlog.h>
61 #include <time.h>
62
63 #ifdef LOG_TAG
64 #undef LOG_TAG
65 #endif
66 #define LOG_TAG "TDM"
67
68 #define TDM_DBG(fmt, args...) \
69     if (tdm_debug) \
70         do { \
71                 struct timespec ts;     \
72                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
73                 LOGD("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
74                 printf("[TDM_DBG][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
75                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
76         } while (0);
77
78 #define TDM_INFO(fmt, args...) \
79         do { \
80                 struct timespec ts;     \
81                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
82                 LOGI("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
83                 printf("[TDM_INF][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
84                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
85         } while (0);
86
87 #define TDM_WRN(fmt, args...) \
88         do { \
89                 struct timespec ts;     \
90                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
91                 LOGI("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
92                 printf("[TDM_WRN][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
93                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
94         } while (0);
95
96 #define TDM_ERR(fmt, args...) \
97         do { \
98                 struct timespec ts;     \
99                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
100                 LOGE("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
101                 printf("[TDM_ERR][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
102                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
103         } while (0);
104
105 #else /* TDM_CONFIG_DLOG */
106
107 #include <stdio.h>
108 #include <time.h>
109
110 #define TDM_DBG(fmt, args...) \
111     if (tdm_debug) \
112         do { \
113                 struct timespec ts;     \
114                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
115                 printf("[TDM_DBG][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
116                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
117         } while (0);
118
119 #define TDM_INFO(fmt, args...) \
120         do { \
121                 struct timespec ts;     \
122                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
123                 printf("[TDM_INF][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
124                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
125         } while (0);
126
127 #define TDM_WRN(fmt, args...) \
128         do { \
129                 struct timespec ts;     \
130                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
131                 printf("[TDM_WRN][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
132                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
133         } while (0);
134
135 #define TDM_ERR(fmt, args...) \
136         do { \
137                 struct timespec ts;     \
138                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
139                 printf("[TDM_ERR][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
140                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
141         } while (0);
142
143 #endif /* TDM_CONFIG_DLOG */
144
145 #ifdef __cplusplus
146 }
147 #endif
148
149 #endif /* _TDM_LOG_H_ */