]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
c15969fd | 2 | * Copyright (C) 2009-2013 Jay Freeman (saurik) |
9cad30fa JF |
3 | */ |
4 | ||
c15969fd | 5 | /* GNU General Public License, Version 3 {{{ */ |
9cad30fa | 6 | /* |
c15969fd JF |
7 | * Cycript is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published | |
9 | * by the Free Software Foundation, either version 3 of the License, | |
10 | * or (at your option) any later version. | |
9cad30fa | 11 | * |
c15969fd JF |
12 | * Cycript is distributed in the hope that it will be useful, but |
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | * GNU General Public License for more details. | |
9cad30fa | 16 | * |
c15969fd | 17 | * You should have received a copy of the GNU General Public License |
b3378a02 JF |
18 | * along with Cycript. If not, see <http://www.gnu.org/licenses/>. |
19 | **/ | |
9cad30fa JF |
20 | /* }}} */ |
21 | ||
9cad30fa JF |
22 | #include "Internal.hpp" |
23 | ||
24 | #include <dlfcn.h> | |
9cad30fa JF |
25 | |
26 | #include "cycript.hpp" | |
27 | ||
28 | #include "sig/parse.hpp" | |
29 | #include "sig/ffi_type.hpp" | |
30 | ||
31 | #include "Pooling.hpp" | |
2f51d6ab | 32 | #include "Execute.hpp" |
9cad30fa JF |
33 | |
34 | #include <sys/mman.h> | |
35 | ||
36 | #include <iostream> | |
9cad30fa JF |
37 | #include <set> |
38 | #include <map> | |
39 | #include <iomanip> | |
40 | #include <sstream> | |
41 | #include <cmath> | |
42 | ||
43 | #include "Parser.hpp" | |
9cad30fa JF |
44 | |
45 | #include "Error.hpp" | |
46 | #include "JavaScript.hpp" | |
47 | #include "String.hpp" | |
48 | ||
9cad30fa JF |
49 | struct CYHooks *hooks_; |
50 | ||
51 | /* JavaScript Properties {{{ */ | |
52 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index) { | |
53 | JSValueRef exception(NULL); | |
54 | JSValueRef value(JSObjectGetPropertyAtIndex(context, object, index, &exception)); | |
55 | CYThrow(context, exception); | |
56 | return value; | |
57 | } | |
58 | ||
59 | JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name) { | |
60 | JSValueRef exception(NULL); | |
61 | JSValueRef value(JSObjectGetProperty(context, object, name, &exception)); | |
62 | CYThrow(context, exception); | |
63 | return value; | |
64 | } | |
65 | ||
66 | void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value) { | |
67 | JSValueRef exception(NULL); | |
68 | JSObjectSetPropertyAtIndex(context, object, index, value, &exception); | |
69 | CYThrow(context, exception); | |
70 | } | |
71 | ||
72 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value, JSPropertyAttributes attributes) { | |
73 | JSValueRef exception(NULL); | |
74 | JSObjectSetProperty(context, object, name, value, attributes, &exception); | |
75 | CYThrow(context, exception); | |
76 | } | |
77 | ||
78 | void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef (*callback)(JSContextRef, JSObjectRef, JSObjectRef, size_t, const JSValueRef[], JSValueRef *), JSPropertyAttributes attributes) { | |
79 | CYSetProperty(context, object, name, JSObjectMakeFunctionWithCallback(context, name, callback), attributes); | |
80 | } | |
81 | /* }}} */ | |
82 | /* JavaScript Strings {{{ */ | |
83 | JSStringRef CYCopyJSString(const char *value) { | |
84 | return value == NULL ? NULL : JSStringCreateWithUTF8CString(value); | |
85 | } | |
86 | ||
87 | JSStringRef CYCopyJSString(JSStringRef value) { | |
88 | return value == NULL ? NULL : JSStringRetain(value); | |
89 | } | |
90 | ||
91 | JSStringRef CYCopyJSString(CYUTF8String value) { | |
92 | // XXX: this is very wrong; it needs to convert to UTF16 and then create from there | |
93 | return CYCopyJSString(value.data); | |
94 | } | |
95 | ||
96 | JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value) { | |
97 | if (JSValueIsNull(context, value)) | |
98 | return NULL; | |
99 | JSValueRef exception(NULL); | |
100 | JSStringRef string(JSValueToStringCopy(context, value, &exception)); | |
101 | CYThrow(context, exception); | |
102 | return string; | |
103 | } | |
104 | ||
105 | static CYUTF16String CYCastUTF16String(JSStringRef value) { | |
106 | return CYUTF16String(JSStringGetCharactersPtr(value), JSStringGetLength(value)); | |
107 | } | |
108 | ||
b799113b | 109 | CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
110 | return CYPoolUTF8String(pool, CYCastUTF16String(value)); |
111 | } | |
112 | ||
b799113b | 113 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
114 | CYUTF8String utf8(CYPoolUTF8String(pool, context, value)); |
115 | _assert(memchr(utf8.data, '\0', utf8.size) == NULL); | |
116 | return utf8.data; | |
117 | } | |
118 | ||
b799113b | 119 | const char *CYPoolCString(CYPool &pool, JSContextRef context, JSValueRef value) { |
9cad30fa JF |
120 | return JSValueIsNull(context, value) ? NULL : CYPoolCString(pool, context, CYJSString(context, value)); |
121 | } | |
122 | /* }}} */ | |
123 | /* Index Offsets {{{ */ | |
b799113b | 124 | size_t CYGetIndex(CYPool &pool, JSContextRef context, JSStringRef value) { |
9cad30fa JF |
125 | return CYGetIndex(CYPoolUTF8String(pool, context, value)); |
126 | } | |
127 | /* }}} */ | |
128 | ||
129 | static JSClassRef All_; | |
130 | static JSClassRef Context_; | |
3f9ae37c | 131 | JSClassRef Functor_; |
9cad30fa JF |
132 | static JSClassRef Global_; |
133 | static JSClassRef Pointer_; | |
134 | static JSClassRef Struct_; | |
135 | ||
136 | JSStringRef Array_s; | |
137 | JSStringRef cy_s; | |
138 | JSStringRef length_s; | |
139 | JSStringRef message_s; | |
140 | JSStringRef name_s; | |
141 | JSStringRef pop_s; | |
142 | JSStringRef prototype_s; | |
143 | JSStringRef push_s; | |
144 | JSStringRef splice_s; | |
145 | JSStringRef toCYON_s; | |
146 | JSStringRef toJSON_s; | |
20ded97a | 147 | JSStringRef toPointer_s; |
4cb8aa43 | 148 | JSStringRef toString_s; |
9cad30fa JF |
149 | |
150 | static JSStringRef Result_; | |
151 | ||
9cad30fa | 152 | void CYFinalize(JSObjectRef object) { |
1850a470 | 153 | CYData *internal(reinterpret_cast<CYData *>(JSObjectGetPrivate(object))); |
b799113b | 154 | _assert(internal->count_ != _not(unsigned)); |
1850a470 JF |
155 | if (--internal->count_ == 0) |
156 | delete internal; | |
9cad30fa JF |
157 | } |
158 | ||
b799113b | 159 | void Structor_(CYPool &pool, sig::Type *&type) { |
9cad30fa JF |
160 | if ( |
161 | type->primitive == sig::pointer_P && | |
162 | type->data.data.type != NULL && | |
163 | type->data.data.type->primitive == sig::struct_P && | |
1648ddb9 | 164 | type->data.data.type->name != NULL && |
9cad30fa JF |
165 | strcmp(type->data.data.type->name, "_objc_class") == 0 |
166 | ) { | |
167 | type->primitive = sig::typename_P; | |
168 | type->data.data.type = NULL; | |
169 | return; | |
170 | } | |
171 | ||
172 | if (type->primitive != sig::struct_P || type->name == NULL) | |
173 | return; | |
174 | ||
2f51d6ab JF |
175 | size_t length(strlen(type->name)); |
176 | char keyed[length + 2]; | |
177 | memcpy(keyed + 1, type->name, length + 1); | |
178 | ||
179 | static const char *modes = "34"; | |
180 | for (size_t i(0); i != 2; ++i) { | |
181 | char mode(modes[i]); | |
182 | keyed[0] = mode; | |
183 | ||
184 | if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1)) | |
185 | switch (mode) { | |
186 | case '3': | |
187 | sig::Parse(pool, &type->data.signature, entry->value_, &Structor_); | |
188 | break; | |
189 | ||
190 | case '4': { | |
191 | sig::Signature signature; | |
192 | sig::Parse(pool, &signature, entry->value_, &Structor_); | |
193 | type = signature.elements[0].type; | |
194 | } break; | |
195 | } | |
9cad30fa JF |
196 | } |
197 | } | |
198 | ||
199 | JSClassRef Type_privateData::Class_; | |
200 | ||
201 | struct Context : | |
202 | CYData | |
203 | { | |
204 | JSGlobalContextRef context_; | |
205 | ||
206 | Context(JSGlobalContextRef context) : | |
207 | context_(context) | |
208 | { | |
209 | } | |
210 | }; | |
211 | ||
212 | struct Pointer : | |
213 | CYOwned | |
214 | { | |
215 | Type_privateData *type_; | |
216 | size_t length_; | |
217 | ||
218 | Pointer(void *value, JSContextRef context, JSObjectRef owner, size_t length, sig::Type *type) : | |
219 | CYOwned(value, context, owner), | |
b799113b | 220 | type_(new(*pool_) Type_privateData(type)), |
9cad30fa JF |
221 | length_(length) |
222 | { | |
223 | } | |
224 | }; | |
225 | ||
226 | struct Struct_privateData : | |
227 | CYOwned | |
228 | { | |
229 | Type_privateData *type_; | |
230 | ||
231 | Struct_privateData(JSContextRef context, JSObjectRef owner) : | |
232 | CYOwned(NULL, context, owner) | |
233 | { | |
234 | } | |
235 | }; | |
236 | ||
14ec9e00 | 237 | typedef std::map<const char *, Type_privateData *, CYCStringLess> TypeMap; |
9cad30fa JF |
238 | static TypeMap Types_; |
239 | ||
240 | JSObjectRef CYMakeStruct(JSContextRef context, void *data, sig::Type *type, ffi_type *ffi, JSObjectRef owner) { | |
241 | Struct_privateData *internal(new Struct_privateData(context, owner)); | |
b799113b | 242 | CYPool &pool(*internal->pool_); |
9cad30fa JF |
243 | Type_privateData *typical(new(pool) Type_privateData(type, ffi)); |
244 | internal->type_ = typical; | |
245 | ||
246 | if (owner != NULL) | |
247 | internal->value_ = data; | |
248 | else { | |
249 | size_t size(typical->GetFFI()->size); | |
0cbeddf8 | 250 | void *copy(internal->pool_->malloc<void>(size)); |
9cad30fa JF |
251 | memcpy(copy, data, size); |
252 | internal->value_ = copy; | |
253 | } | |
254 | ||
255 | return JSObjectMake(context, Struct_, internal); | |
256 | } | |
257 | ||
9a98069f JF |
258 | static void *CYCastSymbol(const char *name) { |
259 | return dlsym(RTLD_DEFAULT, name); | |
260 | } | |
261 | ||
9cad30fa JF |
262 | JSValueRef CYCastJSValue(JSContextRef context, bool value) { |
263 | return JSValueMakeBoolean(context, value); | |
264 | } | |
265 | ||
266 | JSValueRef CYCastJSValue(JSContextRef context, double value) { | |
267 | return JSValueMakeNumber(context, value); | |
268 | } | |
269 | ||
270 | #define CYCastJSValue_(Type_) \ | |
271 | JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \ | |
272 | return JSValueMakeNumber(context, static_cast<double>(value)); \ | |
273 | } | |
274 | ||
275 | CYCastJSValue_(int) | |
276 | CYCastJSValue_(unsigned int) | |
277 | CYCastJSValue_(long int) | |
278 | CYCastJSValue_(long unsigned int) | |
279 | CYCastJSValue_(long long int) | |
280 | CYCastJSValue_(long long unsigned int) | |
281 | ||
282 | JSValueRef CYJSUndefined(JSContextRef context) { | |
283 | return JSValueMakeUndefined(context); | |
284 | } | |
285 | ||
286 | double CYCastDouble(JSContextRef context, JSValueRef value) { | |
287 | JSValueRef exception(NULL); | |
288 | double number(JSValueToNumber(context, value, &exception)); | |
289 | CYThrow(context, exception); | |
290 | return number; | |
291 | } | |
292 | ||
293 | bool CYCastBool(JSContextRef context, JSValueRef value) { | |
294 | return JSValueToBoolean(context, value); | |
295 | } | |
296 | ||
297 | JSValueRef CYJSNull(JSContextRef context) { | |
298 | return JSValueMakeNull(context); | |
299 | } | |
300 | ||
301 | JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value) { | |
302 | return value == NULL ? CYJSNull(context) : JSValueMakeString(context, value); | |
303 | } | |
304 | ||
305 | JSValueRef CYCastJSValue(JSContextRef context, const char *value) { | |
306 | return CYCastJSValue(context, CYJSString(value)); | |
307 | } | |
308 | ||
309 | JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value) { | |
310 | JSValueRef exception(NULL); | |
311 | JSObjectRef object(JSValueToObject(context, value, &exception)); | |
312 | CYThrow(context, exception); | |
313 | return object; | |
314 | } | |
315 | ||
316 | JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, const JSValueRef arguments[]) { | |
317 | JSValueRef exception(NULL); | |
318 | JSValueRef value(JSObjectCallAsFunction(context, function, _this, count, arguments, &exception)); | |
319 | CYThrow(context, exception); | |
320 | return value; | |
321 | } | |
322 | ||
323 | bool CYIsCallable(JSContextRef context, JSValueRef value) { | |
324 | return value != NULL && JSValueIsObject(context, value) && JSObjectIsFunction(context, (JSObjectRef) value); | |
325 | } | |
326 | ||
55f12f6a JF |
327 | size_t CYArrayLength(JSContextRef context, JSObjectRef array) { |
328 | return CYCastDouble(context, CYGetProperty(context, array, length_s)); | |
329 | } | |
330 | ||
331 | JSValueRef CYArrayGet(JSContextRef context, JSObjectRef array, size_t index) { | |
332 | JSValueRef exception(NULL); | |
333 | JSValueRef value(JSObjectGetPropertyAtIndex(context, array, index, &exception)); | |
334 | CYThrow(context, exception); | |
335 | return value; | |
336 | } | |
337 | ||
338 | void CYArrayPush(JSContextRef context, JSObjectRef array, JSValueRef value) { | |
339 | JSValueRef exception(NULL); | |
340 | JSValueRef arguments[1]; | |
341 | arguments[0] = value; | |
342 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); | |
343 | JSObjectCallAsFunction(context, CYCastJSObject(context, CYGetProperty(context, Array, push_s)), array, 1, arguments, &exception); | |
344 | CYThrow(context, exception); | |
345 | } | |
346 | ||
9cad30fa JF |
347 | static JSValueRef System_print(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
348 | if (count == 0) | |
349 | printf("\n"); | |
350 | else { | |
351 | CYPool pool; | |
352 | printf("%s\n", CYPoolCString(pool, context, arguments[0])); | |
353 | } | |
354 | ||
355 | return CYJSUndefined(context); | |
55c6d6ab | 356 | } CYCatch(NULL) } |
9cad30fa JF |
357 | |
358 | static size_t Nonce_(0); | |
359 | ||
62d94d32 | 360 | static JSValueRef $cyq(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa | 361 | CYPool pool; |
0cbeddf8 | 362 | const char *name(pool.strcat(CYPoolCString(pool, context, arguments[0]), pool.itoa(Nonce_++), NULL)); |
9cad30fa | 363 | return CYCastJSValue(context, name); |
62d94d32 | 364 | } CYCatch(NULL) } |
9cad30fa | 365 | |
62d94d32 | 366 | static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
367 | JSGarbageCollect(context); |
368 | return CYJSUndefined(context); | |
62d94d32 | 369 | } CYCatch(NULL) } |
9cad30fa | 370 | |
b799113b | 371 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value, JSValueRef *exception) { CYTry { |
9cad30fa JF |
372 | switch (JSType type = JSValueGetType(context, value)) { |
373 | case kJSTypeUndefined: | |
374 | return "undefined"; | |
375 | case kJSTypeNull: | |
376 | return "null"; | |
377 | case kJSTypeBoolean: | |
378 | return CYCastBool(context, value) ? "true" : "false"; | |
379 | ||
380 | case kJSTypeNumber: { | |
381 | std::ostringstream str; | |
382 | CYNumerify(str, CYCastDouble(context, value)); | |
383 | std::string value(str.str()); | |
b799113b | 384 | return pool.strmemdup(value.c_str(), value.size()); |
9cad30fa JF |
385 | } break; |
386 | ||
387 | case kJSTypeString: { | |
388 | std::ostringstream str; | |
389 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, value))); | |
390 | CYStringify(str, string.data, string.size); | |
391 | std::string value(str.str()); | |
b799113b | 392 | return pool.strmemdup(value.c_str(), value.size()); |
9cad30fa JF |
393 | } break; |
394 | ||
395 | case kJSTypeObject: | |
396 | return CYPoolCCYON(pool, context, (JSObjectRef) value); | |
397 | default: | |
398 | throw CYJSError(context, "JSValueGetType() == 0x%x", type); | |
399 | } | |
55c6d6ab | 400 | } CYCatch(NULL) } |
9cad30fa | 401 | |
b799113b | 402 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSValueRef value) { |
9cad30fa JF |
403 | JSValueRef exception(NULL); |
404 | const char *cyon(CYPoolCCYON(pool, context, value, &exception)); | |
405 | CYThrow(context, exception); | |
406 | return cyon; | |
407 | } | |
408 | ||
b799113b | 409 | const char *CYPoolCCYON(CYPool &pool, JSContextRef context, JSObjectRef object) { |
9cad30fa JF |
410 | JSValueRef toCYON(CYGetProperty(context, object, toCYON_s)); |
411 | if (CYIsCallable(context, toCYON)) { | |
412 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toCYON, object, 0, NULL)); | |
413 | _assert(value != NULL); | |
414 | return CYPoolCString(pool, context, value); | |
415 | } | |
416 | ||
417 | JSValueRef toJSON(CYGetProperty(context, object, toJSON_s)); | |
418 | if (CYIsCallable(context, toJSON)) { | |
419 | JSValueRef arguments[1] = {CYCastJSValue(context, CYJSString(""))}; | |
420 | JSValueRef exception(NULL); | |
421 | const char *cyon(CYPoolCCYON(pool, context, CYCallAsFunction(context, (JSObjectRef) toJSON, object, 1, arguments), &exception)); | |
422 | CYThrow(context, exception); | |
423 | return cyon; | |
424 | } | |
425 | ||
005b2e9f JF |
426 | if (JSObjectIsFunction(context, object)) { |
427 | JSValueRef toString(CYGetProperty(context, object, toString_s)); | |
428 | if (CYIsCallable(context, toString)) { | |
429 | JSValueRef arguments[1] = {CYCastJSValue(context, CYJSString(""))}; | |
430 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toString, object, 1, arguments)); | |
431 | _assert(value != NULL); | |
432 | return CYPoolCString(pool, context, value); | |
433 | } | |
434 | } | |
435 | ||
9cad30fa JF |
436 | std::ostringstream str; |
437 | ||
438 | str << '{'; | |
439 | ||
440 | // XXX: this is, sadly, going to leak | |
441 | JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object)); | |
442 | ||
443 | bool comma(false); | |
444 | ||
445 | for (size_t index(0), count(JSPropertyNameArrayGetCount(names)); index != count; ++index) { | |
9cad30fa JF |
446 | if (comma) |
447 | str << ','; | |
448 | else | |
449 | comma = true; | |
450 | ||
dc5d7cf4 | 451 | JSStringRef name(JSPropertyNameArrayGetNameAtIndex(names, index)); |
9cad30fa | 452 | CYUTF8String string(CYPoolUTF8String(pool, context, name)); |
dc5d7cf4 | 453 | |
9cad30fa JF |
454 | if (CYIsKey(string)) |
455 | str << string.data; | |
456 | else | |
457 | CYStringify(str, string.data, string.size); | |
458 | ||
dc5d7cf4 | 459 | str << ':'; |
9cad30fa | 460 | |
dc5d7cf4 JF |
461 | try { |
462 | JSValueRef value(CYGetProperty(context, object, name)); | |
463 | str << CYPoolCCYON(pool, context, value); | |
464 | } catch (const CYException &error) { | |
465 | str << "@error"; | |
466 | } | |
467 | } | |
9cad30fa JF |
468 | |
469 | JSPropertyNameArrayRelease(names); | |
470 | ||
dc5d7cf4 JF |
471 | str << '}'; |
472 | ||
9cad30fa | 473 | std::string string(str.str()); |
b799113b | 474 | return pool.strmemdup(string.c_str(), string.size()); |
9cad30fa JF |
475 | } |
476 | ||
477 | static JSValueRef Array_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
478 | CYPool pool; | |
479 | std::ostringstream str; | |
480 | ||
481 | str << '['; | |
482 | ||
483 | JSValueRef length(CYGetProperty(context, _this, length_s)); | |
484 | bool comma(false); | |
485 | ||
486 | for (size_t index(0), count(CYCastDouble(context, length)); index != count; ++index) { | |
487 | JSValueRef value(CYGetProperty(context, _this, index)); | |
488 | ||
489 | if (comma) | |
490 | str << ','; | |
491 | else | |
492 | comma = true; | |
493 | ||
494 | if (!JSValueIsUndefined(context, value)) | |
495 | str << CYPoolCCYON(pool, context, value); | |
496 | else { | |
497 | str << ','; | |
498 | comma = false; | |
499 | } | |
500 | } | |
501 | ||
502 | str << ']'; | |
503 | ||
504 | std::string value(str.str()); | |
505 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 506 | } CYCatch(NULL) } |
9cad30fa | 507 | |
4cb8aa43 JF |
508 | static JSValueRef String_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
509 | CYPool pool; | |
510 | std::ostringstream str; | |
511 | ||
512 | CYUTF8String string(CYPoolUTF8String(pool, context, CYJSString(context, _this))); | |
513 | CYStringify(str, string.data, string.size); | |
514 | ||
515 | std::string value(str.str()); | |
516 | return CYCastJSValue(context, CYJSString(CYUTF8String(value.c_str(), value.size()))); | |
55c6d6ab | 517 | } CYCatch(NULL) } |
4cb8aa43 | 518 | |
9cad30fa JF |
519 | JSObjectRef CYMakePointer(JSContextRef context, void *pointer, size_t length, sig::Type *type, ffi_type *ffi, JSObjectRef owner) { |
520 | Pointer *internal(new Pointer(pointer, context, owner, length, type)); | |
521 | return JSObjectMake(context, Pointer_, internal); | |
522 | } | |
523 | ||
9a98069f JF |
524 | static JSObjectRef CYMakeFunctor(JSContextRef context, void (*function)(), const char *type) { |
525 | return JSObjectMake(context, Functor_, new cy::Functor(type, function)); | |
526 | } | |
1850a470 | 527 | |
9a98069f JF |
528 | static JSObjectRef CYMakeFunctor(JSContextRef context, const char *symbol, const char *type, void **cache) { |
529 | cy::Functor *internal; | |
530 | if (*cache != NULL) | |
1850a470 | 531 | internal = reinterpret_cast<cy::Functor *>(*cache); |
9a98069f JF |
532 | else { |
533 | void (*function)()(reinterpret_cast<void (*)()>(CYCastSymbol(symbol))); | |
534 | if (function == NULL) | |
535 | return NULL; | |
1850a470 | 536 | |
9a98069f JF |
537 | internal = new cy::Functor(type, function); |
538 | *cache = internal; | |
1850a470 JF |
539 | } |
540 | ||
9a98069f | 541 | ++internal->count_; |
9cad30fa JF |
542 | return JSObjectMake(context, Functor_, internal); |
543 | } | |
544 | ||
b799113b | 545 | static bool CYGetOffset(CYPool &pool, JSContextRef context, JSStringRef value, ssize_t &index) { |
9cad30fa JF |
546 | return CYGetOffset(CYPoolCString(pool, context, value), index); |
547 | } | |
548 | ||
549 | void *CYCastPointer_(JSContextRef context, JSValueRef value) { | |
550 | switch (JSValueGetType(context, value)) { | |
551 | case kJSTypeNull: | |
552 | return NULL; | |
20ded97a JF |
553 | case kJSTypeObject: { |
554 | JSObjectRef object((JSObjectRef) value); | |
9cad30fa | 555 | if (JSValueIsObjectOfClass(context, value, Pointer_)) { |
20ded97a | 556 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); |
9cad30fa | 557 | return internal->value_; |
20ded97a JF |
558 | } |
559 | JSValueRef toPointer(CYGetProperty(context, object, toPointer_s)); | |
560 | if (CYIsCallable(context, toPointer)) { | |
561 | JSValueRef value(CYCallAsFunction(context, (JSObjectRef) toPointer, object, 0, NULL)); | |
562 | _assert(value != NULL); | |
563 | return CYCastPointer_(context, value); | |
564 | } | |
565 | } default: | |
9cad30fa JF |
566 | double number(CYCastDouble(context, value)); |
567 | if (std::isnan(number)) | |
568 | throw CYJSError(context, "cannot convert value to pointer"); | |
569 | return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number))); | |
570 | } | |
571 | } | |
572 | ||
b799113b | 573 | void CYPoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) { |
9cad30fa JF |
574 | switch (type->primitive) { |
575 | case sig::boolean_P: | |
576 | *reinterpret_cast<bool *>(data) = JSValueToBoolean(context, value); | |
577 | break; | |
578 | ||
579 | #define CYPoolFFI_(primitive, native) \ | |
580 | case sig::primitive ## _P: \ | |
581 | *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \ | |
582 | break; | |
583 | ||
584 | CYPoolFFI_(uchar, unsigned char) | |
585 | CYPoolFFI_(char, char) | |
586 | CYPoolFFI_(ushort, unsigned short) | |
587 | CYPoolFFI_(short, short) | |
588 | CYPoolFFI_(ulong, unsigned long) | |
589 | CYPoolFFI_(long, long) | |
590 | CYPoolFFI_(uint, unsigned int) | |
591 | CYPoolFFI_(int, int) | |
592 | CYPoolFFI_(ulonglong, unsigned long long) | |
593 | CYPoolFFI_(longlong, long long) | |
594 | CYPoolFFI_(float, float) | |
595 | CYPoolFFI_(double, double) | |
596 | ||
597 | case sig::array_P: { | |
598 | uint8_t *base(reinterpret_cast<uint8_t *>(data)); | |
599 | JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL); | |
600 | for (size_t index(0); index != type->data.data.size; ++index) { | |
601 | ffi_type *field(ffi->elements[index]); | |
602 | ||
603 | JSValueRef rhs; | |
604 | if (aggregate == NULL) | |
605 | rhs = value; | |
606 | else { | |
607 | rhs = CYGetProperty(context, aggregate, index); | |
608 | if (JSValueIsUndefined(context, rhs)) | |
609 | throw CYJSError(context, "unable to extract array value"); | |
610 | } | |
611 | ||
612 | CYPoolFFI(pool, context, type->data.data.type, field, base, rhs); | |
613 | // XXX: alignment? | |
614 | base += field->size; | |
615 | } | |
616 | } break; | |
617 | ||
618 | case sig::pointer_P: | |
619 | *reinterpret_cast<void **>(data) = CYCastPointer<void *>(context, value); | |
620 | break; | |
621 | ||
622 | case sig::string_P: | |
b799113b JF |
623 | _assert(pool != NULL); |
624 | *reinterpret_cast<const char **>(data) = CYPoolCString(*pool, context, value); | |
9cad30fa JF |
625 | break; |
626 | ||
627 | case sig::struct_P: { | |
628 | uint8_t *base(reinterpret_cast<uint8_t *>(data)); | |
629 | JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL); | |
630 | for (size_t index(0); index != type->data.signature.count; ++index) { | |
631 | sig::Element *element(&type->data.signature.elements[index]); | |
632 | ffi_type *field(ffi->elements[index]); | |
633 | ||
634 | JSValueRef rhs; | |
635 | if (aggregate == NULL) | |
636 | rhs = value; | |
637 | else { | |
638 | rhs = CYGetProperty(context, aggregate, index); | |
639 | if (JSValueIsUndefined(context, rhs)) { | |
640 | if (element->name != NULL) | |
641 | rhs = CYGetProperty(context, aggregate, CYJSString(element->name)); | |
642 | else | |
643 | goto undefined; | |
644 | if (JSValueIsUndefined(context, rhs)) undefined: | |
645 | throw CYJSError(context, "unable to extract structure value"); | |
646 | } | |
647 | } | |
648 | ||
649 | CYPoolFFI(pool, context, element->type, field, base, rhs); | |
650 | // XXX: alignment? | |
651 | base += field->size; | |
652 | } | |
653 | } break; | |
654 | ||
655 | case sig::void_P: | |
656 | break; | |
657 | ||
658 | default: | |
659 | if (hooks_ != NULL && hooks_->PoolFFI != NULL) | |
660 | if ((*hooks_->PoolFFI)(pool, context, type, ffi, data, value)) | |
661 | return; | |
662 | ||
663 | CYThrow("unimplemented signature code: '%c''\n", type->primitive); | |
664 | } | |
665 | } | |
666 | ||
667 | JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) { | |
668 | switch (type->primitive) { | |
669 | case sig::boolean_P: | |
670 | return CYCastJSValue(context, *reinterpret_cast<bool *>(data)); | |
671 | ||
672 | #define CYFromFFI_(primitive, native) \ | |
673 | case sig::primitive ## _P: \ | |
674 | return CYCastJSValue(context, *reinterpret_cast<native *>(data)); \ | |
675 | ||
676 | CYFromFFI_(uchar, unsigned char) | |
677 | CYFromFFI_(char, char) | |
678 | CYFromFFI_(ushort, unsigned short) | |
679 | CYFromFFI_(short, short) | |
680 | CYFromFFI_(ulong, unsigned long) | |
681 | CYFromFFI_(long, long) | |
682 | CYFromFFI_(uint, unsigned int) | |
683 | CYFromFFI_(int, int) | |
684 | CYFromFFI_(ulonglong, unsigned long long) | |
685 | CYFromFFI_(longlong, long long) | |
686 | CYFromFFI_(float, float) | |
687 | CYFromFFI_(double, double) | |
688 | ||
689 | case sig::array_P: | |
690 | if (void *pointer = data) | |
691 | return CYMakePointer(context, pointer, type->data.data.size, type->data.data.type, NULL, owner); | |
692 | else goto null; | |
693 | ||
694 | case sig::pointer_P: | |
695 | if (void *pointer = *reinterpret_cast<void **>(data)) | |
696 | return CYMakePointer(context, pointer, _not(size_t), type->data.data.type, NULL, owner); | |
697 | else goto null; | |
698 | ||
699 | case sig::string_P: | |
700 | if (char *utf8 = *reinterpret_cast<char **>(data)) | |
701 | return CYCastJSValue(context, utf8); | |
702 | else goto null; | |
703 | ||
704 | case sig::struct_P: | |
705 | return CYMakeStruct(context, data, type, ffi, owner); | |
706 | case sig::void_P: | |
707 | return CYJSUndefined(context); | |
708 | ||
709 | null: | |
710 | return CYJSNull(context); | |
711 | default: | |
712 | if (hooks_ != NULL && hooks_->FromFFI != NULL) | |
713 | if (JSValueRef value = (*hooks_->FromFFI)(context, type, ffi, data, initialize, owner)) | |
714 | return value; | |
715 | ||
716 | CYThrow("unimplemented signature code: '%c''\n", type->primitive); | |
717 | } | |
718 | } | |
719 | ||
9ec7dd18 | 720 | void CYExecuteClosure(ffi_cif *cif, void *result, void **arguments, void *arg, JSValueRef (*adapter)(JSContextRef, size_t, JSValueRef[], JSObjectRef)) { |
9cad30fa JF |
721 | Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg)); |
722 | ||
723 | JSContextRef context(internal->context_); | |
724 | ||
725 | size_t count(internal->cif_.nargs); | |
726 | JSValueRef values[count]; | |
727 | ||
728 | for (size_t index(0); index != count; ++index) | |
729 | values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]); | |
730 | ||
9ec7dd18 | 731 | JSValueRef value(adapter(context, count, values, internal->function_)); |
9cad30fa JF |
732 | CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value); |
733 | } | |
734 | ||
9ec7dd18 JF |
735 | static JSValueRef FunctionAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) { |
736 | return CYCallAsFunction(context, function, NULL, count, values); | |
737 | } | |
738 | ||
739 | static void FunctionClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) { | |
740 | CYExecuteClosure(cif, result, arguments, arg, &FunctionAdapter_); | |
741 | } | |
742 | ||
9cad30fa JF |
743 | Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const char *type, void (*callback)(ffi_cif *, void *, void **, void *)) { |
744 | // XXX: in case of exceptions this will leak | |
745 | // XXX: in point of fact, this may /need/ to leak :( | |
746 | Closure_privateData *internal(new Closure_privateData(context, function, type)); | |
747 | ||
c5bce670 JF |
748 | #if defined(__APPLE__) && defined(__arm__) |
749 | void *executable; | |
750 | ffi_closure *writable(reinterpret_cast<ffi_closure *>(ffi_closure_alloc(sizeof(ffi_closure), &executable))); | |
751 | ||
752 | ffi_status status(ffi_prep_closure_loc(writable, &internal->cif_, callback, internal, executable)); | |
753 | _assert(status == FFI_OK); | |
754 | ||
755 | internal->value_ = executable; | |
756 | #else | |
9cad30fa JF |
757 | ffi_closure *closure((ffi_closure *) _syscall(mmap( |
758 | NULL, sizeof(ffi_closure), | |
759 | PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE, | |
760 | -1, 0 | |
761 | ))); | |
762 | ||
763 | ffi_status status(ffi_prep_closure(closure, &internal->cif_, callback, internal)); | |
764 | _assert(status == FFI_OK); | |
765 | ||
766 | _syscall(mprotect(closure, sizeof(*closure), PROT_READ | PROT_EXEC)); | |
767 | ||
768 | internal->value_ = closure; | |
c5bce670 | 769 | #endif |
9cad30fa JF |
770 | |
771 | return internal; | |
772 | } | |
773 | ||
774 | static JSObjectRef CYMakeFunctor(JSContextRef context, JSObjectRef function, const char *type) { | |
775 | Closure_privateData *internal(CYMakeFunctor_(context, function, type, &FunctionClosure_)); | |
776 | JSObjectRef object(JSObjectMake(context, Functor_, internal)); | |
777 | // XXX: see above notes about needing to leak | |
778 | JSValueProtect(CYGetJSContext(context), object); | |
779 | return object; | |
780 | } | |
781 | ||
782 | JSObjectRef CYGetCachedObject(JSContextRef context, JSStringRef name) { | |
783 | return CYCastJSObject(context, CYGetProperty(context, CYCastJSObject(context, CYGetProperty(context, CYGetGlobalObject(context), cy_s)), name)); | |
784 | } | |
785 | ||
786 | static JSObjectRef CYMakeFunctor(JSContextRef context, JSValueRef value, const char *type) { | |
787 | JSObjectRef Function(CYGetCachedObject(context, CYJSString("Function"))); | |
788 | ||
789 | JSValueRef exception(NULL); | |
790 | bool function(JSValueIsInstanceOfConstructor(context, value, Function, &exception)); | |
791 | CYThrow(context, exception); | |
792 | ||
793 | if (function) { | |
794 | JSObjectRef function(CYCastJSObject(context, value)); | |
795 | return CYMakeFunctor(context, function, type); | |
796 | } else { | |
797 | void (*function)()(CYCastPointer<void (*)()>(context, value)); | |
798 | return CYMakeFunctor(context, function, type); | |
799 | } | |
800 | } | |
801 | ||
b799113b | 802 | static bool Index_(CYPool &pool, JSContextRef context, Struct_privateData *internal, JSStringRef property, ssize_t &index, uint8_t *&base) { |
9cad30fa JF |
803 | Type_privateData *typical(internal->type_); |
804 | sig::Type *type(typical->type_); | |
805 | if (type == NULL) | |
806 | return false; | |
807 | ||
808 | const char *name(CYPoolCString(pool, context, property)); | |
809 | size_t length(strlen(name)); | |
810 | double number(CYCastDouble(name, length)); | |
811 | ||
812 | size_t count(type->data.signature.count); | |
813 | ||
814 | if (std::isnan(number)) { | |
815 | if (property == NULL) | |
816 | return false; | |
817 | ||
818 | sig::Element *elements(type->data.signature.elements); | |
819 | ||
820 | for (size_t local(0); local != count; ++local) { | |
821 | sig::Element *element(&elements[local]); | |
822 | if (element->name != NULL && strcmp(name, element->name) == 0) { | |
823 | index = local; | |
824 | goto base; | |
825 | } | |
826 | } | |
827 | ||
828 | return false; | |
829 | } else { | |
830 | index = static_cast<ssize_t>(number); | |
831 | if (index != number || index < 0 || static_cast<size_t>(index) >= count) | |
832 | return false; | |
833 | } | |
834 | ||
835 | base: | |
836 | ffi_type **elements(typical->GetFFI()->elements); | |
837 | ||
838 | base = reinterpret_cast<uint8_t *>(internal->value_); | |
839 | for (ssize_t local(0); local != index; ++local) | |
840 | base += elements[local]->size; | |
841 | ||
842 | return true; | |
843 | } | |
844 | ||
845 | static JSValueRef Pointer_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
846 | CYPool pool; | |
847 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
848 | ||
849 | if (JSStringIsEqual(property, length_s)) | |
850 | return internal->length_ == _not(size_t) ? CYJSUndefined(context) : CYCastJSValue(context, internal->length_); | |
851 | ||
852 | Type_privateData *typical(internal->type_); | |
853 | ||
854 | if (typical->type_ == NULL) | |
855 | return NULL; | |
856 | ||
857 | ssize_t offset; | |
858 | if (JSStringIsEqualToUTF8CString(property, "$cyi")) | |
859 | offset = 0; | |
860 | else if (!CYGetOffset(pool, context, property, offset)) | |
861 | return NULL; | |
862 | ||
863 | ffi_type *ffi(typical->GetFFI()); | |
864 | ||
865 | uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_)); | |
866 | base += ffi->size * offset; | |
867 | ||
868 | JSObjectRef owner(internal->GetOwner() ?: object); | |
869 | return CYFromFFI(context, typical->type_, ffi, base, false, owner); | |
55c6d6ab | 870 | } CYCatch(NULL) } |
9cad30fa JF |
871 | |
872 | static bool Pointer_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
873 | CYPool pool; | |
874 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object))); | |
875 | Type_privateData *typical(internal->type_); | |
876 | ||
877 | if (typical->type_ == NULL) | |
55c6d6ab | 878 | return false; |
9cad30fa JF |
879 | |
880 | ssize_t offset; | |
881 | if (JSStringIsEqualToUTF8CString(property, "$cyi")) | |
882 | offset = 0; | |
883 | else if (!CYGetOffset(pool, context, property, offset)) | |
55c6d6ab | 884 | return false; |
9cad30fa JF |
885 | |
886 | ffi_type *ffi(typical->GetFFI()); | |
887 | ||
888 | uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_)); | |
889 | base += ffi->size * offset; | |
890 | ||
891 | CYPoolFFI(NULL, context, typical->type_, ffi, base, value); | |
892 | return true; | |
55c6d6ab | 893 | } CYCatch(false) } |
9cad30fa | 894 | |
62d94d32 | 895 | static JSValueRef Struct_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
896 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(_this))); |
897 | Type_privateData *typical(internal->type_); | |
898 | return CYMakePointer(context, internal->value_, _not(size_t), typical->type_, typical->ffi_, _this); | |
62d94d32 | 899 | } CYCatch(NULL) } |
9cad30fa JF |
900 | |
901 | static JSValueRef Struct_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { | |
902 | CYPool pool; | |
903 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
904 | Type_privateData *typical(internal->type_); | |
905 | ||
906 | ssize_t index; | |
907 | uint8_t *base; | |
908 | ||
909 | if (!Index_(pool, context, internal, property, index, base)) | |
910 | return NULL; | |
911 | ||
912 | JSObjectRef owner(internal->GetOwner() ?: object); | |
913 | ||
914 | return CYFromFFI(context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, false, owner); | |
55c6d6ab | 915 | } CYCatch(NULL) } |
9cad30fa JF |
916 | |
917 | static bool Struct_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry { | |
918 | CYPool pool; | |
919 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
920 | Type_privateData *typical(internal->type_); | |
921 | ||
922 | ssize_t index; | |
923 | uint8_t *base; | |
924 | ||
925 | if (!Index_(pool, context, internal, property, index, base)) | |
926 | return false; | |
927 | ||
928 | CYPoolFFI(NULL, context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, value); | |
929 | return true; | |
55c6d6ab | 930 | } CYCatch(false) } |
9cad30fa JF |
931 | |
932 | static void Struct_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) { | |
933 | Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object))); | |
934 | Type_privateData *typical(internal->type_); | |
935 | sig::Type *type(typical->type_); | |
936 | ||
937 | if (type == NULL) | |
938 | return; | |
939 | ||
940 | size_t count(type->data.signature.count); | |
941 | sig::Element *elements(type->data.signature.elements); | |
942 | ||
943 | char number[32]; | |
944 | ||
945 | for (size_t index(0); index != count; ++index) { | |
946 | const char *name; | |
947 | name = elements[index].name; | |
948 | ||
949 | if (name == NULL) { | |
950 | sprintf(number, "%zu", index); | |
951 | name = number; | |
952 | } | |
953 | ||
954 | JSPropertyNameAccumulatorAddName(names, CYJSString(name)); | |
955 | } | |
956 | } | |
957 | ||
b799113b | 958 | JSValueRef CYCallFunction(CYPool &pool, JSContextRef context, size_t setups, void *setup[], size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception, sig::Signature *signature, ffi_cif *cif, void (*function)()) { CYTry { |
9cad30fa JF |
959 | if (setups + count != signature->count - 1) |
960 | throw CYJSError(context, "incorrect number of arguments to ffi function"); | |
961 | ||
962 | size_t size(setups + count); | |
963 | void *values[size]; | |
964 | memcpy(values, setup, sizeof(void *) * setups); | |
965 | ||
966 | for (size_t index(setups); index != size; ++index) { | |
967 | sig::Element *element(&signature->elements[index + 1]); | |
968 | ffi_type *ffi(cif->arg_types[index]); | |
969 | // XXX: alignment? | |
970 | values[index] = new(pool) uint8_t[ffi->size]; | |
b799113b | 971 | CYPoolFFI(&pool, context, element->type, ffi, values[index], arguments[index - setups]); |
9cad30fa JF |
972 | } |
973 | ||
974 | uint8_t value[cif->rtype->size]; | |
975 | ||
976 | if (hooks_ != NULL && hooks_->CallFunction != NULL) | |
977 | (*hooks_->CallFunction)(context, cif, function, value, values); | |
978 | else | |
979 | ffi_call(cif, function, value, values); | |
980 | ||
981 | return CYFromFFI(context, signature->elements[0].type, cif->rtype, value, initialize); | |
55c6d6ab | 982 | } CYCatch(NULL) } |
9cad30fa | 983 | |
62d94d32 | 984 | static JSValueRef Functor_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
985 | CYPool pool; |
986 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(object))); | |
987 | return CYCallFunction(pool, context, 0, NULL, count, arguments, false, exception, &internal->signature_, &internal->cif_, internal->GetValue()); | |
62d94d32 | 988 | } CYCatch(NULL) } |
9cad30fa | 989 | |
8a23fb2e | 990 | JSObjectRef CYMakeType(JSContextRef context, const char *type) { |
9cad30fa JF |
991 | Type_privateData *internal(new Type_privateData(type)); |
992 | return JSObjectMake(context, Type_privateData::Class_, internal); | |
993 | } | |
994 | ||
8a23fb2e | 995 | JSObjectRef CYMakeType(JSContextRef context, sig::Type *type) { |
9cad30fa JF |
996 | Type_privateData *internal(new Type_privateData(type)); |
997 | return JSObjectMake(context, Type_privateData::Class_, internal); | |
998 | } | |
999 | ||
9cad30fa JF |
1000 | static JSValueRef All_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
1001 | JSObjectRef global(CYGetGlobalObject(context)); | |
1002 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
26ef7a82 JF |
1003 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); |
1004 | ||
1005 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1006 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) | |
1007 | if (JSValueRef value = CYGetProperty(context, space, property)) | |
1008 | if (!JSValueIsUndefined(context, value)) | |
1009 | return value; | |
9cad30fa JF |
1010 | |
1011 | CYPool pool; | |
1012 | CYUTF8String name(CYPoolUTF8String(pool, context, property)); | |
1013 | ||
2f51d6ab JF |
1014 | size_t length(name.size); |
1015 | char keyed[length + 2]; | |
1016 | memcpy(keyed + 1, name.data, length + 1); | |
1017 | ||
1018 | static const char *modes = "0124"; | |
1019 | for (size_t i(0); i != 4; ++i) { | |
1020 | char mode(modes[i]); | |
1021 | keyed[0] = mode; | |
1022 | ||
1023 | if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1)) | |
1024 | switch (mode) { | |
1025 | case '0': | |
1026 | return JSEvaluateScript(CYGetJSContext(context), CYJSString(entry->value_), NULL, NULL, 0, NULL); | |
1027 | ||
1028 | case '1': | |
9a98069f | 1029 | return CYMakeFunctor(context, name.data, entry->value_, &entry->cache_); |
2f51d6ab JF |
1030 | |
1031 | case '2': | |
1032 | if (void *symbol = CYCastSymbol(name.data)) { | |
1033 | // XXX: this is horrendously inefficient | |
1034 | sig::Signature signature; | |
1035 | sig::Parse(pool, &signature, entry->value_, &Structor_); | |
1036 | ffi_cif cif; | |
1037 | sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif); | |
1038 | return CYFromFFI(context, signature.elements[0].type, cif.rtype, symbol); | |
1039 | } else return NULL; | |
1040 | ||
1041 | // XXX: implement case 3 | |
1042 | case '4': | |
1043 | return CYMakeType(context, entry->value_); | |
1044 | } | |
9cad30fa JF |
1045 | } |
1046 | ||
2f51d6ab | 1047 | return NULL; |
55c6d6ab | 1048 | } CYCatch(NULL) } |
9cad30fa | 1049 | |
26ef7a82 JF |
1050 | static void All_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) { |
1051 | JSObjectRef global(CYGetGlobalObject(context)); | |
1052 | JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript")))); | |
1053 | JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls")))); | |
1054 | ||
1055 | for (size_t i(0), count(CYArrayLength(context, alls)); i != count; ++i) | |
1056 | if (JSObjectRef space = CYCastJSObject(context, CYArrayGet(context, alls, count - i - 1))) { | |
1057 | JSPropertyNameArrayRef subset(JSObjectCopyPropertyNames(context, space)); | |
1058 | for (size_t index(0), count(JSPropertyNameArrayGetCount(subset)); index != count; ++index) | |
1059 | JSPropertyNameAccumulatorAddName(names, JSPropertyNameArrayGetNameAtIndex(subset, index)); | |
1060 | JSPropertyNameArrayRelease(subset); | |
1061 | } | |
1062 | } | |
1063 | ||
9cad30fa JF |
1064 | static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1065 | if (count != 2) | |
5d422750 | 1066 | throw CYJSError(context, "incorrect number of arguments to Pointer constructor"); |
9cad30fa JF |
1067 | |
1068 | CYPool pool; | |
1069 | ||
1070 | void *value(CYCastPointer<void *>(context, arguments[0])); | |
1071 | const char *type(CYPoolCString(pool, context, arguments[1])); | |
1072 | ||
1073 | sig::Signature signature; | |
1074 | sig::Parse(pool, &signature, type, &Structor_); | |
1075 | ||
1076 | return CYMakePointer(context, value, _not(size_t), signature.elements[0].type, NULL, NULL); | |
55c6d6ab | 1077 | } CYCatch(NULL) } |
9cad30fa JF |
1078 | |
1079 | static JSObjectRef Type_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1080 | if (count != 1) | |
1081 | throw CYJSError(context, "incorrect number of arguments to Type constructor"); | |
1082 | CYPool pool; | |
1083 | const char *type(CYPoolCString(pool, context, arguments[0])); | |
1084 | return CYMakeType(context, type); | |
55c6d6ab | 1085 | } CYCatch(NULL) } |
9cad30fa | 1086 | |
85e90410 JF |
1087 | static JSValueRef Type_callAsFunction_arrayOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1088 | if (count != 1) | |
1089 | throw CYJSError(context, "incorrect number of arguments to Type.arrayOf"); | |
1090 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1091 | ||
1092 | CYPool pool; | |
1093 | size_t index(CYGetIndex(pool, context, CYJSString(context, arguments[0]))); | |
1094 | if (index == _not(size_t)) | |
1095 | throw CYJSError(context, "invalid array size used with Type.arrayOf"); | |
9cad30fa JF |
1096 | |
1097 | sig::Type type; | |
85e90410 JF |
1098 | type.name = NULL; |
1099 | type.flags = 0; | |
9cad30fa | 1100 | |
85e90410 JF |
1101 | type.primitive = sig::array_P; |
1102 | type.data.data.type = internal->type_; | |
1103 | type.data.data.size = index; | |
1104 | ||
1105 | return CYMakeType(context, &type); | |
55c6d6ab | 1106 | } CYCatch(NULL) } |
9cad30fa | 1107 | |
fbc17268 JF |
1108 | static JSValueRef Type_callAsFunction_constant(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1109 | if (count != 0) | |
1110 | throw CYJSError(context, "incorrect number of arguments to Type.constant"); | |
1111 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1112 | ||
1113 | sig::Type type(*internal->type_); | |
1114 | type.flags |= JOC_TYPE_CONST; | |
1115 | return CYMakeType(context, &type); | |
55c6d6ab | 1116 | } CYCatch(NULL) } |
fbc17268 | 1117 | |
85e90410 JF |
1118 | static JSValueRef Type_callAsFunction_pointerTo(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1119 | if (count != 0) | |
1120 | throw CYJSError(context, "incorrect number of arguments to Type.pointerTo"); | |
1121 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1122 | ||
1123 | sig::Type type; | |
9cad30fa JF |
1124 | type.name = NULL; |
1125 | type.flags = 0; | |
1126 | ||
85e90410 | 1127 | type.primitive = sig::pointer_P; |
9cad30fa | 1128 | type.data.data.type = internal->type_; |
85e90410 | 1129 | type.data.data.size = 0; |
9cad30fa JF |
1130 | |
1131 | return CYMakeType(context, &type); | |
55c6d6ab | 1132 | } CYCatch(NULL) } |
9cad30fa | 1133 | |
21d5f610 JF |
1134 | static JSValueRef Type_callAsFunction_withName(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1135 | if (count != 1) | |
1136 | throw CYJSError(context, "incorrect number of arguments to Type.withName"); | |
1137 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1138 | ||
1139 | CYPool pool; | |
1140 | const char *name(CYPoolCString(pool, context, arguments[0])); | |
1141 | ||
1142 | sig::Type type(*internal->type_); | |
1143 | type.name = name; | |
1144 | return CYMakeType(context, &type); | |
55c6d6ab | 1145 | } CYCatch(NULL) } |
21d5f610 | 1146 | |
9cad30fa | 1147 | static JSValueRef Type_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
9cad30fa JF |
1148 | if (count != 1) |
1149 | throw CYJSError(context, "incorrect number of arguments to type cast function"); | |
1c3dd2c3 JF |
1150 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1151 | ||
9cad30fa JF |
1152 | sig::Type *type(internal->type_); |
1153 | ffi_type *ffi(internal->GetFFI()); | |
1154 | // XXX: alignment? | |
1155 | uint8_t value[ffi->size]; | |
1156 | CYPool pool; | |
b799113b | 1157 | CYPoolFFI(&pool, context, type, ffi, value, arguments[0]); |
9cad30fa | 1158 | return CYFromFFI(context, type, ffi, value); |
55c6d6ab | 1159 | } CYCatch(NULL) } |
9cad30fa JF |
1160 | |
1161 | static JSObjectRef Type_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1162 | if (count != 0) | |
767e8255 | 1163 | throw CYJSError(context, "incorrect number of arguments to Type allocator"); |
9cad30fa JF |
1164 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1165 | ||
1166 | sig::Type *type(internal->type_); | |
1167 | size_t length; | |
1168 | ||
1169 | if (type->primitive != sig::array_P) | |
1170 | length = _not(size_t); | |
1171 | else { | |
1172 | length = type->data.data.size; | |
1173 | type = type->data.data.type; | |
1174 | } | |
1175 | ||
1176 | void *value(malloc(internal->GetFFI()->size)); | |
1177 | return CYMakePointer(context, value, length, type, NULL, NULL); | |
55c6d6ab | 1178 | } CYCatch(NULL) } |
9cad30fa JF |
1179 | |
1180 | static JSObjectRef Functor_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1181 | if (count != 2) | |
1182 | throw CYJSError(context, "incorrect number of arguments to Functor constructor"); | |
1183 | CYPool pool; | |
1184 | const char *type(CYPoolCString(pool, context, arguments[1])); | |
1185 | return CYMakeFunctor(context, arguments[0], type); | |
55c6d6ab | 1186 | } CYCatch(NULL) } |
9cad30fa JF |
1187 | |
1188 | static JSValueRef CYValue_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1189 | CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this))); | |
1190 | return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_)); | |
55c6d6ab | 1191 | } CYCatch(NULL) } |
9cad30fa JF |
1192 | |
1193 | static JSValueRef CYValue_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { | |
1194 | return CYValue_callAsFunction_valueOf(context, object, _this, count, arguments, exception); | |
1195 | } | |
1196 | ||
1197 | static JSValueRef CYValue_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1198 | CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this))); | |
1199 | char string[32]; | |
1200 | sprintf(string, "%p", internal->value_); | |
1201 | return CYCastJSValue(context, string); | |
55c6d6ab | 1202 | } CYCatch(NULL) } |
9cad30fa JF |
1203 | |
1204 | static JSValueRef Pointer_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1205 | Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(_this))); | |
1206 | if (internal->length_ != _not(size_t)) { | |
3b1534c0 | 1207 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype"))); |
9cad30fa JF |
1208 | JSObjectRef toCYON(CYCastJSObject(context, CYGetProperty(context, Array, toCYON_s))); |
1209 | return CYCallAsFunction(context, toCYON, _this, count, arguments); | |
1210 | } else { | |
1211 | char string[32]; | |
1212 | sprintf(string, "%p", internal->value_); | |
1213 | return CYCastJSValue(context, string); | |
1214 | } | |
55c6d6ab | 1215 | } CYCatch(NULL) } |
9cad30fa | 1216 | |
62d94d32 | 1217 | static JSValueRef Functor_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
7d894647 JF |
1218 | cy::Functor *internal(reinterpret_cast<cy::Functor *>(JSObjectGetPrivate(object))); |
1219 | CYPool pool; | |
1220 | return CYCastJSValue(context, Unparse(pool, &internal->signature_)); | |
62d94d32 | 1221 | } CYCatch(NULL) } |
7d894647 | 1222 | |
62d94d32 | 1223 | static JSValueRef Type_getProperty_alignment(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
74e8c566 JF |
1224 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1225 | return CYCastJSValue(context, internal->GetFFI()->alignment); | |
62d94d32 | 1226 | } CYCatch(NULL) } |
74e8c566 | 1227 | |
62d94d32 | 1228 | static JSValueRef Type_getProperty_name(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
21d5f610 JF |
1229 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1230 | return CYCastJSValue(context, internal->type_->name); | |
62d94d32 | 1231 | } CYCatch(NULL) } |
21d5f610 | 1232 | |
62d94d32 | 1233 | static JSValueRef Type_getProperty_size(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry { |
74e8c566 JF |
1234 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object))); |
1235 | return CYCastJSValue(context, internal->GetFFI()->size); | |
62d94d32 | 1236 | } CYCatch(NULL) } |
74e8c566 | 1237 | |
9cad30fa JF |
1238 | static JSValueRef Type_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { |
1239 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1240 | CYPool pool; | |
1241 | const char *type(sig::Unparse(pool, internal->type_)); | |
1242 | return CYCastJSValue(context, CYJSString(type)); | |
55c6d6ab | 1243 | } CYCatch(NULL) } |
9cad30fa JF |
1244 | |
1245 | static JSValueRef Type_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { | |
1246 | Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this))); | |
1247 | CYPool pool; | |
1248 | const char *type(sig::Unparse(pool, internal->type_)); | |
4a8523e5 JF |
1249 | std::ostringstream str; |
1250 | CYStringify(str, type, strlen(type)); | |
0cbeddf8 | 1251 | char *cyon(pool.strcat("new Type(", str.str().c_str(), ")", NULL)); |
9cad30fa | 1252 | return CYCastJSValue(context, CYJSString(cyon)); |
55c6d6ab | 1253 | } CYCatch(NULL) } |
9cad30fa JF |
1254 | |
1255 | static JSValueRef Type_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { | |
1256 | return Type_callAsFunction_toString(context, object, _this, count, arguments, exception); | |
1257 | } | |
1258 | ||
1259 | static JSStaticFunction Pointer_staticFunctions[4] = { | |
1260 | {"toCYON", &Pointer_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1261 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1262 | {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1263 | {NULL, NULL, 0} | |
1264 | }; | |
1265 | ||
1266 | static JSStaticFunction Struct_staticFunctions[2] = { | |
1267 | {"$cya", &Struct_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1268 | {NULL, NULL, 0} | |
1269 | }; | |
1270 | ||
1271 | static JSStaticFunction Functor_staticFunctions[4] = { | |
1272 | {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1273 | {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1274 | {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1275 | {NULL, NULL, 0} | |
1276 | }; | |
1277 | ||
1278 | namespace cy { | |
1279 | JSStaticFunction const * const Functor::StaticFunctions = Functor_staticFunctions; | |
1280 | } | |
1281 | ||
7d894647 JF |
1282 | static JSStaticValue Functor_staticValues[2] = { |
1283 | {"type", &Functor_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1284 | {NULL, NULL, NULL, 0} | |
1285 | }; | |
1286 | ||
21d5f610 | 1287 | static JSStaticValue Type_staticValues[4] = { |
74e8c566 | 1288 | {"alignment", &Type_getProperty_alignment, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
21d5f610 | 1289 | {"name", &Type_getProperty_name, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
74e8c566 JF |
1290 | {"size", &Type_getProperty_size, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1291 | {NULL, NULL, NULL, 0} | |
1292 | }; | |
1293 | ||
21d5f610 | 1294 | static JSStaticFunction Type_staticFunctions[8] = { |
85e90410 | 1295 | {"arrayOf", &Type_callAsFunction_arrayOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
fbc17268 | 1296 | {"constant", &Type_callAsFunction_constant, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
85e90410 | 1297 | {"pointerTo", &Type_callAsFunction_pointerTo, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
21d5f610 | 1298 | {"withName", &Type_callAsFunction_withName, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
9cad30fa JF |
1299 | {"toCYON", &Type_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, |
1300 | {"toJSON", &Type_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1301 | {"toString", &Type_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete}, | |
1302 | {NULL, NULL, 0} | |
1303 | }; | |
1304 | ||
1305 | static JSObjectRef (*JSObjectMakeArray$)(JSContextRef, size_t, const JSValueRef[], JSValueRef *); | |
1306 | ||
1307 | void CYSetArgs(int argc, const char *argv[]) { | |
1308 | JSContextRef context(CYGetJSContext()); | |
1309 | JSValueRef args[argc]; | |
1310 | for (int i(0); i != argc; ++i) | |
1311 | args[i] = CYCastJSValue(context, argv[i]); | |
1312 | ||
1313 | JSObjectRef array; | |
1314 | if (JSObjectMakeArray$ != NULL) { | |
1315 | JSValueRef exception(NULL); | |
1316 | array = (*JSObjectMakeArray$)(context, argc, args, &exception); | |
1317 | CYThrow(context, exception); | |
1318 | } else { | |
1319 | JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array"))); | |
1320 | JSValueRef value(CYCallAsFunction(context, Array, NULL, argc, args)); | |
1321 | array = CYCastJSObject(context, value); | |
1322 | } | |
1323 | ||
1324 | JSObjectRef System(CYGetCachedObject(context, CYJSString("System"))); | |
1325 | CYSetProperty(context, System, CYJSString("args"), array); | |
1326 | } | |
1327 | ||
1328 | JSObjectRef CYGetGlobalObject(JSContextRef context) { | |
1329 | return JSContextGetGlobalObject(context); | |
1330 | } | |
1331 | ||
b799113b | 1332 | const char *CYExecute(CYPool &pool, CYUTF8String code) { |
9cad30fa JF |
1333 | JSContextRef context(CYGetJSContext()); |
1334 | JSValueRef exception(NULL), result; | |
1335 | ||
1336 | void *handle; | |
1337 | if (hooks_ != NULL && hooks_->ExecuteStart != NULL) | |
1338 | handle = (*hooks_->ExecuteStart)(context); | |
1339 | else | |
1340 | handle = NULL; | |
1341 | ||
1342 | const char *json; | |
1343 | ||
1344 | try { | |
1345 | result = JSEvaluateScript(context, CYJSString(code), NULL, NULL, 0, &exception); | |
1346 | } catch (const char *error) { | |
1347 | return error; | |
1348 | } | |
1349 | ||
9cc84a5a JF |
1350 | if (exception != NULL) error: |
1351 | return CYPoolCString(pool, context, CYJSString(context, exception)); | |
9cad30fa JF |
1352 | |
1353 | if (JSValueIsUndefined(context, result)) | |
1354 | return NULL; | |
1355 | ||
1356 | try { | |
1357 | json = CYPoolCCYON(pool, context, result, &exception); | |
1358 | } catch (const char *error) { | |
1359 | return error; | |
1360 | } | |
1361 | ||
1362 | if (exception != NULL) | |
1363 | goto error; | |
1364 | ||
1365 | CYSetProperty(context, CYGetGlobalObject(context), Result_, result); | |
1366 | ||
1367 | if (hooks_ != NULL && hooks_->ExecuteEnd != NULL) | |
1368 | (*hooks_->ExecuteEnd)(context, handle); | |
1369 | return json; | |
1370 | } | |
1371 | ||
1372 | extern "C" void CydgetSetupContext(JSGlobalContextRef context) { | |
1373 | CYSetupContext(context); | |
1374 | } | |
1375 | ||
09eee478 JF |
1376 | static bool initialized_ = false; |
1377 | ||
9cad30fa | 1378 | void CYInitializeDynamic() { |
09eee478 JF |
1379 | if (!initialized_) |
1380 | initialized_ = true; | |
1381 | else return; | |
1382 | ||
9cad30fa JF |
1383 | JSObjectMakeArray$ = reinterpret_cast<JSObjectRef (*)(JSContextRef, size_t, const JSValueRef[], JSValueRef *)>(dlsym(RTLD_DEFAULT, "JSObjectMakeArray")); |
1384 | ||
1385 | JSClassDefinition definition; | |
1386 | ||
1387 | definition = kJSClassDefinitionEmpty; | |
1388 | definition.className = "All"; | |
1389 | definition.getProperty = &All_getProperty; | |
26ef7a82 | 1390 | definition.getPropertyNames = &All_getPropertyNames; |
9cad30fa JF |
1391 | All_ = JSClassCreate(&definition); |
1392 | ||
1393 | definition = kJSClassDefinitionEmpty; | |
1394 | definition.className = "Context"; | |
1395 | definition.finalize = &CYFinalize; | |
1396 | Context_ = JSClassCreate(&definition); | |
1397 | ||
1398 | definition = kJSClassDefinitionEmpty; | |
1399 | definition.className = "Functor"; | |
1400 | definition.staticFunctions = cy::Functor::StaticFunctions; | |
7d894647 | 1401 | definition.staticValues = Functor_staticValues; |
9cad30fa JF |
1402 | definition.callAsFunction = &Functor_callAsFunction; |
1403 | definition.finalize = &CYFinalize; | |
1404 | Functor_ = JSClassCreate(&definition); | |
1405 | ||
1406 | definition = kJSClassDefinitionEmpty; | |
1407 | definition.className = "Pointer"; | |
1408 | definition.staticFunctions = Pointer_staticFunctions; | |
1409 | definition.getProperty = &Pointer_getProperty; | |
1410 | definition.setProperty = &Pointer_setProperty; | |
1411 | definition.finalize = &CYFinalize; | |
1412 | Pointer_ = JSClassCreate(&definition); | |
1413 | ||
1414 | definition = kJSClassDefinitionEmpty; | |
1415 | definition.className = "Struct"; | |
1416 | definition.staticFunctions = Struct_staticFunctions; | |
1417 | definition.getProperty = &Struct_getProperty; | |
1418 | definition.setProperty = &Struct_setProperty; | |
1419 | definition.getPropertyNames = &Struct_getPropertyNames; | |
1420 | definition.finalize = &CYFinalize; | |
1421 | Struct_ = JSClassCreate(&definition); | |
1422 | ||
1423 | definition = kJSClassDefinitionEmpty; | |
1424 | definition.className = "Type"; | |
74e8c566 | 1425 | definition.staticValues = Type_staticValues; |
9cad30fa | 1426 | definition.staticFunctions = Type_staticFunctions; |
9cad30fa JF |
1427 | definition.callAsFunction = &Type_callAsFunction; |
1428 | definition.callAsConstructor = &Type_callAsConstructor; | |
1429 | definition.finalize = &CYFinalize; | |
1430 | Type_privateData::Class_ = JSClassCreate(&definition); | |
1431 | ||
1432 | definition = kJSClassDefinitionEmpty; | |
56a66df3 | 1433 | definition.className = "Global"; |
9cad30fa JF |
1434 | //definition.getProperty = &Global_getProperty; |
1435 | Global_ = JSClassCreate(&definition); | |
1436 | ||
1437 | Array_s = JSStringCreateWithUTF8CString("Array"); | |
1438 | cy_s = JSStringCreateWithUTF8CString("$cy"); | |
1439 | length_s = JSStringCreateWithUTF8CString("length"); | |
1440 | message_s = JSStringCreateWithUTF8CString("message"); | |
1441 | name_s = JSStringCreateWithUTF8CString("name"); | |
1442 | pop_s = JSStringCreateWithUTF8CString("pop"); | |
1443 | prototype_s = JSStringCreateWithUTF8CString("prototype"); | |
1444 | push_s = JSStringCreateWithUTF8CString("push"); | |
1445 | splice_s = JSStringCreateWithUTF8CString("splice"); | |
1446 | toCYON_s = JSStringCreateWithUTF8CString("toCYON"); | |
1447 | toJSON_s = JSStringCreateWithUTF8CString("toJSON"); | |
20ded97a | 1448 | toPointer_s = JSStringCreateWithUTF8CString("toPointer"); |
4cb8aa43 | 1449 | toString_s = JSStringCreateWithUTF8CString("toString"); |
9cad30fa JF |
1450 | |
1451 | Result_ = JSStringCreateWithUTF8CString("_"); | |
1452 | ||
1453 | if (hooks_ != NULL && hooks_->Initialize != NULL) | |
1454 | (*hooks_->Initialize)(); | |
1455 | } | |
1456 | ||
1457 | void CYThrow(JSContextRef context, JSValueRef value) { | |
1458 | if (value != NULL) | |
1459 | throw CYJSError(context, value); | |
1460 | } | |
1461 | ||
b799113b | 1462 | const char *CYJSError::PoolCString(CYPool &pool) const { |
9cad30fa JF |
1463 | // XXX: this used to be CYPoolCString |
1464 | return CYPoolCCYON(pool, context_, value_); | |
1465 | } | |
1466 | ||
1467 | JSValueRef CYJSError::CastJSValue(JSContextRef context) const { | |
1468 | // XXX: what if the context is different? | |
1469 | return value_; | |
1470 | } | |
1471 | ||
1472 | JSValueRef CYCastJSError(JSContextRef context, const char *message) { | |
1473 | JSObjectRef Error(CYGetCachedObject(context, CYJSString("Error"))); | |
1474 | ||
1475 | JSValueRef arguments[1] = {CYCastJSValue(context, message)}; | |
1476 | ||
1477 | JSValueRef exception(NULL); | |
1478 | JSValueRef value(JSObjectCallAsConstructor(context, Error, 1, arguments, &exception)); | |
1479 | CYThrow(context, exception); | |
1480 | ||
1481 | return value; | |
1482 | } | |
1483 | ||
1484 | JSValueRef CYPoolError::CastJSValue(JSContextRef context) const { | |
1485 | return CYCastJSError(context, message_); | |
1486 | } | |
1487 | ||
1488 | CYJSError::CYJSError(JSContextRef context, const char *format, ...) { | |
1489 | _assert(context != NULL); | |
1490 | ||
1491 | CYPool pool; | |
1492 | ||
1493 | va_list args; | |
1494 | va_start(args, format); | |
0cbeddf8 JF |
1495 | // XXX: there might be a beter way to think about this |
1496 | const char *message(pool.vsprintf(64, format, args)); | |
9cad30fa JF |
1497 | va_end(args); |
1498 | ||
1499 | value_ = CYCastJSError(context, message); | |
1500 | } | |
1501 | ||
1502 | JSGlobalContextRef CYGetJSContext(JSContextRef context) { | |
1503 | return reinterpret_cast<Context *>(JSObjectGetPrivate(CYCastJSObject(context, CYGetProperty(context, CYGetGlobalObject(context), cy_s))))->context_; | |
1504 | } | |
1505 | ||
1506 | extern "C" void CYSetupContext(JSGlobalContextRef context) { | |
26ef7a82 JF |
1507 | JSValueRef exception(NULL); |
1508 | ||
9cad30fa JF |
1509 | CYInitializeDynamic(); |
1510 | ||
1511 | JSObjectRef global(CYGetGlobalObject(context)); | |
1512 | ||
1513 | JSObjectRef cy(JSObjectMake(context, Context_, new Context(context))); | |
1514 | CYSetProperty(context, global, cy_s, cy, kJSPropertyAttributeDontEnum); | |
1515 | ||
1516 | /* Cache Globals {{{ */ | |
1517 | JSObjectRef Array(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Array")))); | |
1518 | CYSetProperty(context, cy, CYJSString("Array"), Array); | |
1519 | ||
1520 | JSObjectRef Array_prototype(CYCastJSObject(context, CYGetProperty(context, Array, prototype_s))); | |
1521 | CYSetProperty(context, cy, CYJSString("Array_prototype"), Array_prototype); | |
1522 | ||
1523 | JSObjectRef Error(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Error")))); | |
1524 | CYSetProperty(context, cy, CYJSString("Error"), Error); | |
1525 | ||
1526 | JSObjectRef Function(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Function")))); | |
1527 | CYSetProperty(context, cy, CYJSString("Function"), Function); | |
1528 | ||
1529 | JSObjectRef Function_prototype(CYCastJSObject(context, CYGetProperty(context, Function, prototype_s))); | |
1530 | CYSetProperty(context, cy, CYJSString("Function_prototype"), Function_prototype); | |
1531 | ||
1532 | JSObjectRef Object(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Object")))); | |
1533 | CYSetProperty(context, cy, CYJSString("Object"), Object); | |
1534 | ||
1535 | JSObjectRef Object_prototype(CYCastJSObject(context, CYGetProperty(context, Object, prototype_s))); | |
1536 | CYSetProperty(context, cy, CYJSString("Object_prototype"), Object_prototype); | |
1537 | ||
1538 | JSObjectRef String(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("String")))); | |
1539 | CYSetProperty(context, cy, CYJSString("String"), String); | |
4cb8aa43 JF |
1540 | |
1541 | JSObjectRef String_prototype(CYCastJSObject(context, CYGetProperty(context, String, prototype_s))); | |
1542 | CYSetProperty(context, cy, CYJSString("String_prototype"), String_prototype); | |
9cad30fa JF |
1543 | /* }}} */ |
1544 | ||
1545 | CYSetProperty(context, Array_prototype, toCYON_s, &Array_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); | |
4cb8aa43 | 1546 | CYSetProperty(context, String_prototype, toCYON_s, &String_callAsFunction_toCYON, kJSPropertyAttributeDontEnum); |
9cad30fa JF |
1547 | |
1548 | JSObjectRef cycript(JSObjectMake(context, NULL, NULL)); | |
1549 | CYSetProperty(context, global, CYJSString("Cycript"), cycript); | |
1550 | CYSetProperty(context, cycript, CYJSString("gc"), &Cycript_gc_callAsFunction); | |
1551 | ||
1552 | JSObjectRef Functor(JSObjectMakeConstructor(context, Functor_, &Functor_new)); | |
1553 | JSObjectSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Functor, prototype_s)), Function_prototype); | |
1554 | CYSetProperty(context, cycript, CYJSString("Functor"), Functor); | |
1555 | ||
1556 | CYSetProperty(context, cycript, CYJSString("Pointer"), JSObjectMakeConstructor(context, Pointer_, &Pointer_new)); | |
b63701b2 | 1557 | CYSetProperty(context, cycript, CYJSString("Type"), JSObjectMakeConstructor(context, Type_privateData::Class_, &Type_new)); |
9cad30fa JF |
1558 | |
1559 | JSObjectRef all(JSObjectMake(context, All_, NULL)); | |
1560 | CYSetProperty(context, cycript, CYJSString("all"), all); | |
1561 | ||
26ef7a82 JF |
1562 | JSObjectRef alls(JSObjectCallAsConstructor(context, Array, 0, NULL, &exception)); |
1563 | CYThrow(context, exception); | |
1564 | CYSetProperty(context, cycript, CYJSString("alls"), alls); | |
1565 | ||
56a66df3 JF |
1566 | if (true) { |
1567 | JSObjectRef last(NULL), curr(global); | |
9cad30fa | 1568 | |
56a66df3 JF |
1569 | goto next; for (JSValueRef next;;) { |
1570 | if (JSValueIsNull(context, next)) | |
1571 | break; | |
1572 | last = curr; | |
1573 | curr = CYCastJSObject(context, next); | |
1574 | next: | |
1575 | next = JSObjectGetPrototype(context, curr); | |
1576 | } | |
9cad30fa | 1577 | |
56a66df3 JF |
1578 | JSObjectSetPrototype(context, last, all); |
1579 | } | |
9cad30fa | 1580 | |
56a66df3 | 1581 | CYSetProperty(context, global, CYJSString("$cyq"), &$cyq, kJSPropertyAttributeDontEnum); |
9cad30fa JF |
1582 | |
1583 | JSObjectRef System(JSObjectMake(context, NULL, NULL)); | |
cdc80ff2 | 1584 | CYSetProperty(context, cy, CYJSString("System"), System); |
9cad30fa JF |
1585 | |
1586 | CYSetProperty(context, global, CYJSString("system"), System); | |
1587 | CYSetProperty(context, System, CYJSString("args"), CYJSNull(context)); | |
1588 | //CYSetProperty(context, System, CYJSString("global"), global); | |
1589 | CYSetProperty(context, System, CYJSString("print"), &System_print); | |
1590 | ||
a621ae76 JF |
1591 | if (CYBridgeEntry *entry = CYBridgeHash("1dlerror", 8)) |
1592 | entry->cache_ = new cy::Functor(entry->value_, reinterpret_cast<void (*)()>(&dlerror)); | |
1593 | ||
9cad30fa JF |
1594 | if (hooks_ != NULL && hooks_->SetupContext != NULL) |
1595 | (*hooks_->SetupContext)(context); | |
26ef7a82 JF |
1596 | |
1597 | CYArrayPush(context, alls, cycript); | |
9cad30fa JF |
1598 | } |
1599 | ||
1600 | JSGlobalContextRef CYGetJSContext() { | |
1601 | CYInitializeDynamic(); | |
1602 | ||
1603 | static JSGlobalContextRef context_; | |
1604 | ||
1605 | if (context_ == NULL) { | |
1606 | context_ = JSGlobalContextCreate(Global_); | |
1607 | CYSetupContext(context_); | |
1608 | } | |
1609 | ||
1610 | return context_; | |
1611 | } |