AuroraRuntime/Include/Aurora/Debug/Debug.hpp

66 lines
1.6 KiB
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Debug.hpp
Date: 2021-6-9
Author: Reece
***/
#pragma once
#include <Aurora/Console/Console.hpp>
#include "StackTrace.hpp"
#include "EFailureCategory.hpp"
2021-06-27 21:25:29 +00:00
namespace Aurora::Debug
{
using OSError_t = AuPair<AuUInt64, AuString>;
2021-06-27 21:25:29 +00:00
/**
Retrieves a print-friendly callstack of the last trap (either innocent exception or fatal mem access) <br>
On Win32, this information is always available
2021-06-27 21:25:29 +00:00
*/
AUKN_SYM AuString GetLastErrorStack();
AUKN_SYM StackTrace GetLastStackTrace();
2021-06-27 21:25:29 +00:00
/**
Retrieve information about the last exception.
On Win32, this information is always available
2021-06-27 21:25:29 +00:00
*/
AUKN_SYM AuString GetLastException();
/**
Retrieve the last system error (Example -> Win32, GetLastError())
2021-06-27 21:25:29 +00:00
*/
AUKN_SYM OSError_t GetLastSystemMessage();
2021-06-27 21:25:29 +00:00
/**
Prints the current error state of the thread including: <br>
Current System Error, <br>
Current Runtime Error, <br>
Last Exception Call Stack, <br>
Last major ring notification
*/
AUKN_SYM void PrintError();
AUKN_SYM void CheckErrors();
2021-06-27 21:25:29 +00:00
AUKN_SYM StackTrace GetStackTrace();
2021-06-27 21:25:29 +00:00
/**
Immediately terminates the process.
May attempt some hardened telemetry debug ops
*/
AUKN_SYM AU_NORETURN void Panic();
2021-09-06 10:58:08 +00:00
AUKN_SYM void DebugBreak();
2021-06-27 21:25:29 +00:00
}
#include "SysPanic.hpp"
#include "SysAssertions.hpp"
#include "SysErrors.hpp"