Add dlog feature in MTP CAPI
[platform/core/api/mtp.git] / include / mtp_debug.h
1 /*
2  * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
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 #ifndef __TIZEN_CAPI_NETWORK_MTP_DEBUG_H__
18 #define __TIZEN_CAPI_NETWORK_MTP_DEBUG_H__
19
20 #include <stdio.h>
21 #include <dlog.h>
22
23 #ifdef LOG_TAG
24 #undef LOG_TAG
25 #endif
26
27 #define LOG_TAG "MTP_CAPI"
28
29 #define COLOR_BLACK "\033[0;30m"
30 #define COLOR_RED   "\033[0;31m"
31 #define COLOR_GREEN "\033[0;32m"
32 #define COLOR_BROWN "\033[0;33m"
33 #define COLOR_BLUE  "\033[0;34m"
34 #define COLOR_PURPLE    "\033[0;35m"
35 #define COLOR_CYAN  "\033[0;36m"
36 #define COLOR_GRAY  "\033[0;37m"
37 #define COLOR_END   "\033[0;m"
38
39 #define _ERR(fmt, ...) \
40         do { \
41                 LOGE(COLOR_RED fmt COLOR_END, ##__VA_ARGS__); \
42         } while (0)
43
44 #define _INFO(fmt, ...) \
45         do { \
46                 LOGI(COLOR_GREEN fmt COLOR_END, ##__VA_ARGS__); \
47         } while (0)
48
49 #define _WARN(fmt, ...) \
50         do { \
51                 LOGI(COLOR_BROWN fmt COLOR_END, ##__VA_ARGS__); \
52         } while (0)
53
54 #define _DBG(fmt, ...) \
55         do { \
56                 LOGD(fmt, ##__VA_ARGS__); \
57         } while (0)
58
59 #define _BEGIN() \
60         do { \
61                 LOGD(COLOR_BLUE "BEGIN >>>>" COLOR_END); \
62         } while (0)
63
64 #define _END() \
65         do { \
66                 LOGD(COLOR_BLUE "END <<<<" COLOR_END); \
67         } while (0)
68
69 #define cond_expr_ret(expr, val) \
70         do { \
71                 if (expr) { \
72                         _ERR("[precond fail] expr : %s, ret : %d\n", #expr, val); \
73                         return (val); \
74                 } \
75         } while (0)
76
77 #define cond_ret(val) \
78         do { \
79                 if (val) { \
80                         _ERR("[precond fail] ret : %d\n", val); \
81                         return (val); \
82                 } \
83         } while (0)
84
85 #define PRT(format, args...) printf("%s:%d() "format, __FUNCTION__, __LINE__, ##args)
86 #define TC_PRT(format, args...) PRT(format"\n", ##args)
87
88 #endif /* __TIZEN_CAPI_NETWORK_MTP_DEBUG_H__ */