aboutsummaryrefslogtreecommitdiff
path: root/helper/include/odph_debug.h
blob: c99936f4b69fabaad103ac2c3b3e822485f72409 (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
/* Copyright (c) 2015-2018, Linaro Limited
 * Copyright (c) 2019, Nokia
 *
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

/**
 * @file
 *
 * Helper debug
 */

#ifndef ODPH_DEBUG_H_
#define ODPH_DEBUG_H_

#include <stdio.h>
#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Assert macro for applications and helper code
 *
 * No code is generated when ODPH_DEBUG=0. Prints error message and aborts when
 * ODPH_DEBUG=1 and 'cond' is false.
 */
#define ODPH_ASSERT(cond) \
	do { \
		if ((ODPH_DEBUG == 1) && (!(cond))) { \
			fprintf(stderr, "%s:%d:%s(): %s\n", __FILE__, __LINE__,\
				__func__, #cond); \
			abort(); \
		} \
	} while (0)

/**
 * log level.
 */
typedef enum odph_log_level {
	ODPH_LOG_DBG,
	ODPH_LOG_ERR,
	ODPH_LOG_ABORT
} odph_log_level_e;

/**
 * default LOG macro.
 */
#define ODPH_LOG(level, fmt, ...) \
do { \
	switch (level) { \
	case ODPH_LOG_ERR: \
		fprintf(stderr, "%s:%d:%s():" fmt, __FILE__, \
		__LINE__, __func__, ##__VA_ARGS__); \
		break; \
	case ODPH_LOG_DBG: \
		if (ODPH_DEBUG_PRINT == 1) \
			fprintf(stderr, "%s:%d:%s():" fmt, __FILE__, \
			__LINE__, __func__, ##__VA_ARGS__); \
		break; \
	case ODPH_LOG_ABORT: \
		fprintf(stderr, "%s:%d:%s(): " fmt, __FILE__, \
		__LINE__, __func__, ##__VA_ARGS__); \
		abort(); \
		break; \
	default: \
		fprintf(stderr, "Unknown LOG level"); \
		break;\
	} \
} while (0)

/**
 * Debug printing macro, which prints output when DEBUG flag is set.
 */
#define ODPH_DBG(fmt, ...) \
		ODPH_LOG(ODPH_LOG_DBG, fmt, ##__VA_ARGS__)

/**
 * Print output to stderr (file, line and function).
 */
#define ODPH_ERR(fmt, ...) \
		ODPH_LOG(ODPH_LOG_ERR, fmt, ##__VA_ARGS__)

/**
 * Print output to stderr (file, line and function),
 * then abort.
 */
#define ODPH_ABORT(fmt, ...) \
		ODPH_LOG(ODPH_LOG_ABORT, fmt, ##__VA_ARGS__)

/**
 * @}
 */

/**
 * Mark intentionally unused argument for functions
 */
#define ODPH_UNUSED     __attribute__((__unused__))

#ifdef __cplusplus
}
#endif

#endif