]> git.saurik.com Git - cycript.git/blame - Exception.hpp
Also use CXType walker to for function prototypes.
[cycript.git] / Exception.hpp
CommitLineData
7341eedb
JF
1/* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
d15b59f5
JF
3*/
4
f95d2598 5/* GNU Affero General Public License, Version 3 {{{ */
d15b59f5 6/*
f95d2598
JF
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
c15969fd 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
f95d2598
JF
15 * GNU Affero General Public License for more details.
16
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
b3378a02 19**/
d15b59f5
JF
20/* }}} */
21
37954781
JF
22#ifndef CYCRIPT_EXCEPTION_HPP
23#define CYCRIPT_EXCEPTION_HPP
24
7cfc264c
JF
25#include <cstdlib>
26
9cad30fa 27#ifdef CY_EXECUTE
37954781 28#include <JavaScriptCore/JSBase.h>
9cad30fa 29#endif
37954781 30
0cbeddf8
JF
31// XXX: does _assert really need this?
32#include <errno.h>
33
37954781
JF
34#include "Standard.hpp"
35
b799113b
JF
36class CYPool;
37
d9c91152 38struct _visible CYException {
7c6c5b0a
JF
39 virtual ~CYException() {
40 }
41
b799113b 42 virtual const char *PoolCString(CYPool &pool) const = 0;
9cad30fa 43#ifdef CY_EXECUTE
a1ae2985 44 virtual JSValueRef CastJSValue(JSContextRef context, const char *name) const = 0;
9cad30fa 45#endif
37954781
JF
46};
47
48void CYThrow(const char *format, ...) _noreturn;
9cad30fa
JF
49
50#ifdef CY_EXECUTE
37954781 51void CYThrow(JSContextRef context, JSValueRef value);
9cad30fa 52#endif
37954781
JF
53
54#define CYTry \
55 try
a1ae2985 56#define CYCatch_(value, name) \
37954781 57 catch (const CYException &error) { \
a1ae2985 58 *exception = error.CastJSValue(context, name); \
77dd5db9 59 _assert(*exception != NULL); \
55c6d6ab 60 return value; \
37954781
JF
61 } catch (...) { \
62 *exception = CYCastJSValue(context, "catch(...)"); \
77dd5db9 63 _assert(*exception != NULL); \
55c6d6ab 64 return value; \
37954781 65 }
a1ae2985
JF
66#define CYCatch(value) \
67 CYCatch_(value, "Error")
77dd5db9
JF
68#define CYCatchObject() \
69 CYCatch(JSObjectMake(context, NULL, NULL))
37954781 70
49c0d263
JF
71#define _assert_(mode, test, code, format, ...) do \
72 if (!(test)) \
73 CYThrow("*** _%s(%s):%s(%u):%s" format, mode, code, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__); \
74while (false)
75
a4dbf05b
JF
76// XXX: fix this: _ is not safe; this is /not/ Menes ;P
77#undef _assert
49c0d263
JF
78#define _assert(test) \
79 _assert_("assert", (test), #test, "")
37954781 80
8f41509f
JF
81#define _require(expr) ({ \
82 __typeof__(expr) _value = (expr); \
83 _assert_("require", _value != NULL, #expr, ""); \
84_value; })
85
37954781 86#define _trace() do { \
a2ab0fd3 87 fprintf(stderr, "_trace(%s:%u)\n", __FILE__, __LINE__); \
37954781
JF
88} while (false)
89
985e3d1e 90static _finline bool CYContains(int value, size_t many, const int *okay) {
ccd33bdc
JF
91 for (size_t i(0); i != many; ++i)
92 if (value == okay[i])
93 return true;
94 return false;
95}
96
73f04979 97#define _syscall_(expr, many, ...) ({ \
37954781
JF
98 __typeof__(expr) _value; \
99 do if ((long) (_value = (expr)) != -1) \
100 break; \
73f04979 101 else if (CYContains(errno, many, ((const int [many + 1]) {0, ##__VA_ARGS__} + 1))) \
ccd33bdc 102 break; \
49c0d263
JF
103 else \
104 _assert_("syscall", errno == EINTR, #expr, " [errno=%d]", errno); \
105 while (true); \
37954781
JF
106 _value; \
107})
108
ccd33bdc 109#define _syscall(expr) \
73f04979 110 _syscall_(expr, 0)
ccd33bdc 111
37954781
JF
112#define _sqlcall(expr) ({ \
113 __typeof__(expr) _value = (expr); \
8d20f0f1
JF
114 _assert_("sqlcall", _value == 0 || _value >= 100 && _value < 200, #expr, " %u:%s", _value, sqlite3_errmsg(database_)); \
115_value; })
37954781 116
2e43a0b0 117#ifdef CY_EXECUTE
f1b5a47f
JF
118struct CYJSException {
119 JSContextRef context_;
120 JSValueRef value_;
121
122 CYJSException(JSContextRef context) :
123 context_(context),
124 value_(NULL)
125 {
126 }
127
2eb5f06f 128 ~CYJSException() noexcept(false) {
f1b5a47f
JF
129 CYThrow(context_, value_);
130 }
131
132 operator JSValueRef *() {
133 return &value_;
134 }
135};
136
137#define _jsccall(code, args...) ({ \
138 CYJSException _error(context); \
139 (code)(args, _error); \
140})
2e43a0b0 141#endif
f1b5a47f 142
37954781 143#endif/*CYCRIPT_ERROR_HPP*/