1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU 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 // XXX: does _assert really need this?
32 #include "Standard.hpp"
37 virtual ~CYException() {
40 virtual const char *PoolCString(CYPool &pool) const = 0;
42 virtual JSValueRef CastJSValue(JSContextRef context) const = 0;
46 void CYThrow(const char *format, ...) _noreturn;
49 void CYThrow(JSContextRef context, JSValueRef value);
54 #define CYCatch(value) \
55 catch (const CYException &error) { \
56 *exception = error.CastJSValue(context); \
59 *exception = CYCastJSValue(context, "catch(...)"); \
63 // XXX: fix this: _ is not safe; this is /not/ Menes ;P
65 #define _assert(test, args...) do { \
67 CYThrow("*** _assert(%s):%s(%u):%s [errno=%d]", #test, __FILE__, __LINE__, __FUNCTION__, errno); \
70 #define _trace() do { \
71 fprintf(stderr, "_trace():%u\n", __LINE__); \
74 #define _syscall(expr) ({ \
75 __typeof__(expr) _value; \
76 do if ((long) (_value = (expr)) != -1) \
78 else switch (errno) { \
87 #define _aprcall(expr) \
89 apr_status_t _aprstatus((expr)); \
90 _assert(_aprstatus == APR_SUCCESS); \
93 #define _krncall(expr) \
95 kern_return_t _krnstatus((expr)); \
96 _assert(_krnstatus == KERN_SUCCESS); \
99 #define _sqlcall(expr) ({ \
100 __typeof__(expr) _value = (expr); \
101 if (_value != 0 && (_value < 100 || _value >= 200)) \
102 _assert(false, "_sqlcall(%u:%s): %s\n", _value, #expr, sqlite3_errmsg(database_)); \
106 struct CYJSException {
107 JSContextRef context_;
110 CYJSException(JSContextRef context) :
117 CYThrow(context_, value_);
120 operator JSValueRef *() {
125 #define _jsccall(code, args...) ({ \
126 CYJSException _error(context); \
127 (code)(args, _error); \
130 #endif/*CYCRIPT_ERROR_HPP*/