summaryrefslogtreecommitdiff
path: root/src/include/mf-ug-dlog.h
blob: dd32beb99edf973dfb4a2bf38e027deab3f2eb90 (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
/*
 * 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 __DEF_MF_UG_DLOG_H_
#define __DEF_MF_UG_DLOG_H_

#include <stdio.h>
#include <string.h>

#define DLOG_ON 1

#ifdef LOG_TAG
#undef LOG_TAG
#endif

#define LOG_TAG			"MYFILE-UG"
#include <dlog.h>


#if DLOG_ON
#define ug_debug(fmt , args...)        LOGD("[%s][%d]debug message from ug-myfile-efl is : "fmt"\n", __func__, __LINE__, ##args)
#define ug_myfile_dlog(fmt , args...)        LOGD("[%s][%d]debug message from myfile is : "fmt"\n", __func__, __LINE__, ##args)
#define UG_TRACE_BEGIN do {\
		{\
			LOGD("\n\033[0;35mENTER FUNCTION: %s. \033[0m\t%s:%d\n", \
			__FUNCTION__, (char *)(strrchr(__FILE__, '/') + 1), __LINE__);\
		} \
	} while (0);

#define UG_TRACE_END  do {\
		{\
			LOGD("\n\033[0;35mEXIT FUNCTION: %s. \033[0m\t%s:%d\n", \
			__FUNCTION__, (char *)(strrchr(__FILE__, '/') + 1), __LINE__);\
		} \
	} while (0);

#else
#define ug_myfile_dlog(fmt , args...)        printf("[MYFILE][%40s:%4d] "fmt"\n", __func__, __LINE__, ##args)
#endif
#define ug_mf_debug(fmt , args...)			do { (void)0; } while (0)
#define ug_mf_warnig(fmt , args...)			do { (void)0; } while (0)
#define ug_mf_error(fmt , args...)			do { (void)0; } while (0)
#define UG_MYFILE_TRACE_ERROR(fmt, arg...)		do { LOGE("[%s][%d] "fmt"\n", strrchr(__FILE__, '/') + 1, __LINE__, ##arg); } while (0)

#define ug_mf_retvm_if(expr, val, fmt, arg...) do { \
			if (expr) { \
				UG_MYFILE_TRACE_ERROR(fmt, ##arg); \
				return (val); \
			} \
		} while (0)

#define ug_mf_retv_if(expr, val) do { \
			if (expr) { \
				return (val); \
			} \
		} while (0)


#define ug_mf_retm_if(expr, fmt, arg...) do { \
			if (expr) { \
				UG_MYFILE_TRACE_ERROR(fmt, ##arg); \
				return; \
			} \
		} while (0)


#endif