summaryrefslogtreecommitdiff
path: root/include/phone.h
blob: 66740917703cce627e2000d3df3b550b1a0d642a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
 * Copyright 2012  Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.tizenopensource.org/license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __PHONE_APP_H__
#define __PHONE_APP_H__

#include <Elementary.h>

#ifndef API
#define API __attribute__ ((visibility("default")))
#endif

#if !defined(PACKAGE)
#  define PACKAGE "phone"
#endif

#define _EDJ(obj) (Evas_Object *)elm_layout_edje_get(obj)

#define PH_DLOG_OUT
#define PH_DEBUGGING

#ifdef PH_DLOG_OUT
#define LOG_TAG "PHONE"
#include <dlog.h>
#define DLOG(prio, fmt, arg...) \
	do { SLOG(prio, LOG_TAG, fmt, ##arg); } while (0)
#define INFO(fmt, arg...) SLOGI(fmt, ##arg)
#define ERR(fmt, arg...) SLOGE("%s:" fmt, __FUNCTION__, ##arg)
#define DBG(fmt, arg...) SLOGD("%s:" fmt, __FUNCTION__, ##arg)
#else //PH_DLOG_OUT
#define PRT(prio, fmt, arg...) \
	do { fprintf((prio?stderr:stdout), "[Phone]" fmt"\n", ##arg); } while (0)
#define INFO(fmt, arg...) PRT(0, fmt, ##arg)
#define ERR(fmt, arg...) PRT(1, "%s :" fmt, __FUNCTION__, ##arg)
#define DBG(fmt, arg...) \
	do { \
		printf("\x1b[105;37m[Phone]\x1b[0m(%s)" fmt "\n", __FUNCTION__, ##arg); \
	} while (0)
#endif //PH_DLOG_OUT

#ifdef PH_DEBUGGING
#define PH_FN_CALL DBG(">>>>>>>>%s called", __FUNCTION__)
#define PH_FN_END DBG("<<<<<<<<%s ended", __FUNCTION__)
#define PH_DBG DBG
#define p_warn_if(expr, fmt, arg...) do { \
	if (expr) { \
		DBG("(%s) -> "fmt, #expr, ##arg); \
	} \
} while (0)
#define p_ret_if(expr) do { \
	if (expr) { \
		DBG("(%s) -> %s() return", #expr, __FUNCTION__); \
		return; \
	} \
} while (0)
#define p_retv_if(expr, val) do { \
	if (expr) { \
		DBG("(%s) -> %s() return", #expr, __FUNCTION__); \
		return (val); \
	} \
} while (0)
#define p_retm_if(expr, fmt, arg...) do { \
	if (expr) { \
		ERR(fmt, ##arg); \
		DBG("(%s) -> %s() return", #expr, __FUNCTION__); \
		return; \
	} \
} while (0)
#define p_retvm_if(expr, val, fmt, arg...) do { \
	if (expr) { \
		ERR(fmt, ##arg); \
		DBG("(%s) -> %s() return", #expr, __FUNCTION__); \
		return (val); \
	} \
} while (0)
#else //PH_DEBUGGING
#define PH_FN_CALL
#define PH_FN_END
//#define PH_DBG DBG
#define PH_DBG(...)

#define p_warn_if(expr, fmt, arg...) do { \
	if (expr) { \
		ERR(fmt, ##arg); \
	} \
} while (0)
#define p_ret_if(expr) do { \
	if (expr) { \
		return; \
	} \
} while (0)
#define p_retv_if(expr, val) do { \
	if (expr) { \
		return (val); \
	} \
} while (0)
#define p_retm_if(expr, fmt, arg...) do { \
	if (expr) { \
		ERR(fmt, ##arg); \
		return; \
	} \
} while (0)
#define p_retvm_if(expr, val, fmt, arg...) do { \
	if (expr) { \
		ERR(fmt, ##arg); \
		return (val); \
	} \
} while (0)

#endif //PH_DEBUGGING

#define SAFE_STR(src) (src)?src:""
#define STR_BLANK(src) (src)?" ":"", SAFE_STR(src)

#define SAFE_STRDUP(src) (NULL != src)?strdup(src):NULL
#define FREEandSTRDUP(dest, src) \
	do{ \
		free(dest); dest=NULL;\
		if (src) dest = strdup(src); \
	}while(false)

#endif //__PHONE_APP_H__