__assert.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * Copyright (c) 2011-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS___ASSERT_H_
  7. #define ZEPHYR_INCLUDE_SYS___ASSERT_H_
  8. #include <stdbool.h>
  9. #ifdef CONFIG_ASSERT
  10. #ifndef __ASSERT_ON
  11. #define __ASSERT_ON CONFIG_ASSERT_LEVEL
  12. #endif
  13. #endif
  14. #ifdef CONFIG_FORCE_NO_ASSERT
  15. #undef __ASSERT_ON
  16. #define __ASSERT_ON 0
  17. #endif
  18. #if defined(CONFIG_ASSERT_VERBOSE)
  19. #define __ASSERT_PRINT(fmt, ...) printk(fmt, ##__VA_ARGS__)
  20. #else /* CONFIG_ASSERT_VERBOSE */
  21. #define __ASSERT_PRINT(fmt, ...)
  22. #endif /* CONFIG_ASSERT_VERBOSE */
  23. #ifdef CONFIG_ASSERT_NO_MSG_INFO
  24. #define __ASSERT_MSG_INFO(fmt, ...)
  25. #else /* CONFIG_ASSERT_NO_MSG_INFO */
  26. #define __ASSERT_MSG_INFO(fmt, ...) __ASSERT_PRINT("\t" fmt "\n", ##__VA_ARGS__)
  27. #endif /* CONFIG_ASSERT_NO_MSG_INFO */
  28. #if !defined(CONFIG_ASSERT_NO_COND_INFO) && !defined(CONFIG_ASSERT_NO_FILE_INFO)
  29. #define __ASSERT_LOC(test) \
  30. __ASSERT_PRINT("ASSERTION FAIL [%s] @ %s:%d\n", \
  31. Z_STRINGIFY(test), \
  32. __FILE__, __LINE__)
  33. #endif
  34. #if defined(CONFIG_ASSERT_NO_COND_INFO) && !defined(CONFIG_ASSERT_NO_FILE_INFO)
  35. #define __ASSERT_LOC(test) \
  36. __ASSERT_PRINT("ASSERTION FAIL @ %s:%d\n", \
  37. __FILE__, __LINE__)
  38. #endif
  39. #if !defined(CONFIG_ASSERT_NO_COND_INFO) && defined(CONFIG_ASSERT_NO_FILE_INFO)
  40. #define __ASSERT_LOC(test) \
  41. __ASSERT_PRINT("ASSERTION FAIL [%s]\n", \
  42. Z_STRINGIFY(test))
  43. #endif
  44. #if defined(CONFIG_ASSERT_NO_COND_INFO) && defined(CONFIG_ASSERT_NO_FILE_INFO)
  45. #define __ASSERT_LOC(test) \
  46. __ASSERT_PRINT("ASSERTION FAIL\n")
  47. #endif
  48. #ifdef __ASSERT_ON
  49. #if (__ASSERT_ON < 0) || (__ASSERT_ON > 2)
  50. #error "Invalid __ASSERT() level: must be between 0 and 2"
  51. #endif
  52. #if __ASSERT_ON
  53. #include <sys/printk.h>
  54. #ifdef __cplusplus
  55. extern "C" {
  56. #endif
  57. #ifdef CONFIG_ASSERT_NO_FILE_INFO
  58. void assert_post_action(void);
  59. #define __ASSERT_POST_ACTION() assert_post_action()
  60. #else /* CONFIG_ASSERT_NO_FILE_INFO */
  61. void assert_post_action(const char *file, unsigned int line);
  62. #define __ASSERT_POST_ACTION() assert_post_action(__FILE__, __LINE__)
  63. #endif /* CONFIG_ASSERT_NO_FILE_INFO */
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #define __ASSERT_NO_MSG(test) \
  68. do { \
  69. if (!(test)) { \
  70. __ASSERT_LOC(test); \
  71. __ASSERT_POST_ACTION(); \
  72. } \
  73. } while (false)
  74. #define __ASSERT(test, fmt, ...) \
  75. do { \
  76. if (!(test)) { \
  77. __ASSERT_LOC(test); \
  78. __ASSERT_MSG_INFO(fmt, ##__VA_ARGS__); \
  79. __ASSERT_POST_ACTION(); \
  80. } \
  81. } while (false)
  82. #define __ASSERT_EVAL(expr1, expr2, test, fmt, ...) \
  83. do { \
  84. expr2; \
  85. __ASSERT(test, fmt, ##__VA_ARGS__); \
  86. } while (false)
  87. #if (__ASSERT_ON == 1)
  88. #warning "__ASSERT() statements are ENABLED"
  89. #endif
  90. #else
  91. #define __ASSERT(test, fmt, ...) { }
  92. #define __ASSERT_EVAL(expr1, expr2, test, fmt, ...) expr1
  93. #define __ASSERT_NO_MSG(test) { }
  94. #endif
  95. #else
  96. #define __ASSERT(test, fmt, ...) { }
  97. #define __ASSERT_EVAL(expr1, expr2, test, fmt, ...) expr1
  98. #define __ASSERT_NO_MSG(test) { }
  99. #endif
  100. #endif /* ZEPHYR_INCLUDE_SYS___ASSERT_H_ */