SDL_assert.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2023 Sam Lantinga <[email protected]>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_assert.h
  20. *
  21. * \brief Header file for assertion SDL API functions
  22. */
  23. #ifndef SDL_assert_h_
  24. #define SDL_assert_h_
  25. #include <SDL3/SDL_stdinc.h>
  26. #include <SDL3/SDL_begin_code.h>
  27. /* Set up for C function definitions, even when using C++ */
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. #ifndef SDL_ASSERT_LEVEL
  32. #ifdef SDL_DEFAULT_ASSERT_LEVEL
  33. #define SDL_ASSERT_LEVEL SDL_DEFAULT_ASSERT_LEVEL
  34. #elif defined(_DEBUG) || defined(DEBUG) || \
  35. (defined(__GNUC__) && !defined(__OPTIMIZE__))
  36. #define SDL_ASSERT_LEVEL 2
  37. #else
  38. #define SDL_ASSERT_LEVEL 1
  39. #endif
  40. #endif /* SDL_ASSERT_LEVEL */
  41. /*
  42. These are macros and not first class functions so that the debugger breaks
  43. on the assertion line and not in some random guts of SDL, and so each
  44. assert can have unique static variables associated with it.
  45. */
  46. #ifdef _MSC_VER
  47. /* Don't include intrin.h here because it contains C++ code */
  48. extern void __cdecl __debugbreak(void);
  49. #define SDL_TriggerBreakpoint() __debugbreak()
  50. #elif defined(ANDROID)
  51. #include <assert.h>
  52. #define SDL_TriggerBreakpoint() assert(0)
  53. #elif SDL_HAS_BUILTIN(__builtin_debugtrap)
  54. #define SDL_TriggerBreakpoint() __builtin_debugtrap()
  55. #elif (defined(__GNUC__) || defined(__clang__)) && (defined(__i386__) || defined(__x86_64__))
  56. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "int $3\n\t" )
  57. #elif (defined(__GNUC__) || defined(__clang__)) && defined(__riscv)
  58. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "ebreak\n\t" )
  59. #elif ( defined(__APPLE__) && (defined(__arm64__) || defined(__aarch64__)) ) /* this might work on other ARM targets, but this is a known quantity... */
  60. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "brk #22\n\t" )
  61. #elif defined(__APPLE__) && defined(__arm__)
  62. #define SDL_TriggerBreakpoint() __asm__ __volatile__ ( "bkpt #22\n\t" )
  63. #elif defined(__386__) && defined(__WATCOMC__)
  64. #define SDL_TriggerBreakpoint() { _asm { int 0x03 } }
  65. #elif defined(HAVE_SIGNAL_H) && !defined(__WATCOMC__)
  66. #include <signal.h>
  67. #define SDL_TriggerBreakpoint() raise(SIGTRAP)
  68. #else
  69. /* How do we trigger breakpoints on this platform? */
  70. #define SDL_TriggerBreakpoint()
  71. #endif
  72. #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 supports __func__ as a standard. */
  73. # define SDL_FUNCTION __func__
  74. #elif ((defined(__GNUC__) && (__GNUC__ >= 2)) || defined(_MSC_VER) || defined (__WATCOMC__))
  75. # define SDL_FUNCTION __FUNCTION__
  76. #else
  77. # define SDL_FUNCTION "???"
  78. #endif
  79. #define SDL_FILE __FILE__
  80. #define SDL_LINE __LINE__
  81. /*
  82. sizeof (x) makes the compiler still parse the expression even without
  83. assertions enabled, so the code is always checked at compile time, but
  84. doesn't actually generate code for it, so there are no side effects or
  85. expensive checks at run time, just the constant size of what x WOULD be,
  86. which presumably gets optimized out as unused.
  87. This also solves the problem of...
  88. int somevalue = blah();
  89. SDL_assert(somevalue == 1);
  90. ...which would cause compiles to complain that somevalue is unused if we
  91. disable assertions.
  92. */
  93. /* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking
  94. this condition isn't constant. And looks like an owl's face! */
  95. #ifdef _MSC_VER /* stupid /W4 warnings. */
  96. #define SDL_NULL_WHILE_LOOP_CONDITION (0,0)
  97. #else
  98. #define SDL_NULL_WHILE_LOOP_CONDITION (0)
  99. #endif
  100. #define SDL_disabled_assert(condition) \
  101. do { (void) sizeof ((condition)); } while (SDL_NULL_WHILE_LOOP_CONDITION)
  102. typedef enum
  103. {
  104. SDL_ASSERTION_RETRY, /**< Retry the assert immediately. */
  105. SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */
  106. SDL_ASSERTION_ABORT, /**< Terminate the program. */
  107. SDL_ASSERTION_IGNORE, /**< Ignore the assert. */
  108. SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */
  109. } SDL_AssertState;
  110. typedef struct SDL_AssertData
  111. {
  112. int always_ignore;
  113. unsigned int trigger_count;
  114. const char *condition;
  115. const char *filename;
  116. int linenum;
  117. const char *function;
  118. const struct SDL_AssertData *next;
  119. } SDL_AssertData;
  120. /**
  121. * Never call this directly.
  122. *
  123. * Use the SDL_assert* macros.
  124. *
  125. * \param data assert data structure
  126. * \param func function name
  127. * \param file file name
  128. * \param line line number
  129. * \returns assert state
  130. *
  131. * \since This function is available since SDL 3.0.0.
  132. */
  133. extern DECLSPEC SDL_AssertState SDLCALL SDL_ReportAssertion(SDL_AssertData *data,
  134. const char *func,
  135. const char *file, int line)
  136. #ifdef __clang__
  137. #if __has_feature(attribute_analyzer_noreturn)
  138. __attribute__((analyzer_noreturn))
  139. #endif
  140. #endif
  141. ;
  142. /* Previous 'analyzer_noreturn' attribute tells Clang's static analysis that we're a custom assert function,
  143. and that the analyzer should assume the condition was always true past this
  144. SDL_assert test. */
  145. /* Define the trigger breakpoint call used in asserts */
  146. #ifndef SDL_AssertBreakpoint
  147. #if defined(ANDROID) && defined(assert)
  148. /* Define this as empty in case assert() is defined as SDL_assert */
  149. #define SDL_AssertBreakpoint()
  150. #else
  151. #define SDL_AssertBreakpoint() SDL_TriggerBreakpoint()
  152. #endif
  153. #endif /* !SDL_AssertBreakpoint */
  154. /* the do {} while(0) avoids dangling else problems:
  155. if (x) SDL_assert(y); else blah();
  156. ... without the do/while, the "else" could attach to this macro's "if".
  157. We try to handle just the minimum we need here in a macro...the loop,
  158. the static vars, and break points. The heavy lifting is handled in
  159. SDL_ReportAssertion(), in SDL_assert.c.
  160. */
  161. #define SDL_enabled_assert(condition) \
  162. do { \
  163. while ( !(condition) ) { \
  164. static struct SDL_AssertData sdl_assert_data = { 0, 0, #condition, 0, 0, 0, 0 }; \
  165. const SDL_AssertState sdl_assert_state = SDL_ReportAssertion(&sdl_assert_data, SDL_FUNCTION, SDL_FILE, SDL_LINE); \
  166. if (sdl_assert_state == SDL_ASSERTION_RETRY) { \
  167. continue; /* go again. */ \
  168. } else if (sdl_assert_state == SDL_ASSERTION_BREAK) { \
  169. SDL_AssertBreakpoint(); \
  170. } \
  171. break; /* not retrying. */ \
  172. } \
  173. } while (SDL_NULL_WHILE_LOOP_CONDITION)
  174. /* Enable various levels of assertions. */
  175. #if SDL_ASSERT_LEVEL == 0 /* assertions disabled */
  176. # define SDL_assert(condition) SDL_disabled_assert(condition)
  177. # define SDL_assert_release(condition) SDL_disabled_assert(condition)
  178. # define SDL_assert_paranoid(condition) SDL_disabled_assert(condition)
  179. #elif SDL_ASSERT_LEVEL == 1 /* release settings. */
  180. # define SDL_assert(condition) SDL_disabled_assert(condition)
  181. # define SDL_assert_release(condition) SDL_enabled_assert(condition)
  182. # define SDL_assert_paranoid(condition) SDL_disabled_assert(condition)
  183. #elif SDL_ASSERT_LEVEL == 2 /* normal settings. */
  184. # define SDL_assert(condition) SDL_enabled_assert(condition)
  185. # define SDL_assert_release(condition) SDL_enabled_assert(condition)
  186. # define SDL_assert_paranoid(condition) SDL_disabled_assert(condition)
  187. #elif SDL_ASSERT_LEVEL == 3 /* paranoid settings. */
  188. # define SDL_assert(condition) SDL_enabled_assert(condition)
  189. # define SDL_assert_release(condition) SDL_enabled_assert(condition)
  190. # define SDL_assert_paranoid(condition) SDL_enabled_assert(condition)
  191. #else
  192. # error Unknown assertion level.
  193. #endif
  194. /* this assertion is never disabled at any level. */
  195. #define SDL_assert_always(condition) SDL_enabled_assert(condition)
  196. /**
  197. * A callback that fires when an SDL assertion fails.
  198. *
  199. * \param data a pointer to the SDL_AssertData structure corresponding to the
  200. * current assertion
  201. * \param userdata what was passed as `userdata` to SDL_SetAssertionHandler()
  202. * \returns an SDL_AssertState value indicating how to handle the failure.
  203. */
  204. typedef SDL_AssertState (SDLCALL *SDL_AssertionHandler)(
  205. const SDL_AssertData* data, void* userdata);
  206. /**
  207. * Set an application-defined assertion handler.
  208. *
  209. * This function allows an application to show its own assertion UI and/or
  210. * force the response to an assertion failure. If the application doesn't
  211. * provide this, SDL will try to do the right thing, popping up a
  212. * system-specific GUI dialog, and probably minimizing any fullscreen windows.
  213. *
  214. * This callback may fire from any thread, but it runs wrapped in a mutex, so
  215. * it will only fire from one thread at a time.
  216. *
  217. * This callback is NOT reset to SDL's internal handler upon SDL_Quit()!
  218. *
  219. * \param handler the SDL_AssertionHandler function to call when an assertion
  220. * fails or NULL for the default handler
  221. * \param userdata a pointer that is passed to `handler`
  222. *
  223. * \since This function is available since SDL 3.0.0.
  224. *
  225. * \sa SDL_GetAssertionHandler
  226. */
  227. extern DECLSPEC void SDLCALL SDL_SetAssertionHandler(
  228. SDL_AssertionHandler handler,
  229. void *userdata);
  230. /**
  231. * Get the default assertion handler.
  232. *
  233. * This returns the function pointer that is called by default when an
  234. * assertion is triggered. This is an internal function provided by SDL, that
  235. * is used for assertions when SDL_SetAssertionHandler() hasn't been used to
  236. * provide a different function.
  237. *
  238. * \returns the default SDL_AssertionHandler that is called when an assert
  239. * triggers.
  240. *
  241. * \since This function is available since SDL 3.0.0.
  242. *
  243. * \sa SDL_GetAssertionHandler
  244. */
  245. extern DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetDefaultAssertionHandler(void);
  246. /**
  247. * Get the current assertion handler.
  248. *
  249. * This returns the function pointer that is called when an assertion is
  250. * triggered. This is either the value last passed to
  251. * SDL_SetAssertionHandler(), or if no application-specified function is set,
  252. * is equivalent to calling SDL_GetDefaultAssertionHandler().
  253. *
  254. * The parameter `puserdata` is a pointer to a void*, which will store the
  255. * "userdata" pointer that was passed to SDL_SetAssertionHandler(). This value
  256. * will always be NULL for the default handler. If you don't care about this
  257. * data, it is safe to pass a NULL pointer to this function to ignore it.
  258. *
  259. * \param puserdata pointer which is filled with the "userdata" pointer that
  260. * was passed to SDL_SetAssertionHandler()
  261. * \returns the SDL_AssertionHandler that is called when an assert triggers.
  262. *
  263. * \since This function is available since SDL 3.0.0.
  264. *
  265. * \sa SDL_SetAssertionHandler
  266. */
  267. extern DECLSPEC SDL_AssertionHandler SDLCALL SDL_GetAssertionHandler(void **puserdata);
  268. /**
  269. * Get a list of all assertion failures.
  270. *
  271. * This function gets all assertions triggered since the last call to
  272. * SDL_ResetAssertionReport(), or the start of the program.
  273. *
  274. * The proper way to examine this data looks something like this:
  275. *
  276. * ```c
  277. * const SDL_AssertData *item = SDL_GetAssertionReport();
  278. * while (item) {
  279. * printf("'%s', %s (%s:%d), triggered %u times, always ignore: %s.\\n",
  280. * item->condition, item->function, item->filename,
  281. * item->linenum, item->trigger_count,
  282. * item->always_ignore ? "yes" : "no");
  283. * item = item->next;
  284. * }
  285. * ```
  286. *
  287. * \returns a list of all failed assertions or NULL if the list is empty. This
  288. * memory should not be modified or freed by the application.
  289. *
  290. * \since This function is available since SDL 3.0.0.
  291. *
  292. * \sa SDL_ResetAssertionReport
  293. */
  294. extern DECLSPEC const SDL_AssertData * SDLCALL SDL_GetAssertionReport(void);
  295. /**
  296. * Clear the list of all assertion failures.
  297. *
  298. * This function will clear the list of all assertions triggered up to that
  299. * point. Immediately following this call, SDL_GetAssertionReport will return
  300. * no items. In addition, any previously-triggered assertions will be reset to
  301. * a trigger_count of zero, and their always_ignore state will be false.
  302. *
  303. * \since This function is available since SDL 3.0.0.
  304. *
  305. * \sa SDL_GetAssertionReport
  306. */
  307. extern DECLSPEC void SDLCALL SDL_ResetAssertionReport(void);
  308. /* Ends C function definitions when using C++ */
  309. #ifdef __cplusplus
  310. }
  311. #endif
  312. #include <SDL3/SDL_close_code.h>
  313. #endif /* SDL_assert_h_ */