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