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