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