mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
feat(error): add assertion and error related functions
This commit is contained in:
parent
8f5fe40e05
commit
34980502b3
2 changed files with 90 additions and 0 deletions
62
storm/Error.cpp
Normal file
62
storm/Error.cpp
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
#include "Error.hpp"
|
||||||
|
#include <cstdarg>
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
|
void SErrDisplayAppFatal(const char* format, ...) {
|
||||||
|
va_list args;
|
||||||
|
va_start(args, format);
|
||||||
|
vprintf(format, args);
|
||||||
|
printf("\n");
|
||||||
|
va_end(args);
|
||||||
|
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t SErrDisplayError(uint32_t errorcode, const char* filename, int32_t linenumber, const char* description, int32_t recoverable, uint32_t exitcode, uint32_t a7) {
|
||||||
|
// TODO
|
||||||
|
|
||||||
|
printf("\n=========================================================\n");
|
||||||
|
|
||||||
|
if (linenumber == -5) {
|
||||||
|
printf("Exception Raised!\n\n");
|
||||||
|
|
||||||
|
printf(" App: %s\n", "GenericBlizzardApp");
|
||||||
|
|
||||||
|
if (errorcode != 0x85100000) {
|
||||||
|
printf(" Error Code: 0x%08X\n", errorcode);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO output time
|
||||||
|
|
||||||
|
printf(" Error: %s\n\n", description);
|
||||||
|
} else {
|
||||||
|
printf("Assertion Failed!\n\n");
|
||||||
|
|
||||||
|
printf(" App: %s\n", "GenericBlizzardApp");
|
||||||
|
printf(" File: %s\n", filename);
|
||||||
|
printf(" Line: %d\n", linenumber);
|
||||||
|
|
||||||
|
if (errorcode != 0x85100000) {
|
||||||
|
printf(" Error Code: 0x%08X\n", errorcode);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO output time
|
||||||
|
|
||||||
|
printf(" Assertion: %s\n", description);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (recoverable) {
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
exit(exitcode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void SErrPrepareAppFatal(const char* filename, int32_t linenumber) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
void SErrSetLastError(uint32_t errorcode) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
28
storm/Error.hpp
Normal file
28
storm/Error.hpp
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
#ifndef STORM_ERROR_HPP
|
||||||
|
#define STORM_ERROR_HPP
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
#if defined(NDEBUG)
|
||||||
|
#define STORM_ASSERT(x) \
|
||||||
|
if (!(x)) { \
|
||||||
|
SErrSetLastError(0x57); \
|
||||||
|
return 0; \
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#define STORM_ASSERT(x) \
|
||||||
|
if (!(x)) { \
|
||||||
|
SErrPrepareAppFatal(__FILE__, __LINE__); \
|
||||||
|
SErrDisplayAppFatal(#x); \
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void SErrDisplayAppFatal(const char* format, ...);
|
||||||
|
|
||||||
|
int32_t SErrDisplayError(uint32_t errorcode, const char* filename, int32_t linenumber, const char* description, int32_t recoverable, uint32_t exitcode, uint32_t a7);
|
||||||
|
|
||||||
|
void SErrPrepareAppFatal(const char* filename, int32_t linenumber);
|
||||||
|
|
||||||
|
void SErrSetLastError(uint32_t errorcode);
|
||||||
|
|
||||||
|
#endif
|
||||||
Loading…
Add table
Add a link
Reference in a new issue