first draft
[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 extern int tdm_debug;
45
46 //#define TDM_CONFIG_DLOG
47 #ifdef TDM_CONFIG_DLOG
48
49 #include <dlog.h>
50 #include <time.h>
51
52 #ifdef LOG_TAG
53 #undef LOG_TAG
54 #endif
55 #define LOG_TAG "TDM"
56
57 #define TDM_DBG(fmt, args...) \
58     if (tdm_debug) \
59         do { \
60                 struct timespec ts;     \
61                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
62                 LOGD("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
63                 printf("[TDM_DBG][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
64                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
65         } while (0);
66
67 #define TDM_INFO(fmt, args...) \
68         do { \
69                 struct timespec ts;     \
70                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
71                 LOGI("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
72                 printf("[TDM_INF][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
73                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
74         } while (0);
75
76 #define TDM_WRN(fmt, args...) \
77         do { \
78                 struct timespec ts;     \
79                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
80                 LOGI("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
81                 printf("[TDM_WRN][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
82                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
83         } while (0);
84
85 #define TDM_ERR(fmt, args...) \
86         do { \
87                 struct timespec ts;     \
88                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
89                 LOGE("[%d.%06d] "fmt"\n", (int)ts.tv_sec, (int)ts.tv_nsec / 1000, ##args);      \
90                 printf("[TDM_ERR][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
91                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
92         } while (0);
93
94 #else /* TDM_CONFIG_DLOG */
95
96 #include <stdio.h>
97 #include <time.h>
98
99 #define TDM_DBG(fmt, args...) \
100     if (tdm_debug) \
101         do { \
102                 struct timespec ts;     \
103                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
104                 printf("[TDM_DBG][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
105                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
106         } while (0);
107
108 #define TDM_INFO(fmt, args...) \
109         do { \
110                 struct timespec ts;     \
111                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
112                 printf("[TDM_INF][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
113                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
114         } while (0);
115
116 #define TDM_WRN(fmt, args...) \
117         do { \
118                 struct timespec ts;     \
119                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
120                 printf("[TDM_WRN][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
121                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
122         } while (0);
123
124 #define TDM_ERR(fmt, args...) \
125         do { \
126                 struct timespec ts;     \
127                 clock_gettime(CLOCK_MONOTONIC, &ts);    \
128                 printf("[TDM_ERR][%d.%06d][%s %d] "fmt"\n", (int)ts.tv_sec,     \
129                         (int)ts.tv_nsec / 1000, __func__, __LINE__, ##args); \
130         } while (0);
131
132 #endif /* TDM_CONFIG_DLOG */
133
134 #ifdef __cplusplus
135 }
136 #endif
137
138 #endif /* _TDM_LOG_H_ */