aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/debug/assert.h
blob: 30659b79101e321c59c538a0eccb6a6f0434c388 (plain) (blame)
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
/*!
 * @file assert.h
 * @brief Contains assert macro for meowpp's debugging tools.
 *
 * You can use
 * @code{.cpp}
 * #define MEOWPP_NODEBUG
 * @endcode
 * to remove all the debugging code.
 *
 * @author cathook
 */

#ifndef __MEOWPP_ASSERT_H__
#define __MEOWPP_ASSERT_H__

#include <cstdio>
#include <cstdlib>


namespace meow {


/*!
 * @def Assert
 * @brief A macro for assert whether a expression is failed or not.
 * @param expr The expression to be tested.
 * @param ... Error information to be printed to stderr when the expr is failed.
 *
 * When expression is failed, it will call `fprintf(stderr, ...)` to print out
 * the message follows by calling `abort()` to halt the program.
 *
 * @note You can use
 * @code{.cpp}
 * #define MEOWPP_TESTING
 * @endcode
 * to tell this macro calls `test::abort()` instead of normal `abort()`
 * function.
 */


#ifndef MEOWPP_NODEBUG

#define MEOWPP_STRINGIFY(x) #x
#define MEOWPP_TOSTRING(x) MEOWPP_STRINGIFY(x)

#ifndef MEOWPP_DEBUG_ASSERT_TESTING

#define Assert(expr,...) \
  while (((expr) || \
          (fprintf(stderr, "Assertion error at " \
                   __FILE__ ":" MEOWPP_TOSTRING(__LINE__) \
                   " >>>" __VA_ARGS__), \
           abort(), false)) && false)

#else  // MEOWPP_DEBUG_ASSERT_TESTING

#define Assert(expr,...) \
  while (((expr) || \
          (fprintf(stderr, "Assertion error at " \
                   __FILE__ ":" MEOWPP_TOSTRING(__LINE__) \
                   " >>> " __VA_ARGS__), \
           test::abort(), false)) && false)

#endif  // MEOWPP_DEBUG_ASSERT_TESTING

#else  // MEOWPP_NODEBUG

#define Assert(expr,...) \
  while (false)

#endif  // MEOWPP_NODEBUG

}  // meow

#endif  // __MEOWPP_ASSERT_H__