Fix build error for 64bit architectures
[platform/core/api/uwb.git] / src / uwb-log.h
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #ifndef __UWB_LOG_H__
19 #define __UWB_LOG_H__
20
21 #include <dlog.h>
22
23 #define NOTUSED(var) (var = var)
24
25 #define COLOR_BLACK "\033[0;30m"
26 #define COLOR_RED "\033[0;31m"
27 #define COLOR_GREEN "\033[0;32m"
28 #define COLOR_BROWN "\033[0;33m"
29 #define COLOR_BLUE "\033[0;34m"
30 #define COLOR_PURPLE "\033[0;35m"
31 #define COLOR_CYAN "\033[0;36m"
32 #define COLOR_GRAY "\033[0;37m"
33 #define COLOR_END "\033[0;m"
34
35 #ifdef LOG_TAG
36 #undef LOG_TAG
37 #endif
38
39 #define LOG_TAG "UWB_CAPI"
40
41 #define _ERR(fmt, ...)                                        \
42         do {                                                  \
43                 LOGE(COLOR_RED fmt COLOR_END, ##__VA_ARGS__); \
44         } while (0)
45
46 #define _INFO(fmt, ...)                                         \
47         do {                                                    \
48                 LOGI(COLOR_GREEN fmt COLOR_END, ##__VA_ARGS__); \
49         } while (0)
50
51 #define _WARN(fmt, ...)                                         \
52         do {                                                    \
53                 LOGI(COLOR_BROWN fmt COLOR_END, ##__VA_ARGS__); \
54         } while (0)
55
56 #define _DBG(fmt, ...)                    \
57         do {                              \
58                 LOGD(fmt, ##__VA_ARGS__); \
59         } while (0)
60
61 #define _BEGIN()                                         \
62         do {                                             \
63                 LOGD(COLOR_BLUE "BEGIN >>>>" COLOR_END); \
64         } while (0)
65
66 #define _END()                                         \
67         do {                                           \
68                 LOGD(COLOR_BLUE "END <<<<" COLOR_END); \
69         } while (0)
70
71 #define cond_expr_ret(expr, val)                                                  \
72         do {                                                                      \
73                 if (expr) {                                                       \
74                         _ERR("[precond fail] expr : %s, ret : %d\n", #expr, val); \
75                         return (val);                                             \
76                 }                                                                 \
77         } while (0)
78
79 #define cond_ret(val)                                           \
80         do {                                                    \
81                 if (val) {                                      \
82                         _ERR("[precond fail] ret : %d\n", val); \
83                         return (val);                           \
84                 }                                               \
85         } while (0)
86
87 #define uwb_check_null_ret_error(name, value, error) \
88         do {                                         \
89                 /* LCOV_EXCL_START */                \
90                 if (G_UNLIKELY(NULL == (value))) {   \
91                         LOGE("%s is NULL", name);    \
92                         return error;                \
93                 }                                    \
94                 /* LCOV_EXCL_STOP */                 \
95         } while (FALSE)
96
97 #define uwb_check_null_ret(name, value)            \
98         do {                                       \
99                 /* LCOV_EXCL_START */              \
100                 if (G_UNLIKELY(NULL == (value))) { \
101                         LOGE("%s is NULL", name);  \
102                         return;                    \
103                 }                                  \
104                 /* LCOV_EXCL_STOP */               \
105         } while (FALSE)
106
107 #define PRT(format, args...) printf("%s:%d() " format, __FUNCTION__, __LINE__, ##args)
108 #define TC_PRT(format, args...) PRT(format "\n", ##args)
109
110 #endif /* __UWB_LOG_H__ */