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