]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
c1d3e52e | 2 | * Copyright (C) 2009-2015 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_JAVASCRIPT_HPP |
23 | #define CYCRIPT_JAVASCRIPT_HPP | |
24 | ||
98735bfe JF |
25 | #include <set> |
26 | ||
9cad30fa JF |
27 | #include <JavaScriptCore/JSBase.h> |
28 | #include <JavaScriptCore/JSContextRef.h> | |
29 | #include <JavaScriptCore/JSStringRef.h> | |
30 | #include <JavaScriptCore/JSObjectRef.h> | |
31 | #include <JavaScriptCore/JSValueRef.h> | |
32 | ||
b128dfee DWT |
33 | #ifdef HAVE_FFI_FFI_H |
34 | #include <ffi/ffi.h> | |
35 | #else | |
9cad30fa | 36 | #include <ffi.h> |
b128dfee | 37 | #endif |
9cad30fa | 38 | |
b799113b JF |
39 | #include "Pooling.hpp" |
40 | #include "String.hpp" | |
ef6f48be | 41 | |
498c3570 JF |
42 | extern JSStringRef Array_s; |
43 | extern JSStringRef cy_s; | |
4dd55d2f | 44 | extern JSStringRef cyi_s; |
574d4720 | 45 | extern JSStringRef cyt_s; |
00b9328f JF |
46 | extern JSStringRef length_s; |
47 | extern JSStringRef message_s; | |
48 | extern JSStringRef name_s; | |
49 | extern JSStringRef pop_s; | |
50 | extern JSStringRef prototype_s; | |
51 | extern JSStringRef push_s; | |
52 | extern JSStringRef splice_s; | |
53 | extern JSStringRef toCYON_s; | |
54 | extern JSStringRef toJSON_s; | |
4cb8aa43 JF |
55 | extern JSStringRef toPointer_s; |
56 | extern JSStringRef toString_s; | |
56f57e5b | 57 | extern JSStringRef weak_s; |
37954781 | 58 | |
9cad30fa JF |
59 | void CYInitializeDynamic(); |
60 | JSGlobalContextRef CYGetJSContext(); | |
61 | JSObjectRef CYGetGlobalObject(JSContextRef context); | |
62 | ||
63 | extern "C" void CYSetupContext(JSGlobalContextRef context); | |
89d16b11 | 64 | const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code); |
b0ba908c | 65 | void CYCancel(); |
9cad30fa JF |
66 | |
67 | void CYSetArgs(int argc, const char *argv[]); | |
68 | ||
69 | bool CYCastBool(JSContextRef context, JSValueRef value); | |
70 | double CYCastDouble(JSContextRef context, JSValueRef value); | |
71 | ||
79492f21 | 72 | bool CYIsEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs); |
3c7fc7a8 | 73 | bool CYIsStrictEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs); |
79492f21 | 74 | |
b799113b JF |
75 | CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value); |
76 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value); | |
9cad30fa | 77 | |
58321c0a | 78 | bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name); |
9cad30fa JF |
79 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index); |
80 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name); | |
81 | ||
82 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value); | |
83 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
84 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes = kJSPropertyAttributeNone); | |
85 | ||
e78a4755 JF |
86 | void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef prototype); |
87 | ||
56f57e5b | 88 | JSValueRef CYGetCachedValue(JSContextRef context, JSStringRef name); |
9cad30fa JF |
89 | JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name); |
90 | ||
91 | JSValueRef CYCastJSValue(JSContextRef context, bool value); | |
92 | JSValueRef CYCastJSValue(JSContextRef context, double value); | |
93 | JSValueRef CYCastJSValue(JSContextRef context, int value); | |
94 | JSValueRef CYCastJSValue(JSContextRef context, unsigned int value); | |
95 | JSValueRef CYCastJSValue(JSContextRef context, long int value); | |
96 | JSValueRef CYCastJSValue(JSContextRef context, long unsigned int value); | |
97 | JSValueRef CYCastJSValue(JSContextRef context, long long int value); | |
98 | JSValueRef CYCastJSValue(JSContextRef context, long long unsigned int value); | |
99 | ||
100 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value); | |
101 | JSValueRef CYCastJSValue(JSContextRef context, const char *value); | |
102 | ||
103 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value); | |
104 | JSValueRef CYJSUndefined(JSContextRef context); | |
105 | JSValueRef CYJSNull(JSContextRef context); | |
106 | ||
2b1c9594 | 107 | void *CYCastPointer_(JSContextRef context, JSValueRef value, bool *guess = NULL); |
9cad30fa JF |
108 | |
109 | template <typename Type_> | |
2b1c9594 JF |
110 | _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value, bool *guess = NULL) { |
111 | return reinterpret_cast<Type_>(CYCastPointer_(context, value, guess)); | |
9cad30fa JF |
112 | } |
113 | ||
2e862b3d | 114 | void CYCallFunction(CYPool &pool, JSContextRef context, ffi_cif *cif, void (*function)(), void *value, void **values); |
574d4720 | 115 | JSValueRef CYCallFunction(CYPool &pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, bool variadic, const sig::Signature &signature, ffi_cif *cif, void (*function)()); |
9cad30fa JF |
116 | |
117 | bool CYIsCallable(JSContextRef context, JSValueRef value); | |
118 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]); | |
119 | ||
98735bfe JF |
120 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects); |
121 | std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]); | |
9cad30fa | 122 | |
c4481e40 | 123 | struct CYHook { |
9cad30fa JF |
124 | void *(*ExecuteStart)(JSContextRef); |
125 | void (*ExecuteEnd)(JSContextRef, void *); | |
126 | ||
2e862b3d | 127 | void (*CallFunction)(CYPool &, JSContextRef, ffi_cif *, void (*)(), void *, void **); |
9cad30fa JF |
128 | |
129 | void (*Initialize)(); | |
130 | void (*SetupContext)(JSContextRef); | |
131 | ||
588cf838 | 132 | void *(*CastSymbol)(const char *); |
9cad30fa JF |
133 | }; |
134 | ||
c4481e40 JF |
135 | struct CYRegisterHook { |
136 | CYRegisterHook(CYHook *hook); | |
137 | }; | |
9cad30fa | 138 | |
9ebca0a0 | 139 | JSObjectRef CYMakePointer(JSContextRef context, void *pointer, const sig::Type &type, ffi_type *ffi, JSObjectRef owner); |
9cad30fa | 140 | |
0559abf8 | 141 | JSObjectRef CYMakeType(JSContextRef context, const sig::Type &type); |
9a39f705 | 142 | |
9cad30fa JF |
143 | void CYFinalize(JSObjectRef object); |
144 | ||
07db5f4d JF |
145 | size_t CYArrayLength(JSContextRef context, JSObjectRef array); |
146 | JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index); | |
fddfdb6f JF |
147 | |
148 | void CYArrayPush(JSContextRef context, JSObjectRef array, size_t length, const JSValueRef arguments[]); | |
07db5f4d JF |
149 | void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value); |
150 | ||
b799113b | 151 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value); |
9cad30fa JF |
152 | |
153 | JSStringRef CYCopyJSString(const char *value); | |
154 | JSStringRef CYCopyJSString(JSStringRef value); | |
155 | JSStringRef CYCopyJSString(CYUTF8String value); | |
35cad40b | 156 | JSStringRef CYCopyJSString(CYUTF16String value); |
9cad30fa JF |
157 | JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value); |
158 | ||
51b6165e | 159 | void CYGarbageCollect(JSContextRef context); |
8fab8594 JF |
160 | void CYDestroyContext(); |
161 | ||
9cad30fa JF |
162 | class CYJSString { |
163 | private: | |
164 | JSStringRef string_; | |
165 | ||
166 | void Clear_() { | |
167 | if (string_ != NULL) | |
168 | JSStringRelease(string_); | |
169 | } | |
170 | ||
171 | public: | |
172 | CYJSString(const CYJSString &rhs) : | |
173 | string_(CYCopyJSString(rhs.string_)) | |
174 | { | |
175 | } | |
176 | ||
177 | template <typename Arg0_> | |
178 | CYJSString(Arg0_ arg0) : | |
179 | string_(CYCopyJSString(arg0)) | |
180 | { | |
181 | } | |
182 | ||
183 | template <typename Arg0_, typename Arg1_> | |
184 | CYJSString(Arg0_ arg0, Arg1_ arg1) : | |
185 | string_(CYCopyJSString(arg0, arg1)) | |
186 | { | |
187 | } | |
188 | ||
189 | CYJSString &operator =(const CYJSString &rhs) { | |
190 | Clear_(); | |
191 | string_ = CYCopyJSString(rhs.string_); | |
192 | return *this; | |
193 | } | |
194 | ||
195 | ~CYJSString() { | |
196 | Clear_(); | |
197 | } | |
198 | ||
199 | void Clear() { | |
200 | Clear_(); | |
201 | string_ = NULL; | |
202 | } | |
203 | ||
204 | operator JSStringRef() const { | |
205 | return string_; | |
206 | } | |
207 | }; | |
208 | ||
73f04979 | 209 | #ifdef __APPLE__ |
ccb4e34c JF |
210 | #define _weak __attribute__((__weak_import__)); |
211 | #else | |
212 | #define _weak | |
213 | #endif | |
214 | ||
56f57e5b JF |
215 | typedef struct OpaqueJSWeakObjectMap *JSWeakObjectMapRef; |
216 | typedef void (*JSWeakMapDestroyedCallback)(JSWeakObjectMapRef map, void *data); | |
217 | ||
ccb4e34c JF |
218 | extern "C" JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef ctx, void *data, JSWeakMapDestroyedCallback destructor) _weak; |
219 | extern "C" void JSWeakObjectMapSet(JSContextRef ctx, JSWeakObjectMapRef map, void *key, JSObjectRef) _weak; | |
220 | extern "C" JSObjectRef JSWeakObjectMapGet(JSContextRef ctx, JSWeakObjectMapRef map, void *key) _weak; | |
221 | extern "C" bool JSWeakObjectMapClear(JSContextRef ctx, JSWeakObjectMapRef map, void *key, JSObjectRef object) _weak; | |
222 | extern "C" void JSWeakObjectMapRemove(JSContextRef ctx, JSWeakObjectMapRef map, void* key) _weak; | |
b0ba908c JF |
223 | |
224 | typedef bool (*JSShouldTerminateCallback)(JSContextRef ctx, void *context); | |
ccb4e34c | 225 | extern "C" void JSContextGroupSetExecutionTimeLimit(JSContextGroupRef, double limit, JSShouldTerminateCallback, void *context) _weak; |
56f57e5b | 226 | |
37954781 | 227 | #endif/*CYCRIPT_JAVASCRIPT_HPP*/ |