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