creport: Solidify main() logic.

This commit is contained in:
Michael Scire
2018-06-25 01:58:44 -06:00
parent 851d21a276
commit 4e7fcc1a50
3 changed files with 49 additions and 7 deletions

View File

@@ -4,6 +4,20 @@
#include "creport_debug_types.hpp"
enum class CrashReportResult : Result {
UndefinedInstruction = 0x00A8,
InstructionAbort = 0x02A8,
DataAbort = 0x04A8,
AlignmentFault = 0x06A8,
DebuggerAttached = 0x08A8,
BreakPoint = 0x0AA8,
UserBreak = 0x0CA8,
DebuggerBreak = 0x0EA8,
BadSvc = 0x10A8,
UnknownNine = 0x12A8,
IncompleteReport = 0xC6A8,
};
class CrashReport {
private:
Handle debug_handle;
@@ -16,15 +30,20 @@ class CrashReport {
u64 userdata_5x_size;
public:
CrashReport() : debug_handle(INVALID_HANDLE), result(0xC6A8), process_info({0}) { }
CrashReport() : debug_handle(INVALID_HANDLE), result((Result)CrashReportResult::IncompleteReport), process_info({0}) { }
void BuildReport(u64 pid, bool has_extra_info);
void SaveReport();
void ProcessExceptions();
Result GetResult() {
return this->result;
}
bool WasSuccessful() {
return this->result != (Result)CrashReportResult::IncompleteReport;
}
bool OpenProcess(u64 pid) {
return R_SUCCEEDED(svcDebugActiveProcess(&debug_handle, pid));
}
@@ -47,6 +66,10 @@ class CrashReport {
bool Is64Bit() {
return (process_info.flags & 0x01) != 0;
}
bool IsUserBreak() {
return this->result == (Result)CrashReportResult::UserBreak;
}
private:
void HandleAttachProcess(DebugEventInfo &d);
void HandleException(DebugEventInfo &d);