1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
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.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
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/>.
22 #include "cycript.hpp"
41 #include "sig/parse.hpp"
42 #include "sig/ffi_type.hpp"
47 #include "Execute.hpp"
48 #include "Internal.hpp"
49 #include "JavaScript.hpp"
50 #include "Pooling.hpp"
53 const char *sqlite3_column_string(sqlite3_stmt
*stmt
, int n
) {
54 return reinterpret_cast<const char *>(sqlite3_column_text(stmt
, n
));
57 char *sqlite3_column_pooled(CYPool
&pool
, sqlite3_stmt
*stmt
, int n
) {
58 if (const char *value
= sqlite3_column_string(stmt
, n
))
59 return pool
.strdup(value
);
63 static std::vector
<CYHook
*> &GetHooks() {
64 static std::vector
<CYHook
*> hooks
;
68 CYRegisterHook::CYRegisterHook(CYHook
*hook
) {
69 GetHooks().push_back(hook
);
72 /* JavaScript Properties {{{ */
73 bool CYHasProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
) {
74 return JSObjectHasProperty(context
, object
, name
);
77 JSValueRef
CYGetProperty(JSContextRef context
, JSObjectRef object
, size_t index
) {
78 return _jsccall(JSObjectGetPropertyAtIndex
, context
, object
, index
);
81 JSValueRef
CYGetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
) {
82 return _jsccall(JSObjectGetProperty
, context
, object
, name
);
85 void CYSetProperty(JSContextRef context
, JSObjectRef object
, size_t index
, JSValueRef value
) {
86 _jsccall(JSObjectSetPropertyAtIndex
, context
, object
, index
, value
);
89 void CYSetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
, JSValueRef value
, JSPropertyAttributes attributes
) {
90 _jsccall(JSObjectSetProperty
, context
, object
, name
, value
, attributes
);
93 void 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
);
97 void CYSetPrototype(JSContextRef context
, JSObjectRef object
, JSValueRef value
) {
98 JSObjectSetPrototype(context
, object
, value
);
99 _assert(CYIsStrictEqual(context
, JSObjectGetPrototype(context
, object
), value
));
102 /* JavaScript Strings {{{ */
103 JSStringRef
CYCopyJSString(const char *value
) {
104 return value
== NULL
? NULL
: JSStringCreateWithUTF8CString(value
);
107 JSStringRef
CYCopyJSString(JSStringRef value
) {
108 return value
== NULL
? NULL
: JSStringRetain(value
);
111 JSStringRef
CYCopyJSString(CYUTF8String value
) {
112 if (memchr(value
.data
, '\0', value
.size
) != NULL
) {
114 return CYCopyJSString(CYPoolUTF16String(pool
, value
));
115 } else if (value
.data
[value
.size
] != '\0') {
117 return CYCopyJSString(pool
.strmemdup(value
.data
, value
.size
));
119 return CYCopyJSString(value
.data
);
123 JSStringRef
CYCopyJSString(CYUTF16String value
) {
124 return JSStringCreateWithCharacters(value
.data
, value
.size
);
127 JSStringRef
CYCopyJSString(JSContextRef context
, JSValueRef value
) {
128 if (JSValueIsNull(context
, value
))
130 return _jsccall(JSValueToStringCopy
, context
, value
);
133 static CYUTF16String
CYCastUTF16String(JSStringRef value
) {
134 return CYUTF16String(JSStringGetCharactersPtr(value
), JSStringGetLength(value
));
137 CYUTF8String
CYPoolUTF8String(CYPool
&pool
, JSContextRef context
, JSStringRef value
) {
138 return CYPoolUTF8String(pool
, CYCastUTF16String(value
));
141 const char *CYPoolCString(CYPool
&pool
, JSContextRef context
, JSStringRef value
) {
142 CYUTF8String
utf8(CYPoolUTF8String(pool
, context
, value
));
143 _assert(memchr(utf8
.data
, '\0', utf8
.size
) == NULL
);
147 const char *CYPoolCString(CYPool
&pool
, JSContextRef context
, JSValueRef value
) {
148 return JSValueIsNull(context
, value
) ? NULL
: CYPoolCString(pool
, context
, CYJSString(context
, value
));
151 /* Index Offsets {{{ */
152 size_t CYGetIndex(CYPool
&pool
, JSContextRef context
, JSStringRef value
) {
153 return CYGetIndex(CYPoolUTF8String(pool
, context
, value
));
157 static JSObjectRef (*JSObjectMakeArray$
)(JSContextRef
, size_t, const JSValueRef
[], JSValueRef
*);
159 static JSObjectRef
CYObjectMakeArray(JSContextRef context
, size_t length
, const JSValueRef values
[]) {
160 if (JSObjectMakeArray$
!= NULL
)
161 return _jsccall(*JSObjectMakeArray$
, context
, length
, values
);
163 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array")));
164 JSValueRef
value(CYCallAsFunction(context
, Array
, NULL
, length
, values
));
165 return CYCastJSObject(context
, value
);
169 static JSClassRef All_
;
170 static JSClassRef Context_
;
171 static JSClassRef CString_
;
173 static JSClassRef Global_
;
174 static JSClassRef Pointer_
;
175 static JSClassRef Struct_
;
180 JSStringRef length_s
;
181 JSStringRef message_s
;
184 JSStringRef prototype_s
;
186 JSStringRef splice_s
;
187 JSStringRef toCYON_s
;
188 JSStringRef toJSON_s
;
189 JSStringRef toPointer_s
;
190 JSStringRef toString_s
;
193 static sqlite3
*database_
;
195 static JSStringRef Result_
;
197 void CYFinalize(JSObjectRef object
) {
198 CYData
*internal(reinterpret_cast<CYData
*>(JSObjectGetPrivate(object
)));
199 _assert(internal
->count_
!= _not(unsigned));
200 if (--internal
->count_
== 0)
204 sig::Type
*Structor_(CYPool
&pool
, sig::Aggregate
*aggregate
) {
209 JSClassRef
Type_privateData::Class_
;
214 JSGlobalContextRef context_
;
216 Context(JSGlobalContextRef context
) :
225 CString(char *value
, JSContextRef context
, JSObjectRef owner
) :
226 CYOwned(value
, context
, owner
)
234 Type_privateData
*type_
;
237 Pointer(void *value
, JSContextRef context
, JSObjectRef owner
, size_t length
, const sig::Type
&type
) :
238 CYOwned(value
, context
, owner
),
239 type_(new(*pool_
) Type_privateData(type
)),
244 Pointer(void *value
, JSContextRef context
, JSObjectRef owner
, size_t length
, const char *encoding
) :
245 CYOwned(value
, context
, owner
),
246 type_(new(*pool_
) Type_privateData(encoding
)),
252 struct Struct_privateData
:
255 Type_privateData
*type_
;
257 Struct_privateData(JSContextRef context
, JSObjectRef owner
) :
258 CYOwned(NULL
, context
, owner
)
263 JSObjectRef
CYMakeStruct(JSContextRef context
, void *data
, const sig::Type
&type
, ffi_type
*ffi
, JSObjectRef owner
) {
264 Struct_privateData
*internal(new Struct_privateData(context
, owner
));
265 CYPool
&pool(*internal
->pool_
);
266 Type_privateData
*typical(new(pool
) Type_privateData(type
, ffi
));
267 internal
->type_
= typical
;
270 internal
->value_
= data
;
272 ffi_type
*ffi(typical
->GetFFI());
273 void *copy(internal
->pool_
->malloc
<void>(ffi
->size
, ffi
->alignment
));
274 memcpy(copy
, data
, ffi
->size
);
275 internal
->value_
= copy
;
278 return JSObjectMake(context
, Struct_
, internal
);
281 static void *CYCastSymbol(const char *name
) {
282 for (CYHook
*hook
: GetHooks())
283 if (hook
->CastSymbol
!= NULL
)
284 if (void *value
= (*hook
->CastSymbol
)(name
))
286 return dlsym(RTLD_DEFAULT
, name
);
289 JSValueRef
CYCastJSValue(JSContextRef context
, bool value
) {
290 return JSValueMakeBoolean(context
, value
);
293 JSValueRef
CYCastJSValue(JSContextRef context
, double value
) {
294 return JSValueMakeNumber(context
, value
);
297 #define CYCastJSValue_(Type_) \
298 JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \
299 _assert(static_cast<Type_>(static_cast<double>(value)) == value); \
300 return JSValueMakeNumber(context, static_cast<double>(value)); \
304 CYCastJSValue_(unsigned int)
305 CYCastJSValue_(long int)
306 CYCastJSValue_(long unsigned int)
307 CYCastJSValue_(long long int)
308 CYCastJSValue_(long long unsigned int)
310 JSValueRef
CYJSUndefined(JSContextRef context
) {
311 return JSValueMakeUndefined(context
);
314 double CYCastDouble(JSContextRef context
, JSValueRef value
) {
315 return _jsccall(JSValueToNumber
, context
, value
);
318 bool CYCastBool(JSContextRef context
, JSValueRef value
) {
319 return JSValueToBoolean(context
, value
);
322 JSValueRef
CYJSNull(JSContextRef context
) {
323 return JSValueMakeNull(context
);
326 JSValueRef
CYCastJSValue(JSContextRef context
, JSStringRef value
) {
327 return value
== NULL
? CYJSNull(context
) : JSValueMakeString(context
, value
);
330 JSValueRef
CYCastJSValue(JSContextRef context
, const char *value
) {
331 return CYCastJSValue(context
, CYJSString(value
));
334 JSObjectRef
CYCastJSObject(JSContextRef context
, JSValueRef value
) {
335 return _jsccall(JSValueToObject
, context
, value
);
338 JSValueRef
CYCallAsFunction(JSContextRef context
, JSObjectRef function
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[]) {
339 return _jsccall(JSObjectCallAsFunction
, context
, function
, _this
, count
, arguments
);
342 bool CYIsCallable(JSContextRef context
, JSValueRef value
) {
343 return value
!= NULL
&& JSValueIsObject(context
, value
) && JSObjectIsFunction(context
, (JSObjectRef
) value
);
346 bool CYIsEqual(JSContextRef context
, JSValueRef lhs
, JSValueRef rhs
) {
347 return _jsccall(JSValueIsEqual
, context
, lhs
, rhs
);
350 bool CYIsStrictEqual(JSContextRef context
, JSValueRef lhs
, JSValueRef rhs
) {
351 return JSValueIsStrictEqual(context
, lhs
, rhs
);
354 size_t CYArrayLength(JSContextRef context
, JSObjectRef array
) {
355 return CYCastDouble(context
, CYGetProperty(context
, array
, length_s
));
358 JSValueRef
CYArrayGet(JSContextRef context
, JSObjectRef array
, size_t index
) {
359 return _jsccall(JSObjectGetPropertyAtIndex
, context
, array
, index
);
362 void CYArrayPush(JSContextRef context
, JSObjectRef array
, size_t length
, const JSValueRef arguments
[]) {
363 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array_prototype")));
364 _jsccall(JSObjectCallAsFunction
, context
, CYCastJSObject(context
, CYGetProperty(context
, Array
, push_s
)), array
, length
, arguments
);
367 void CYArrayPush(JSContextRef context
, JSObjectRef array
, JSValueRef value
) {
368 return CYArrayPush(context
, array
, 1, &value
);
371 template <size_t Size_
>
372 class CYArrayBuilder
{
374 JSContextRef context_
;
377 JSValueRef values_
[Size_
];
381 array_
= CYObjectMakeArray(context_
, size_
, values_
);
383 CYArrayPush(context_
, array_
, size_
, values_
);
387 CYArrayBuilder(JSContextRef context
, JSObjectRef
&array
) :
398 void operator ()(JSValueRef value
) {
399 if (size_
== Size_
) {
404 values_
[size_
++] = value
;
408 static JSValueRef
System_print(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
415 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, arguments
[0])));
416 fwrite(string
.data
, string
.size
, 1, file
);
420 return CYJSUndefined(context
);
423 static void (*JSSynchronousGarbageCollectForDebugging$
)(JSContextRef
);
425 _visible
void CYGarbageCollect(JSContextRef context
) {
426 (JSSynchronousGarbageCollectForDebugging$
?: &JSGarbageCollect
)(context
);
429 static JSValueRef
Cycript_compile_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
431 CYUTF8String
before(CYPoolUTF8String(pool
, context
, CYJSString(context
, arguments
[0])));
432 std::stringbuf
value(std::string(before
.data
, before
.size
));
433 CYUTF8String
after(CYPoolCode(pool
, value
));
434 return CYCastJSValue(context
, CYJSString(after
));
435 } CYCatch_(NULL
, "SyntaxError") }
437 static JSValueRef
Cycript_gc_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
438 CYGarbageCollect(context
);
439 return CYJSUndefined(context
);
442 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSValueRef value
, std::set
<void *> &objects
, JSValueRef
*exception
) { CYTry
{
443 switch (JSType type
= JSValueGetType(context
, value
)) {
444 case kJSTypeUndefined
:
449 return CYCastBool(context
, value
) ? "true" : "false";
451 case kJSTypeNumber
: {
452 std::ostringstream str
;
453 CYNumerify(str
, CYCastDouble(context
, value
));
454 std::string
value(str
.str());
455 return pool
.strmemdup(value
.c_str(), value
.size());
458 case kJSTypeString
: {
459 std::ostringstream str
;
460 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, value
)));
461 CYStringify(str
, string
.data
, string
.size
);
462 std::string
value(str
.str());
463 return pool
.strmemdup(value
.c_str(), value
.size());
467 return CYPoolCCYON(pool
, context
, (JSObjectRef
) value
, objects
);
469 throw CYJSError(context
, "JSValueGetType() == 0x%x", type
);
473 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSValueRef value
, std::set
<void *> &objects
) {
474 return _jsccall(CYPoolCCYON
, pool
, context
, value
, objects
);
477 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSValueRef value
, std::set
<void *> *objects
) {
479 return CYPoolCCYON(pool
, context
, value
, *objects
);
481 std::set
<void *> objects
;
482 return CYPoolCCYON(pool
, context
, value
, objects
);
486 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSObjectRef object
, std::set
<void *> &objects
) {
487 JSValueRef
toCYON(CYGetProperty(context
, object
, toCYON_s
));
488 if (CYIsCallable(context
, toCYON
)) {
489 // XXX: this needs to be abstracted behind some kind of function
490 JSValueRef arguments
[1] = {CYCastJSValue(context
, reinterpret_cast<uintptr_t>(&objects
))};
491 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toCYON
, object
, 1, arguments
));
492 _assert(value
!= NULL
);
493 return CYPoolCString(pool
, context
, value
);
496 JSValueRef
toJSON(CYGetProperty(context
, object
, toJSON_s
));
497 if (CYIsCallable(context
, toJSON
)) {
498 JSValueRef arguments
[1] = {CYCastJSValue(context
, CYJSString(""))};
499 return _jsccall(CYPoolCCYON
, pool
, context
, CYCallAsFunction(context
, (JSObjectRef
) toJSON
, object
, 1, arguments
), objects
);
502 if (JSObjectIsFunction(context
, object
)) {
503 JSValueRef
toString(CYGetProperty(context
, object
, toString_s
));
504 if (CYIsCallable(context
, toString
)) {
505 JSValueRef arguments
[1] = {CYCastJSValue(context
, CYJSString(""))};
506 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toString
, object
, 1, arguments
));
507 _assert(value
!= NULL
);
508 return CYPoolCString(pool
, context
, value
);
512 _assert(objects
.insert(object
).second
);
514 std::ostringstream str
;
518 // XXX: this is, sadly, going to leak
519 JSPropertyNameArrayRef
names(JSObjectCopyPropertyNames(context
, object
));
523 for (size_t index(0), count(JSPropertyNameArrayGetCount(names
)); index
!= count
; ++index
) {
529 JSStringRef
name(JSPropertyNameArrayGetNameAtIndex(names
, index
));
530 CYUTF8String
string(CYPoolUTF8String(pool
, context
, name
));
535 CYStringify(str
, string
.data
, string
.size
);
540 JSValueRef
value(CYGetProperty(context
, object
, name
));
541 str
<< CYPoolCCYON(pool
, context
, value
, objects
);
542 } catch (const CYException
&error
) {
547 JSPropertyNameArrayRelease(names
);
551 std::string
string(str
.str());
552 return pool
.strmemdup(string
.c_str(), string
.size());
555 std::set
<void *> *CYCastObjects(JSContextRef context
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[]) {
558 return CYCastPointer
<std::set
<void *> *>(context
, arguments
[0]);
561 static JSValueRef
Array_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
562 std::set
<void *> *objects(CYCastObjects(context
, _this
, count
, arguments
));
563 // XXX: this is horribly inefficient
564 std::set
<void *> backup
;
569 std::ostringstream str
;
573 JSValueRef
length(CYGetProperty(context
, _this
, length_s
));
576 for (size_t index(0), count(CYCastDouble(context
, length
)); index
!= count
; ++index
) {
583 JSValueRef
value(CYGetProperty(context
, _this
, index
));
584 if (!JSValueIsUndefined(context
, value
))
585 str
<< CYPoolCCYON(pool
, context
, value
, *objects
);
590 } catch (const CYException
&error
) {
597 std::string
value(str
.str());
598 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
601 static JSValueRef
String_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
603 std::ostringstream str
;
605 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, _this
)));
606 CYStringify(str
, string
.data
, string
.size
);
608 std::string
value(str
.str());
609 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
612 JSObjectRef
CYMakePointer(JSContextRef context
, void *pointer
, size_t length
, const sig::Type
&type
, ffi_type
*ffi
, JSObjectRef owner
) {
613 Pointer
*internal(new Pointer(pointer
, context
, owner
, length
, type
));
614 return JSObjectMake(context
, Pointer_
, internal
);
617 JSObjectRef
CYMakePointer(JSContextRef context
, void *pointer
, size_t length
, const char *encoding
, JSObjectRef owner
) {
618 Pointer
*internal(new Pointer(pointer
, context
, owner
, length
, encoding
));
619 return JSObjectMake(context
, Pointer_
, internal
);
622 JSObjectRef
CYMakeCString(JSContextRef context
, char *pointer
, JSObjectRef owner
) {
623 CString
*internal(new CString(pointer
, context
, owner
));
624 return JSObjectMake(context
, CString_
, internal
);
627 static JSObjectRef
CYMakeFunctor(JSContextRef context
, void (*function
)(), const sig::Signature
&signature
) {
628 return JSObjectMake(context
, Functor_
, new cy::Functor(signature
, function
));
631 static JSObjectRef
CYMakeFunctor(JSContextRef context
, const char *symbol
, const char *encoding
) {
632 void (*function
)()(reinterpret_cast<void (*)()>(CYCastSymbol(symbol
)));
633 if (function
== NULL
)
636 cy::Functor
*internal(new cy::Functor(encoding
, function
));
638 return JSObjectMake(context
, Functor_
, internal
);
641 static bool CYGetOffset(CYPool
&pool
, JSContextRef context
, JSStringRef value
, ssize_t
&index
) {
642 return CYGetOffset(CYPoolCString(pool
, context
, value
), index
);
645 void *CYCastPointer_(JSContextRef context
, JSValueRef value
, bool *guess
) {
648 else switch (JSValueGetType(context
, value
)) {
651 case kJSTypeObject
: {
652 JSObjectRef
object((JSObjectRef
) value
);
653 if (JSValueIsObjectOfClass(context
, value
, Pointer_
)) {
654 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
655 return internal
->value_
;
657 JSValueRef
toPointer(CYGetProperty(context
, object
, toPointer_s
));
658 if (CYIsCallable(context
, toPointer
)) {
659 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toPointer
, object
, 0, NULL
));
660 _assert(value
!= NULL
);
661 return CYCastPointer_(context
, value
, guess
);
667 double number(CYCastDouble(context
, value
));
668 if (!std::isnan(number
))
669 return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number
)));
671 throw CYJSError(context
, "cannot convert value to pointer");
681 // XXX: this is somehow not quite a template :/
684 void Primitive
<bool>::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
685 *reinterpret_cast<bool *>(data
) = JSValueToBoolean(context
, value
);
688 #define CYPoolFFI_(Type_) \
690 void Primitive<Type_>::PoolFFI(CYPool *pool, JSContextRef context, ffi_type *ffi, void *data, JSValueRef value) const { \
691 *reinterpret_cast<Type_ *>(data) = CYCastDouble(context, value); \
697 CYPoolFFI_(signed char)
698 CYPoolFFI_(signed int)
699 CYPoolFFI_(signed long int)
700 CYPoolFFI_(signed long long int)
701 CYPoolFFI_(signed short int)
702 CYPoolFFI_(unsigned char)
703 CYPoolFFI_(unsigned int)
704 CYPoolFFI_(unsigned long int)
705 CYPoolFFI_(unsigned long long int)
706 CYPoolFFI_(unsigned short int)
708 void Void::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
712 void Unknown::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
716 void String::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
718 *reinterpret_cast<const char **>(data
) = CYCastPointer
<const char *>(context
, value
, &guess
);
719 if (guess
&& pool
!= NULL
)
720 *reinterpret_cast<const char **>(data
) = CYPoolCString(*pool
, context
, value
);
723 void Bits::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
727 void Pointer::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
728 *reinterpret_cast<void **>(data
) = CYCastPointer
<void *>(context
, value
);
731 void Array::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
732 uint8_t *base(reinterpret_cast<uint8_t *>(data
));
733 JSObjectRef
aggregate(JSValueIsObject(context
, value
) ? (JSObjectRef
) value
: NULL
);
734 for (size_t index(0); index
!= size
; ++index
) {
735 ffi_type
*field(ffi
->elements
[index
]);
738 if (aggregate
== NULL
)
741 rhs
= CYGetProperty(context
, aggregate
, index
);
742 if (JSValueIsUndefined(context
, rhs
))
743 throw CYJSError(context
, "unable to extract array value");
746 type
.PoolFFI(pool
, context
, field
, base
, rhs
);
751 void Aggregate::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
754 uint8_t *base(reinterpret_cast<uint8_t *>(data
));
755 JSObjectRef
aggregate(JSValueIsObject(context
, value
) ? (JSObjectRef
) value
: NULL
);
756 for (size_t index(0); index
!= signature
.count
; ++index
) {
757 sig::Element
*element(&signature
.elements
[index
]);
758 ffi_type
*field(ffi
->elements
[index
]);
761 if (aggregate
== NULL
)
764 rhs
= CYGetProperty(context
, aggregate
, index
);
765 if (JSValueIsUndefined(context
, rhs
)) {
766 if (element
->name
!= NULL
)
767 rhs
= CYGetProperty(context
, aggregate
, CYJSString(element
->name
));
770 if (JSValueIsUndefined(context
, rhs
)) undefined
:
771 throw CYJSError(context
, "unable to extract structure value");
775 element
->type
->PoolFFI(pool
, context
, field
, base
, rhs
);
780 void Function::PoolFFI(CYPool
*pool
, JSContextRef context
, ffi_type
*ffi
, void *data
, JSValueRef value
) const {
784 #define CYFromFFI_(Type_) \
786 JSValueRef Primitive<Type_>::FromFFI(JSContextRef context, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) const { \
787 return CYCastJSValue(context, *reinterpret_cast<Type_ *>(data)); \
794 CYFromFFI_(signed char)
795 CYFromFFI_(signed int)
796 CYFromFFI_(signed long int)
797 CYFromFFI_(signed long long int)
798 CYFromFFI_(signed short int)
799 CYFromFFI_(unsigned char)
800 CYFromFFI_(unsigned int)
801 CYFromFFI_(unsigned long int)
802 CYFromFFI_(unsigned long long int)
803 CYFromFFI_(unsigned short int)
805 JSValueRef
Void::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
806 return CYJSUndefined(context
);
809 JSValueRef
Unknown::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
813 JSValueRef
String::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
814 if (char *value
= *reinterpret_cast<char **>(data
))
815 return CYMakeCString(context
, value
, owner
);
816 return CYJSNull(context
);
819 JSValueRef
Bits::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
823 JSValueRef
Pointer::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
824 if (void *value
= *reinterpret_cast<void **>(data
))
825 return CYMakePointer(context
, value
, _not(size_t), type
, NULL
, owner
);
826 return CYJSNull(context
);
829 JSValueRef
Array::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
830 _assert(data
!= NULL
);
831 return CYMakePointer(context
, data
, size
, type
, NULL
, owner
);
834 JSValueRef
Aggregate::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
835 return CYMakeStruct(context
, data
, *this, ffi
, owner
);
838 JSValueRef
Function::FromFFI(JSContextRef context
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) const {
839 return CYMakeFunctor(context
, reinterpret_cast<void (*)()>(data
), signature
);
844 void CYExecuteClosure(ffi_cif
*cif
, void *result
, void **arguments
, void *arg
) {
845 Closure_privateData
*internal(reinterpret_cast<Closure_privateData
*>(arg
));
847 JSContextRef
context(internal
->context_
);
849 size_t count(internal
->cif_
.nargs
);
850 JSValueRef values
[count
];
852 for (size_t index(0); index
!= count
; ++index
)
853 values
[index
] = internal
->signature_
.elements
[1 + index
].type
->FromFFI(context
, internal
->cif_
.arg_types
[index
], arguments
[index
]);
855 JSValueRef
value(internal
->adapter_(context
, count
, values
, internal
->function_
));
856 if (internal
->cif_
.rtype
!= &ffi_type_void
)
857 internal
->signature_
.elements
[0].type
->PoolFFI(NULL
, context
, internal
->cif_
.rtype
, result
, value
);
860 static JSValueRef
FunctionAdapter_(JSContextRef context
, size_t count
, JSValueRef values
[], JSObjectRef function
) {
861 return CYCallAsFunction(context
, function
, NULL
, count
, values
);
864 Closure_privateData
*CYMakeFunctor_(JSContextRef context
, JSObjectRef function
, const sig::Signature
&signature
, JSValueRef (*adapter
)(JSContextRef
, size_t, JSValueRef
[], JSObjectRef
)) {
865 // XXX: in case of exceptions this will leak
866 // XXX: in point of fact, this may /need/ to leak :(
867 Closure_privateData
*internal(new Closure_privateData(context
, function
, adapter
, signature
));
869 #if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__))
871 ffi_closure
*writable(reinterpret_cast<ffi_closure
*>(ffi_closure_alloc(sizeof(ffi_closure
), &executable
)));
873 ffi_status
status(ffi_prep_closure_loc(writable
, &internal
->cif_
, &CYExecuteClosure
, internal
, executable
));
874 _assert(status
== FFI_OK
);
876 internal
->value_
= executable
;
878 ffi_closure
*closure((ffi_closure
*) _syscall(mmap(
879 NULL
, sizeof(ffi_closure
),
880 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
884 ffi_status
status(ffi_prep_closure(closure
, &internal
->cif_
, &CYExecuteClosure
, internal
));
885 _assert(status
== FFI_OK
);
887 _syscall(mprotect(closure
, sizeof(*closure
), PROT_READ
| PROT_EXEC
));
889 internal
->value_
= closure
;
895 static JSObjectRef
CYMakeFunctor(JSContextRef context
, JSObjectRef function
, const sig::Signature
&signature
) {
896 Closure_privateData
*internal(CYMakeFunctor_(context
, function
, signature
, &FunctionAdapter_
));
897 JSObjectRef
object(JSObjectMake(context
, Functor_
, internal
));
898 // XXX: see above notes about needing to leak
899 JSValueProtect(CYGetJSContext(context
), object
);
903 JSValueRef
CYGetCachedValue(JSContextRef context
, JSStringRef name
) {
904 return CYGetProperty(context
, CYCastJSObject(context
, CYGetProperty(context
, CYGetGlobalObject(context
), cy_s
)), name
);
907 JSObjectRef
CYGetCachedObject(JSContextRef context
, JSStringRef name
) {
908 return CYCastJSObject(context
, CYGetCachedValue(context
, name
));
911 static JSObjectRef
CYMakeFunctor(JSContextRef context
, JSValueRef value
, const sig::Signature
&signature
) {
912 JSObjectRef
Function(CYGetCachedObject(context
, CYJSString("Function")));
914 bool function(_jsccall(JSValueIsInstanceOfConstructor
, context
, value
, Function
));
916 JSObjectRef
function(CYCastJSObject(context
, value
));
917 return CYMakeFunctor(context
, function
, signature
);
919 void (*function
)()(CYCastPointer
<void (*)()>(context
, value
));
920 return CYMakeFunctor(context
, function
, signature
);
924 static JSValueRef
CString_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
926 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(object
)));
927 char *string(static_cast<char *>(internal
->value_
));
930 if (!CYGetOffset(pool
, context
, property
, offset
))
933 return CYCastJSValue(context
, CYJSString(CYUTF8String(&string
[offset
], 1)));
936 static bool CString_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
938 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(object
)));
939 char *string(static_cast<char *>(internal
->value_
));
942 if (!CYGetOffset(pool
, context
, property
, offset
))
945 const char *data(CYPoolCString(pool
, context
, value
));
946 string
[offset
] = *data
;
950 static bool Index_(CYPool
&pool
, JSContextRef context
, Struct_privateData
*internal
, JSStringRef property
, ssize_t
&index
, uint8_t *&base
) {
951 Type_privateData
*typical(internal
->type_
);
952 sig::Aggregate
*type(static_cast<sig::Aggregate
*>(typical
->type_
));
956 const char *name(CYPoolCString(pool
, context
, property
));
957 size_t length(strlen(name
));
958 double number(CYCastDouble(name
, length
));
960 size_t count(type
->signature
.count
);
962 if (std::isnan(number
)) {
963 if (property
== NULL
)
966 sig::Element
*elements(type
->signature
.elements
);
968 for (size_t local(0); local
!= count
; ++local
) {
969 sig::Element
*element(&elements
[local
]);
970 if (element
->name
!= NULL
&& strcmp(name
, element
->name
) == 0) {
978 index
= static_cast<ssize_t
>(number
);
979 if (index
!= number
|| index
< 0 || static_cast<size_t>(index
) >= count
)
984 ffi_type
**elements(typical
->GetFFI()->elements
);
987 for (ssize_t
local(0); local
!= index
; ++local
) {
988 offset
+= elements
[local
]->size
;
989 CYAlign(offset
, elements
[local
+ 1]->alignment
);
992 base
= reinterpret_cast<uint8_t *>(internal
->value_
) + offset
;
996 static JSValueRef
Pointer_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
998 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
1000 if (JSStringIsEqual(property
, length_s
))
1001 return internal
->length_
== _not(size_t) ? CYJSUndefined(context
) : CYCastJSValue(context
, internal
->length_
);
1003 Type_privateData
*typical(internal
->type_
);
1004 if (typical
->type_
== NULL
)
1007 if (sig::Function
*function
= dynamic_cast<sig::Function
*>(typical
->type_
)) {
1008 if (!JSStringIsEqualToUTF8CString(property
, "$cyi"))
1010 return CYMakeFunctor(context
, reinterpret_cast<void (*)()>(internal
->value_
), function
->signature
);
1014 if (JSStringIsEqualToUTF8CString(property
, "$cyi"))
1016 else if (!CYGetOffset(pool
, context
, property
, offset
))
1019 ffi_type
*ffi(typical
->GetFFI());
1021 uint8_t *base(reinterpret_cast<uint8_t *>(internal
->value_
));
1022 base
+= ffi
->size
* offset
;
1024 JSObjectRef
owner(internal
->GetOwner() ?: object
);
1025 return typical
->type_
->FromFFI(context
, ffi
, base
, false, owner
);
1028 static bool Pointer_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
1030 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
1031 Type_privateData
*typical(internal
->type_
);
1033 if (typical
->type_
== NULL
)
1037 if (JSStringIsEqualToUTF8CString(property
, "$cyi"))
1039 else if (!CYGetOffset(pool
, context
, property
, offset
))
1042 ffi_type
*ffi(typical
->GetFFI());
1044 uint8_t *base(reinterpret_cast<uint8_t *>(internal
->value_
));
1045 base
+= ffi
->size
* offset
;
1047 typical
->type_
->PoolFFI(NULL
, context
, ffi
, base
, value
);
1051 static JSValueRef Struct_callAsFunction_$
cya(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1052 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(_this
)));
1053 Type_privateData
*typical(internal
->type_
);
1054 return CYMakePointer(context
, internal
->value_
, _not(size_t), *typical
->type_
, typical
->ffi_
, _this
);
1057 static JSValueRef
Struct_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1058 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1059 return CYMakeType(context
, *internal
->type_
->type_
);
1062 static JSValueRef
Struct_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1064 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1065 Type_privateData
*typical(internal
->type_
);
1066 sig::Aggregate
*type(static_cast<sig::Aggregate
*>(typical
->type_
));
1071 if (!Index_(pool
, context
, internal
, property
, index
, base
))
1074 JSObjectRef
owner(internal
->GetOwner() ?: object
);
1076 return type
->signature
.elements
[index
].type
->FromFFI(context
, typical
->GetFFI()->elements
[index
], base
, false, owner
);
1079 static bool Struct_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
1081 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1082 Type_privateData
*typical(internal
->type_
);
1083 sig::Aggregate
*type(static_cast<sig::Aggregate
*>(typical
->type_
));
1088 if (!Index_(pool
, context
, internal
, property
, index
, base
))
1091 type
->signature
.elements
[index
].type
->PoolFFI(NULL
, context
, typical
->GetFFI()->elements
[index
], base
, value
);
1095 static void Struct_getPropertyNames(JSContextRef context
, JSObjectRef object
, JSPropertyNameAccumulatorRef names
) {
1096 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1097 Type_privateData
*typical(internal
->type_
);
1098 sig::Aggregate
*type(static_cast<sig::Aggregate
*>(typical
->type_
));
1103 size_t count(type
->signature
.count
);
1104 sig::Element
*elements(type
->signature
.elements
);
1108 for (size_t index(0); index
!= count
; ++index
) {
1110 name
= elements
[index
].name
;
1113 sprintf(number
, "%zu", index
);
1117 JSPropertyNameAccumulatorAddName(names
, CYJSString(name
));
1121 void CYCallFunction(CYPool
&pool
, JSContextRef context
, ffi_cif
*cif
, void (*function
)(), void *value
, void **values
) {
1122 ffi_call(cif
, function
, value
, values
);
1125 JSValueRef
CYCallFunction(CYPool
&pool
, JSContextRef context
, size_t setups
, void *setup
[], size_t count
, const JSValueRef arguments
[], bool initialize
, sig::Signature
*signature
, ffi_cif
*cif
, void (*function
)()) {
1126 if (setups
+ count
!= signature
->count
- 1)
1127 throw CYJSError(context
, "incorrect number of arguments to ffi function");
1129 size_t size(setups
+ count
);
1131 memcpy(values
, setup
, sizeof(void *) * setups
);
1133 for (size_t index(setups
); index
!= size
; ++index
) {
1134 sig::Element
*element(&signature
->elements
[index
+ 1]);
1135 ffi_type
*ffi(cif
->arg_types
[index
]);
1136 values
[index
] = pool
.malloc
<uint8_t>(ffi
->size
, ffi
->alignment
);
1137 element
->type
->PoolFFI(&pool
, context
, ffi
, values
[index
], arguments
[index
- setups
]);
1140 uint8_t value
[cif
->rtype
->size
];
1142 void (*call
)(CYPool
&, JSContextRef
, ffi_cif
*, void (*)(), void *, void **) = &CYCallFunction
;
1143 // XXX: this only supports one hook, but it is a bad idea anyway
1144 for (CYHook
*hook
: GetHooks())
1145 if (hook
->CallFunction
!= NULL
)
1146 call
= hook
->CallFunction
;
1148 call(pool
, context
, cif
, function
, value
, values
);
1149 return signature
->elements
[0].type
->FromFFI(context
, cif
->rtype
, value
, initialize
);
1152 static JSValueRef
Functor_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1154 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(object
)));
1155 return CYCallFunction(pool
, context
, 0, NULL
, count
, arguments
, false, &internal
->signature_
, &internal
->cif_
, internal
->GetValue());
1158 static JSValueRef
Pointer_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1159 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
1160 if (dynamic_cast<sig::Function
*>(internal
->type_
->type_
) == NULL
)
1161 throw CYJSError(context
, "cannot call a pointer to non-function");
1162 JSObjectRef
functor(CYCastJSObject(context
, CYGetProperty(context
, object
, cyi_s
)));
1163 return CYCallAsFunction(context
, functor
, _this
, count
, arguments
);
1166 JSObjectRef
CYMakeType(JSContextRef context
, const sig::Type
&type
) {
1167 Type_privateData
*internal(new Type_privateData(type
));
1168 return JSObjectMake(context
, Type_privateData::Class_
, internal
);
1171 JSObjectRef
CYMakeType(JSContextRef context
, sig::Signature
*signature
) {
1174 sig::Copy(pool
, type
.signature
, *signature
);
1175 return CYMakeType(context
, type
);
1178 extern "C" bool CYBridgeHash(CYPool
&pool
, CYUTF8String name
, const char *&code
, unsigned &flags
) {
1179 sqlite3_stmt
*statement
;
1181 _sqlcall(sqlite3_prepare(database_
,
1183 "\"cache\".\"code\", "
1184 "\"cache\".\"flags\" "
1187 " \"cache\".\"system\" & " CY_SYSTEM
" == " CY_SYSTEM
" and"
1188 " \"cache\".\"name\" = ?"
1190 , -1, &statement
, NULL
));
1192 _sqlcall(sqlite3_bind_text(statement
, 1, name
.data
, name
.size
, SQLITE_STATIC
));
1195 if (_sqlcall(sqlite3_step(statement
)) == SQLITE_DONE
)
1199 code
= sqlite3_column_pooled(pool
, statement
, 0);
1200 flags
= sqlite3_column_int(statement
, 1);
1203 _sqlcall(sqlite3_finalize(statement
));
1207 static bool All_hasProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
) {
1208 if (JSStringIsEqualToUTF8CString(property
, "errno"))
1211 JSObjectRef
global(CYGetGlobalObject(context
));
1212 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1213 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1215 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1216 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1)))
1217 if (CYHasProperty(context
, space
, property
))
1223 if (CYBridgeHash(pool
, CYPoolUTF8String(pool
, context
, property
), code
, flags
))
1229 static JSValueRef
All_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1230 if (JSStringIsEqualToUTF8CString(property
, "errno"))
1231 return CYCastJSValue(context
, errno
);
1233 JSObjectRef
global(CYGetGlobalObject(context
));
1234 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1235 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1237 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1238 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1)))
1239 if (JSValueRef value
= CYGetProperty(context
, space
, property
))
1240 if (!JSValueIsUndefined(context
, value
))
1246 if (CYBridgeHash(pool
, CYPoolUTF8String(pool
, context
, property
), code
, flags
)) {
1247 CYUTF8String parsed
;
1250 parsed
= CYPoolCode(pool
, code
);
1251 } catch (const CYException
&error
) {
1252 CYThrow("%s", pool
.strcat("error caching ", CYPoolCString(pool
, context
, property
), ": ", error
.PoolCString(pool
), NULL
));
1255 JSValueRef
result(_jsccall(JSEvaluateScript
, context
, CYJSString(parsed
), NULL
, NULL
, 0));
1258 JSObjectRef
cache(CYGetCachedObject(context
, CYJSString("cache")));
1259 CYSetProperty(context
, cache
, property
, result
);
1268 static JSValueRef
All_complete_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1269 _assert(count
== 1);
1271 CYUTF8String
prefix(CYPoolUTF8String(pool
, context
, CYJSString(context
, arguments
[0])));
1273 JSObjectRef
array(NULL
);
1276 CYArrayBuilder
<1024> values(context
, array
);
1278 sqlite3_stmt
*statement
;
1280 if (prefix
.size
== 0)
1281 _sqlcall(sqlite3_prepare(database_
,
1283 "\"cache\".\"name\" "
1286 " \"cache\".\"system\" & " CY_SYSTEM
" == " CY_SYSTEM
1287 , -1, &statement
, NULL
));
1289 _sqlcall(sqlite3_prepare(database_
,
1291 "\"cache\".\"name\" "
1294 " \"cache\".\"name\" >= ? and \"cache\".\"name\" < ? and "
1295 " \"cache\".\"system\" & " CY_SYSTEM
" == " CY_SYSTEM
1296 , -1, &statement
, NULL
));
1298 _sqlcall(sqlite3_bind_text(statement
, 1, prefix
.data
, prefix
.size
, SQLITE_STATIC
));
1300 char *after(pool
.strndup(prefix
.data
, prefix
.size
));
1301 ++after
[prefix
.size
- 1];
1302 _sqlcall(sqlite3_bind_text(statement
, 2, after
, prefix
.size
, SQLITE_STATIC
));
1305 while (_sqlcall(sqlite3_step(statement
)) != SQLITE_DONE
)
1306 values(CYCastJSValue(context
, CYJSString(sqlite3_column_string(statement
, 0))));
1308 _sqlcall(sqlite3_finalize(statement
));
1314 static void All_getPropertyNames(JSContextRef context
, JSObjectRef object
, JSPropertyNameAccumulatorRef names
) {
1315 JSObjectRef
global(CYGetGlobalObject(context
));
1316 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1317 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1319 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1320 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1))) {
1321 JSPropertyNameArrayRef
subset(JSObjectCopyPropertyNames(context
, space
));
1322 for (size_t index(0), count(JSPropertyNameArrayGetCount(subset
)); index
!= count
; ++index
)
1323 JSPropertyNameAccumulatorAddName(names
, JSPropertyNameArrayGetNameAtIndex(subset
, index
));
1324 JSPropertyNameArrayRelease(subset
);
1328 static JSObjectRef
CString_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1330 throw CYJSError(context
, "incorrect number of arguments to CString constructor");
1331 char *value(CYCastPointer
<char *>(context
, arguments
[0]));
1332 return CYMakeCString(context
, value
, NULL
);
1335 static JSObjectRef
Pointer_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1337 throw CYJSError(context
, "incorrect number of arguments to Pointer constructor");
1341 void *value(CYCastPointer
<void *>(context
, arguments
[0]));
1342 const char *type(CYPoolCString(pool
, context
, arguments
[1]));
1344 sig::Signature signature
;
1345 sig::Parse(pool
, &signature
, type
, &Structor_
);
1347 return CYMakePointer(context
, value
, _not(size_t), *signature
.elements
[0].type
, NULL
, NULL
);
1350 static JSObjectRef
Type_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1354 } else if (count
== 1) {
1355 const char *encoding(CYPoolCString(pool
, context
, arguments
[0]));
1356 sig::Signature signature
;
1357 sig::Parse(pool
, &signature
, encoding
, &Structor_
);
1358 return CYMakeType(context
, *signature
.elements
[0].type
);
1359 } else if (count
== 2) {
1360 JSObjectRef
types(CYCastJSObject(context
, arguments
[0]));
1361 size_t count(CYArrayLength(context
, types
));
1363 JSObjectRef
names(CYCastJSObject(context
, arguments
[1]));
1365 sig::Aggregate
type(false);
1366 type
.signature
.elements
= new(pool
) sig::Element
[count
];
1367 type
.signature
.count
= count
;
1369 for (size_t i(0); i
!= count
; ++i
) {
1370 sig::Element
&element(type
.signature
.elements
[i
]);
1371 element
.offset
= _not(size_t);
1373 JSValueRef
name(CYArrayGet(context
, names
, i
));
1374 if (JSValueIsUndefined(context
, name
))
1375 element
.name
= NULL
;
1377 element
.name
= CYPoolCString(pool
, context
, name
);
1379 JSObjectRef
object(CYCastJSObject(context
, CYArrayGet(context
, types
, i
)));
1380 _assert(JSValueIsObjectOfClass(context
, object
, Type_privateData::Class_
));
1381 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1382 element
.type
= internal
->type_
;
1385 return CYMakeType(context
, type
);
1387 throw CYJSError(context
, "incorrect number of arguments to Type constructor");
1391 static JSValueRef Type_callAsFunction_$
With(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], sig::Callable
&type
, JSValueRef
*exception
) { CYTry
{
1392 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1396 type
.signature
.elements
= new(pool
) sig::Element
[1 + count
];
1397 type
.signature
.count
= 1 + count
;
1399 type
.signature
.elements
[0].name
= NULL
;
1400 type
.signature
.elements
[0].type
= internal
->type_
;
1401 type
.signature
.elements
[0].offset
= _not(size_t);
1403 for (size_t i(0); i
!= count
; ++i
) {
1404 sig::Element
&element(type
.signature
.elements
[i
+ 1]);
1405 element
.name
= NULL
;
1406 element
.offset
= _not(size_t);
1408 JSObjectRef
object(CYCastJSObject(context
, arguments
[i
]));
1409 _assert(JSValueIsObjectOfClass(context
, object
, Type_privateData::Class_
));
1410 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1412 element
.type
= internal
->type_
;
1415 return CYMakeType(context
, type
);
1418 static JSValueRef
Type_callAsFunction_arrayOf(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1420 throw CYJSError(context
, "incorrect number of arguments to Type.arrayOf");
1421 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1424 size_t index(CYGetIndex(pool
, context
, CYJSString(context
, arguments
[0])));
1425 if (index
== _not(size_t))
1426 throw CYJSError(context
, "invalid array size used with Type.arrayOf");
1428 sig::Array
type(*internal
->type_
, index
);
1429 return CYMakeType(context
, type
);
1432 static JSValueRef
Type_callAsFunction_blockWith(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1434 return Type_callAsFunction_$
With(context
, object
, _this
, count
, arguments
, type
, exception
);
1437 static JSValueRef
Type_callAsFunction_constant(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1439 throw CYJSError(context
, "incorrect number of arguments to Type.constant");
1440 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1443 sig::Type
*type(internal
->type_
->Copy(pool
));
1444 type
->flags
|= JOC_TYPE_CONST
;
1445 return CYMakeType(context
, *type
);
1448 static JSValueRef
Type_callAsFunction_functionWith(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1450 return Type_callAsFunction_$
With(context
, object
, _this
, count
, arguments
, type
, exception
);
1453 static JSValueRef
Type_callAsFunction_pointerTo(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1455 throw CYJSError(context
, "incorrect number of arguments to Type.pointerTo");
1456 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1458 if (dynamic_cast<sig::Primitive
<char> *>(internal
->type_
) != NULL
)
1459 return CYMakeType(context
, sig::String());
1461 return CYMakeType(context
, sig::Pointer(*internal
->type_
));
1464 static JSValueRef
Type_callAsFunction_withName(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1466 throw CYJSError(context
, "incorrect number of arguments to Type.withName");
1467 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1470 return CYMakeType(context
, *internal
->type_
->Copy(pool
, CYPoolCString(pool
, context
, arguments
[0])));
1473 static JSValueRef
Type_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1475 throw CYJSError(context
, "incorrect number of arguments to type cast function");
1476 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1478 if (sig::Function
*function
= dynamic_cast<sig::Function
*>(internal
->type_
))
1479 return CYMakeFunctor(context
, arguments
[0], function
->signature
);
1482 sig::Type
*type(internal
->type_
);
1483 ffi_type
*ffi(internal
->GetFFI());
1484 void *value(pool
.malloc
<void>(ffi
->size
, ffi
->alignment
));
1485 type
->PoolFFI(&pool
, context
, ffi
, value
, arguments
[0]);
1486 return type
->FromFFI(context
, ffi
, value
);
1489 static JSObjectRef
Type_callAsConstructor(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1491 throw CYJSError(context
, "incorrect number of arguments to Type allocator");
1492 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1494 sig::Type
*type(internal
->type_
);
1495 size_t length(type
->Translate(type
));
1497 JSObjectRef
pointer(CYMakePointer(context
, NULL
, length
, *type
, NULL
, NULL
));
1498 Pointer
*value(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(pointer
)));
1499 ffi_type
*ffi(internal
->GetFFI());
1500 value
->value_
= value
->pool_
->malloc
<void>(ffi
->size
, ffi
->alignment
);
1501 memset(value
->value_
, 0, ffi
->size
);
1505 static JSObjectRef
Functor_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1507 throw CYJSError(context
, "incorrect number of arguments to Functor constructor");
1509 const char *encoding(CYPoolCString(pool
, context
, arguments
[1]));
1510 sig::Signature signature
;
1511 sig::Parse(pool
, &signature
, encoding
, &Structor_
);
1512 return CYMakeFunctor(context
, arguments
[0], signature
);
1515 static JSValueRef
CString_callAsFunction_toPointer(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1516 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(_this
)));
1517 return CYMakePointer(context
, internal
->value_
, _not(size_t), sig::Primitive
<char>(), NULL
, NULL
);
1520 static JSValueRef Functor_callAsFunction_$
cya(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1522 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(_this
)));
1525 sig::Copy(pool
, type
.signature
, internal
->signature_
);
1527 return CYMakePointer(context
, internal
->value_
, _not(size_t), type
, NULL
, NULL
);
1530 static JSValueRef
Pointer_callAsFunction_toPointer(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1534 static JSValueRef
CYValue_callAsFunction_valueOf(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1535 CYValue
*internal(reinterpret_cast<CYValue
*>(JSObjectGetPrivate(_this
)));
1536 return CYCastJSValue(context
, reinterpret_cast<uintptr_t>(internal
->value_
));
1539 static JSValueRef
CYValue_callAsFunction_toJSON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1540 return CYValue_callAsFunction_valueOf(context
, object
, _this
, count
, arguments
, exception
);
1543 static JSValueRef
CYValue_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1544 CYValue
*internal(reinterpret_cast<CYValue
*>(JSObjectGetPrivate(_this
)));
1545 std::ostringstream str
;
1547 if (internal
->value_
== NULL
)
1549 else if (dladdr(internal
->value_
, &info
) == 0)
1550 str
<< internal
->value_
;
1552 str
<< info
.dli_sname
;
1553 off_t
offset(static_cast<char *>(internal
->value_
) - static_cast<char *>(info
.dli_saddr
));
1555 str
<< "+0x" << std::hex
<< offset
;
1557 std::string
value(str
.str());
1558 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
1561 static JSValueRef
Pointer_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1562 std::set
<void *> *objects(CYCastObjects(context
, _this
, count
, arguments
));
1564 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1565 if (internal
->length_
!= _not(size_t)) {
1566 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array_prototype")));
1567 JSObjectRef
toCYON(CYCastJSObject(context
, CYGetProperty(context
, Array
, toCYON_s
)));
1568 return CYCallAsFunction(context
, toCYON
, _this
, count
, arguments
);
1572 JSValueRef
value(CYGetProperty(context
, _this
, cyi_s
));
1573 if (!JSValueIsUndefined(context
, value
)) {
1575 return CYCastJSValue(context
, pool
.strcat("&", CYPoolCCYON(pool
, context
, value
, objects
), NULL
));
1577 } catch (const CYException
&e
) {
1578 // XXX: it might be interesting to include this error
1582 std::ostringstream str
;
1584 sig::Pointer
type(*internal
->type_
->type_
);
1587 CYOutput
output(*str
.rdbuf(), options
);
1588 (new(pool
) CYTypeExpression(CYDecodeType(pool
, &type
)))->Output(output
, CYNoFlags
);
1590 str
<< "(" << internal
->value_
<< ")";
1591 std::string
value(str
.str());
1592 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
1595 static JSValueRef
CString_getProperty_length(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1596 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(object
)));
1597 char *string(static_cast<char *>(internal
->value_
));
1598 return CYCastJSValue(context
, strlen(string
));
1601 static JSValueRef
CString_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1602 return CYMakeType(context
, sig::String());
1605 static JSValueRef
Pointer_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1606 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
1607 sig::Pointer
type(*internal
->type_
->type_
);
1608 return CYMakeType(context
, type
);
1611 static JSValueRef
CString_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1612 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1613 const char *string(static_cast<const char *>(internal
->value_
));
1614 std::ostringstream str
;
1619 CYStringify(str
, string
, strlen(string
), true);
1621 std::string
value(str
.str());
1622 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
1625 static JSValueRef
CString_callAsFunction_toString(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1626 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1627 const char *string(static_cast<const char *>(internal
->value_
));
1628 return CYCastJSValue(context
, string
);
1631 static JSValueRef
Functor_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1632 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(object
)));
1633 return CYMakeType(context
, &internal
->signature_
);
1636 static JSValueRef
Type_getProperty_alignment(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1637 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1638 return CYCastJSValue(context
, internal
->GetFFI()->alignment
);
1641 static JSValueRef
Type_getProperty_name(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1642 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1643 return CYCastJSValue(context
, internal
->type_
->GetName());
1646 static JSValueRef
Type_getProperty_size(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1647 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1648 return CYCastJSValue(context
, internal
->GetFFI()->size
);
1651 static JSValueRef
Type_callAsFunction_toString(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1652 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1654 const char *type(sig::Unparse(pool
, internal
->type_
));
1655 return CYCastJSValue(context
, CYJSString(type
));
1658 static JSValueRef
Type_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1659 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1663 CYOutput
output(out
, options
);
1664 (new(pool
) CYTypeExpression(CYDecodeType(pool
, internal
->type_
)))->Output(output
, CYNoFlags
);
1665 return CYCastJSValue(context
, CYJSString(out
.str().c_str()));
1668 static JSValueRef
Type_callAsFunction_toJSON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1669 return Type_callAsFunction_toString(context
, object
, _this
, count
, arguments
, exception
);
1672 static JSStaticFunction All_staticFunctions
[2] = {
1673 {"cy$complete", &All_complete_callAsFunction
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1677 static JSStaticFunction CString_staticFunctions
[6] = {
1678 {"toCYON", &CString_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1679 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1680 {"toPointer", &CString_callAsFunction_toPointer
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1681 {"toString", &CString_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1682 {"valueOf", &CString_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1686 static JSStaticValue CString_staticValues
[3] = {
1687 {"length", &CString_getProperty_length
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1688 {"type", &CString_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1689 {NULL
, NULL
, NULL
, 0}
1692 static JSStaticFunction Pointer_staticFunctions
[5] = {
1693 {"toCYON", &Pointer_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1694 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1695 {"toPointer", &Pointer_callAsFunction_toPointer
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1696 {"valueOf", &CYValue_callAsFunction_valueOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1700 static JSStaticValue Pointer_staticValues
[2] = {
1701 {"type", &Pointer_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1702 {NULL
, NULL
, NULL
, 0}
1705 static JSStaticFunction Struct_staticFunctions
[2] = {
1706 {"$cya", &Struct_callAsFunction_$cya
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1710 static JSStaticValue Struct_staticValues
[2] = {
1711 {"type", &Struct_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1712 {NULL
, NULL
, NULL
, 0}
1715 static JSStaticFunction Functor_staticFunctions
[5] = {
1716 {"$cya", &Functor_callAsFunction_$cya
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1717 {"toCYON", &CYValue_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1718 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1719 {"valueOf", &CYValue_callAsFunction_valueOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1724 JSStaticFunction
const * const Functor::StaticFunctions
= Functor_staticFunctions
;
1727 static JSStaticValue Functor_staticValues
[2] = {
1728 {"type", &Functor_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1729 {NULL
, NULL
, NULL
, 0}
1733 JSStaticValue
const * const Functor::StaticValues
= Functor_staticValues
;
1736 static JSStaticValue Type_staticValues
[4] = {
1737 {"alignment", &Type_getProperty_alignment
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1738 {"name", &Type_getProperty_name
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1739 {"size", &Type_getProperty_size
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1740 {NULL
, NULL
, NULL
, 0}
1743 static JSStaticFunction Type_staticFunctions
[10] = {
1744 {"arrayOf", &Type_callAsFunction_arrayOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1745 {"blockWith", &Type_callAsFunction_blockWith
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1746 {"constant", &Type_callAsFunction_constant
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1747 {"functionWith", &Type_callAsFunction_functionWith
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1748 {"pointerTo", &Type_callAsFunction_pointerTo
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1749 {"withName", &Type_callAsFunction_withName
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1750 {"toCYON", &Type_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1751 {"toJSON", &Type_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1752 {"toString", &Type_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1756 _visible
void CYSetArgs(int argc
, const char *argv
[]) {
1757 JSContextRef
context(CYGetJSContext());
1758 JSValueRef args
[argc
];
1759 for (int i(0); i
!= argc
; ++i
)
1760 args
[i
] = CYCastJSValue(context
, argv
[i
]);
1762 JSObjectRef
array(CYObjectMakeArray(context
, argc
, args
));
1763 JSObjectRef
System(CYGetCachedObject(context
, CYJSString("System")));
1764 CYSetProperty(context
, System
, CYJSString("args"), array
);
1767 JSObjectRef
CYGetGlobalObject(JSContextRef context
) {
1768 return JSContextGetGlobalObject(context
);
1771 // XXX: this is neither exceptin safe nor even terribly sane
1772 class ExecutionHandle
{
1774 JSContextRef context_
;
1775 std::vector
<void *> handles_
;
1778 ExecutionHandle(JSContextRef context
) :
1781 handles_
.resize(GetHooks().size());
1782 for (size_t i(0); i
!= GetHooks().size(); ++i
) {
1783 CYHook
*hook(GetHooks()[i
]);
1784 if (hook
->ExecuteStart
!= NULL
)
1785 handles_
[i
] = (*hook
->ExecuteStart
)(context_
);
1791 ~ExecutionHandle() {
1792 for (size_t i(GetHooks().size()); i
!= 0; --i
) {
1793 CYHook
*hook(GetHooks()[i
-1]);
1794 if (hook
->ExecuteEnd
!= NULL
)
1795 (*hook
->ExecuteEnd
)(context_
, handles_
[i
-1]);
1800 static volatile bool cancel_
;
1802 static bool CYShouldTerminate(JSContextRef context
, void *arg
) {
1806 _visible
const char *CYExecute(JSContextRef context
, CYPool
&pool
, CYUTF8String code
) {
1807 ExecutionHandle
handle(context
);
1810 if (&JSContextGroupSetExecutionTimeLimit
!= NULL
)
1811 JSContextGroupSetExecutionTimeLimit(JSContextGetGroup(context
), 0.5, &CYShouldTerminate
, NULL
);
1814 JSValueRef
result(_jsccall(JSEvaluateScript
, context
, CYJSString(code
), NULL
, NULL
, 0));
1815 if (JSValueIsUndefined(context
, result
))
1818 std::set
<void *> objects
;
1819 const char *json(_jsccall(CYPoolCCYON
, pool
, context
, result
, objects
));
1820 CYSetProperty(context
, CYGetGlobalObject(context
), Result_
, result
);
1823 } catch (const CYException
&error
) {
1824 return pool
.strcat("throw ", error
.PoolCString(pool
), NULL
);
1828 _visible
void CYCancel() {
1832 static const char *CYPoolLibraryPath(CYPool
&pool
);
1834 static bool initialized_
= false;
1836 void CYInitializeDynamic() {
1838 initialized_
= true;
1842 const char *db(pool
.strcat(CYPoolLibraryPath(pool
), "/libcycript.db", NULL
));
1843 _sqlcall(sqlite3_open_v2(db
, &database_
, SQLITE_OPEN_READONLY
, NULL
));
1845 JSObjectMakeArray$
= reinterpret_cast<JSObjectRef (*)(JSContextRef
, size_t, const JSValueRef
[], JSValueRef
*)>(dlsym(RTLD_DEFAULT
, "JSObjectMakeArray"));
1846 JSSynchronousGarbageCollectForDebugging$
= reinterpret_cast<void (*)(JSContextRef
)>(dlsym(RTLD_DEFAULT
, "JSSynchronousGarbageCollectForDebugging"));
1848 JSClassDefinition definition
;
1850 definition
= kJSClassDefinitionEmpty
;
1851 definition
.className
= "All";
1852 definition
.staticFunctions
= All_staticFunctions
;
1853 definition
.hasProperty
= &All_hasProperty
;
1854 definition
.getProperty
= &All_getProperty
;
1855 definition
.getPropertyNames
= &All_getPropertyNames
;
1856 All_
= JSClassCreate(&definition
);
1858 definition
= kJSClassDefinitionEmpty
;
1859 definition
.className
= "Context";
1860 definition
.finalize
= &CYFinalize
;
1861 Context_
= JSClassCreate(&definition
);
1863 definition
= kJSClassDefinitionEmpty
;
1864 definition
.className
= "CString";
1865 definition
.staticFunctions
= CString_staticFunctions
;
1866 definition
.staticValues
= CString_staticValues
;
1867 definition
.getProperty
= &CString_getProperty
;
1868 definition
.setProperty
= &CString_setProperty
;
1869 definition
.finalize
= &CYFinalize
;
1870 CString_
= JSClassCreate(&definition
);
1872 definition
= kJSClassDefinitionEmpty
;
1873 definition
.className
= "Functor";
1874 definition
.staticFunctions
= cy::Functor::StaticFunctions
;
1875 definition
.staticValues
= Functor_staticValues
;
1876 definition
.callAsFunction
= &Functor_callAsFunction
;
1877 definition
.finalize
= &CYFinalize
;
1878 Functor_
= JSClassCreate(&definition
);
1880 definition
= kJSClassDefinitionEmpty
;
1881 definition
.className
= "Pointer";
1882 definition
.staticFunctions
= Pointer_staticFunctions
;
1883 definition
.staticValues
= Pointer_staticValues
;
1884 definition
.callAsFunction
= &Pointer_callAsFunction
;
1885 definition
.getProperty
= &Pointer_getProperty
;
1886 definition
.setProperty
= &Pointer_setProperty
;
1887 definition
.finalize
= &CYFinalize
;
1888 Pointer_
= JSClassCreate(&definition
);
1890 definition
= kJSClassDefinitionEmpty
;
1891 definition
.className
= "Struct";
1892 definition
.staticFunctions
= Struct_staticFunctions
;
1893 definition
.staticValues
= Struct_staticValues
;
1894 definition
.getProperty
= &Struct_getProperty
;
1895 definition
.setProperty
= &Struct_setProperty
;
1896 definition
.getPropertyNames
= &Struct_getPropertyNames
;
1897 definition
.finalize
= &CYFinalize
;
1898 Struct_
= JSClassCreate(&definition
);
1900 definition
= kJSClassDefinitionEmpty
;
1901 definition
.className
= "Type";
1902 definition
.staticValues
= Type_staticValues
;
1903 definition
.staticFunctions
= Type_staticFunctions
;
1904 definition
.callAsFunction
= &Type_callAsFunction
;
1905 definition
.callAsConstructor
= &Type_callAsConstructor
;
1906 definition
.finalize
= &CYFinalize
;
1907 Type_privateData::Class_
= JSClassCreate(&definition
);
1909 definition
= kJSClassDefinitionEmpty
;
1910 definition
.className
= "Global";
1911 //definition.getProperty = &Global_getProperty;
1912 Global_
= JSClassCreate(&definition
);
1914 Array_s
= JSStringCreateWithUTF8CString("Array");
1915 cy_s
= JSStringCreateWithUTF8CString("$cy");
1916 cyi_s
= JSStringCreateWithUTF8CString("$cyi");
1917 length_s
= JSStringCreateWithUTF8CString("length");
1918 message_s
= JSStringCreateWithUTF8CString("message");
1919 name_s
= JSStringCreateWithUTF8CString("name");
1920 pop_s
= JSStringCreateWithUTF8CString("pop");
1921 prototype_s
= JSStringCreateWithUTF8CString("prototype");
1922 push_s
= JSStringCreateWithUTF8CString("push");
1923 splice_s
= JSStringCreateWithUTF8CString("splice");
1924 toCYON_s
= JSStringCreateWithUTF8CString("toCYON");
1925 toJSON_s
= JSStringCreateWithUTF8CString("toJSON");
1926 toPointer_s
= JSStringCreateWithUTF8CString("toPointer");
1927 toString_s
= JSStringCreateWithUTF8CString("toString");
1928 weak_s
= JSStringCreateWithUTF8CString("weak");
1930 Result_
= JSStringCreateWithUTF8CString("_");
1932 for (CYHook
*hook
: GetHooks())
1933 if (hook
->Initialize
!= NULL
)
1934 (*hook
->Initialize
)();
1937 void CYThrow(JSContextRef context
, JSValueRef value
) {
1939 throw CYJSError(context
, value
);
1942 const char *CYJSError::PoolCString(CYPool
&pool
) const {
1943 std::set
<void *> objects
;
1944 // XXX: this used to be CYPoolCString
1945 return CYPoolCCYON(pool
, context_
, value_
, objects
);
1948 JSValueRef
CYJSError::CastJSValue(JSContextRef context
, const char *name
) const {
1949 // XXX: what if the context is different? or the name? I dunno. ("epic" :/)
1953 JSValueRef
CYCastJSError(JSContextRef context
, const char *name
, const char *message
) {
1954 JSObjectRef
Error(CYGetCachedObject(context
, CYJSString(name
)));
1955 JSValueRef arguments
[1] = {CYCastJSValue(context
, message
)};
1956 return _jsccall(JSObjectCallAsConstructor
, context
, Error
, 1, arguments
);
1959 JSValueRef
CYPoolError::CastJSValue(JSContextRef context
, const char *name
) const {
1960 return CYCastJSError(context
, name
, message_
);
1963 CYJSError::CYJSError(JSContextRef context
, const char *format
, ...) {
1964 _assert(context
!= NULL
);
1969 va_start(args
, format
);
1970 // XXX: there might be a beter way to think about this
1971 const char *message(pool
.vsprintf(64, format
, args
));
1974 value_
= CYCastJSError(context
, "Error", message
);
1977 JSGlobalContextRef
CYGetJSContext(JSContextRef context
) {
1978 return reinterpret_cast<Context
*>(JSObjectGetPrivate(CYCastJSObject(context
, CYGetProperty(context
, CYGetGlobalObject(context
), cy_s
))))->context_
;
1981 static const char *CYPoolLibraryPath(CYPool
&pool
) {
1983 _assert(dladdr(reinterpret_cast<void *>(&CYPoolLibraryPath
), &addr
) != 0);
1984 char *lib(pool
.strdup(addr
.dli_fname
));
1986 char *slash(strrchr(lib
, '/'));
1987 _assert(slash
!= NULL
);
1990 slash
= strrchr(lib
, '/');
1991 if (slash
!= NULL
&& strcmp(slash
, "/.libs") == 0)
1997 static JSValueRef
require_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1998 _assert(count
== 1);
2001 const char *name(CYPoolCString(pool
, context
, arguments
[0]));
2002 if (strchr(name
, '/') == NULL
&& (
2004 dlopen(pool
.strcat("/System/Library/Frameworks/", name
, ".framework/", name
, NULL
), RTLD_LAZY
| RTLD_GLOBAL
) != NULL
||
2005 dlopen(pool
.strcat("/System/Library/PrivateFrameworks/", name
, ".framework/", name
, NULL
), RTLD_LAZY
| RTLD_GLOBAL
) != NULL
||
2008 return CYJSUndefined(context
);
2010 JSObjectRef
resolve(CYCastJSObject(context
, CYGetProperty(context
, object
, CYJSString("resolve"))));
2011 CYJSString
path(context
, CYCallAsFunction(context
, resolve
, NULL
, 1, arguments
));
2013 CYJSString
property("exports");
2015 JSObjectRef
modules(CYGetCachedObject(context
, CYJSString("modules")));
2016 JSValueRef
cache(CYGetProperty(context
, modules
, path
));
2019 if (!JSValueIsUndefined(context
, cache
)) {
2020 JSObjectRef
module(CYCastJSObject(context
, cache
));
2021 result
= CYGetProperty(context
, module, property
);
2023 CYUTF8String
code(CYPoolFileUTF8String(pool
, CYPoolCString(pool
, context
, path
)));
2024 _assert(code
.data
!= NULL
);
2026 size_t length(strlen(name
));
2027 if (length
>= 5 && strcmp(name
+ length
- 5, ".json") == 0) {
2028 JSObjectRef
JSON(CYGetCachedObject(context
, CYJSString("JSON")));
2029 JSObjectRef
parse(CYCastJSObject(context
, CYGetProperty(context
, JSON
, CYJSString("parse"))));
2030 JSValueRef arguments
[1] = { CYCastJSValue(context
, CYJSString(code
)) };
2031 result
= CYCallAsFunction(context
, parse
, JSON
, 1, arguments
);
2033 JSObjectRef
module(JSObjectMake(context
, NULL
, NULL
));
2034 CYSetProperty(context
, modules
, path
, module);
2036 JSObjectRef
exports(JSObjectMake(context
, NULL
, NULL
));
2037 CYSetProperty(context
, module, property
, exports
);
2039 std::stringstream wrap
;
2040 wrap
<< "(function (exports, require, module, __filename) { " << code
<< "\n});";
2041 code
= CYPoolCode(pool
, *wrap
.rdbuf());
2043 JSValueRef
value(_jsccall(JSEvaluateScript
, context
, CYJSString(code
), NULL
, NULL
, 0));
2044 JSObjectRef
function(CYCastJSObject(context
, value
));
2046 JSValueRef arguments
[4] = { exports
, object
, module, CYCastJSValue(context
, path
) };
2047 CYCallAsFunction(context
, function
, NULL
, 4, arguments
);
2048 result
= CYGetProperty(context
, module, property
);
2055 static bool CYRunScript(JSGlobalContextRef context
, const char *path
) {
2057 CYUTF8String
code(CYPoolFileUTF8String(pool
, pool
.strcat(CYPoolLibraryPath(pool
), path
, NULL
)));
2058 if (code
.data
== NULL
)
2061 code
= CYPoolCode(pool
, code
);
2062 _jsccall(JSEvaluateScript
, context
, CYJSString(code
), NULL
, NULL
, 0);
2066 extern "C" void CYDestroyWeak(JSWeakObjectMapRef weak
, void *data
) {
2069 extern "C" void CYSetupContext(JSGlobalContextRef context
) {
2070 CYInitializeDynamic();
2072 JSObjectRef
global(CYGetGlobalObject(context
));
2074 JSObjectRef
cy(JSObjectMake(context
, Context_
, new Context(context
)));
2075 CYSetProperty(context
, global
, cy_s
, cy
, kJSPropertyAttributeDontEnum
);
2077 /* Cache Globals {{{ */
2078 JSObjectRef
Array(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Array"))));
2079 CYSetProperty(context
, cy
, CYJSString("Array"), Array
);
2081 JSObjectRef
Array_prototype(CYCastJSObject(context
, CYGetProperty(context
, Array
, prototype_s
)));
2082 CYSetProperty(context
, cy
, CYJSString("Array_prototype"), Array_prototype
);
2084 JSObjectRef
Boolean(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Boolean"))));
2085 CYSetProperty(context
, cy
, CYJSString("Boolean"), Boolean
);
2087 JSObjectRef
Boolean_prototype(CYCastJSObject(context
, CYGetProperty(context
, Boolean
, prototype_s
)));
2088 CYSetProperty(context
, cy
, CYJSString("Boolean_prototype"), Boolean_prototype
);
2090 JSObjectRef
Error(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Error"))));
2091 CYSetProperty(context
, cy
, CYJSString("Error"), Error
);
2093 JSObjectRef
Function(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Function"))));
2094 CYSetProperty(context
, cy
, CYJSString("Function"), Function
);
2096 JSObjectRef
Function_prototype(CYCastJSObject(context
, CYGetProperty(context
, Function
, prototype_s
)));
2097 CYSetProperty(context
, cy
, CYJSString("Function_prototype"), Function_prototype
);
2099 JSObjectRef
JSON(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("JSON"))));
2100 CYSetProperty(context
, cy
, CYJSString("JSON"), JSON
);
2102 JSObjectRef
Number(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Number"))));
2103 CYSetProperty(context
, cy
, CYJSString("Number"), Number
);
2105 JSObjectRef
Number_prototype(CYCastJSObject(context
, CYGetProperty(context
, Number
, prototype_s
)));
2106 CYSetProperty(context
, cy
, CYJSString("Number_prototype"), Number_prototype
);
2108 JSObjectRef
Object(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Object"))));
2109 CYSetProperty(context
, cy
, CYJSString("Object"), Object
);
2111 JSObjectRef
Object_prototype(CYCastJSObject(context
, CYGetProperty(context
, Object
, prototype_s
)));
2112 CYSetProperty(context
, cy
, CYJSString("Object_prototype"), Object_prototype
);
2114 JSObjectRef
String(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("String"))));
2115 CYSetProperty(context
, cy
, CYJSString("String"), String
);
2117 JSObjectRef
String_prototype(CYCastJSObject(context
, CYGetProperty(context
, String
, prototype_s
)));
2118 CYSetProperty(context
, cy
, CYJSString("String_prototype"), String_prototype
);
2120 JSObjectRef
SyntaxError(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("SyntaxError"))));
2121 CYSetProperty(context
, cy
, CYJSString("SyntaxError"), SyntaxError
);
2124 CYSetProperty(context
, Array_prototype
, toCYON_s
, &Array_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
);
2125 CYSetProperty(context
, String_prototype
, toCYON_s
, &String_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
);
2127 JSObjectRef
cycript(JSObjectMake(context
, NULL
, NULL
));
2128 CYSetProperty(context
, global
, CYJSString("Cycript"), cycript
);
2129 CYSetProperty(context
, cycript
, CYJSString("compile"), &Cycript_compile_callAsFunction
);
2130 CYSetProperty(context
, cycript
, CYJSString("gc"), &Cycript_gc_callAsFunction
);
2132 JSObjectRef
CString(JSObjectMakeConstructor(context
, CString_
, &CString_new
));
2133 CYSetPrototype(context
, CYCastJSObject(context
, CYGetProperty(context
, CString
, prototype_s
)), String_prototype
);
2134 CYSetProperty(context
, cycript
, CYJSString("CString"), CString
);
2136 JSObjectRef
Functor(JSObjectMakeConstructor(context
, Functor_
, &Functor_new
));
2137 CYSetPrototype(context
, CYCastJSObject(context
, CYGetProperty(context
, Functor
, prototype_s
)), Function_prototype
);
2138 CYSetProperty(context
, cycript
, CYJSString("Functor"), Functor
);
2140 CYSetProperty(context
, cycript
, CYJSString("Pointer"), JSObjectMakeConstructor(context
, Pointer_
, &Pointer_new
));
2141 CYSetProperty(context
, cycript
, CYJSString("Type"), JSObjectMakeConstructor(context
, Type_privateData::Class_
, &Type_new
));
2143 JSObjectRef
modules(JSObjectMake(context
, NULL
, NULL
));
2144 CYSetProperty(context
, cy
, CYJSString("modules"), modules
);
2146 JSObjectRef
all(JSObjectMake(context
, All_
, NULL
));
2147 CYSetProperty(context
, cycript
, CYJSString("all"), all
);
2149 JSObjectRef
cache(JSObjectMake(context
, NULL
, NULL
));
2150 CYSetProperty(context
, cy
, CYJSString("cache"), cache
);
2151 CYSetPrototype(context
, cache
, all
);
2153 JSObjectRef
alls(_jsccall(JSObjectCallAsConstructor
, context
, Array
, 0, NULL
));
2154 CYSetProperty(context
, cycript
, CYJSString("alls"), alls
);
2157 JSObjectRef
last(NULL
), curr(global
);
2159 goto next
; for (JSValueRef next
;;) {
2160 if (JSValueIsNull(context
, next
))
2163 curr
= CYCastJSObject(context
, next
);
2165 next
= JSObjectGetPrototype(context
, curr
);
2168 CYSetPrototype(context
, last
, cache
);
2171 JSObjectRef
System(JSObjectMake(context
, NULL
, NULL
));
2172 CYSetProperty(context
, cy
, CYJSString("System"), System
);
2174 CYSetProperty(context
, global
, CYJSString("require"), &require_callAsFunction
, kJSPropertyAttributeDontEnum
);
2176 CYSetProperty(context
, global
, CYJSString("system"), System
);
2177 CYSetProperty(context
, System
, CYJSString("args"), CYJSNull(context
));
2178 CYSetProperty(context
, System
, CYJSString("print"), &System_print
);
2180 CYSetProperty(context
, global
, CYJSString("global"), global
);
2183 if (&JSWeakObjectMapCreate
!= NULL
) {
2184 JSWeakObjectMapRef
weak(JSWeakObjectMapCreate(context
, NULL
, &CYDestroyWeak
));
2185 CYSetProperty(context
, cy
, weak_s
, CYCastJSValue(context
, reinterpret_cast<uintptr_t>(weak
)));
2189 CYSetProperty(context
, cache
, CYJSString("dlerror"), CYMakeFunctor(context
, "dlerror", "*"), kJSPropertyAttributeDontEnum
);
2190 CYSetProperty(context
, cache
, CYJSString("RTLD_DEFAULT"), CYCastJSValue(context
, reinterpret_cast<intptr_t>(RTLD_DEFAULT
)), kJSPropertyAttributeDontEnum
);
2191 CYSetProperty(context
, cache
, CYJSString("dlsym"), CYMakeFunctor(context
, "dlsym", "^v^v*"), kJSPropertyAttributeDontEnum
);
2193 CYSetProperty(context
, cache
, CYJSString("NULL"), CYJSNull(context
), kJSPropertyAttributeDontEnum
);
2195 CYSetProperty(context
, cache
, CYJSString("bool"), CYMakeType(context
, sig::Primitive
<bool>()), kJSPropertyAttributeDontEnum
);
2196 CYSetProperty(context
, cache
, CYJSString("char"), CYMakeType(context
, sig::Primitive
<char>()), kJSPropertyAttributeDontEnum
);
2197 CYSetProperty(context
, cache
, CYJSString("schar"), CYMakeType(context
, sig::Primitive
<signed char>()), kJSPropertyAttributeDontEnum
);
2198 CYSetProperty(context
, cache
, CYJSString("uchar"), CYMakeType(context
, sig::Primitive
<unsigned char>()), kJSPropertyAttributeDontEnum
);
2200 CYSetProperty(context
, cache
, CYJSString("short"), CYMakeType(context
, sig::Primitive
<short>()), kJSPropertyAttributeDontEnum
);
2201 CYSetProperty(context
, cache
, CYJSString("int"), CYMakeType(context
, sig::Primitive
<int>()), kJSPropertyAttributeDontEnum
);
2202 CYSetProperty(context
, cache
, CYJSString("long"), CYMakeType(context
, sig::Primitive
<long>()), kJSPropertyAttributeDontEnum
);
2203 CYSetProperty(context
, cache
, CYJSString("longlong"), CYMakeType(context
, sig::Primitive
<long long>()), kJSPropertyAttributeDontEnum
);
2205 CYSetProperty(context
, cache
, CYJSString("ushort"), CYMakeType(context
, sig::Primitive
<unsigned short>()), kJSPropertyAttributeDontEnum
);
2206 CYSetProperty(context
, cache
, CYJSString("uint"), CYMakeType(context
, sig::Primitive
<unsigned int>()), kJSPropertyAttributeDontEnum
);
2207 CYSetProperty(context
, cache
, CYJSString("ulong"), CYMakeType(context
, sig::Primitive
<unsigned long>()), kJSPropertyAttributeDontEnum
);
2208 CYSetProperty(context
, cache
, CYJSString("ulonglong"), CYMakeType(context
, sig::Primitive
<unsigned long long>()), kJSPropertyAttributeDontEnum
);
2210 CYSetProperty(context
, cache
, CYJSString("float"), CYMakeType(context
, sig::Primitive
<float>()), kJSPropertyAttributeDontEnum
);
2211 CYSetProperty(context
, cache
, CYJSString("double"), CYMakeType(context
, sig::Primitive
<double>()), kJSPropertyAttributeDontEnum
);
2213 for (CYHook
*hook
: GetHooks())
2214 if (hook
->SetupContext
!= NULL
)
2215 (*hook
->SetupContext
)(context
);
2217 CYArrayPush(context
, alls
, cycript
);
2219 CYRunScript(context
, "/libcycript.cy");
2222 static JSGlobalContextRef context_
;
2224 _visible JSGlobalContextRef
CYGetJSContext() {
2225 CYInitializeDynamic();
2227 if (context_
== NULL
) {
2228 context_
= JSGlobalContextCreate(Global_
);
2229 CYSetupContext(context_
);
2235 _visible
void CYDestroyContext() {
2236 if (context_
== NULL
)
2238 JSGlobalContextRelease(context_
);