Merge branch 'master' into tizen_2.1
[apps/native/volume-app.git] / src / _util_log.h
1 /*
2  * org.tizen.volume
3  * Copyright 2012  Samsung Electronics Co., Ltd
4  *
5  * Licensed under the Flora License, Version 1.0 (the License);
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://floralicense.org/license/
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an AS IS BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18
19 #ifndef __VOLUME_UTIL_LOG_H__
20 #define __VOLUME_UTIL_LOG_H__
21
22 #include <unistd.h>
23 #include <dlog.h>
24
25 #undef LOG_TAG
26 #define LOG_TAG "VOLUME"
27 #define _E(fmt, arg...) LOGE("[%s,%d] "fmt,__FUNCTION__,__LINE__,##arg)
28 #define _D(fmt, arg...) LOGD("[%s,%d] "fmt,__FUNCTION__,__LINE__,##arg)
29
30 #define retvm_if(expr, val, fmt, arg...) do { \
31         if(expr) { \
32                 _E(fmt, ##arg); \
33                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
34                 return (val); \
35         } \
36 } while (0)
37
38 #define retv_if(expr, val) do { \
39         if(expr) { \
40                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
41                 return (val); \
42         } \
43 } while (0)
44
45 #define retm_if(expr, fmt, arg...) do { \
46         if(expr) { \
47                 _E(fmt, ##arg); \
48                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
49                 return; \
50         } \
51 } while (0)
52
53 #define ret_if(expr) do { \
54         if(expr) { \
55                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \
56                 return; \
57         } \
58 } while (0)
59
60 #endif                          /* __VOLUME_UTIL_LOG_H__ */