1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- #ifndef Er_H
- #define Er_H
- #include "memory/Allocator.h"
- #include "util/Gcc.h"
- #include "util/Js.h"
- #include "util/Linker.h"
- Linker_require("exception/Er.c")
- struct Er_Ret
- {
- const char* message;
- };
- Js({ this.Er_JS = require("../exception/Er.js").create(); })
- #define Er_DEFUN(...) \
- Gcc_USE_RET Js_or({ return this.Er_JS.defun(Js_Q __VA_ARGS__ Js_Q) }, __VA_ARGS__)
- Gcc_PRINTF(4, 5)
- Gcc_USE_RET
- struct Er_Ret* Er__raise(char* file, int line, struct Allocator* alloc, char* format, ...);
- #define Er_raise(...) \
- do { \
- struct Er_Ret* Er_ret = Er__raise(Gcc_SHORT_FILE, Gcc_LINE, __VA_ARGS__); \
- Js_or({ return 'return Er_ret;' }, Er__assertFail(Er_ret)); \
- } while (0)
- // CHECKFILES_IGNORE missing ;
- #define Er(expr) Js_or({ return this.Er_JS.er(Js_Q expr Js_Q, Gcc_SHORT_FILE, Gcc_LINE); }, expr)
- #define Er_assert(expr) \
- Js_or({ return this.Er_JS.assert(Js_Q expr Js_Q, Gcc_SHORT_FILE, Gcc_LINE); }, expr)
- #define Er_check(ret, expr) \
- Js_or({ return this.Er_JS.check(#ret, Js_Q expr Js_Q, Gcc_SHORT_FILE, Gcc_LINE); }, expr)
- #define Er_ret(val) Js_or({ return this.Er_JS.ret(Js_Q val Js_Q); }, return val)
- static inline struct Er_Ret* Er_unwind(const char* file, int line, struct Er_Ret* ret)
- {
- return ret;
- }
- void Er__assertFail(struct Er_Ret* er);
- #endif
|