Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
480 lines (408 loc) · 13.7 KB

SDL_assert.c

File metadata and controls

480 lines (408 loc) · 13.7 KB
 
Apr 8, 2011
Apr 8, 2011
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
20
21
22
*/
#include "SDL.h"
Jan 17, 2011
Jan 17, 2011
23
#include "SDL_atomic.h"
Jan 13, 2010
Jan 13, 2010
24
#include "SDL_assert.h"
Jun 26, 2010
Jun 26, 2010
25
#include "SDL_assert_c.h"
Jan 15, 2010
Jan 15, 2010
26
#include "video/SDL_sysvideo.h"
Jan 24, 2011
Jan 24, 2011
28
#ifdef __WIN32__
Jan 25, 2011
Jan 25, 2011
29
#include "core/windows/SDL_windows.h"
Jan 24, 2011
Jan 24, 2011
30
31
32
33
#ifndef WS_OVERLAPPEDWINDOW
#define WS_OVERLAPPEDWINDOW 0
#endif
34
35
36
#else /* fprintf, _exit(), etc. */
#include <stdio.h>
#include <stdlib.h>
Jan 13, 2010
Jan 13, 2010
37
#include <unistd.h>
Jan 13, 2010
Jan 13, 2010
40
41
42
43
44
static SDL_assert_state
SDL_PromptAssertion(const SDL_assert_data *data, void *userdata);
/*
* We keep all triggered assertions in a singly-linked list so we can
45
46
* generate a report later.
*/
Apr 19, 2011
Apr 19, 2011
47
static SDL_assert_data *triggered_assertions = NULL;
Jan 13, 2010
Jan 13, 2010
48
49
50
51
static SDL_mutex *assertion_mutex = NULL;
static SDL_AssertionHandler assertion_handler = SDL_PromptAssertion;
static void *assertion_userdata = NULL;
Jan 13, 2010
Jan 13, 2010
53
#ifdef __GNUC__
Jan 13, 2010
Jan 13, 2010
54
55
static void
debug_print(const char *fmt, ...) __attribute__((format (printf, 1, 2)));
Jan 13, 2010
Jan 13, 2010
56
57
58
59
#endif
static void
debug_print(const char *fmt, ...)
Jan 24, 2011
Jan 24, 2011
61
#ifdef __WIN32__
62
63
64
65
/* Format into a buffer for OutputDebugStringA(). */
char buf[1024];
char *startptr;
char *ptr;
Jan 24, 2011
Jan 24, 2011
66
LPTSTR tstr;
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
int len;
va_list ap;
va_start(ap, fmt);
len = (int) SDL_vsnprintf(buf, sizeof (buf), fmt, ap);
va_end(ap);
/* Visual C's vsnprintf() may not null-terminate the buffer. */
if ((len >= sizeof (buf)) || (len < 0)) {
buf[sizeof (buf) - 1] = '\0';
}
/* Write it, sorting out the Unix newlines... */
startptr = buf;
for (ptr = startptr; *ptr; ptr++) {
if (*ptr == '\n') {
*ptr = '\0';
Jan 24, 2011
Jan 24, 2011
83
84
85
86
tstr = WIN_UTF8ToString(startptr);
OutputDebugString(tstr);
SDL_free(tstr);
OutputDebugString(TEXT("\r\n"));
87
88
89
90
91
92
startptr = ptr+1;
}
}
/* catch that last piece if it didn't have a newline... */
if (startptr != ptr) {
Jan 24, 2011
Jan 24, 2011
93
94
95
tstr = WIN_UTF8ToString(startptr);
OutputDebugString(tstr);
SDL_free(tstr);
96
97
98
99
100
}
#else
/* Unix has it easy. Just dump it to stderr. */
va_list ap;
va_start(ap, fmt);
Jan 13, 2010
Jan 13, 2010
101
vfprintf(stderr, fmt, ap);
102
103
104
105
106
107
va_end(ap);
fflush(stderr);
#endif
}
Jan 24, 2011
Jan 24, 2011
108
#ifdef __WIN32__
109
110
111
112
113
114
115
116
117
118
119
120
121
static SDL_assert_state SDL_Windows_AssertChoice = SDL_ASSERTION_ABORT;
static const SDL_assert_data *SDL_Windows_AssertData = NULL;
static LRESULT CALLBACK
SDL_Assertion_WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
case WM_CREATE:
{
/* !!! FIXME: all this code stinks. */
const SDL_assert_data *data = SDL_Windows_AssertData;
char buf[1024];
Jan 24, 2011
Jan 24, 2011
122
LPTSTR tstr;
123
124
125
126
127
128
129
130
const int w = 100;
const int h = 25;
const int gap = 10;
int x = gap;
int y = 50;
int len;
int i;
static const struct {
Jan 24, 2011
Jan 24, 2011
131
LPCTSTR name;
132
133
SDL_assert_state state;
} buttons[] = {
Jan 24, 2011
Jan 24, 2011
134
135
136
137
138
{TEXT("Abort"), SDL_ASSERTION_ABORT },
{TEXT("Break"), SDL_ASSERTION_BREAK },
{TEXT("Retry"), SDL_ASSERTION_RETRY },
{TEXT("Ignore"), SDL_ASSERTION_IGNORE },
{TEXT("Always Ignore"), SDL_ASSERTION_ALWAYS_IGNORE },
139
140
141
142
143
144
145
146
147
148
149
};
len = (int) SDL_snprintf(buf, sizeof (buf),
"Assertion failure at %s (%s:%d), triggered %u time%s:\r\n '%s'",
data->function, data->filename, data->linenum,
data->trigger_count, (data->trigger_count == 1) ? "" : "s",
data->condition);
if ((len < 0) || (len >= sizeof (buf))) {
buf[sizeof (buf) - 1] = '\0';
}
Jan 24, 2011
Jan 24, 2011
150
151
tstr = WIN_UTF8ToString(buf);
CreateWindow(TEXT("STATIC"), tstr,
152
153
154
WS_VISIBLE | WS_CHILD | SS_LEFT,
x, y, 550, 100,
hwnd, (HMENU) 1, NULL, NULL);
Jan 24, 2011
Jan 24, 2011
155
SDL_free(tstr);
156
157
158
y += 110;
for (i = 0; i < (sizeof (buttons) / sizeof (buttons[0])); i++) {
Jan 24, 2011
Jan 24, 2011
159
CreateWindow(TEXT("BUTTON"), buttons[i].name,
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
WS_VISIBLE | WS_CHILD,
x, y, w, h,
hwnd, (HMENU) buttons[i].state, NULL, NULL);
x += w + gap;
}
break;
}
case WM_COMMAND:
SDL_Windows_AssertChoice = ((SDL_assert_state) (LOWORD(wParam)));
SDL_Windows_AssertData = NULL;
break;
case WM_DESTROY:
SDL_Windows_AssertData = NULL;
break;
}
return DefWindowProc(hwnd, msg, wParam, lParam);
}
static SDL_assert_state
SDL_PromptAssertion_windows(const SDL_assert_data *data)
{
HINSTANCE hInstance = 0; /* !!! FIXME? */
HWND hwnd;
MSG msg;
WNDCLASS wc = {0};
SDL_Windows_AssertChoice = SDL_ASSERTION_ABORT;
SDL_Windows_AssertData = data;
wc.lpszClassName = TEXT("SDL_assert");
wc.hInstance = hInstance ;
wc.hbrBackground = GetSysColorBrush(COLOR_3DFACE);
wc.lpfnWndProc = SDL_Assertion_WndProc;
wc.hCursor = LoadCursor(0, IDC_ARROW);
RegisterClass(&wc);
hwnd = CreateWindow(wc.lpszClassName, TEXT("SDL assertion failure"),
WS_OVERLAPPEDWINDOW | WS_VISIBLE,
150, 150, 570, 260, 0, 0, hInstance, 0);
while (GetMessage(&msg, NULL, 0, 0) && (SDL_Windows_AssertData != NULL)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
DestroyWindow(hwnd);
UnregisterClass(wc.lpszClassName, hInstance);
return SDL_Windows_AssertChoice;
}
#endif
static void SDL_AddAssertionToReport(SDL_assert_data *data)
{
/* (data) is always a static struct defined with the assert macros, so
we don't have to worry about copying or allocating them. */
Apr 19, 2011
Apr 19, 2011
219
220
data->trigger_count++;
if (data->trigger_count == 1) { /* not yet added? */
221
222
223
224
225
data->next = triggered_assertions;
triggered_assertions = data;
}
}
Jan 13, 2010
Jan 13, 2010
226
227
228
static void SDL_GenerateAssertionReport(void)
{
Apr 19, 2011
Apr 19, 2011
229
const SDL_assert_data *item = triggered_assertions;
Jan 13, 2010
Jan 13, 2010
231
/* only do this if the app hasn't assigned an assertion handler. */
Apr 19, 2011
Apr 19, 2011
232
if ((item != NULL) && (assertion_handler != SDL_PromptAssertion)) {
233
234
235
debug_print("\n\nSDL assertion report.\n");
debug_print("All SDL assertions between last init/quit:\n\n");
Apr 19, 2011
Apr 19, 2011
236
while (item != NULL) {
237
238
239
240
241
242
243
244
245
246
247
248
249
debug_print(
"'%s'\n"
" * %s (%s:%d)\n"
" * triggered %u time%s.\n"
" * always ignore: %s.\n",
item->condition, item->function, item->filename,
item->linenum, item->trigger_count,
(item->trigger_count == 1) ? "" : "s",
item->always_ignore ? "yes" : "no");
item = item->next;
}
debug_print("\n");
Jan 13, 2010
Jan 13, 2010
250
SDL_ResetAssertionReport();
Jan 13, 2010
Jan 13, 2010
254
static void SDL_ExitProcess(int exitcode)
Jan 24, 2011
Jan 24, 2011
256
#ifdef __WIN32__
257
258
ExitProcess(42);
#else
Jan 13, 2010
Jan 13, 2010
259
_exit(42);
Jan 13, 2010
Jan 13, 2010
262
263
264
265
266
267
268
static void SDL_AbortAssertion(void)
{
SDL_Quit();
SDL_ExitProcess(42);
}
Jan 13, 2010
Jan 13, 2010
270
271
static SDL_assert_state
SDL_PromptAssertion(const SDL_assert_data *data, void *userdata)
272
273
{
const char *envr;
Jan 13, 2010
Jan 13, 2010
274
SDL_assert_state state = SDL_ASSERTION_ABORT;
Jan 21, 2010
Jan 21, 2010
275
SDL_Window *window;
Jan 13, 2010
Jan 13, 2010
277
278
(void) userdata; /* unused in default handler. */
279
280
281
282
283
284
285
286
debug_print("\n\n"
"Assertion failure at %s (%s:%d), triggered %u time%s:\n"
" '%s'\n"
"\n",
data->function, data->filename, data->linenum,
data->trigger_count, (data->trigger_count == 1) ? "" : "s",
data->condition);
Jan 13, 2010
Jan 13, 2010
287
/* let env. variable override, so unit tests won't block in a GUI. */
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
envr = SDL_getenv("SDL_ASSERT");
if (envr != NULL) {
if (SDL_strcmp(envr, "abort") == 0) {
return SDL_ASSERTION_ABORT;
} else if (SDL_strcmp(envr, "break") == 0) {
return SDL_ASSERTION_BREAK;
} else if (SDL_strcmp(envr, "retry") == 0) {
return SDL_ASSERTION_RETRY;
} else if (SDL_strcmp(envr, "ignore") == 0) {
return SDL_ASSERTION_IGNORE;
} else if (SDL_strcmp(envr, "always_ignore") == 0) {
return SDL_ASSERTION_ALWAYS_IGNORE;
} else {
return SDL_ASSERTION_ABORT; /* oh well. */
}
}
Jan 13, 2010
Jan 13, 2010
305
306
307
308
309
310
/* Leave fullscreen mode, if possible (scary!) */
window = SDL_GetFocusWindow();
if (window) {
if (SDL_GetWindowFlags(window) & SDL_WINDOW_FULLSCREEN) {
SDL_MinimizeWindow(window);
} else {
Jan 13, 2010
Jan 13, 2010
311
/* !!! FIXME: ungrab the input if we're not fullscreen? */
Jan 13, 2010
Jan 13, 2010
312
313
314
315
316
/* No need to mess with the window */
window = 0;
}
}
317
318
/* platform-specific UI... */
Jan 24, 2011
Jan 24, 2011
319
#ifdef __WIN32__
Jan 13, 2010
Jan 13, 2010
320
state = SDL_PromptAssertion_windows(data);
Jan 21, 2010
Jan 21, 2010
322
#elif __MACOSX__
323
324
/* This has to be done in an Objective-C (*.m) file, so we call out. */
extern SDL_assert_state SDL_PromptAssertion_cocoa(const SDL_assert_data *);
Jan 13, 2010
Jan 13, 2010
325
state = SDL_PromptAssertion_cocoa(data);
Jan 13, 2010
Jan 13, 2010
327
#else
328
329
330
331
332
333
/* this is a little hacky. */
for ( ; ; ) {
char buf[32];
fprintf(stderr, "Abort/Break/Retry/Ignore/AlwaysIgnore? [abriA] : ");
fflush(stderr);
if (fgets(buf, sizeof (buf), stdin) == NULL) {
Jan 13, 2010
Jan 13, 2010
334
break;
335
336
337
}
if (SDL_strcmp(buf, "a") == 0) {
Jan 13, 2010
Jan 13, 2010
338
339
state = SDL_ASSERTION_ABORT;
break;
Jun 3, 2011
Jun 3, 2011
340
} else if (SDL_strcmp(buf, "b") == 0) {
Jan 13, 2010
Jan 13, 2010
341
342
state = SDL_ASSERTION_BREAK;
break;
Jun 3, 2011
Jun 3, 2011
343
} else if (SDL_strcmp(buf, "r") == 0) {
Jan 13, 2010
Jan 13, 2010
344
345
state = SDL_ASSERTION_RETRY;
break;
Jun 3, 2011
Jun 3, 2011
346
} else if (SDL_strcmp(buf, "i") == 0) {
Jan 13, 2010
Jan 13, 2010
347
348
state = SDL_ASSERTION_IGNORE;
break;
Jun 3, 2011
Jun 3, 2011
349
} else if (SDL_strcmp(buf, "A") == 0) {
Jan 13, 2010
Jan 13, 2010
350
351
state = SDL_ASSERTION_ALWAYS_IGNORE;
break;
352
353
354
355
}
}
#endif
Jan 13, 2010
Jan 13, 2010
356
357
358
359
360
361
/* Re-enter fullscreen mode */
if (window) {
SDL_RestoreWindow(window);
}
return state;
362
363
364
365
}
SDL_assert_state
Jan 13, 2010
Jan 13, 2010
366
367
SDL_ReportAssertion(SDL_assert_data *data, const char *func, const char *file,
int line)
Jan 13, 2010
Jan 13, 2010
369
static int assertion_running = 0;
Jan 13, 2010
Jan 13, 2010
370
static SDL_SpinLock spinlock = 0;
Jan 13, 2010
Jan 13, 2010
371
SDL_assert_state state = SDL_ASSERTION_IGNORE;
Jan 13, 2010
Jan 13, 2010
373
374
375
376
377
378
379
380
381
382
SDL_AtomicLock(&spinlock);
if (assertion_mutex == NULL) { /* never called SDL_Init()? */
assertion_mutex = SDL_CreateMutex();
if (assertion_mutex == NULL) {
SDL_AtomicUnlock(&spinlock);
return SDL_ASSERTION_IGNORE; /* oh well, I guess. */
}
}
SDL_AtomicUnlock(&spinlock);
383
384
385
386
387
388
389
if (SDL_LockMutex(assertion_mutex) < 0) {
return SDL_ASSERTION_IGNORE; /* oh well, I guess. */
}
/* doing this because Visual C is upset over assigning in the macro. */
if (data->trigger_count == 0) {
data->function = func;
Jan 13, 2010
Jan 13, 2010
390
391
data->filename = file;
data->linenum = line;
392
393
394
395
}
SDL_AddAssertionToReport(data);
Jan 13, 2010
Jan 13, 2010
396
397
398
399
400
401
402
403
404
assertion_running++;
if (assertion_running > 1) { /* assert during assert! Abort. */
if (assertion_running == 2) {
SDL_AbortAssertion();
} else if (assertion_running == 3) { /* Abort asserted! */
SDL_ExitProcess(42);
} else {
while (1) { /* do nothing but spin; what else can you do?! */ }
}
Jan 13, 2010
Jan 13, 2010
407
if (!data->always_ignore) {
Jan 13, 2010
Jan 13, 2010
408
state = assertion_handler(data, assertion_userdata);
Jan 13, 2010
Jan 13, 2010
409
}
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
switch (state)
{
case SDL_ASSERTION_ABORT:
SDL_AbortAssertion();
return SDL_ASSERTION_IGNORE; /* shouldn't return, but oh well. */
case SDL_ASSERTION_ALWAYS_IGNORE:
state = SDL_ASSERTION_IGNORE;
data->always_ignore = 1;
break;
case SDL_ASSERTION_IGNORE:
case SDL_ASSERTION_RETRY:
case SDL_ASSERTION_BREAK:
break; /* macro handles these. */
}
Jan 13, 2010
Jan 13, 2010
428
assertion_running--;
429
430
431
432
433
434
435
436
SDL_UnlockMutex(assertion_mutex);
return state;
}
int SDL_AssertionsInit(void)
{
Jan 13, 2010
Jan 13, 2010
437
/* this is a no-op at the moment. */
438
439
440
441
442
443
return 0;
}
void SDL_AssertionsQuit(void)
{
SDL_GenerateAssertionReport();
Jan 13, 2010
Jan 13, 2010
444
445
446
447
if (assertion_mutex != NULL) {
SDL_DestroyMutex(assertion_mutex);
assertion_mutex = NULL;
}
Jan 13, 2010
Jan 13, 2010
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
}
void SDL_SetAssertionHandler(SDL_AssertionHandler handler, void *userdata)
{
if (handler != NULL) {
assertion_handler = handler;
assertion_userdata = userdata;
} else {
assertion_handler = SDL_PromptAssertion;
assertion_userdata = NULL;
}
}
const SDL_assert_data *SDL_GetAssertionReport(void)
{
return triggered_assertions;
}
void SDL_ResetAssertionReport(void)
{
SDL_assert_data *next = NULL;
Apr 19, 2011
Apr 19, 2011
469
470
SDL_assert_data *item;
for (item = triggered_assertions; item != NULL; item = next) {
Jan 13, 2010
Jan 13, 2010
471
472
473
474
475
476
next = (SDL_assert_data *) item->next;
item->always_ignore = SDL_FALSE;
item->trigger_count = 0;
item->next = NULL;
}
Apr 19, 2011
Apr 19, 2011
477
triggered_assertions = NULL;
478
479
480
}
/* vi: set ts=4 sw=4 expandtab: */