]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
c1d3e52e | 2 | * Copyright (C) 2009-2015 Jay Freeman (saurik) |
9cad30fa JF |
3 | */ |
4 | ||
f95d2598 | 5 | /* GNU Affero General Public License, Version 3 {{{ */ |
9cad30fa | 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 | **/ |
9cad30fa JF |
20 | /* }}} */ |
21 | ||
20052ff7 JF |
22 | #include "cycript.hpp" |
23 | ||
24 | #include <iostream> | |
25 | #include <set> | |
26 | #include <map> | |
27 | #include <iomanip> | |
28 | #include <sstream> | |
29 | #include <cmath> | |
9cad30fa JF |
30 | |
31 | #include <dlfcn.h> | |
d00dec14 JF |
32 | #include <dirent.h> |
33 | #include <fcntl.h> | |
34 | #include <unistd.h> | |
9cad30fa | 35 | |
9cad30fa | 36 | #include <sys/mman.h> |
d00dec14 | 37 | #include <sys/stat.h> |
9cad30fa | 38 | |
20052ff7 JF |
39 | #include "sig/parse.hpp" |
40 | #include "sig/ffi_type.hpp" | |
9cad30fa | 41 | |
5587a93f | 42 | #include "Code.hpp" |
9a39f705 | 43 | #include "Decode.hpp" |
9cad30fa | 44 | #include "Error.hpp" |
20052ff7 JF |
45 | #include "Execute.hpp" |
46 | #include "Internal.hpp" | |
9cad30fa | 47 | #include "JavaScript.hpp" |
20052ff7 | 48 | #include "Pooling.hpp" |
9cad30fa JF |
49 | #include "String.hpp" |
50 | ||
c2e81022 JF |
51 | static std::vector<CYHook *> &GetHooks() { |
52 | static std::vector<CYHook *> hooks; | |
53 | return hooks; | |
54 | } | |
c4481e40 JF |
55 | |
56 | CYRegisterHook::CYRegisterHook(CYHook *hook) { | |
c2e81022 | 57 | GetHooks().push_back(hook); |
c4481e40 | 58 | } |
9cad30fa JF |
59 | |
60 | /* JavaScript Properties {{{ */ | |
58321c0a JF |
61 | bool CYHasProperty(JSContextRef context, JSObjectRef object, JSStringRef name) { |
62 | return JSObjectHasProperty(context, object, name); | |
63 | } | |
64 | ||
9cad30fa | 65 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index) { |
f1b5a47f | 66 | return _jsccall(JSObjectGetPropertyAtIndex, context, object, index); |
9cad30fa JF |
67 | } |
68 | ||
69 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name) { | |
f1b5a47f | 70 | return _jsccall(JSObjectGetProperty, context, object, name); |
9cad30fa JF |
71 | } |
72 | ||
73 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value) { | |
f1b5a47f | 74 | _jsccall(JSObjectSetPropertyAtIndex, context, object, index, value); |
9cad30fa JF |
75 | } |
76 | ||
77 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes) { | |
f1b5a47f | 78 | _jsccall(JSObjectSetProperty, context, object, name, value, attributes); |
9cad30fa JF |
79 | } |
80 | ||
81 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes) { | |
82 | CYSetProperty(context, object, name, JSObjectMakeFunctionWithCallback(context, name, callback), attributes); | |
83 | } | |
e78a4755 JF |
84 | |
85 | void CYSetPrototype(JSContextRef context, JSObjectRef object, JSValueRef value) { | |
86 | JSObjectSetPrototype(context, object, value); | |
3c7fc7a8 | 87 | _assert(CYIsStrictEqual(context, JSObjectGetPrototype(context, object), value)); |
e78a4755 | 88 | } |
9cad30fa JF |
89 | /* }}} */ |
90 | /* JavaScript Strings {{{ */ | |
91 | JSStringRef CYCopyJSString(const char *value) { | |
92 | return value == NULL ? NULL : JSStringCreateWithUTF8CString(value); | |
93 | } | |
94 | ||
95 | JSStringRef CYCopyJSString(JSStringRef value) { | |
96 | return value == NULL ? NULL : JSStringRetain(value); | |
97 | } | |
98 | ||
99 | JSStringRef CYCopyJSString(CYUTF8String value) { | |
100 | // XXX: this is very wrong; it needs to convert to UTF16 and then create from there | |
101 | return CYCopyJSString(value.data); | |
102 | } | |
103 | ||
104 | JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value) { | |
105 | if (JSValueIsNull(context, value)) | |
106 | return NULL; | |
f1b5a47f | 107 | return _jsccall(JSValueToStringCopy, context, value); |
9cad30fa JF |
108 | } |
109 | ||
110 | static CYUTF16String CYCastUTF16String(JSStringRef value) { | |
111 | return CYUTF16String(JSStringGetCharactersPtr(value), JSStringGetLength(value)); | |
112 | } | |
113 | ||
b799113b | 114 | CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
115 | return CYPoolUTF8String(pool, CYCastUTF16String(value)); |
116 | } | |
117 | ||
b799113b | 118 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
119 | CYUTF8String utf8(CYPoolUTF8String(pool, context, value)); |
120 | _assert(memchr(utf8.data, '\0', utf8.size) == NULL); | |
121 | return utf8.data; | |
122 | } | |
123 | ||
b799113b | 124 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value) { |
9cad30fa JF |
125 | return JSValueIsNull(context, value) ? NULL : CYPoolCString(pool, context, CYJSString(context, value)); |
126 | } | |
127 | /* }}} */ | |
128 | /* Index Offsets {{{ */ | |
b799113b | 129 | size_t CYGetIndex(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
130 | return CYGetIndex(CYPoolUTF8String(pool, context, value)); |
131 | } | |
132 | /* }}} */ | |
133 | ||
134 | static JSClassRef All_; | |
135 | static JSClassRef Context_; | |
3f9ae37c | 136 | JSClassRef Functor_; |
9cad30fa JF |
137 | static JSClassRef Global_; |
138 | static JSClassRef Pointer_; | |
139 | static JSClassRef Struct_; | |
140 | ||
141 | JSStringRef Array_s; | |
142 | JSStringRef cy_s; | |
4dd55d2f | 143 | JSStringRef cyi_s; |
9cad30fa JF |
144 | JSStringRef length_s; |
145 | JSStringRef message_s; | |
146 | JSStringRef name_s; | |
147 | JSStringRef pop_s; | |
148 | JSStringRef prototype_s; | |
149 | JSStringRef push_s; | |
150 | JSStringRef splice_s; | |
151 | JSStringRef toCYON_s; | |
152 | JSStringRef toJSON_s; | |
20ded97a | 153 | JSStringRef toPointer_s; |
4cb8aa43 | 154 | JSStringRef toString_s; |
56f57e5b | 155 | JSStringRef weak_s; |
9cad30fa JF |
156 | |
157 | static JSStringRef Result_; | |
158 | ||
9cad30fa | 159 | void CYFinalize(JSObjectRef object) { |
1850a470 | 160 | CYData *internal(reinterpret_cast<CYData *>(JSObjectGetPrivate(object))); |
b799113b | 161 | _assert(internal->count_ != _not(unsigned)); |
1850a470 JF |
162 | if (--internal->count_ == 0) |
163 | delete internal; | |
9cad30fa JF |
164 | } |
165 | ||
b799113b | 166 | void Structor_(CYPool &pool, sig::Type *&type) { |
9cad30fa JF |
167 | if ( |
168 | type->primitive == sig::pointer_P && | |
9cad30fa | 169 | type->data.data.type->primitive == sig::struct_P && |
1648ddb9 | 170 | type->data.data.type->name != NULL && |
9cad30fa JF |
171 | strcmp(type->data.data.type->name, "_objc_class") == 0 |
172 | ) { | |
173 | type->primitive = sig::typename_P; | |
174 | type->data.data.type = NULL; | |
175 | return; | |
176 | } | |
177 | ||
178 | if (type->primitive != sig::struct_P || type->name == NULL) | |
179 | return; | |
180 | ||
2f51d6ab JF |
181 | size_t length(strlen(type->name)); |
182 | char keyed[length + 2]; | |
183 | memcpy(keyed + 1, type->name, length + 1); | |
184 | ||
185 | static const char *modes = "34"; | |
186 | for (size_t i(0); i != 2; ++i) { | |
187 | char mode(modes[i]); | |
188 | keyed[0] = mode; | |
189 | ||
190 | if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1)) | |
191 | switch (mode) { | |
192 | case '3': | |
193 | sig::Parse(pool, &type->data.signature, entry->value_, &Structor_); | |
194 | break; | |
195 | ||
196 | case '4': { | |
197 | sig::Signature signature; | |
198 | sig::Parse(pool, &signature, entry->value_, &Structor_); | |
199 | type = signature.elements[0].type; | |
200 | } break; | |
201 | } | |
9cad30fa JF |
202 | } |
203 | } | |
204 | ||
205 | JSClassRef Type_privateData::Class_; | |
206 | ||
207 | struct Context : | |
208 | CYData | |
209 | { | |
210 | JSGlobalContextRef context_; | |
211 | ||
212 | Context(JSGlobalContextRef context) : | |
213 | context_(context) | |
214 | { | |
215 | } | |
216 | }; | |
217 | ||
218 | struct Pointer : | |
219 | CYOwned | |
220 | { | |
221 | Type_privateData *type_; | |
222 | size_t length_; | |
223 | ||
224 | Pointer(void *value, JSContextRef context, JSObjectRef owner, size_t length, sig::Type *type) : | |
225 | CYOwned(value, context, owner), | |
b799113b | 226 | type_(new(*pool_) Type_privateData(type)), |
9cad30fa JF |
227 | length_(length) |
228 | { | |
229 | } | |
230 | }; | |
231 | ||
232 | struct Struct_privateData : | |
233 | CYOwned | |
234 | { | |
235 | Type_privateData *type_; | |
236 | ||
237 | Struct_privateData(JSContextRef context, JSObjectRef owner) : | |
238 | CYOwned(NULL, context, owner) | |
239 | { | |
240 | } | |
241 | }; | |
242 | ||
9cad30fa JF |
243 | JSObjectRef CYMakeStruct(JSContextRef context, void *data, sig::Type *type, ffi_type *ffi, JSObjectRef owner) { |
244 | Struct_privateData *internal(new Struct_privateData(context, owner)); | |
b799113b | 245 | CYPool &pool(*internal->pool_); |
9cad30fa JF |
246 | Type_privateData *typical(new(pool) Type_privateData(type, ffi)); |
247 | internal->type_ = typical; | |
248 | ||
249 | if (owner != NULL) | |
250 | internal->value_ = data; | |
251 | else { | |
252 | size_t size(typical->GetFFI()->size); | |
0cbeddf8 | 253 | void *copy(internal->pool_->malloc<void>(size)); |
9cad30fa JF |
254 | memcpy(copy, data, size); |
255 | internal->value_ = copy; | |
256 | } | |
257 | ||
258 | return JSObjectMake(context, Struct_, internal); | |
259 | } | |
260 | ||
9a98069f | 261 | static void *CYCastSymbol(const char *name) { |
588cf838 JF |
262 | for (CYHook *hook : GetHooks()) |
263 | if (hook->CastSymbol != NULL) | |
264 | if (void *value = (*hook->CastSymbol)(name)) | |
265 | return value; | |
9a98069f JF |
266 | return dlsym(RTLD_DEFAULT, name); |
267 | } | |
268 | ||
9cad30fa JF |
269 | JSValueRef CYCastJSValue(JSContextRef context, bool value) { |
270 | return JSValueMakeBoolean(context, value); | |
271 | } | |
272 | ||
273 | JSValueRef CYCastJSValue(JSContextRef context, double value) { | |
274 | return JSValueMakeNumber(context, value); | |
275 | } | |
276 | ||
277 | #define CYCastJSValue_(Type_) \ | |
278 | JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \ | |
279 | return JSValueMakeNumber(context, static_cast<double>(value)); \ | |
280 | } | |
281 | ||
282 | CYCastJSValue_(int) | |
283 | CYCastJSValue_(unsigned int) | |
284 | CYCastJSValue_(long int) | |
285 | CYCastJSValue_(long unsigned int) | |
286 | CYCastJSValue_(long long int) | |
287 | CYCastJSValue_(long long unsigned int) | |
288 | ||
289 | JSValueRef CYJSUndefined(JSContextRef context) { | |
290 | return JSValueMakeUndefined(context); | |
291 | } | |
292 | ||
293 | double CYCastDouble(JSContextRef context, JSValueRef value) { | |
f1b5a47f | 294 | return _jsccall(JSValueToNumber, context, value); |
9cad30fa JF |
295 | } |
296 | ||
297 | bool CYCastBool(JSContextRef context, JSValueRef value) { | |
298 | return JSValueToBoolean(context, value); | |
299 | } | |
300 | ||
301 | JSValueRef CYJSNull(JSContextRef context) { | |
302 | return JSValueMakeNull(context); | |
303 | } | |
304 | ||
305 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value) { | |
306 | return value == NULL ? CYJSNull(context) : JSValueMakeString(context, value); | |
307 | } | |
308 | ||
309 | JSValueRef CYCastJSValue(JSContextRef context, const char *value) { | |
310 | return CYCastJSValue(context, CYJSString(value)); | |
311 | } | |
312 | ||
313 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value) { | |
f1b5a47f | 314 | return _jsccall(JSValueToObject, context, value); |
9cad30fa JF |
315 | } |
316 | ||
317 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]) { | |
f1b5a47f | 318 | return _jsccall(JSObjectCallAsFunction, context, function, _this, count, arguments); |
9cad30fa JF |
319 | } |
320 | ||
321 | bool CYIsCallable(JSContextRef context, JSValueRef value) { | |
322 | return value != NULL && JSValueIsObject(context, value) && JSObjectIsFunction(context, (JSObjectRef) value); | |
323 | } | |
324 | ||
79492f21 JF |
325 | bool CYIsEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs) { |
326 | return _jsccall(JSValueIsEqual, context, lhs, rhs); | |
327 | } | |
328 | ||
3c7fc7a8 JF |
329 | bool CYIsStrictEqual(JSContextRef context, JSValueRef lhs, JSValueRef rhs) { |
330 | return JSValueIsStrictEqual(context, lhs, rhs); | |
331 | } | |
332 | ||
55f12f6a JF |
333 | size_t CYArrayLength(JSContextRef context, JSObjectRef array) { |
334 | return CYCastDouble(context, CYGetProperty(context, array, length_s)); | |
335 | } | |
336 | ||
337 | JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index) { | |
f1b5a47f | 338 | return _jsccall(JSObjectGetPropertyAtIndex, context, array, index); |
55f12f6a JF |
339 | } |
340 | ||
341 | void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value) { | |
55f12f6a JF |
342 | JSValueRef arguments[1]; |
343 | arguments[0] = value; | |
344 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); | |
f1b5a47f | 345 | _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, push_s)), array, 1, arguments); |
55f12f6a JF |
346 | } |
347 | ||
9cad30fa | 348 | static JSValueRef System_print(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
73180f9a JF |
349 | FILE *file(stdout); |
350 | ||
9cad30fa | 351 | if (count == 0) |
73180f9a | 352 | fputc('\n', file); |
9cad30fa JF |
353 | else { |
354 | CYPool pool; | |
73180f9a JF |
355 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0]))); |
356 | fwrite(string.data, string.size, 1, file); | |
9cad30fa JF |
357 | } |
358 | ||
73180f9a | 359 | fflush(file); |
9cad30fa | 360 | return CYJSUndefined(context); |
55c6d6ab | 361 | } CYCatch(NULL) } |
9cad30fa | 362 | |
d5fa31c5 | 363 | static void (*JSSynchronousGarbageCollectForDebugging$)(JSContextRef); |
51b6165e | 364 | |
d9c91152 | 365 | _visible void CYGarbageCollect(JSContextRef context) { |
d5fa31c5 | 366 | (JSSynchronousGarbageCollectForDebugging$ ?: &JSGarbageCollect)(context); |
51b6165e JF |
367 | } |
368 | ||
7085e1ab JF |
369 | static JSValueRef Cycript_compile_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
370 | CYPool pool; | |
73180f9a JF |
371 | CYUTF8String before(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0]))); |
372 | std::stringstream value(std::string(before.data, before.size)); | |
373 | CYUTF8String after(CYPoolCode(pool, value)); | |
374 | return CYCastJSValue(context, CYJSString(after)); | |
a1ae2985 | 375 | } CYCatch_(NULL, "SyntaxError") } |
7085e1ab | 376 | |
51b6165e JF |
377 | static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
378 | CYGarbageCollect(context); | |
9cad30fa | 379 | return CYJSUndefined(context); |
62d94d32 | 380 | } CYCatch(NULL) } |
9cad30fa | 381 | |
98735bfe | 382 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, std::set<void *> &objects, JSValueRef *exception) { CYTry { |
9cad30fa JF |
383 | switch (JSType type = JSValueGetType(context, value)) { |
384 | case kJSTypeUndefined: | |
385 | return "undefined"; | |
386 | case kJSTypeNull: | |
387 | return "null"; | |
388 | case kJSTypeBoolean: | |
389 | return CYCastBool(context, value) ? "true" : "false"; | |
390 | ||
391 | case kJSTypeNumber: { | |
392 | std::ostringstream str; | |
393 | CYNumerify(str, CYCastDouble(context, value)); | |
394 | std::string value(str.str()); | |
b799113b | 395 | return pool.strmemdup(value.c_str(), value.size()); |
9cad30fa JF |
396 | } break; |
397 | ||
398 | case kJSTypeString: { | |
399 | std::ostringstream str; | |
400 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, value))); | |
401 | CYStringify(str, string.data, string.size); | |
402 | std::string value(str.str()); | |
b799113b | 403 | return pool.strmemdup(value.c_str(), value.size()); |
9cad30fa JF |
404 | } break; |
405 | ||
406 | case kJSTypeObject: | |
98735bfe | 407 | return CYPoolCCYON(pool, context, (JSObjectRef) value, objects); |
9cad30fa JF |
408 | default: |
409 | throw CYJSError(context, "JSValueGetType() == 0x%x", type); | |
410 | } | |
55c6d6ab | 411 | } CYCatch(NULL) } |
9cad30fa | 412 | |
98735bfe JF |
413 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, std::set<void *> &objects) { |
414 | return _jsccall(CYPoolCCYON, pool, context, value, objects); | |
9cad30fa JF |
415 | } |
416 | ||
98735bfe JF |
417 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, std::set<void *> *objects) { |
418 | if (objects != NULL) | |
419 | return CYPoolCCYON(pool, context, value, *objects); | |
420 | else { | |
421 | std::set<void *> objects; | |
422 | return CYPoolCCYON(pool, context, value, objects); | |
423 | } | |
424 | } | |
425 | ||
426 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object, std::set<void *> &objects) { | |
9cad30fa JF |
427 | JSValueRef toCYON(CYGetProperty(context, object, toCYON_s)); |
428 | if (CYIsCallable(context, toCYON)) { | |
98735bfe | 429 | // XXX: this needs to be abstracted behind some kind of function |
59383043 | 430 | JSValueRef arguments[1] = {CYCastJSValue(context, reinterpret_cast<uintptr_t>(&objects))}; |
98735bfe | 431 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toCYON, object, 1, arguments)); |
9cad30fa JF |
432 | _assert(value != NULL); |
433 | return CYPoolCString(pool, context, value); | |
434 | } | |
435 | ||
436 | JSValueRef toJSON(CYGetProperty(context, object, toJSON_s)); | |
437 | if (CYIsCallable(context, toJSON)) { | |
438 | JSValueRef arguments[1] = {CYCastJSValue(context, CYJSString(""))}; | |
98735bfe | 439 | return _jsccall(CYPoolCCYON, pool, context, CYCallAsFunction(context, (JSObjectRef) toJSON, object, 1, arguments), objects); |
9cad30fa JF |
440 | } |
441 | ||
005b2e9f JF |
442 | if (JSObjectIsFunction(context, object)) { |
443 | JSValueRef toString(CYGetProperty(context, object, toString_s)); | |
444 | if (CYIsCallable(context, toString)) { | |
445 | JSValueRef arguments[1] = {CYCastJSValue(context, CYJSString(""))}; | |
446 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toString, object, 1, arguments)); | |
447 | _assert(value != NULL); | |
448 | return CYPoolCString(pool, context, value); | |
449 | } | |
450 | } | |
451 | ||
98735bfe JF |
452 | _assert(objects.insert(object).second); |
453 | ||
9cad30fa JF |
454 | std::ostringstream str; |
455 | ||
456 | str << '{'; | |
457 | ||
458 | // XXX: this is, sadly, going to leak | |
459 | JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object)); | |
460 | ||
461 | bool comma(false); | |
462 | ||
463 | for (size_t index(0), count(JSPropertyNameArrayGetCount(names)); index != count; ++index) { | |
9cad30fa JF |
464 | if (comma) |
465 | str << ','; | |
466 | else | |
467 | comma = true; | |
468 | ||
dc5d7cf4 | 469 | JSStringRef name(JSPropertyNameArrayGetNameAtIndex(names, index)); |
9cad30fa | 470 | CYUTF8String string(CYPoolUTF8String(pool, context, name)); |
dc5d7cf4 | 471 | |
9cad30fa JF |
472 | if (CYIsKey(string)) |
473 | str << string.data; | |
474 | else | |
475 | CYStringify(str, string.data, string.size); | |
476 | ||
dc5d7cf4 | 477 | str << ':'; |
9cad30fa | 478 | |
dc5d7cf4 JF |
479 | try { |
480 | JSValueRef value(CYGetProperty(context, object, name)); | |
98735bfe | 481 | str << CYPoolCCYON(pool, context, value, objects); |
dc5d7cf4 JF |
482 | } catch (const CYException &error) { |
483 | str << "@error"; | |
484 | } | |
485 | } | |
9cad30fa JF |
486 | |
487 | JSPropertyNameArrayRelease(names); | |
488 | ||
dc5d7cf4 JF |
489 | str << '}'; |
490 | ||
9cad30fa | 491 | std::string string(str.str()); |
b799113b | 492 | return pool.strmemdup(string.c_str(), string.size()); |
9cad30fa JF |
493 | } |
494 | ||
98735bfe JF |
495 | std::set<void *> *CYCastObjects(JSContextRef context, JSObjectRef _this, size_t count, const JSValueRef arguments[]) { |
496 | if (count == 0) | |
497 | return NULL; | |
498 | return CYCastPointer<std::set<void *> *>(context, arguments[0]); | |
499 | } | |
500 | ||
9cad30fa | 501 | static JSValueRef Array_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
98735bfe JF |
502 | std::set<void *> *objects(CYCastObjects(context, _this, count, arguments)); |
503 | // XXX: this is horribly inefficient | |
504 | std::set<void *> backup; | |
505 | if (objects == NULL) | |
506 | objects = &backup; | |
507 | ||
9cad30fa JF |
508 | CYPool pool; |
509 | std::ostringstream str; | |
510 | ||
511 | str << '['; | |
512 | ||
513 | JSValueRef length(CYGetProperty(context, _this, length_s)); | |
514 | bool comma(false); | |
515 | ||
516 | for (size_t index(0), count(CYCastDouble(context, length)); index != count; ++index) { | |
9cad30fa JF |
517 | if (comma) |
518 | str << ','; | |
519 | else | |
520 | comma = true; | |
521 | ||
1eeb7e57 JF |
522 | try { |
523 | JSValueRef value(CYGetProperty(context, _this, index)); | |
524 | if (!JSValueIsUndefined(context, value)) | |
98735bfe | 525 | str << CYPoolCCYON(pool, context, value, *objects); |
1eeb7e57 JF |
526 | else { |
527 | str << ','; | |
528 | comma = false; | |
529 | } | |
530 | } catch (const CYException &error) { | |
531 | str << "@error"; | |
9cad30fa JF |
532 | } |
533 | } | |
534 | ||
535 | str << ']'; | |
536 | ||
537 | std::string value(str.str()); | |
538 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 539 | } CYCatch(NULL) } |
9cad30fa | 540 | |
e66ced89 JF |
541 | static JSValueRef Error_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
542 | CYPool pool; | |
543 | std::ostringstream str; | |
544 | ||
545 | str << "new " << CYPoolUTF8String(pool, context, CYJSString(context, CYGetProperty(context, _this, name_s))) << "("; | |
546 | ||
547 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, CYGetProperty(context, _this, message_s)))); | |
548 | CYStringify(str, string.data, string.size); | |
549 | ||
550 | str << ")"; | |
551 | ||
552 | std::string value(str.str()); | |
553 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
554 | } CYCatch(NULL) } | |
555 | ||
4cb8aa43 JF |
556 | static JSValueRef String_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
557 | CYPool pool; | |
558 | std::ostringstream str; | |
559 | ||
560 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, _this))); | |
561 | CYStringify(str, string.data, string.size); | |
562 | ||
563 | std::string value(str.str()); | |
564 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 565 | } CYCatch(NULL) } |
4cb8aa43 | 566 | |
9cad30fa JF |
567 | JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner) { |
568 | Pointer *internal(new Pointer(pointer, context, owner, length, type)); | |
569 | return JSObjectMake(context, Pointer_, internal); | |
570 | } | |
571 | ||
67110a15 | 572 | static JSObjectRef CYMakeFunctor(JSContextRef context, void (*function)(), const sig::Signature &signature) { |
077756a4 | 573 | return JSObjectMake(context, Functor_, new cy::Functor(signature, function)); |
9a98069f | 574 | } |
1850a470 | 575 | |
67110a15 | 576 | static JSObjectRef CYMakeFunctor(JSContextRef context, const char *symbol, const char *encoding, void **cache) { |
9a98069f JF |
577 | cy::Functor *internal; |
578 | if (*cache != NULL) | |
1850a470 | 579 | internal = reinterpret_cast<cy::Functor *>(*cache); |
9a98069f JF |
580 | else { |
581 | void (*function)()(reinterpret_cast<void (*)()>(CYCastSymbol(symbol))); | |
582 | if (function == NULL) | |
583 | return NULL; | |
1850a470 | 584 | |
67110a15 | 585 | internal = new cy::Functor(encoding, function); |
9a98069f | 586 | *cache = internal; |
1850a470 JF |
587 | } |
588 | ||
9a98069f | 589 | ++internal->count_; |
9cad30fa JF |
590 | return JSObjectMake(context, Functor_, internal); |
591 | } | |
592 | ||
b799113b | 593 | static bool CYGetOffset(CYPool &pool, JSContextRef context, JSStringRef value, ssize_t &index) { |
9cad30fa JF |
594 | return CYGetOffset(CYPoolCString(pool, context, value), index); |
595 | } | |
596 | ||
597 | void *CYCastPointer_(JSContextRef context, JSValueRef value) { | |
56f57e5b JF |
598 | if (value == NULL) |
599 | return NULL; | |
600 | else switch (JSValueGetType(context, value)) { | |
9cad30fa JF |
601 | case kJSTypeNull: |
602 | return NULL; | |
20ded97a JF |
603 | case kJSTypeObject: { |
604 | JSObjectRef object((JSObjectRef) value); | |
9cad30fa | 605 | if (JSValueIsObjectOfClass(context, value, Pointer_)) { |
20ded97a | 606 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); |
9cad30fa | 607 | return internal->value_; |
20ded97a JF |
608 | } |
609 | JSValueRef toPointer(CYGetProperty(context, object, toPointer_s)); | |
610 | if (CYIsCallable(context, toPointer)) { | |
611 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toPointer, object, 0, NULL)); | |
612 | _assert(value != NULL); | |
613 | return CYCastPointer_(context, value); | |
614 | } | |
615 | } default: | |
9cad30fa JF |
616 | double number(CYCastDouble(context, value)); |
617 | if (std::isnan(number)) | |
618 | throw CYJSError(context, "cannot convert value to pointer"); | |
619 | return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number))); | |
620 | } | |
621 | } | |
622 | ||
b799113b | 623 | void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) { |
9cad30fa JF |
624 | switch (type->primitive) { |
625 | case sig::boolean_P: | |
626 | *reinterpret_cast<bool *>(data) = JSValueToBoolean(context, value); | |
627 | break; | |
628 | ||
629 | #define CYPoolFFI_(primitive, native) \ | |
630 | case sig::primitive ## _P: \ | |
631 | *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \ | |
632 | break; | |
633 | ||
634 | CYPoolFFI_(uchar, unsigned char) | |
635 | CYPoolFFI_(char, char) | |
636 | CYPoolFFI_(ushort, unsigned short) | |
637 | CYPoolFFI_(short, short) | |
638 | CYPoolFFI_(ulong, unsigned long) | |
639 | CYPoolFFI_(long, long) | |
640 | CYPoolFFI_(uint, unsigned int) | |
641 | CYPoolFFI_(int, int) | |
642 | CYPoolFFI_(ulonglong, unsigned long long) | |
643 | CYPoolFFI_(longlong, long long) | |
644 | CYPoolFFI_(float, float) | |
645 | CYPoolFFI_(double, double) | |
646 | ||
647 | case sig::array_P: { | |
648 | uint8_t *base(reinterpret_cast<uint8_t *>(data)); | |
649 | JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL); | |
650 | for (size_t index(0); index != type->data.data.size; ++index) { | |
651 | ffi_type *field(ffi->elements[index]); | |
652 | ||
653 | JSValueRef rhs; | |
654 | if (aggregate == NULL) | |
655 | rhs = value; | |
656 | else { | |
657 | rhs = CYGetProperty(context, aggregate, index); | |
658 | if (JSValueIsUndefined(context, rhs)) | |
659 | throw CYJSError(context, "unable to extract array value"); | |
660 | } | |
661 | ||
662 | CYPoolFFI(pool, context, type->data.data.type, field, base, rhs); | |
663 | // XXX: alignment? | |
664 | base += field->size; | |
665 | } | |
666 | } break; | |
667 | ||
668 | case sig::pointer_P: | |
669 | *reinterpret_cast<void **>(data) = CYCastPointer<void *>(context, value); | |
670 | break; | |
671 | ||
672 | case sig::string_P: | |
b799113b JF |
673 | _assert(pool != NULL); |
674 | *reinterpret_cast<const char **>(data) = CYPoolCString(*pool, context, value); | |
9cad30fa JF |
675 | break; |
676 | ||
677 | case sig::struct_P: { | |
678 | uint8_t *base(reinterpret_cast<uint8_t *>(data)); | |
679 | JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL); | |
680 | for (size_t index(0); index != type->data.signature.count; ++index) { | |
681 | sig::Element *element(&type->data.signature.elements[index]); | |
682 | ffi_type *field(ffi->elements[index]); | |
683 | ||
684 | JSValueRef rhs; | |
685 | if (aggregate == NULL) | |
686 | rhs = value; | |
687 | else { | |
688 | rhs = CYGetProperty(context, aggregate, index); | |
689 | if (JSValueIsUndefined(context, rhs)) { | |
690 | if (element->name != NULL) | |
691 | rhs = CYGetProperty(context, aggregate, CYJSString(element->name)); | |
692 | else | |
693 | goto undefined; | |
694 | if (JSValueIsUndefined(context, rhs)) undefined: | |
695 | throw CYJSError(context, "unable to extract structure value"); | |
696 | } | |
697 | } | |
698 | ||
699 | CYPoolFFI(pool, context, element->type, field, base, rhs); | |
700 | // XXX: alignment? | |
701 | base += field->size; | |
702 | } | |
703 | } break; | |
704 | ||
705 | case sig::void_P: | |
706 | break; | |
707 | ||
708 | default: | |
c2e81022 | 709 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
710 | if (hook->PoolFFI != NULL) |
711 | if ((*hook->PoolFFI)(pool, context, type, ffi, data, value)) | |
712 | return; | |
9cad30fa JF |
713 | |
714 | CYThrow("unimplemented signature code: '%c''\n", type->primitive); | |
715 | } | |
716 | } | |
717 | ||
718 | JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) { | |
719 | switch (type->primitive) { | |
720 | case sig::boolean_P: | |
721 | return CYCastJSValue(context, *reinterpret_cast<bool *>(data)); | |
722 | ||
723 | #define CYFromFFI_(primitive, native) \ | |
724 | case sig::primitive ## _P: \ | |
725 | return CYCastJSValue(context, *reinterpret_cast<native *>(data)); \ | |
726 | ||
727 | CYFromFFI_(uchar, unsigned char) | |
728 | CYFromFFI_(char, char) | |
729 | CYFromFFI_(ushort, unsigned short) | |
730 | CYFromFFI_(short, short) | |
731 | CYFromFFI_(ulong, unsigned long) | |
732 | CYFromFFI_(long, long) | |
733 | CYFromFFI_(uint, unsigned int) | |
734 | CYFromFFI_(int, int) | |
735 | CYFromFFI_(ulonglong, unsigned long long) | |
736 | CYFromFFI_(longlong, long long) | |
737 | CYFromFFI_(float, float) | |
738 | CYFromFFI_(double, double) | |
739 | ||
740 | case sig::array_P: | |
741 | if (void *pointer = data) | |
742 | return CYMakePointer(context, pointer, type->data.data.size, type->data.data.type, NULL, owner); | |
743 | else goto null; | |
744 | ||
745 | case sig::pointer_P: | |
746 | if (void *pointer = *reinterpret_cast<void **>(data)) | |
747 | return CYMakePointer(context, pointer, _not(size_t), type->data.data.type, NULL, owner); | |
748 | else goto null; | |
749 | ||
750 | case sig::string_P: | |
751 | if (char *utf8 = *reinterpret_cast<char **>(data)) | |
752 | return CYCastJSValue(context, utf8); | |
753 | else goto null; | |
754 | ||
755 | case sig::struct_P: | |
756 | return CYMakeStruct(context, data, type, ffi, owner); | |
757 | case sig::void_P: | |
758 | return CYJSUndefined(context); | |
759 | ||
760 | null: | |
761 | return CYJSNull(context); | |
762 | default: | |
c2e81022 | 763 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
764 | if (hook->FromFFI != NULL) |
765 | if (JSValueRef value = (*hook->FromFFI)(context, type, ffi, data, initialize, owner)) | |
766 | return value; | |
9cad30fa JF |
767 | |
768 | CYThrow("unimplemented signature code: '%c''\n", type->primitive); | |
769 | } | |
770 | } | |
771 | ||
24e7b1a6 | 772 | void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg) { |
9cad30fa JF |
773 | Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg)); |
774 | ||
775 | JSContextRef context(internal->context_); | |
776 | ||
777 | size_t count(internal->cif_.nargs); | |
778 | JSValueRef values[count]; | |
779 | ||
780 | for (size_t index(0); index != count; ++index) | |
781 | values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]); | |
782 | ||
24e7b1a6 | 783 | JSValueRef value(internal->adapter_(context, count, values, internal->function_)); |
9cad30fa JF |
784 | CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value); |
785 | } | |
786 | ||
9ec7dd18 JF |
787 | static JSValueRef FunctionAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) { |
788 | return CYCallAsFunction(context, function, NULL, count, values); | |
789 | } | |
790 | ||
24e7b1a6 | 791 | Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const sig::Signature &signature, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef)) { |
9cad30fa JF |
792 | // XXX: in case of exceptions this will leak |
793 | // XXX: in point of fact, this may /need/ to leak :( | |
24e7b1a6 | 794 | Closure_privateData *internal(new Closure_privateData(context, function, adapter, signature)); |
9cad30fa | 795 | |
01b1f62f | 796 | #if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__)) |
c5bce670 JF |
797 | void *executable; |
798 | ffi_closure *writable(reinterpret_cast<ffi_closure *>(ffi_closure_alloc(sizeof(ffi_closure), &executable))); | |
799 | ||
24e7b1a6 | 800 | ffi_status status(ffi_prep_closure_loc(writable, &internal->cif_, &CYExecuteClosure, internal, executable)); |
c5bce670 JF |
801 | _assert(status == FFI_OK); |
802 | ||
803 | internal->value_ = executable; | |
804 | #else | |
9cad30fa JF |
805 | ffi_closure *closure((ffi_closure *) _syscall(mmap( |
806 | NULL, sizeof(ffi_closure), | |
807 | PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, | |
808 | -1, 0 | |
809 | ))); | |
810 | ||
24e7b1a6 | 811 | ffi_status status(ffi_prep_closure(closure, &internal->cif_, &CYExecuteClosure, internal)); |
9cad30fa JF |
812 | _assert(status == FFI_OK); |
813 | ||
814 | _syscall(mprotect(closure, sizeof(*closure), PROT_READ | PROT_EXEC)); | |
815 | ||
816 | internal->value_ = closure; | |
c5bce670 | 817 | #endif |
9cad30fa JF |
818 | |
819 | return internal; | |
820 | } | |
821 | ||
67110a15 | 822 | static JSObjectRef CYMakeFunctor(JSContextRef context, JSObjectRef function, const sig::Signature &signature) { |
24e7b1a6 | 823 | Closure_privateData *internal(CYMakeFunctor_(context, function, signature, &FunctionAdapter_)); |
9cad30fa JF |
824 | JSObjectRef object(JSObjectMake(context, Functor_, internal)); |
825 | // XXX: see above notes about needing to leak | |
826 | JSValueProtect(CYGetJSContext(context), object); | |
827 | return object; | |
828 | } | |
829 | ||
56f57e5b JF |
830 | JSValueRef CYGetCachedValue(JSContextRef context, JSStringRef name) { |
831 | return CYGetProperty(context, CYCastJSObject(context, CYGetProperty(context, CYGetGlobalObject(context), cy_s)), name); | |
832 | } | |
833 | ||
9cad30fa | 834 | JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name) { |
56f57e5b | 835 | return CYCastJSObject(context, CYGetCachedValue(context, name)); |
9cad30fa JF |
836 | } |
837 | ||
67110a15 | 838 | static JSObjectRef CYMakeFunctor(JSContextRef context, JSValueRef value, const sig::Signature &signature) { |
9cad30fa JF |
839 | JSObjectRef Function(CYGetCachedObject(context, CYJSString("Function"))); |
840 | ||
f1b5a47f | 841 | bool function(_jsccall(JSValueIsInstanceOfConstructor, context, value, Function)); |
9cad30fa JF |
842 | if (function) { |
843 | JSObjectRef function(CYCastJSObject(context, value)); | |
67110a15 | 844 | return CYMakeFunctor(context, function, signature); |
9cad30fa JF |
845 | } else { |
846 | void (*function)()(CYCastPointer<void (*)()>(context, value)); | |
67110a15 | 847 | return CYMakeFunctor(context, function, signature); |
9cad30fa JF |
848 | } |
849 | } | |
850 | ||
b799113b | 851 | static bool Index_(CYPool &pool, JSContextRef context, Struct_privateData *internal, JSStringRef property, ssize_t &index, uint8_t *&base) { |
9cad30fa JF |
852 | Type_privateData *typical(internal->type_); |
853 | sig::Type *type(typical->type_); | |
854 | if (type == NULL) | |
855 | return false; | |
856 | ||
857 | const char *name(CYPoolCString(pool, context, property)); | |
858 | size_t length(strlen(name)); | |
859 | double number(CYCastDouble(name, length)); | |
860 | ||
861 | size_t count(type->data.signature.count); | |
862 | ||
863 | if (std::isnan(number)) { | |
864 | if (property == NULL) | |
865 | return false; | |
866 | ||
867 | sig::Element *elements(type->data.signature.elements); | |
868 | ||
869 | for (size_t local(0); local != count; ++local) { | |
870 | sig::Element *element(&elements[local]); | |
871 | if (element->name != NULL && strcmp(name, element->name) == 0) { | |
872 | index = local; | |
873 | goto base; | |
874 | } | |
875 | } | |
876 | ||
877 | return false; | |
878 | } else { | |
879 | index = static_cast<ssize_t>(number); | |
880 | if (index != number || index < 0 || static_cast<size_t>(index) >= count) | |
881 | return false; | |
882 | } | |
883 | ||
884 | base: | |
885 | ffi_type **elements(typical->GetFFI()->elements); | |
886 | ||
887 | base = reinterpret_cast<uint8_t *>(internal->value_); | |
888 | for (ssize_t local(0); local != index; ++local) | |
889 | base += elements[local]->size; | |
890 | ||
891 | return true; | |
892 | } | |
893 | ||
894 | static JSValueRef Pointer_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
895 | CYPool pool; | |
896 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
897 | ||
898 | if (JSStringIsEqual(property, length_s)) | |
899 | return internal->length_ == _not(size_t) ? CYJSUndefined(context) : CYCastJSValue(context, internal->length_); | |
900 | ||
901 | Type_privateData *typical(internal->type_); | |
9cad30fa JF |
902 | if (typical->type_ == NULL) |
903 | return NULL; | |
001fffa8 | 904 | sig::Type &type(*typical->type_); |
9cad30fa JF |
905 | |
906 | ssize_t offset; | |
907 | if (JSStringIsEqualToUTF8CString(property, "$cyi")) | |
908 | offset = 0; | |
909 | else if (!CYGetOffset(pool, context, property, offset)) | |
910 | return NULL; | |
911 | ||
001fffa8 JF |
912 | if (type.primitive == sig::function_P) |
913 | return CYMakeFunctor(context, reinterpret_cast<void (*)()>(internal->value_), type.data.signature); | |
914 | ||
9cad30fa JF |
915 | ffi_type *ffi(typical->GetFFI()); |
916 | ||
917 | uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_)); | |
918 | base += ffi->size * offset; | |
919 | ||
920 | JSObjectRef owner(internal->GetOwner() ?: object); | |
001fffa8 | 921 | return CYFromFFI(context, &type, ffi, base, false, owner); |
55c6d6ab | 922 | } CYCatch(NULL) } |
9cad30fa JF |
923 | |
924 | static bool Pointer_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
925 | CYPool pool; | |
926 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
927 | Type_privateData *typical(internal->type_); | |
928 | ||
929 | if (typical->type_ == NULL) | |
55c6d6ab | 930 | return false; |
9cad30fa JF |
931 | |
932 | ssize_t offset; | |
933 | if (JSStringIsEqualToUTF8CString(property, "$cyi")) | |
934 | offset = 0; | |
935 | else if (!CYGetOffset(pool, context, property, offset)) | |
55c6d6ab | 936 | return false; |
9cad30fa JF |
937 | |
938 | ffi_type *ffi(typical->GetFFI()); | |
939 | ||
940 | uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_)); | |
941 | base += ffi->size * offset; | |
942 | ||
943 | CYPoolFFI(NULL, context, typical->type_, ffi, base, value); | |
944 | return true; | |
55c6d6ab | 945 | } CYCatch(false) } |
9cad30fa | 946 | |
62d94d32 | 947 | static JSValueRef Struct_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
948 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(_this))); |
949 | Type_privateData *typical(internal->type_); | |
950 | return CYMakePointer(context, internal->value_, _not(size_t), typical->type_, typical->ffi_, _this); | |
62d94d32 | 951 | } CYCatch(NULL) } |
9cad30fa JF |
952 | |
953 | static JSValueRef Struct_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
954 | CYPool pool; | |
955 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
956 | Type_privateData *typical(internal->type_); | |
957 | ||
958 | ssize_t index; | |
959 | uint8_t *base; | |
960 | ||
961 | if (!Index_(pool, context, internal, property, index, base)) | |
962 | return NULL; | |
963 | ||
964 | JSObjectRef owner(internal->GetOwner() ?: object); | |
965 | ||
966 | return CYFromFFI(context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, false, owner); | |
55c6d6ab | 967 | } CYCatch(NULL) } |
9cad30fa JF |
968 | |
969 | static bool Struct_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
970 | CYPool pool; | |
971 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
972 | Type_privateData *typical(internal->type_); | |
973 | ||
974 | ssize_t index; | |
975 | uint8_t *base; | |
976 | ||
977 | if (!Index_(pool, context, internal, property, index, base)) | |
978 | return false; | |
979 | ||
980 | CYPoolFFI(NULL, context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, value); | |
981 | return true; | |
55c6d6ab | 982 | } CYCatch(false) } |
9cad30fa JF |
983 | |
984 | static void Struct_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) { | |
985 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
986 | Type_privateData *typical(internal->type_); | |
987 | sig::Type *type(typical->type_); | |
988 | ||
989 | if (type == NULL) | |
990 | return; | |
991 | ||
992 | size_t count(type->data.signature.count); | |
993 | sig::Element *elements(type->data.signature.elements); | |
994 | ||
995 | char number[32]; | |
996 | ||
997 | for (size_t index(0); index != count; ++index) { | |
998 | const char *name; | |
999 | name = elements[index].name; | |
1000 | ||
1001 | if (name == NULL) { | |
1002 | sprintf(number, "%zu", index); | |
1003 | name = number; | |
1004 | } | |
1005 | ||
1006 | JSPropertyNameAccumulatorAddName(names, CYJSString(name)); | |
1007 | } | |
1008 | } | |
1009 | ||
2e862b3d JF |
1010 | void CYCallFunction(CYPool &pool, JSContextRef context, ffi_cif *cif, void (*function)(), void *value, void **values) { |
1011 | ffi_call(cif, function, value, values); | |
1012 | } | |
1013 | ||
9d512587 | 1014 | JSValueRef CYCallFunction(CYPool &pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, sig::Signature *signature, ffi_cif *cif, void (*function)()) { |
9cad30fa JF |
1015 | if (setups + count != signature->count - 1) |
1016 | throw CYJSError(context, "incorrect number of arguments to ffi function"); | |
1017 | ||
1018 | size_t size(setups + count); | |
1019 | void *values[size]; | |
1020 | memcpy(values, setup, sizeof(void *) * setups); | |
1021 | ||
1022 | for (size_t index(setups); index != size; ++index) { | |
1023 | sig::Element *element(&signature->elements[index + 1]); | |
1024 | ffi_type *ffi(cif->arg_types[index]); | |
1025 | // XXX: alignment? | |
1026 | values[index] = new(pool) uint8_t[ffi->size]; | |
b799113b | 1027 | CYPoolFFI(&pool, context, element->type, ffi, values[index], arguments[index - setups]); |
9cad30fa JF |
1028 | } |
1029 | ||
1030 | uint8_t value[cif->rtype->size]; | |
1031 | ||
2e862b3d JF |
1032 | void (*call)(CYPool &, JSContextRef, ffi_cif *, void (*)(), void *, void **) = &CYCallFunction; |
1033 | // XXX: this only supports one hook, but it is a bad idea anyway | |
c2e81022 | 1034 | for (CYHook *hook : GetHooks()) |
2e862b3d JF |
1035 | if (hook->CallFunction != NULL) |
1036 | call = hook->CallFunction; | |
9cad30fa | 1037 | |
2e862b3d | 1038 | call(pool, context, cif, function, value, values); |
9cad30fa | 1039 | return CYFromFFI(context, signature->elements[0].type, cif->rtype, value, initialize); |
9d512587 | 1040 | } |
9cad30fa | 1041 | |
62d94d32 | 1042 | static JSValueRef Functor_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
1043 | CYPool pool; |
1044 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(object))); | |
9d512587 | 1045 | return CYCallFunction(pool, context, 0, NULL, count, arguments, false, &internal->signature_, &internal->cif_, internal->GetValue()); |
62d94d32 | 1046 | } CYCatch(NULL) } |
9cad30fa | 1047 | |
9a39f705 JF |
1048 | JSObjectRef CYMakeType(JSContextRef context, const char *encoding) { |
1049 | Type_privateData *internal(new Type_privateData(encoding)); | |
9cad30fa JF |
1050 | return JSObjectMake(context, Type_privateData::Class_, internal); |
1051 | } | |
1052 | ||
8a23fb2e | 1053 | JSObjectRef CYMakeType(JSContextRef context, sig::Type *type) { |
9cad30fa JF |
1054 | Type_privateData *internal(new Type_privateData(type)); |
1055 | return JSObjectMake(context, Type_privateData::Class_, internal); | |
1056 | } | |
1057 | ||
9a39f705 JF |
1058 | JSObjectRef CYMakeType(JSContextRef context, sig::Signature *signature) { |
1059 | CYPool pool; | |
1060 | ||
1061 | sig::Type type; | |
1062 | type.name = NULL; | |
1063 | type.flags = 0; | |
1064 | ||
1065 | type.primitive = sig::function_P; | |
1066 | sig::Copy(pool, type.data.signature, *signature); | |
1067 | ||
1068 | return CYMakeType(context, &type); | |
1069 | } | |
1070 | ||
58321c0a JF |
1071 | static bool All_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) { |
1072 | JSObjectRef global(CYGetGlobalObject(context)); | |
1073 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
1074 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); | |
1075 | ||
1076 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1077 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) | |
1078 | if (CYHasProperty(context, space, property)) | |
1079 | return true; | |
1080 | ||
1081 | CYPool pool; | |
1082 | CYUTF8String name(CYPoolUTF8String(pool, context, property)); | |
1083 | ||
1084 | size_t length(name.size); | |
1085 | char keyed[length + 2]; | |
1086 | memcpy(keyed + 1, name.data, length + 1); | |
1087 | ||
1088 | static const char *modes = "0124"; | |
1089 | for (size_t i(0); i != 4; ++i) { | |
1090 | keyed[0] = modes[i]; | |
1091 | if (CYBridgeHash(keyed, length + 1) != NULL) | |
1092 | return true; | |
1093 | } | |
1094 | ||
1095 | return false; | |
1096 | } | |
1097 | ||
9cad30fa JF |
1098 | static JSValueRef All_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
1099 | JSObjectRef global(CYGetGlobalObject(context)); | |
1100 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
26ef7a82 JF |
1101 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); |
1102 | ||
1103 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1104 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) | |
1105 | if (JSValueRef value = CYGetProperty(context, space, property)) | |
1106 | if (!JSValueIsUndefined(context, value)) | |
1107 | return value; | |
9cad30fa JF |
1108 | |
1109 | CYPool pool; | |
1110 | CYUTF8String name(CYPoolUTF8String(pool, context, property)); | |
1111 | ||
2f51d6ab JF |
1112 | size_t length(name.size); |
1113 | char keyed[length + 2]; | |
1114 | memcpy(keyed + 1, name.data, length + 1); | |
1115 | ||
1116 | static const char *modes = "0124"; | |
1117 | for (size_t i(0); i != 4; ++i) { | |
1118 | char mode(modes[i]); | |
1119 | keyed[0] = mode; | |
1120 | ||
1121 | if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1)) | |
1122 | switch (mode) { | |
1123 | case '0': | |
1124 | return JSEvaluateScript(CYGetJSContext(context), CYJSString(entry->value_), NULL, NULL, 0, NULL); | |
1125 | ||
1126 | case '1': | |
9a98069f | 1127 | return CYMakeFunctor(context, name.data, entry->value_, &entry->cache_); |
2f51d6ab JF |
1128 | |
1129 | case '2': | |
1130 | if (void *symbol = CYCastSymbol(name.data)) { | |
1131 | // XXX: this is horrendously inefficient | |
1132 | sig::Signature signature; | |
1133 | sig::Parse(pool, &signature, entry->value_, &Structor_); | |
1134 | ffi_cif cif; | |
1135 | sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif); | |
1136 | return CYFromFFI(context, signature.elements[0].type, cif.rtype, symbol); | |
1137 | } else return NULL; | |
1138 | ||
1139 | // XXX: implement case 3 | |
1140 | case '4': | |
1141 | return CYMakeType(context, entry->value_); | |
1142 | } | |
9cad30fa JF |
1143 | } |
1144 | ||
2f51d6ab | 1145 | return NULL; |
55c6d6ab | 1146 | } CYCatch(NULL) } |
9cad30fa | 1147 | |
26ef7a82 JF |
1148 | static void All_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) { |
1149 | JSObjectRef global(CYGetGlobalObject(context)); | |
1150 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
1151 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); | |
1152 | ||
1153 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1154 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) { | |
1155 | JSPropertyNameArrayRef subset(JSObjectCopyPropertyNames(context, space)); | |
1156 | for (size_t index(0), count(JSPropertyNameArrayGetCount(subset)); index != count; ++index) | |
1157 | JSPropertyNameAccumulatorAddName(names, JSPropertyNameArrayGetNameAtIndex(subset, index)); | |
1158 | JSPropertyNameArrayRelease(subset); | |
1159 | } | |
1160 | } | |
1161 | ||
9cad30fa JF |
1162 | static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1163 | if (count != 2) | |
5d422750 | 1164 | throw CYJSError(context, "incorrect number of arguments to Pointer constructor"); |
9cad30fa JF |
1165 | |
1166 | CYPool pool; | |
1167 | ||
1168 | void *value(CYCastPointer<void *>(context, arguments[0])); | |
1169 | const char *type(CYPoolCString(pool, context, arguments[1])); | |
1170 | ||
1171 | sig::Signature signature; | |
1172 | sig::Parse(pool, &signature, type, &Structor_); | |
1173 | ||
1174 | return CYMakePointer(context, value, _not(size_t), signature.elements[0].type, NULL, NULL); | |
55c6d6ab | 1175 | } CYCatch(NULL) } |
9cad30fa JF |
1176 | |
1177 | static JSObjectRef Type_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1178 | if (count != 1) | |
1179 | throw CYJSError(context, "incorrect number of arguments to Type constructor"); | |
1180 | CYPool pool; | |
1181 | const char *type(CYPoolCString(pool, context, arguments[0])); | |
1182 | return CYMakeType(context, type); | |
55c6d6ab | 1183 | } CYCatch(NULL) } |
9cad30fa | 1184 | |
3fe16be7 JF |
1185 | static JSValueRef Type_callAsFunction_$With(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], sig::Primitive primitive, JSValueRef *exception) { CYTry { |
1186 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1187 | ||
1188 | CYPool pool; | |
1189 | ||
1190 | sig::Type type; | |
1191 | type.name = NULL; | |
1192 | type.flags = 0; | |
1193 | ||
1194 | type.primitive = primitive; | |
1195 | type.data.signature.elements = new(pool) sig::Element[1 + count]; | |
1196 | type.data.signature.count = 1 + count; | |
1197 | ||
1198 | type.data.signature.elements[0].name = NULL; | |
1199 | type.data.signature.elements[0].type = internal->type_; | |
1200 | type.data.signature.elements[0].offset = _not(size_t); | |
1201 | ||
1202 | for (size_t i(0); i != count; ++i) { | |
1203 | sig::Element &element(type.data.signature.elements[i + 1]); | |
1204 | element.name = NULL; | |
1205 | element.offset = _not(size_t); | |
1206 | ||
1207 | JSObjectRef object(CYCastJSObject(context, arguments[i])); | |
1208 | _assert(JSValueIsObjectOfClass(context, object, Type_privateData::Class_)); | |
1209 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); | |
1210 | ||
1211 | element.type = internal->type_; | |
1212 | } | |
1213 | ||
1214 | return CYMakeType(context, &type); | |
1215 | } CYCatch(NULL) } | |
1216 | ||
85e90410 JF |
1217 | static JSValueRef Type_callAsFunction_arrayOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1218 | if (count != 1) | |
1219 | throw CYJSError(context, "incorrect number of arguments to Type.arrayOf"); | |
1220 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1221 | ||
1222 | CYPool pool; | |
1223 | size_t index(CYGetIndex(pool, context, CYJSString(context, arguments[0]))); | |
1224 | if (index == _not(size_t)) | |
1225 | throw CYJSError(context, "invalid array size used with Type.arrayOf"); | |
9cad30fa JF |
1226 | |
1227 | sig::Type type; | |
85e90410 JF |
1228 | type.name = NULL; |
1229 | type.flags = 0; | |
9cad30fa | 1230 | |
85e90410 JF |
1231 | type.primitive = sig::array_P; |
1232 | type.data.data.type = internal->type_; | |
1233 | type.data.data.size = index; | |
1234 | ||
1235 | return CYMakeType(context, &type); | |
55c6d6ab | 1236 | } CYCatch(NULL) } |
9cad30fa | 1237 | |
3fe16be7 JF |
1238 | static JSValueRef Type_callAsFunction_blockWith(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { |
1239 | return Type_callAsFunction_$With(context, object, _this, count, arguments, sig::block_P, exception); | |
1240 | } | |
1241 | ||
fbc17268 JF |
1242 | static JSValueRef Type_callAsFunction_constant(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1243 | if (count != 0) | |
1244 | throw CYJSError(context, "incorrect number of arguments to Type.constant"); | |
1245 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1246 | ||
1247 | sig::Type type(*internal->type_); | |
1248 | type.flags |= JOC_TYPE_CONST; | |
1249 | return CYMakeType(context, &type); | |
55c6d6ab | 1250 | } CYCatch(NULL) } |
fbc17268 | 1251 | |
3fe283c5 JF |
1252 | static JSValueRef Type_callAsFunction_long(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1253 | if (count != 0) | |
1254 | throw CYJSError(context, "incorrect number of arguments to Type.long"); | |
1255 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1256 | ||
1257 | sig::Type type(*internal->type_); | |
1258 | ||
1259 | switch (type.primitive) { | |
1260 | case sig::short_P: type.primitive = sig::int_P; break; | |
1261 | case sig::int_P: type.primitive = sig::long_P; break; | |
1262 | case sig::long_P: type.primitive = sig::longlong_P; break; | |
1263 | default: throw CYJSError(context, "invalid type argument to Type.long"); | |
1264 | } | |
1265 | ||
1266 | return CYMakeType(context, &type); | |
1267 | } CYCatch(NULL) } | |
1268 | ||
1269 | static JSValueRef Type_callAsFunction_short(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1270 | if (count != 0) | |
1271 | throw CYJSError(context, "incorrect number of arguments to Type.short"); | |
1272 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1273 | ||
1274 | sig::Type type(*internal->type_); | |
1275 | ||
1276 | switch (type.primitive) { | |
1277 | case sig::int_P: type.primitive = sig::short_P; break; | |
1278 | case sig::long_P: type.primitive = sig::int_P; break; | |
1279 | case sig::longlong_P: type.primitive = sig::long_P; break; | |
1280 | default: throw CYJSError(context, "invalid type argument to Type.short"); | |
1281 | } | |
1282 | ||
1283 | return CYMakeType(context, &type); | |
1284 | } CYCatch(NULL) } | |
1285 | ||
1286 | static JSValueRef Type_callAsFunction_signed(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1287 | if (count != 0) | |
1288 | throw CYJSError(context, "incorrect number of arguments to Type.signed"); | |
1289 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1290 | ||
1291 | sig::Type type(*internal->type_); | |
1292 | ||
1293 | switch (type.primitive) { | |
1294 | case sig::char_P: case sig::uchar_P: type.primitive = sig::char_P; break; | |
1295 | case sig::short_P: case sig::ushort_P: type.primitive = sig::short_P; break; | |
1296 | case sig::int_P: case sig::uint_P: type.primitive = sig::int_P; break; | |
1297 | case sig::long_P: case sig::ulong_P: type.primitive = sig::long_P; break; | |
1298 | case sig::longlong_P: case sig::ulonglong_P: type.primitive = sig::longlong_P; break; | |
1299 | default: throw CYJSError(context, "invalid type argument to Type.signed"); | |
1300 | } | |
1301 | ||
1302 | return CYMakeType(context, &type); | |
1303 | } CYCatch(NULL) } | |
1304 | ||
1305 | static JSValueRef Type_callAsFunction_unsigned(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1306 | if (count != 0) | |
1307 | throw CYJSError(context, "incorrect number of arguments to Type.unsigned"); | |
1308 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1309 | ||
1310 | sig::Type type(*internal->type_); | |
1311 | ||
1312 | switch (type.primitive) { | |
1313 | case sig::char_P: case sig::uchar_P: type.primitive = sig::uchar_P; break; | |
1314 | case sig::short_P: case sig::ushort_P: type.primitive = sig::ushort_P; break; | |
1315 | case sig::int_P: case sig::uint_P: type.primitive = sig::uint_P; break; | |
1316 | case sig::long_P: case sig::ulong_P: type.primitive = sig::ulong_P; break; | |
1317 | case sig::longlong_P: case sig::ulonglong_P: type.primitive = sig::ulonglong_P; break; | |
1318 | default: throw CYJSError(context, "invalid type argument to Type.unsigned"); | |
1319 | } | |
1320 | ||
1321 | return CYMakeType(context, &type); | |
1322 | } CYCatch(NULL) } | |
1323 | ||
3fe16be7 JF |
1324 | static JSValueRef Type_callAsFunction_functionWith(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { |
1325 | return Type_callAsFunction_$With(context, object, _this, count, arguments, sig::function_P, exception); | |
1326 | } | |
9a39f705 | 1327 | |
85e90410 JF |
1328 | static JSValueRef Type_callAsFunction_pointerTo(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1329 | if (count != 0) | |
1330 | throw CYJSError(context, "incorrect number of arguments to Type.pointerTo"); | |
1331 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1332 | ||
1333 | sig::Type type; | |
9cad30fa | 1334 | type.name = NULL; |
9cad30fa | 1335 | |
02873b72 JF |
1336 | if (internal->type_->primitive == sig::char_P) { |
1337 | type.flags = internal->type_->flags; | |
1338 | type.primitive = sig::string_P; | |
1339 | type.data.data.type = NULL; | |
1340 | type.data.data.size = 0; | |
1341 | } else { | |
1342 | type.flags = 0; | |
1343 | type.primitive = sig::pointer_P; | |
1344 | type.data.data.type = internal->type_; | |
1345 | type.data.data.size = 0; | |
1346 | } | |
9cad30fa JF |
1347 | |
1348 | return CYMakeType(context, &type); | |
55c6d6ab | 1349 | } CYCatch(NULL) } |
9cad30fa | 1350 | |
21d5f610 JF |
1351 | static JSValueRef Type_callAsFunction_withName(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1352 | if (count != 1) | |
1353 | throw CYJSError(context, "incorrect number of arguments to Type.withName"); | |
1354 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1355 | ||
1356 | CYPool pool; | |
1357 | const char *name(CYPoolCString(pool, context, arguments[0])); | |
1358 | ||
1359 | sig::Type type(*internal->type_); | |
1360 | type.name = name; | |
1361 | return CYMakeType(context, &type); | |
55c6d6ab | 1362 | } CYCatch(NULL) } |
21d5f610 | 1363 | |
9cad30fa | 1364 | static JSValueRef Type_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
1365 | if (count != 1) |
1366 | throw CYJSError(context, "incorrect number of arguments to type cast function"); | |
1c3dd2c3 JF |
1367 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1368 | ||
077756a4 | 1369 | if (internal->type_->primitive == sig::function_P) |
b48c91a5 | 1370 | return CYMakeFunctor(context, arguments[0], internal->type_->data.signature); |
077756a4 | 1371 | |
9cad30fa JF |
1372 | sig::Type *type(internal->type_); |
1373 | ffi_type *ffi(internal->GetFFI()); | |
1374 | // XXX: alignment? | |
1375 | uint8_t value[ffi->size]; | |
1376 | CYPool pool; | |
b799113b | 1377 | CYPoolFFI(&pool, context, type, ffi, value, arguments[0]); |
9cad30fa | 1378 | return CYFromFFI(context, type, ffi, value); |
55c6d6ab | 1379 | } CYCatch(NULL) } |
9cad30fa JF |
1380 | |
1381 | static JSObjectRef Type_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1382 | if (count != 0) | |
767e8255 | 1383 | throw CYJSError(context, "incorrect number of arguments to Type allocator"); |
9cad30fa JF |
1384 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1385 | ||
1386 | sig::Type *type(internal->type_); | |
1387 | size_t length; | |
1388 | ||
1389 | if (type->primitive != sig::array_P) | |
1390 | length = _not(size_t); | |
1391 | else { | |
1392 | length = type->data.data.size; | |
1393 | type = type->data.data.type; | |
1394 | } | |
1395 | ||
ae0a1432 | 1396 | void *value(calloc(1, internal->GetFFI()->size)); |
9cad30fa | 1397 | return CYMakePointer(context, value, length, type, NULL, NULL); |
55c6d6ab | 1398 | } CYCatch(NULL) } |
9cad30fa JF |
1399 | |
1400 | static JSObjectRef Functor_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1401 | if (count != 2) | |
1402 | throw CYJSError(context, "incorrect number of arguments to Functor constructor"); | |
1403 | CYPool pool; | |
67110a15 JF |
1404 | const char *encoding(CYPoolCString(pool, context, arguments[1])); |
1405 | sig::Signature signature; | |
1406 | sig::Parse(pool, &signature, encoding, &Structor_); | |
1407 | return CYMakeFunctor(context, arguments[0], signature); | |
55c6d6ab | 1408 | } CYCatch(NULL) } |
9cad30fa JF |
1409 | |
1410 | static JSValueRef CYValue_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1411 | CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this))); | |
1412 | return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_)); | |
55c6d6ab | 1413 | } CYCatch(NULL) } |
9cad30fa JF |
1414 | |
1415 | static JSValueRef CYValue_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { | |
1416 | return CYValue_callAsFunction_valueOf(context, object, _this, count, arguments, exception); | |
1417 | } | |
1418 | ||
1419 | static JSValueRef CYValue_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1420 | CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this))); | |
1421 | char string[32]; | |
1422 | sprintf(string, "%p", internal->value_); | |
1423 | return CYCastJSValue(context, string); | |
55c6d6ab | 1424 | } CYCatch(NULL) } |
9cad30fa JF |
1425 | |
1426 | static JSValueRef Pointer_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
98735bfe JF |
1427 | std::set<void *> *objects(CYCastObjects(context, _this, count, arguments)); |
1428 | ||
9cad30fa JF |
1429 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(_this))); |
1430 | if (internal->length_ != _not(size_t)) { | |
3b1534c0 | 1431 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); |
9cad30fa JF |
1432 | JSObjectRef toCYON(CYCastJSObject(context, CYGetProperty(context, Array, toCYON_s))); |
1433 | return CYCallAsFunction(context, toCYON, _this, count, arguments); | |
0d64cb32 | 1434 | } else if (internal->type_->type_ == NULL) pointer: { |
9cad30fa JF |
1435 | char string[32]; |
1436 | sprintf(string, "%p", internal->value_); | |
1437 | return CYCastJSValue(context, string); | |
0d64cb32 JF |
1438 | } try { |
1439 | JSValueRef value(CYGetProperty(context, _this, cyi_s)); | |
1440 | if (JSValueIsUndefined(context, value)) | |
1441 | goto pointer; | |
1442 | CYPool pool; | |
98735bfe | 1443 | return CYCastJSValue(context, pool.strcat("&", CYPoolCCYON(pool, context, value, objects), NULL)); |
0d64cb32 JF |
1444 | } catch (const CYException &e) { |
1445 | goto pointer; | |
9cad30fa | 1446 | } |
55c6d6ab | 1447 | } CYCatch(NULL) } |
9cad30fa | 1448 | |
9cea6cab JF |
1449 | static JSValueRef Pointer_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
1450 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
1451 | return CYMakeType(context, internal->type_->type_); | |
1452 | } CYCatch(NULL) } | |
1453 | ||
62d94d32 | 1454 | static JSValueRef Functor_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
7d894647 | 1455 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(object))); |
9a39f705 | 1456 | return CYMakeType(context, &internal->signature_); |
62d94d32 | 1457 | } CYCatch(NULL) } |
7d894647 | 1458 | |
62d94d32 | 1459 | static JSValueRef Type_getProperty_alignment(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
74e8c566 JF |
1460 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1461 | return CYCastJSValue(context, internal->GetFFI()->alignment); | |
62d94d32 | 1462 | } CYCatch(NULL) } |
74e8c566 | 1463 | |
62d94d32 | 1464 | static JSValueRef Type_getProperty_name(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
21d5f610 JF |
1465 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1466 | return CYCastJSValue(context, internal->type_->name); | |
62d94d32 | 1467 | } CYCatch(NULL) } |
21d5f610 | 1468 | |
62d94d32 | 1469 | static JSValueRef Type_getProperty_size(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
74e8c566 JF |
1470 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1471 | return CYCastJSValue(context, internal->GetFFI()->size); | |
62d94d32 | 1472 | } CYCatch(NULL) } |
74e8c566 | 1473 | |
9cad30fa JF |
1474 | static JSValueRef Type_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1475 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1476 | CYPool pool; | |
1477 | const char *type(sig::Unparse(pool, internal->type_)); | |
1478 | return CYCastJSValue(context, CYJSString(type)); | |
55c6d6ab | 1479 | } CYCatch(NULL) } |
9cad30fa JF |
1480 | |
1481 | static JSValueRef Type_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1482 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
9a39f705 | 1483 | CYLocalPool pool; |
efd689d8 | 1484 | std::stringbuf out; |
9a39f705 JF |
1485 | CYOptions options; |
1486 | CYOutput output(out, options); | |
1487 | (new(pool) CYEncodedType(Decode(pool, internal->type_)))->Output(output, CYNoFlags); | |
1488 | return CYCastJSValue(context, CYJSString(out.str().c_str())); | |
55c6d6ab | 1489 | } CYCatch(NULL) } |
9cad30fa JF |
1490 | |
1491 | static JSValueRef Type_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { | |
1492 | return Type_callAsFunction_toString(context, object, _this, count, arguments, exception); | |
1493 | } | |
1494 | ||
1495 | static JSStaticFunction Pointer_staticFunctions[4] = { | |
1496 | {"toCYON", &Pointer_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1497 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1498 | {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1499 | {NULL, NULL, 0} | |
1500 | }; | |
1501 | ||
9cea6cab JF |
1502 | static JSStaticValue Pointer_staticValues[2] = { |
1503 | {"type", &Pointer_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1504 | {NULL, NULL, NULL, 0} | |
1505 | }; | |
1506 | ||
9cad30fa JF |
1507 | static JSStaticFunction Struct_staticFunctions[2] = { |
1508 | {"$cya", &Struct_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1509 | {NULL, NULL, 0} | |
1510 | }; | |
1511 | ||
1512 | static JSStaticFunction Functor_staticFunctions[4] = { | |
1513 | {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1514 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1515 | {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1516 | {NULL, NULL, 0} | |
1517 | }; | |
1518 | ||
1519 | namespace cy { | |
1520 | JSStaticFunction const * const Functor::StaticFunctions = Functor_staticFunctions; | |
1521 | } | |
1522 | ||
7d894647 JF |
1523 | static JSStaticValue Functor_staticValues[2] = { |
1524 | {"type", &Functor_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1525 | {NULL, NULL, NULL, 0} | |
1526 | }; | |
1527 | ||
8493347d JF |
1528 | namespace cy { |
1529 | JSStaticValue const * const Functor::StaticValues = Functor_staticValues; | |
1530 | } | |
1531 | ||
21d5f610 | 1532 | static JSStaticValue Type_staticValues[4] = { |
74e8c566 | 1533 | {"alignment", &Type_getProperty_alignment, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
21d5f610 | 1534 | {"name", &Type_getProperty_name, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
74e8c566 JF |
1535 | {"size", &Type_getProperty_size, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1536 | {NULL, NULL, NULL, 0} | |
1537 | }; | |
1538 | ||
3fe283c5 | 1539 | static JSStaticFunction Type_staticFunctions[14] = { |
85e90410 | 1540 | {"arrayOf", &Type_callAsFunction_arrayOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
3fe16be7 | 1541 | {"blockWith", &Type_callAsFunction_blockWith, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
fbc17268 | 1542 | {"constant", &Type_callAsFunction_constant, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9a39f705 | 1543 | {"functionWith", &Type_callAsFunction_functionWith, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
3fe283c5 | 1544 | {"long", &Type_callAsFunction_long, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
85e90410 | 1545 | {"pointerTo", &Type_callAsFunction_pointerTo, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
3fe283c5 JF |
1546 | {"short", &Type_callAsFunction_short, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1547 | {"signed", &Type_callAsFunction_signed, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
21d5f610 | 1548 | {"withName", &Type_callAsFunction_withName, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1549 | {"toCYON", &Type_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1550 | {"toJSON", &Type_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1551 | {"toString", &Type_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
3fe283c5 | 1552 | {"unsigned", &Type_callAsFunction_unsigned, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1553 | {NULL, NULL, 0} |
1554 | }; | |
1555 | ||
1556 | static JSObjectRef (*JSObjectMakeArray$)(JSContextRef, size_t, const JSValueRef[], JSValueRef *); | |
1557 | ||
d9c91152 | 1558 | _visible void CYSetArgs(int argc, const char *argv[]) { |
9cad30fa JF |
1559 | JSContextRef context(CYGetJSContext()); |
1560 | JSValueRef args[argc]; | |
1561 | for (int i(0); i != argc; ++i) | |
1562 | args[i] = CYCastJSValue(context, argv[i]); | |
1563 | ||
1564 | JSObjectRef array; | |
f1b5a47f JF |
1565 | if (JSObjectMakeArray$ != NULL) |
1566 | array = _jsccall(*JSObjectMakeArray$, context, argc, args); | |
1567 | else { | |
9cad30fa JF |
1568 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array"))); |
1569 | JSValueRef value(CYCallAsFunction(context, Array, NULL, argc, args)); | |
1570 | array = CYCastJSObject(context, value); | |
1571 | } | |
1572 | ||
1573 | JSObjectRef System(CYGetCachedObject(context, CYJSString("System"))); | |
1574 | CYSetProperty(context, System, CYJSString("args"), array); | |
1575 | } | |
1576 | ||
1577 | JSObjectRef CYGetGlobalObject(JSContextRef context) { | |
1578 | return JSContextGetGlobalObject(context); | |
1579 | } | |
1580 | ||
c4481e40 | 1581 | // XXX: this is neither exceptin safe nor even terribly sane |
a8d80096 JF |
1582 | class ExecutionHandle { |
1583 | private: | |
1584 | JSContextRef context_; | |
c4481e40 | 1585 | std::vector<void *> handles_; |
a8d80096 JF |
1586 | |
1587 | public: | |
1588 | ExecutionHandle(JSContextRef context) : | |
1589 | context_(context) | |
1590 | { | |
c2e81022 JF |
1591 | handles_.resize(GetHooks().size()); |
1592 | for (size_t i(0); i != GetHooks().size(); ++i) { | |
1593 | CYHook *hook(GetHooks()[i]); | |
c4481e40 JF |
1594 | if (hook->ExecuteStart != NULL) |
1595 | handles_[i] = (*hook->ExecuteStart)(context_); | |
1596 | else | |
1597 | handles_[i] = NULL; | |
1598 | } | |
a8d80096 JF |
1599 | } |
1600 | ||
1601 | ~ExecutionHandle() { | |
c2e81022 JF |
1602 | for (size_t i(GetHooks().size()); i != 0; --i) { |
1603 | CYHook *hook(GetHooks()[i-1]); | |
c4481e40 JF |
1604 | if (hook->ExecuteEnd != NULL) |
1605 | (*hook->ExecuteEnd)(context_, handles_[i-1]); | |
1606 | } | |
a8d80096 JF |
1607 | } |
1608 | }; | |
1609 | ||
b0ba908c JF |
1610 | static volatile bool cancel_; |
1611 | ||
1612 | static bool CYShouldTerminate(JSContextRef context, void *arg) { | |
1613 | return cancel_; | |
1614 | } | |
1615 | ||
d9c91152 | 1616 | _visible const char *CYExecute(JSContextRef context, CYPool &pool, CYUTF8String code) { |
a8d80096 | 1617 | ExecutionHandle handle(context); |
9cad30fa | 1618 | |
b0ba908c JF |
1619 | cancel_ = false; |
1620 | if (&JSContextGroupSetExecutionTimeLimit != NULL) | |
1621 | JSContextGroupSetExecutionTimeLimit(JSContextGetGroup(context), 0.5, &CYShouldTerminate, NULL); | |
9cad30fa | 1622 | |
e66ced89 JF |
1623 | try { |
1624 | JSValueRef result(_jsccall(JSEvaluateScript, context, CYJSString(code), NULL, NULL, 0)); | |
1625 | if (JSValueIsUndefined(context, result)) | |
1626 | return NULL; | |
9cad30fa | 1627 | |
e66ced89 JF |
1628 | std::set<void *> objects; |
1629 | const char *json(_jsccall(CYPoolCCYON, pool, context, result, objects)); | |
1630 | CYSetProperty(context, CYGetGlobalObject(context), Result_, result); | |
9cad30fa | 1631 | |
e66ced89 JF |
1632 | return json; |
1633 | } catch (const CYException &error) { | |
1634 | return pool.strcat("throw ", error.PoolCString(pool), NULL); | |
1635 | } | |
9cad30fa JF |
1636 | } |
1637 | ||
d9c91152 | 1638 | _visible void CYCancel() { |
b0ba908c JF |
1639 | cancel_ = true; |
1640 | } | |
1641 | ||
09eee478 JF |
1642 | static bool initialized_ = false; |
1643 | ||
9cad30fa | 1644 | void CYInitializeDynamic() { |
09eee478 JF |
1645 | if (!initialized_) |
1646 | initialized_ = true; | |
1647 | else return; | |
1648 | ||
9cad30fa | 1649 | JSObjectMakeArray$ = reinterpret_cast<JSObjectRef (*)(JSContextRef, size_t, const JSValueRef[], JSValueRef *)>(dlsym(RTLD_DEFAULT, "JSObjectMakeArray")); |
d5fa31c5 | 1650 | JSSynchronousGarbageCollectForDebugging$ = reinterpret_cast<void (*)(JSContextRef)>(dlsym(RTLD_DEFAULT, "JSSynchronousGarbageCollectForDebugging")); |
9cad30fa JF |
1651 | |
1652 | JSClassDefinition definition; | |
1653 | ||
1654 | definition = kJSClassDefinitionEmpty; | |
1655 | definition.className = "All"; | |
58321c0a | 1656 | definition.hasProperty = &All_hasProperty; |
9cad30fa | 1657 | definition.getProperty = &All_getProperty; |
26ef7a82 | 1658 | definition.getPropertyNames = &All_getPropertyNames; |
9cad30fa JF |
1659 | All_ = JSClassCreate(&definition); |
1660 | ||
1661 | definition = kJSClassDefinitionEmpty; | |
1662 | definition.className = "Context"; | |
1663 | definition.finalize = &CYFinalize; | |
1664 | Context_ = JSClassCreate(&definition); | |
1665 | ||
1666 | definition = kJSClassDefinitionEmpty; | |
1667 | definition.className = "Functor"; | |
1668 | definition.staticFunctions = cy::Functor::StaticFunctions; | |
7d894647 | 1669 | definition.staticValues = Functor_staticValues; |
9cad30fa JF |
1670 | definition.callAsFunction = &Functor_callAsFunction; |
1671 | definition.finalize = &CYFinalize; | |
1672 | Functor_ = JSClassCreate(&definition); | |
1673 | ||
1674 | definition = kJSClassDefinitionEmpty; | |
1675 | definition.className = "Pointer"; | |
1676 | definition.staticFunctions = Pointer_staticFunctions; | |
9cea6cab | 1677 | definition.staticValues = Pointer_staticValues; |
9cad30fa JF |
1678 | definition.getProperty = &Pointer_getProperty; |
1679 | definition.setProperty = &Pointer_setProperty; | |
1680 | definition.finalize = &CYFinalize; | |
1681 | Pointer_ = JSClassCreate(&definition); | |
1682 | ||
1683 | definition = kJSClassDefinitionEmpty; | |
1684 | definition.className = "Struct"; | |
1685 | definition.staticFunctions = Struct_staticFunctions; | |
1686 | definition.getProperty = &Struct_getProperty; | |
1687 | definition.setProperty = &Struct_setProperty; | |
1688 | definition.getPropertyNames = &Struct_getPropertyNames; | |
1689 | definition.finalize = &CYFinalize; | |
1690 | Struct_ = JSClassCreate(&definition); | |
1691 | ||
1692 | definition = kJSClassDefinitionEmpty; | |
1693 | definition.className = "Type"; | |
74e8c566 | 1694 | definition.staticValues = Type_staticValues; |
9cad30fa | 1695 | definition.staticFunctions = Type_staticFunctions; |
9cad30fa JF |
1696 | definition.callAsFunction = &Type_callAsFunction; |
1697 | definition.callAsConstructor = &Type_callAsConstructor; | |
1698 | definition.finalize = &CYFinalize; | |
1699 | Type_privateData::Class_ = JSClassCreate(&definition); | |
1700 | ||
1701 | definition = kJSClassDefinitionEmpty; | |
56a66df3 | 1702 | definition.className = "Global"; |
9cad30fa JF |
1703 | //definition.getProperty = &Global_getProperty; |
1704 | Global_ = JSClassCreate(&definition); | |
1705 | ||
1706 | Array_s = JSStringCreateWithUTF8CString("Array"); | |
1707 | cy_s = JSStringCreateWithUTF8CString("$cy"); | |
4dd55d2f | 1708 | cyi_s = JSStringCreateWithUTF8CString("$cyi"); |
9cad30fa JF |
1709 | length_s = JSStringCreateWithUTF8CString("length"); |
1710 | message_s = JSStringCreateWithUTF8CString("message"); | |
1711 | name_s = JSStringCreateWithUTF8CString("name"); | |
1712 | pop_s = JSStringCreateWithUTF8CString("pop"); | |
1713 | prototype_s = JSStringCreateWithUTF8CString("prototype"); | |
1714 | push_s = JSStringCreateWithUTF8CString("push"); | |
1715 | splice_s = JSStringCreateWithUTF8CString("splice"); | |
1716 | toCYON_s = JSStringCreateWithUTF8CString("toCYON"); | |
1717 | toJSON_s = JSStringCreateWithUTF8CString("toJSON"); | |
20ded97a | 1718 | toPointer_s = JSStringCreateWithUTF8CString("toPointer"); |
4cb8aa43 | 1719 | toString_s = JSStringCreateWithUTF8CString("toString"); |
56f57e5b | 1720 | weak_s = JSStringCreateWithUTF8CString("weak"); |
9cad30fa JF |
1721 | |
1722 | Result_ = JSStringCreateWithUTF8CString("_"); | |
1723 | ||
c2e81022 | 1724 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
1725 | if (hook->Initialize != NULL) |
1726 | (*hook->Initialize)(); | |
9cad30fa JF |
1727 | } |
1728 | ||
1729 | void CYThrow(JSContextRef context, JSValueRef value) { | |
1730 | if (value != NULL) | |
1731 | throw CYJSError(context, value); | |
1732 | } | |
1733 | ||
b799113b | 1734 | const char *CYJSError::PoolCString(CYPool &pool) const { |
98735bfe | 1735 | std::set<void *> objects; |
9cad30fa | 1736 | // XXX: this used to be CYPoolCString |
98735bfe | 1737 | return CYPoolCCYON(pool, context_, value_, objects); |
9cad30fa JF |
1738 | } |
1739 | ||
a1ae2985 JF |
1740 | JSValueRef CYJSError::CastJSValue(JSContextRef context, const char *name) const { |
1741 | // XXX: what if the context is different? or the name? I dunno. ("epic" :/) | |
9cad30fa JF |
1742 | return value_; |
1743 | } | |
1744 | ||
a1ae2985 JF |
1745 | JSValueRef CYCastJSError(JSContextRef context, const char *name, const char *message) { |
1746 | JSObjectRef Error(CYGetCachedObject(context, CYJSString(name))); | |
9cad30fa | 1747 | JSValueRef arguments[1] = {CYCastJSValue(context, message)}; |
f1b5a47f | 1748 | return _jsccall(JSObjectCallAsConstructor, context, Error, 1, arguments); |
9cad30fa JF |
1749 | } |
1750 | ||
a1ae2985 JF |
1751 | JSValueRef CYPoolError::CastJSValue(JSContextRef context, const char *name) const { |
1752 | return CYCastJSError(context, name, message_); | |
9cad30fa JF |
1753 | } |
1754 | ||
1755 | CYJSError::CYJSError(JSContextRef context, const char *format, ...) { | |
1756 | _assert(context != NULL); | |
1757 | ||
1758 | CYPool pool; | |
1759 | ||
1760 | va_list args; | |
1761 | va_start(args, format); | |
0cbeddf8 JF |
1762 | // XXX: there might be a beter way to think about this |
1763 | const char *message(pool.vsprintf(64, format, args)); | |
9cad30fa JF |
1764 | va_end(args); |
1765 | ||
a1ae2985 | 1766 | value_ = CYCastJSError(context, "Error", message); |
9cad30fa JF |
1767 | } |
1768 | ||
1769 | JSGlobalContextRef CYGetJSContext(JSContextRef context) { | |
1770 | return reinterpret_cast<Context *>(JSObjectGetPrivate(CYCastJSObject(context, CYGetProperty(context, CYGetGlobalObject(context), cy_s))))->context_; | |
1771 | } | |
1772 | ||
d00dec14 | 1773 | void *CYMapFile(const char *path, size_t *psize) { |
73f04979 | 1774 | int fd(_syscall_(open(path, O_RDONLY), 1, ENOENT)); |
3f7f8d11 JF |
1775 | if (fd == -1) |
1776 | return NULL; | |
d00dec14 JF |
1777 | |
1778 | struct stat stat; | |
1779 | _syscall(fstat(fd, &stat)); | |
1780 | size_t size(stat.st_size); | |
1781 | ||
1782 | *psize = size; | |
1783 | ||
1784 | void *base; | |
1785 | _syscall(base = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0)); | |
1786 | ||
1787 | _syscall(close(fd)); | |
1788 | return base; | |
1789 | } | |
1790 | ||
c6bf437d JF |
1791 | static JSValueRef require(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1792 | _assert(count == 1); | |
1793 | CYPool pool; | |
1794 | ||
1795 | Dl_info addr; | |
1796 | _assert(dladdr(reinterpret_cast<void *>(&require), &addr) != 0); | |
1797 | char *lib(pool.strdup(addr.dli_fname)); | |
1798 | ||
1799 | char *slash(strrchr(lib, '/')); | |
1800 | _assert(slash != NULL); | |
1801 | *slash = '\0'; | |
1802 | ||
1803 | CYJSString property("exports"); | |
1804 | JSObjectRef module; | |
1805 | ||
3f7f8d11 JF |
1806 | const char *name(CYPoolCString(pool, context, arguments[0])); |
1807 | const char *path(pool.strcat(lib, "/cycript0.9/", name, ".cy", NULL)); | |
1808 | ||
c6bf437d JF |
1809 | CYJSString key(path); |
1810 | JSObjectRef modules(CYGetCachedObject(context, CYJSString("modules"))); | |
1811 | JSValueRef cache(CYGetProperty(context, modules, key)); | |
1812 | ||
1813 | if (!JSValueIsUndefined(context, cache)) | |
1814 | module = CYCastJSObject(context, cache); | |
1815 | else { | |
97d3f268 JF |
1816 | CYUTF8String code; |
1817 | code.data = reinterpret_cast<char *>(CYMapFile(path, &code.size)); | |
1818 | ||
3f7f8d11 JF |
1819 | if (code.data == NULL) { |
1820 | if (strchr(name, '/') == NULL && ( | |
0047545c | 1821 | #ifdef __APPLE__ |
3f7f8d11 JF |
1822 | dlopen(pool.strcat("/System/Library/Frameworks/", name, ".framework/", name, NULL), RTLD_LAZY | RTLD_GLOBAL) != NULL || |
1823 | dlopen(pool.strcat("/System/Library/PrivateFrameworks/", name, ".framework/", name, NULL), RTLD_LAZY | RTLD_GLOBAL) != NULL || | |
0047545c | 1824 | #endif |
3f7f8d11 JF |
1825 | false)) |
1826 | return CYJSUndefined(NULL); | |
1827 | ||
1828 | CYThrow("Can't find module: %s", name); | |
1829 | } | |
1830 | ||
6447ef49 JF |
1831 | module = JSObjectMake(context, NULL, NULL); |
1832 | CYSetProperty(context, modules, key, module); | |
1833 | ||
1834 | JSObjectRef exports(JSObjectMake(context, NULL, NULL)); | |
1835 | CYSetProperty(context, module, property, exports); | |
1836 | ||
c6bf437d JF |
1837 | std::stringstream wrap; |
1838 | wrap << "(function (exports, require, module) { " << code << "\n});"; | |
5587a93f | 1839 | code = CYPoolCode(pool, wrap); |
c6bf437d JF |
1840 | |
1841 | JSValueRef value(_jsccall(JSEvaluateScript, context, CYJSString(code), NULL, NULL, 0)); | |
1842 | JSObjectRef function(CYCastJSObject(context, value)); | |
1843 | ||
c6bf437d JF |
1844 | JSValueRef arguments[3] = { exports, JSObjectMakeFunctionWithCallback(context, CYJSString("require"), &require), module }; |
1845 | CYCallAsFunction(context, function, NULL, 3, arguments); | |
c6bf437d JF |
1846 | } |
1847 | ||
1848 | return CYGetProperty(context, module, property); | |
1849 | } CYCatch(NULL) } | |
1850 | ||
012c7408 JF |
1851 | extern "C" void CYDestroyWeak(JSWeakObjectMapRef weak, void *data) { |
1852 | } | |
1853 | ||
9cad30fa JF |
1854 | extern "C" void CYSetupContext(JSGlobalContextRef context) { |
1855 | CYInitializeDynamic(); | |
1856 | ||
1857 | JSObjectRef global(CYGetGlobalObject(context)); | |
1858 | ||
1859 | JSObjectRef cy(JSObjectMake(context, Context_, new Context(context))); | |
1860 | CYSetProperty(context, global, cy_s, cy, kJSPropertyAttributeDontEnum); | |
1861 | ||
1862 | /* Cache Globals {{{ */ | |
1863 | JSObjectRef Array(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Array")))); | |
1864 | CYSetProperty(context, cy, CYJSString("Array"), Array); | |
1865 | ||
1866 | JSObjectRef Array_prototype(CYCastJSObject(context, CYGetProperty(context, Array, prototype_s))); | |
1867 | CYSetProperty(context, cy, CYJSString("Array_prototype"), Array_prototype); | |
1868 | ||
654bf401 JF |
1869 | JSObjectRef Boolean(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Boolean")))); |
1870 | CYSetProperty(context, cy, CYJSString("Boolean"), Boolean); | |
1871 | ||
1872 | JSObjectRef Boolean_prototype(CYCastJSObject(context, CYGetProperty(context, Boolean, prototype_s))); | |
1873 | CYSetProperty(context, cy, CYJSString("Boolean_prototype"), Boolean_prototype); | |
1874 | ||
9cad30fa JF |
1875 | JSObjectRef Error(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Error")))); |
1876 | CYSetProperty(context, cy, CYJSString("Error"), Error); | |
1877 | ||
e66ced89 JF |
1878 | JSObjectRef Error_prototype(CYCastJSObject(context, CYGetProperty(context, Error, prototype_s))); |
1879 | CYSetProperty(context, cy, CYJSString("Error_prototype"), Error_prototype); | |
1880 | ||
9cad30fa JF |
1881 | JSObjectRef Function(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Function")))); |
1882 | CYSetProperty(context, cy, CYJSString("Function"), Function); | |
1883 | ||
1884 | JSObjectRef Function_prototype(CYCastJSObject(context, CYGetProperty(context, Function, prototype_s))); | |
1885 | CYSetProperty(context, cy, CYJSString("Function_prototype"), Function_prototype); | |
1886 | ||
654bf401 JF |
1887 | JSObjectRef Number(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Number")))); |
1888 | CYSetProperty(context, cy, CYJSString("Number"), Number); | |
1889 | ||
1890 | JSObjectRef Number_prototype(CYCastJSObject(context, CYGetProperty(context, Number, prototype_s))); | |
1891 | CYSetProperty(context, cy, CYJSString("Number_prototype"), Number_prototype); | |
1892 | ||
9cad30fa JF |
1893 | JSObjectRef Object(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Object")))); |
1894 | CYSetProperty(context, cy, CYJSString("Object"), Object); | |
1895 | ||
1896 | JSObjectRef Object_prototype(CYCastJSObject(context, CYGetProperty(context, Object, prototype_s))); | |
1897 | CYSetProperty(context, cy, CYJSString("Object_prototype"), Object_prototype); | |
1898 | ||
1899 | JSObjectRef String(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("String")))); | |
1900 | CYSetProperty(context, cy, CYJSString("String"), String); | |
4cb8aa43 JF |
1901 | |
1902 | JSObjectRef String_prototype(CYCastJSObject(context, CYGetProperty(context, String, prototype_s))); | |
1903 | CYSetProperty(context, cy, CYJSString("String_prototype"), String_prototype); | |
a1ae2985 JF |
1904 | |
1905 | JSObjectRef SyntaxError(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("SyntaxError")))); | |
1906 | CYSetProperty(context, cy, CYJSString("SyntaxError"), SyntaxError); | |
9cad30fa JF |
1907 | /* }}} */ |
1908 | ||
1909 | CYSetProperty(context, Array_prototype, toCYON_s, &Array_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); | |
e66ced89 | 1910 | CYSetProperty(context, Error_prototype, toCYON_s, &Error_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); |
4cb8aa43 | 1911 | CYSetProperty(context, String_prototype, toCYON_s, &String_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); |
9cad30fa JF |
1912 | |
1913 | JSObjectRef cycript(JSObjectMake(context, NULL, NULL)); | |
1914 | CYSetProperty(context, global, CYJSString("Cycript"), cycript); | |
7085e1ab | 1915 | CYSetProperty(context, cycript, CYJSString("compile"), &Cycript_compile_callAsFunction); |
9cad30fa JF |
1916 | CYSetProperty(context, cycript, CYJSString("gc"), &Cycript_gc_callAsFunction); |
1917 | ||
1918 | JSObjectRef Functor(JSObjectMakeConstructor(context, Functor_, &Functor_new)); | |
e78a4755 | 1919 | CYSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Functor, prototype_s)), Function_prototype); |
9cad30fa JF |
1920 | CYSetProperty(context, cycript, CYJSString("Functor"), Functor); |
1921 | ||
1922 | CYSetProperty(context, cycript, CYJSString("Pointer"), JSObjectMakeConstructor(context, Pointer_, &Pointer_new)); | |
b63701b2 | 1923 | CYSetProperty(context, cycript, CYJSString("Type"), JSObjectMakeConstructor(context, Type_privateData::Class_, &Type_new)); |
9cad30fa | 1924 | |
c6bf437d JF |
1925 | JSObjectRef modules(JSObjectMake(context, NULL, NULL)); |
1926 | CYSetProperty(context, cy, CYJSString("modules"), modules); | |
1927 | ||
9cad30fa JF |
1928 | JSObjectRef all(JSObjectMake(context, All_, NULL)); |
1929 | CYSetProperty(context, cycript, CYJSString("all"), all); | |
1930 | ||
f1b5a47f | 1931 | JSObjectRef alls(_jsccall(JSObjectCallAsConstructor, context, Array, 0, NULL)); |
26ef7a82 JF |
1932 | CYSetProperty(context, cycript, CYJSString("alls"), alls); |
1933 | ||
56a66df3 JF |
1934 | if (true) { |
1935 | JSObjectRef last(NULL), curr(global); | |
9cad30fa | 1936 | |
56a66df3 JF |
1937 | goto next; for (JSValueRef next;;) { |
1938 | if (JSValueIsNull(context, next)) | |
1939 | break; | |
1940 | last = curr; | |
1941 | curr = CYCastJSObject(context, next); | |
1942 | next: | |
1943 | next = JSObjectGetPrototype(context, curr); | |
1944 | } | |
9cad30fa | 1945 | |
e78a4755 | 1946 | CYSetPrototype(context, last, all); |
56a66df3 | 1947 | } |
9cad30fa | 1948 | |
9cad30fa | 1949 | JSObjectRef System(JSObjectMake(context, NULL, NULL)); |
cdc80ff2 | 1950 | CYSetProperty(context, cy, CYJSString("System"), System); |
9cad30fa | 1951 | |
c6bf437d JF |
1952 | CYSetProperty(context, all, CYJSString("require"), &require, kJSPropertyAttributeDontEnum); |
1953 | ||
9cad30fa JF |
1954 | CYSetProperty(context, global, CYJSString("system"), System); |
1955 | CYSetProperty(context, System, CYJSString("args"), CYJSNull(context)); | |
1956 | //CYSetProperty(context, System, CYJSString("global"), global); | |
1957 | CYSetProperty(context, System, CYJSString("print"), &System_print); | |
1958 | ||
73f04979 | 1959 | #ifdef __APPLE__ |
56f57e5b | 1960 | if (&JSWeakObjectMapCreate != NULL) { |
012c7408 | 1961 | JSWeakObjectMapRef weak(JSWeakObjectMapCreate(context, NULL, &CYDestroyWeak)); |
56f57e5b JF |
1962 | CYSetProperty(context, cy, weak_s, CYCastJSValue(context, reinterpret_cast<uintptr_t>(weak))); |
1963 | } | |
73f04979 | 1964 | #endif |
56f57e5b | 1965 | |
a621ae76 JF |
1966 | if (CYBridgeEntry *entry = CYBridgeHash("1dlerror", 8)) |
1967 | entry->cache_ = new cy::Functor(entry->value_, reinterpret_cast<void (*)()>(&dlerror)); | |
1968 | ||
c2e81022 | 1969 | for (CYHook *hook : GetHooks()) |
c4481e40 JF |
1970 | if (hook->SetupContext != NULL) |
1971 | (*hook->SetupContext)(context); | |
26ef7a82 JF |
1972 | |
1973 | CYArrayPush(context, alls, cycript); | |
9cad30fa JF |
1974 | } |
1975 | ||
8fab8594 JF |
1976 | static JSGlobalContextRef context_; |
1977 | ||
d9c91152 | 1978 | _visible JSGlobalContextRef CYGetJSContext() { |
9cad30fa JF |
1979 | CYInitializeDynamic(); |
1980 | ||
9cad30fa JF |
1981 | if (context_ == NULL) { |
1982 | context_ = JSGlobalContextCreate(Global_); | |
1983 | CYSetupContext(context_); | |
1984 | } | |
1985 | ||
1986 | return context_; | |
1987 | } | |
8fab8594 | 1988 | |
d9c91152 | 1989 | _visible void CYDestroyContext() { |
8fab8594 JF |
1990 | if (context_ == NULL) |
1991 | return; | |
1992 | JSGlobalContextRelease(context_); | |
1993 | context_ = NULL; | |
1994 | } |