From a111150e7e6c4da0d075b3d07cc681eb767c0fc9 Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 15 Feb 2022 12:49:21 +0100 Subject: [PATCH] Added variadic macros to be used with the new stream like logging api. --- core/error_macros.h | 268 ++++++++++++++++++++++++++++---------------- 1 file changed, 171 insertions(+), 97 deletions(-) diff --git a/core/error_macros.h b/core/error_macros.h index 0b98a36..feb1491 100644 --- a/core/error_macros.h +++ b/core/error_macros.h @@ -2,13 +2,13 @@ #define ERROR_MACROS_H #include "core/log/logger.h" +#include "typedefs.h" // Based on Godot Engine's error_macros.h // MIT License // Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. // Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). - #ifdef _MSC_VER #define GENERATE_TRAP \ __debugbreak(); \ @@ -19,124 +19,198 @@ #define GENERATE_TRAP __builtin_trap(); #endif +// template methods for the variadic log macros. Add more as needed. +template +_FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0) { + str->append(p0); +} + +template +_FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1) { + str->append(p0); + str->push_back(' '); + str->append(p1); +} + +template +_FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1, C p2) { + str->append(p0); + str->push_back(' '); + str->append(p1); + str->push_back(' '); + str->append(p2); +} + +template +_FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1, C p2, D p3) { + str->append(p0); + str->push_back(' '); + str->append(p1); + str->push_back(' '); + str->append(p2); + str->push_back(' '); + str->append(p3); +} + +template +_FORCE_INLINE_ void _RLOG_MACRO_TEMPLATE_FUNC(STR str, A p0, B p1, C p2, D p3, E p4) { + str->append(p0); + str->push_back(' '); + str->append(p1); + str->push_back(' '); + str->append(p2); + str->push_back(' '); + str->append(p3); + str->push_back(' '); + str->append(p4); +} + #define RLOG_TRACE(str) \ - RLogger::log_trace(__FUNCTION__, __FILE__, __LINE__, str); + RLogger::log_trace(__FUNCTION__, __FILE__, __LINE__, str); + +#define RLOG_TRACEP(...) \ + { \ + String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \ + _RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \ + RLogger::log_ret_ptr(_rlogger_string_ptr); \ + } #define RLOG_MSG(str) \ - RLogger::log_message(__FUNCTION__, __FILE__, __LINE__, str); + RLogger::log_message(__FUNCTION__, __FILE__, __LINE__, str); + +#define RLOG_MSGP(...) \ + { \ + String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \ + _RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \ + RLogger::log_ret_ptr(_rlogger_string_ptr); \ + } #define RLOG_WARN(str) \ - RLogger::log_warning(__FUNCTION__, __FILE__, __LINE__, str); + RLogger::log_warning(__FUNCTION__, __FILE__, __LINE__, str); + +#define RLOG_WARNP(...) \ + { \ + String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \ + _RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \ + RLogger::log_ret_ptr(_rlogger_string_ptr); \ + } #define RLOG_ERR(str) \ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, str); + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, str); -#define ERR_FAIL_MSG(msg) \ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ - return; +#define RLOG_ERRP(...) \ + { \ + String *_rlogger_string_ptr = RLogger::get_trace_string_ptr(__FUNCTION__, __FILE__, __LINE__); \ + _RLOG_MACRO_TEMPLATE_FUNC(_rlogger_string_ptr, __VA_ARGS__); \ + RLogger::log_ret_ptr(_rlogger_string_ptr); \ + } -#define ERR_FAIL_V_MSG(val, msg) \ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ - return val; +#define ERR_FAIL_MSG(msg) \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ + return; -#define ERR_FAIL_INDEX(index, size) \ - if ((index < 0) || (index >= size)) {\ - RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, ""); \ - return;\ - } else\ - ((void)0)\ +#define ERR_FAIL_V_MSG(val, msg) \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ + return val; -#define ERR_FAIL_INDEX_MSG(index, size, msg) \ - if ((index < 0) || (index >= size)) {\ - RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, msg); \ - return;\ - } else\ - ((void)0)\ +#define ERR_FAIL_INDEX(index, size) \ + if ((index < 0) || (index >= size)) { \ + RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, ""); \ + return; \ + } else \ + ((void)0) -#define ERR_FAIL_INDEX_V(index, size, val) \ - if ((index < 0) || (index >= size)) {\ - RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, ""); \ - return val;\ - } else\ - ((void)0)\ +#define ERR_FAIL_INDEX_MSG(index, size, msg) \ + if ((index < 0) || (index >= size)) { \ + RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, msg); \ + return; \ + } else \ + ((void)0) -#define ERR_FAIL_INDEX_V_MSG(index, size, val, msg) \ - if ((index < 0) || (index >= size)) {\ - RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, msg); \ - return val;\ - } else\ - ((void)0)\ +#define ERR_FAIL_INDEX_V(index, size, val) \ + if ((index < 0) || (index >= size)) { \ + RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, ""); \ + return val; \ + } else \ + ((void)0) -#define ERR_FAIL_COND(cond) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_FAIL_COND: \"" #cond "\" is true!"); \ - return;\ - } else\ - ((void)0)\ +#define ERR_FAIL_INDEX_V_MSG(index, size, val, msg) \ + if ((index < 0) || (index >= size)) { \ + RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, msg); \ + return val; \ + } else \ + ((void)0) -#define ERR_FAIL_COND_MSG(cond, msg) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ - return;\ - } else\ - ((void)0)\ +#define ERR_FAIL_COND(cond) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_FAIL_COND: \"" #cond "\" is true!"); \ + return; \ + } else \ + ((void)0) -#define ERR_FAIL_COND_V(cond, val) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_FAIL_COND: \"" #cond "\" is true!"); \ - return val;\ - } else\ - ((void)0)\ +#define ERR_FAIL_COND_MSG(cond, msg) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ + return; \ + } else \ + ((void)0) -#define ERR_FAIL_COND_V_MSG(cond, val, msg) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ - return val;\ - } else\ - ((void)0)\ +#define ERR_FAIL_COND_V(cond, val) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_FAIL_COND: \"" #cond "\" is true!"); \ + return val; \ + } else \ + ((void)0) -#define ERR_CONTINUE(cond) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_CONTINUE: \"" #cond "\" is true!"); \ - continue;\ - } else\ - ((void)0)\ +#define ERR_FAIL_COND_V_MSG(cond, val, msg) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ + return val; \ + } else \ + ((void)0) -#define ERR_CONTINUE_MSG(cond, msg) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ - continue;\ - } else\ - ((void)0)\ +#define ERR_CONTINUE(cond) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_CONTINUE: \"" #cond "\" is true!"); \ + continue; \ + } else \ + ((void)0) -#define ERR_CONTINUE_ACTION(cond, action) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_CONTINUE: \"" #cond "\" is true!"); \ - action;\ - continue;\ - } else\ - ((void)0)\ +#define ERR_CONTINUE_MSG(cond, msg) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ + continue; \ + } else \ + ((void)0) -#define ERR_CONTINUE_ACTION_MSG(cond, action, msg) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ - action;\ - continue;\ - } else\ - ((void)0)\ +#define ERR_CONTINUE_ACTION(cond, action) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "ERR_CONTINUE: \"" #cond "\" is true!"); \ + action; \ + continue; \ + } else \ + ((void)0) -#define CRASH_INDEX(index, size) \ - if ((index < 0) || (index >= size)) {\ - RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, "CRASH!"); \ - GENERATE_TRAP \ - } else\ - ((void)0)\ +#define ERR_CONTINUE_ACTION_MSG(cond, action, msg) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, msg); \ + action; \ + continue; \ + } else \ + ((void)0) -#define CRASH_COND(cond) \ - if (cond) {\ - RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "CRASH_COND: \"" #cond "\" is true!"); \ - GENERATE_TRAP \ - } else\ - ((void)0)\ +#define CRASH_INDEX(index, size) \ + if ((index < 0) || (index >= size)) { \ + RLogger::log_index_error(__FUNCTION__, __FILE__, __LINE__, index, size, "CRASH!"); \ + GENERATE_TRAP \ + } else \ + ((void)0) + +#define CRASH_COND(cond) \ + if (cond) { \ + RLogger::log_error(__FUNCTION__, __FILE__, __LINE__, "CRASH_COND: \"" #cond "\" is true!"); \ + GENERATE_TRAP \ + } else \ + ((void)0) #endif