1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2012 Jay Freeman (saurik)
5 /* GNU Lesser General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify it under
8 * the terms of the GNU Lesser General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 * License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #ifndef CYCRIPT_EXCEPTION_HPP
23 #define CYCRIPT_EXCEPTION_HPP
26 #include <JavaScriptCore/JSBase.h>
29 #include <apr_pools.h>
30 #include "Standard.hpp"
33 virtual ~CYException() {
36 virtual const char *PoolCString(apr_pool_t *pool) const = 0;
38 virtual JSValueRef CastJSValue(JSContextRef context) const = 0;
42 void CYThrow(const char *format, ...) _noreturn;
45 void CYThrow(JSContextRef context, JSValueRef value);
50 #define CYCatch(value) \
51 catch (const CYException &error) { \
52 *exception = error.CastJSValue(context); \
55 *exception = CYCastJSValue(context, "catch(...)"); \
59 // XXX: fix this: _ is not safe; this is /not/ Menes ;P
61 #define _assert(test, args...) do { \
63 CYThrow("*** _assert(%s):%s(%u):%s [errno=%d]", #test, __FILE__, __LINE__, __FUNCTION__, errno); \
66 #define _trace() do { \
67 fprintf(stderr, "_trace():%u\n", __LINE__); \
70 #define _syscall(expr) ({ \
71 __typeof__(expr) _value; \
72 do if ((long) (_value = (expr)) != -1) \
74 else switch (errno) { \
83 #define _aprcall(expr) \
85 apr_status_t _aprstatus((expr)); \
86 _assert(_aprstatus == APR_SUCCESS); \
89 #define _krncall(expr) \
91 kern_return_t _krnstatus((expr)); \
92 _assert(_krnstatus == KERN_SUCCESS); \
95 #define _sqlcall(expr) ({ \
96 __typeof__(expr) _value = (expr); \
97 if (_value != 0 && (_value < 100 || _value >= 200)) \
98 _assert(false, "_sqlcall(%u:%s): %s\n", _value, #expr, sqlite3_errmsg(database_)); \
102 #endif/*CYCRIPT_ERROR_HPP*/