re-organize security
[apps/core/preloaded/settings.git] / include / setting-debug.h
1 /*
2  * setting
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
5  *
6  * Contact: MyoungJune Park <mj2004.park@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 /**
22  * @defgroup setting-debug
23  * setting debug utility
24  */
25
26 #ifndef _SETTING_DEBUG_H_
27 #define _SETTING_DEBUG_H_
28 #include <stdio.h>
29
30 /*#define MTRACE_ENABLED*/
31
32 #define DISABLED_CODE 0
33
34 //#define DEBUG_CODE
35
36 #define SETTING_USING_PLATFORM_DBG
37 #ifdef SETTING_USING_PLATFORM_DBG
38 #include <dlog.h>
39 #ifdef LOG_TAG
40 #undef LOG_TAG
41 #endif
42
43
44 #define LOG_TAG "SETTING"
45 #endif
46
47
48 #if !defined(LOCALEDIR)
49 #define LOCALEDIR "/opt/apps/org.tizen.setting/res/locale"
50 #endif
51
52 #if !defined(EDJDIR)
53 #define EDJDIR "/opt/apps/org.tizen.setting/res/edje"
54 #endif
55
56 #define SUPPORT_BOTTOM_BTNS 1
57 #define REMOVE_BACK_BUTTON_MAIN 0
58 #define SUPPORT_GL_ENGINE 1
59
60
61 /*macros to control program flow*/
62 #define SUPPORT_MORE_ITEM_FUNCTION 1
63
64 // #define SUPPORT_MDM
65
66 /*##menu options##*/
67 #define SUPPORT_AllShare                        1
68 #define SUPPORT_AllShare_Memory                 0
69 #define SUPPORT_FMradio                         1
70 #define SUPPORT_FONT                            1
71 #define SUPPORT_MENUSCREEN                      1
72 #define SUPPORT_WALLPAPER                       1
73 #define SUPPOR_SEPARATE_BRIGHTNESS              1
74
75 #define SUPPORT_RCS_FOR_DEMO                    0
76 #define SUPPORT_ACCESSIBILITY                   1
77 #define SUPPORT_CERTIFICATES            0
78 #define SUPPORT_MOTIONS                         1
79 #define SUPPORT_POWERSAVING                     1
80 #define SUPPORT_RUN_SYSTEM_COMMAND              0
81 #define SUPPORT_VOICEINOUT                      1
82 #define SUPPORT_STORAGE                         1
83 #define SUPPORT_WIFI_DIRECT                     1
84 #define SUPPORT_ALLSHARECAST            1
85 #define SUPPORT_DATA_USAGE                      0
86 #define SUPPORT_SECURITY                        0
87 #define SUPPORT_EVENTNOTI                       0
88
89 /*#endif*/
90
91 #define SUPPORT_APP_ROATION                     0
92 #define SUPPORT_LCD_TIMEOUT_KEEPING             1
93 #define USE_DEVICE_SET_DISPLAY_BRT              1
94
95 #define  LOW_BATTERY_DO_NOTHING                 1       /**< 1 : turn the low batter handlding off */
96
97 #define APPLIED_BACK_KEY_UG                     0
98
99 #define APPLIED_DATATIME_FIRSTDAY_WEEK          1
100 #define SUPPORT_DATEFIELD_DATE_FORMAT_AUTOSET   0
101
102 #define SUPPORT_FDN 0
103 #define SUPPORT_PARENTAL_MODE 0
104
105 #define SETTING_ENABLE_TRACE
106
107 #ifdef SETTING_ENABLE_TRACE
108         #ifdef SETTING_USING_PLATFORM_DBG
109                 #define SETTING_TRACE_DEBUG(fmt, arg...) \
110                         do {\
111                                 LOGD("\n\033[0;32mDEBUG: " fmt "\033[0m\t%s:%d\n", \
112                                 ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
113                         }while(0);
114
115                 #define SETTING_TRACE(fmt, arg...) \
116                         do {\
117                                 LOGI("\n\033[0;36m" fmt "\033[0m\t%s:%d\n", \
118                                                 ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
119                         }while(0);
120
121                 #define SETTING_TRACE_WARNING(fmt, arg...) \
122                         do {\
123                                 LOGW("\033[0;33mWARRING: " fmt "\033[0m\t%s:%d\n", ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
124                         }while(0);
125
126                 #define SETTING_TRACE_ERROR(fmt, arg...) \
127                         do {\
128                                 LOGE("\033[0;31mERROR: " fmt "\033[0m\t%s:%d\n", ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
129                         }while(0);
130                 #define SETTING_TRACE_BEGIN do {\
131                                 {\
132                                         LOGD("\n\033[0;35mENTER FUNCTION: %s. \033[0m\t%s:%d\n", \
133                                         __FUNCTION__, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
134                                 }\
135                         }while(0);
136
137                 #define SETTING_TRACE_END  do {\
138                                 {\
139                                         LOGD("\n\033[0;35mEXIT FUNCTION: %s. \033[0m\t%s:%d\n", \
140                                         __FUNCTION__, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
141                                 }\
142                         }while(0);
143         #else
144                 #define SETTING_TRACE(fmt, arg...) \
145                         do {\
146                                 printf("\n[SETTING]\033[0;36m" fmt "\033[0m\t%s:%d\n", \
147                                                 ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
148                         }while(0);
149
150
151                 #define SETTING_TRACE_DEBUG(fmt, arg...) \
152                         do {\
153                                 printf("\n[SETTING]\033[0;32mDEBUG: " fmt "\033[0m\t%s:%d\n", \
154                                                 ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
155                         }while(0);
156
157                 #define SETTING_TRACE_WARNING(fmt, arg...) \
158                         do {\
159                         {\
160                                 printf("[SETTING]\033[0;33mWARRING: " fmt "\033[0m\t%s:%d\n", ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);}\
161                         }while(0);
162
163                 #define SETTING_TRACE_ERROR(fmt, arg...) \
164                         do {\
165                                 {fprintf(stderr, "[SETTING]\033[0;31mERROR: " fmt "\033[0m\t%s:%d\n", ##arg, (char*)(strrchr(__FILE__, '/')+1), __LINE__);}\
166                         }while(0);
167
168                 #define SETTING_TRACE_BEGIN do {\
169                                 {\
170                                         printf("\n[SETTING]\033[0;35mENTER FUNCTION: %s. \033[0m\t%s:%d\n", \
171                                         __FUNCTION__, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
172                                 }\
173                         }while(0);
174
175                 #define SETTING_TRACE_END  do {\
176                                 {\
177                                         printf("\n[SETTING]\033[0;35mEXIT FUNCTION: %s. \033[0m\t%s:%d\n", \
178                                         __FUNCTION__, (char*)(strrchr(__FILE__, '/')+1), __LINE__);\
179                                 }\
180                         }while(0);
181         #endif
182 #else
183         #define SETTING_TRACE(fmt, arg...)
184         #define SETTING_TRACE_DEBUG(fmt, arg...)
185         #define SETTING_TRACE_WARNING(fmt, arg...)
186         #define SETTING_TRACE_ERROR(fmt, arg...)
187         #define SETTING_TRACE_BEGIN
188         #define SETTING_TRACE_END
189 #endif
190
191 #define setting_retvm_if(expr, val, fmt, arg...) do { \
192                 if(expr) { \
193                         SETTING_TRACE_ERROR(fmt, ##arg); \
194                         return (val); \
195                 } \
196         } while (0);
197
198 #define setting_retm_if(expr, fmt, arg...) do { \
199                 if(expr) { \
200                         SETTING_TRACE_ERROR(fmt, ##arg); \
201                         return; \
202                 } \
203         } while (0);
204
205 #ifndef retm_if
206 #define retm_if setting_retm_if
207 #endif
208 #ifndef retvm_if
209 #define retvm_if setting_retvm_if
210 #endif
211
212 #ifndef retv_if
213 #define retv_if(expr, val) do { \
214    if(expr) { \
215       return (val); \
216    } \
217 } while (0)
218 #endif
219 #ifndef ret_if
220 #define ret_if(expr) do { \
221    if(expr) { \
222       return ; \
223    } \
224 } while (0)
225 #endif
226
227 #define __FREE(del, arg) do { \
228                 if(arg) { \
229                         del((void *)(arg)); /*cast any argument to (void*) to avoid build warring*/\
230                         arg = NULL; \
231                 } \
232         } while (0);
233 #define FREE(arg) __FREE(free, arg)
234 #define G_FREE(arg) __FREE(g_free, arg)
235
236
237 //////
238 //a trick:To manager back pointer. eg,
239 //For using genlist, whenever Setting side and Genlist side both keep pointers
240 //to a same block memory(here is genlis item data via calloc), must use __BACK_POINTER_SET to
241 //bind the Setting side point into the Genlist side pointer
242 #define __BACK_POINTER_SET(pData) do { \
243                         if (pData)\
244                         {\
245                                 pData->pBack = (void **)(&(pData));\
246                         }\
247                 } while (0);
248
249 #define __BACK_POINTER_UNSET(pData) do { \
250                         if (pData && pData->pBack)/*release Setting side poniter handlers*/\
251                         {\
252                                 *(pData->pBack) = NULL;\
253                         }\
254                 } while (0);
255
256
257 #endif /* _SETTING_DEBUG_H_ */
258