36 lines
1.4 KiB
C++
36 lines
1.4 KiB
C++
/*
|
|
* --------------------------------------------------------------------------
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
* <p-sam@d3vs.net>, <natinusala@gmail.com>, <m4x@m4xw.net>
|
|
* wrote this file. As long as you retain this notice you can do whatever you
|
|
* want with this stuff. If you meet any of us some day, and you think this
|
|
* stuff is worth it, you can buy us a beer in return. - The sys-clk authors
|
|
* --------------------------------------------------------------------------
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <switch.h>
|
|
#include <stdexcept>
|
|
|
|
#define ERROR_THROW(format, ...) Errors::ThrowException(format "\n in %s:%u", ##__VA_ARGS__, __FILE__, __LINE__)
|
|
#define ERROR_RESULT_THROW(rc, format, ...) ERROR_THROW(format "\n RC: [0x%x] %04d-%04d", ##__VA_ARGS__, rc, R_MODULE(rc), R_DESCRIPTION(rc))
|
|
#define ASSERT_RESULT_OK(rc, format, ...) \
|
|
if (R_FAILED(rc)) \
|
|
{ \
|
|
ERROR_RESULT_THROW(rc, "ASSERT_RESULT_OK: " format, ##__VA_ARGS__); \
|
|
}
|
|
#define ASSERT_ENUM_VALID(n, v) \
|
|
if(!SYSCLK_ENUM_VALID(n, v)) { \
|
|
ERROR_THROW("No such %s: %u", #n, v); \
|
|
}
|
|
|
|
class Errors
|
|
{
|
|
public:
|
|
static void ThrowException(const char* format, ...);
|
|
|
|
protected:
|
|
static const char* FormatMessage(const char* format, va_list args);
|
|
};
|