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"
39 #include "sig/parse.hpp"
40 #include "sig/ffi_type.hpp"
45 #include "Execute.hpp"
46 #include "Internal.hpp"
47 #include "JavaScript.hpp"
48 #include "Pooling.hpp"
51 static std::vector
<CYHook
*> &GetHooks() {
52 static std::vector
<CYHook
*> hooks
;
56 CYRegisterHook::CYRegisterHook(CYHook
*hook
) {
57 GetHooks().push_back(hook
);
60 /* JavaScript Properties {{{ */
61 bool CYHasProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
) {
62 return JSObjectHasProperty(context
, object
, name
);
65 JSValueRef
CYGetProperty(JSContextRef context
, JSObjectRef object
, size_t index
) {
66 return _jsccall(JSObjectGetPropertyAtIndex
, context
, object
, index
);
69 JSValueRef
CYGetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
) {
70 return _jsccall(JSObjectGetProperty
, context
, object
, name
);
73 void CYSetProperty(JSContextRef context
, JSObjectRef object
, size_t index
, JSValueRef value
) {
74 _jsccall(JSObjectSetPropertyAtIndex
, context
, object
, index
, value
);
77 void CYSetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
, JSValueRef value
, JSPropertyAttributes attributes
) {
78 _jsccall(JSObjectSetProperty
, context
, object
, name
, value
, attributes
);
81 void CYSetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
, JSValueRef (*callback
)(JSContextRef
, JSObjectRef
, JSObjectRef
, size_t, const JSValueRef
[], JSValueRef
*), JSPropertyAttributes attributes
) {
82 CYSetProperty(context
, object
, name
, JSObjectMakeFunctionWithCallback(context
, name
, callback
), attributes
);
85 void CYSetPrototype(JSContextRef context
, JSObjectRef object
, JSValueRef value
) {
86 JSObjectSetPrototype(context
, object
, value
);
87 _assert(CYIsStrictEqual(context
, JSObjectGetPrototype(context
, object
), value
));
90 /* JavaScript Strings {{{ */
91 JSStringRef
CYCopyJSString(const char *value
) {
92 return value
== NULL
? NULL
: JSStringCreateWithUTF8CString(value
);
95 JSStringRef
CYCopyJSString(JSStringRef value
) {
96 return value
== NULL
? NULL
: JSStringRetain(value
);
99 JSStringRef
CYCopyJSString(CYUTF8String value
) {
100 if (memchr(value
.data
, '\0', value
.size
) != NULL
) {
102 return CYCopyJSString(pool
.memdup(value
.data
, value
.size
));
103 } else if (value
.data
[value
.size
] != '\0') {
105 return CYCopyJSString(CYPoolUTF16String(pool
, value
));
107 return CYCopyJSString(value
.data
);
111 JSStringRef
CYCopyJSString(CYUTF16String value
) {
112 return JSStringCreateWithCharacters(value
.data
, value
.size
);
115 JSStringRef
CYCopyJSString(JSContextRef context
, JSValueRef value
) {
116 if (JSValueIsNull(context
, value
))
118 return _jsccall(JSValueToStringCopy
, context
, value
);
121 static CYUTF16String
CYCastUTF16String(JSStringRef value
) {
122 return CYUTF16String(JSStringGetCharactersPtr(value
), JSStringGetLength(value
));
125 CYUTF8String
CYPoolUTF8String(CYPool
&pool
, JSContextRef context
, JSStringRef value
) {
126 return CYPoolUTF8String(pool
, CYCastUTF16String(value
));
129 const char *CYPoolCString(CYPool
&pool
, JSContextRef context
, JSStringRef value
) {
130 CYUTF8String
utf8(CYPoolUTF8String(pool
, context
, value
));
131 _assert(memchr(utf8
.data
, '\0', utf8
.size
) == NULL
);
135 const char *CYPoolCString(CYPool
&pool
, JSContextRef context
, JSValueRef value
) {
136 return JSValueIsNull(context
, value
) ? NULL
: CYPoolCString(pool
, context
, CYJSString(context
, value
));
139 /* Index Offsets {{{ */
140 size_t CYGetIndex(CYPool
&pool
, JSContextRef context
, JSStringRef value
) {
141 return CYGetIndex(CYPoolUTF8String(pool
, context
, value
));
145 static JSClassRef All_
;
146 static JSClassRef Context_
;
147 static JSClassRef CString_
;
149 static JSClassRef Global_
;
150 static JSClassRef Pointer_
;
151 static JSClassRef Struct_
;
156 JSStringRef length_s
;
157 JSStringRef message_s
;
160 JSStringRef prototype_s
;
162 JSStringRef splice_s
;
163 JSStringRef toCYON_s
;
164 JSStringRef toJSON_s
;
165 JSStringRef toPointer_s
;
166 JSStringRef toString_s
;
169 static JSStringRef Result_
;
171 void CYFinalize(JSObjectRef object
) {
172 CYData
*internal(reinterpret_cast<CYData
*>(JSObjectGetPrivate(object
)));
173 _assert(internal
->count_
!= _not(unsigned));
174 if (--internal
->count_
== 0)
178 void Structor_(CYPool
&pool
, sig::Type
*&type
) {
180 type
->primitive
== sig::pointer_P
&&
181 type
->data
.data
.type
->primitive
== sig::struct_P
&&
182 type
->data
.data
.type
->name
!= NULL
&&
183 strcmp(type
->data
.data
.type
->name
, "_objc_class") == 0
185 type
->primitive
= sig::typename_P
;
186 type
->data
.data
.type
= NULL
;
190 if (type
->primitive
!= sig::struct_P
|| type
->name
== NULL
)
193 size_t length(strlen(type
->name
));
194 char keyed
[length
+ 2];
195 memcpy(keyed
+ 1, type
->name
, length
+ 1);
197 static const char *modes
= "34";
198 for (size_t i(0); i
!= 2; ++i
) {
202 if (CYBridgeEntry
*entry
= CYBridgeHash(keyed
, length
+ 1))
205 sig::Parse(pool
, &type
->data
.signature
, entry
->value_
, &Structor_
);
209 sig::Signature signature
;
210 sig::Parse(pool
, &signature
, entry
->value_
, &Structor_
);
211 type
= signature
.elements
[0].type
;
217 JSClassRef
Type_privateData::Class_
;
222 JSGlobalContextRef context_
;
224 Context(JSGlobalContextRef context
) :
233 CString(char *value
, JSContextRef context
, JSObjectRef owner
) :
234 CYOwned(value
, context
, owner
)
242 Type_privateData
*type_
;
245 Pointer(void *value
, JSContextRef context
, JSObjectRef owner
, size_t length
, sig::Type
*type
) :
246 CYOwned(value
, context
, owner
),
247 type_(new(*pool_
) Type_privateData(type
)),
253 struct Struct_privateData
:
256 Type_privateData
*type_
;
258 Struct_privateData(JSContextRef context
, JSObjectRef owner
) :
259 CYOwned(NULL
, context
, owner
)
264 JSObjectRef
CYMakeStruct(JSContextRef context
, void *data
, sig::Type
*type
, ffi_type
*ffi
, JSObjectRef owner
) {
265 Struct_privateData
*internal(new Struct_privateData(context
, owner
));
266 CYPool
&pool(*internal
->pool_
);
267 Type_privateData
*typical(new(pool
) Type_privateData(type
, ffi
));
268 internal
->type_
= typical
;
271 internal
->value_
= data
;
273 size_t size(typical
->GetFFI()->size
);
274 void *copy(internal
->pool_
->malloc
<void>(size
));
275 memcpy(copy
, data
, size
);
276 internal
->value_
= copy
;
279 return JSObjectMake(context
, Struct_
, internal
);
282 static void *CYCastSymbol(const char *name
) {
283 for (CYHook
*hook
: GetHooks())
284 if (hook
->CastSymbol
!= NULL
)
285 if (void *value
= (*hook
->CastSymbol
)(name
))
287 return dlsym(RTLD_DEFAULT
, name
);
290 JSValueRef
CYCastJSValue(JSContextRef context
, bool value
) {
291 return JSValueMakeBoolean(context
, value
);
294 JSValueRef
CYCastJSValue(JSContextRef context
, double value
) {
295 return JSValueMakeNumber(context
, value
);
298 #define CYCastJSValue_(Type_) \
299 JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \
300 _assert(static_cast<Type_>(static_cast<double>(value)) == value); \
301 return JSValueMakeNumber(context, static_cast<double>(value)); \
305 CYCastJSValue_(unsigned int)
306 CYCastJSValue_(long int)
307 CYCastJSValue_(long unsigned int)
308 CYCastJSValue_(long long int)
309 CYCastJSValue_(long long unsigned int)
311 JSValueRef
CYJSUndefined(JSContextRef context
) {
312 return JSValueMakeUndefined(context
);
315 double CYCastDouble(JSContextRef context
, JSValueRef value
) {
316 return _jsccall(JSValueToNumber
, context
, value
);
319 bool CYCastBool(JSContextRef context
, JSValueRef value
) {
320 return JSValueToBoolean(context
, value
);
323 JSValueRef
CYJSNull(JSContextRef context
) {
324 return JSValueMakeNull(context
);
327 JSValueRef
CYCastJSValue(JSContextRef context
, JSStringRef value
) {
328 return value
== NULL
? CYJSNull(context
) : JSValueMakeString(context
, value
);
331 JSValueRef
CYCastJSValue(JSContextRef context
, const char *value
) {
332 return CYCastJSValue(context
, CYJSString(value
));
335 JSObjectRef
CYCastJSObject(JSContextRef context
, JSValueRef value
) {
336 return _jsccall(JSValueToObject
, context
, value
);
339 JSValueRef
CYCallAsFunction(JSContextRef context
, JSObjectRef function
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[]) {
340 return _jsccall(JSObjectCallAsFunction
, context
, function
, _this
, count
, arguments
);
343 bool CYIsCallable(JSContextRef context
, JSValueRef value
) {
344 return value
!= NULL
&& JSValueIsObject(context
, value
) && JSObjectIsFunction(context
, (JSObjectRef
) value
);
347 bool CYIsEqual(JSContextRef context
, JSValueRef lhs
, JSValueRef rhs
) {
348 return _jsccall(JSValueIsEqual
, context
, lhs
, rhs
);
351 bool CYIsStrictEqual(JSContextRef context
, JSValueRef lhs
, JSValueRef rhs
) {
352 return JSValueIsStrictEqual(context
, lhs
, rhs
);
355 size_t CYArrayLength(JSContextRef context
, JSObjectRef array
) {
356 return CYCastDouble(context
, CYGetProperty(context
, array
, length_s
));
359 JSValueRef
CYArrayGet(JSContextRef context
, JSObjectRef array
, size_t index
) {
360 return _jsccall(JSObjectGetPropertyAtIndex
, context
, array
, index
);
363 void CYArrayPush(JSContextRef context
, JSObjectRef array
, JSValueRef value
) {
364 JSValueRef arguments
[1];
365 arguments
[0] = value
;
366 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array_prototype")));
367 _jsccall(JSObjectCallAsFunction
, context
, CYCastJSObject(context
, CYGetProperty(context
, Array
, push_s
)), array
, 1, arguments
);
370 static JSValueRef
System_print(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
377 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, arguments
[0])));
378 fwrite(string
.data
, string
.size
, 1, file
);
382 return CYJSUndefined(context
);
385 static void (*JSSynchronousGarbageCollectForDebugging$
)(JSContextRef
);
387 _visible
void CYGarbageCollect(JSContextRef context
) {
388 (JSSynchronousGarbageCollectForDebugging$
?: &JSGarbageCollect
)(context
);
391 static JSValueRef
Cycript_compile_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
393 CYUTF8String
before(CYPoolUTF8String(pool
, context
, CYJSString(context
, arguments
[0])));
394 std::stringbuf
value(std::string(before
.data
, before
.size
));
395 CYUTF8String
after(CYPoolCode(pool
, value
));
396 return CYCastJSValue(context
, CYJSString(after
));
397 } CYCatch_(NULL
, "SyntaxError") }
399 static JSValueRef
Cycript_gc_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
400 CYGarbageCollect(context
);
401 return CYJSUndefined(context
);
404 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSValueRef value
, std::set
<void *> &objects
, JSValueRef
*exception
) { CYTry
{
405 switch (JSType type
= JSValueGetType(context
, value
)) {
406 case kJSTypeUndefined
:
411 return CYCastBool(context
, value
) ? "true" : "false";
413 case kJSTypeNumber
: {
414 std::ostringstream str
;
415 CYNumerify(str
, CYCastDouble(context
, value
));
416 std::string
value(str
.str());
417 return pool
.strmemdup(value
.c_str(), value
.size());
420 case kJSTypeString
: {
421 std::ostringstream str
;
422 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, value
)));
423 CYStringify(str
, string
.data
, string
.size
);
424 std::string
value(str
.str());
425 return pool
.strmemdup(value
.c_str(), value
.size());
429 return CYPoolCCYON(pool
, context
, (JSObjectRef
) value
, objects
);
431 throw CYJSError(context
, "JSValueGetType() == 0x%x", type
);
435 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSValueRef value
, std::set
<void *> &objects
) {
436 return _jsccall(CYPoolCCYON
, pool
, context
, value
, objects
);
439 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSValueRef value
, std::set
<void *> *objects
) {
441 return CYPoolCCYON(pool
, context
, value
, *objects
);
443 std::set
<void *> objects
;
444 return CYPoolCCYON(pool
, context
, value
, objects
);
448 const char *CYPoolCCYON(CYPool
&pool
, JSContextRef context
, JSObjectRef object
, std::set
<void *> &objects
) {
449 JSValueRef
toCYON(CYGetProperty(context
, object
, toCYON_s
));
450 if (CYIsCallable(context
, toCYON
)) {
451 // XXX: this needs to be abstracted behind some kind of function
452 JSValueRef arguments
[1] = {CYCastJSValue(context
, reinterpret_cast<uintptr_t>(&objects
))};
453 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toCYON
, object
, 1, arguments
));
454 _assert(value
!= NULL
);
455 return CYPoolCString(pool
, context
, value
);
458 JSValueRef
toJSON(CYGetProperty(context
, object
, toJSON_s
));
459 if (CYIsCallable(context
, toJSON
)) {
460 JSValueRef arguments
[1] = {CYCastJSValue(context
, CYJSString(""))};
461 return _jsccall(CYPoolCCYON
, pool
, context
, CYCallAsFunction(context
, (JSObjectRef
) toJSON
, object
, 1, arguments
), objects
);
464 if (JSObjectIsFunction(context
, object
)) {
465 JSValueRef
toString(CYGetProperty(context
, object
, toString_s
));
466 if (CYIsCallable(context
, toString
)) {
467 JSValueRef arguments
[1] = {CYCastJSValue(context
, CYJSString(""))};
468 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toString
, object
, 1, arguments
));
469 _assert(value
!= NULL
);
470 return CYPoolCString(pool
, context
, value
);
474 _assert(objects
.insert(object
).second
);
476 std::ostringstream str
;
480 // XXX: this is, sadly, going to leak
481 JSPropertyNameArrayRef
names(JSObjectCopyPropertyNames(context
, object
));
485 for (size_t index(0), count(JSPropertyNameArrayGetCount(names
)); index
!= count
; ++index
) {
491 JSStringRef
name(JSPropertyNameArrayGetNameAtIndex(names
, index
));
492 CYUTF8String
string(CYPoolUTF8String(pool
, context
, name
));
497 CYStringify(str
, string
.data
, string
.size
);
502 JSValueRef
value(CYGetProperty(context
, object
, name
));
503 str
<< CYPoolCCYON(pool
, context
, value
, objects
);
504 } catch (const CYException
&error
) {
509 JSPropertyNameArrayRelease(names
);
513 std::string
string(str
.str());
514 return pool
.strmemdup(string
.c_str(), string
.size());
517 std::set
<void *> *CYCastObjects(JSContextRef context
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[]) {
520 return CYCastPointer
<std::set
<void *> *>(context
, arguments
[0]);
523 static JSValueRef
Array_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
524 std::set
<void *> *objects(CYCastObjects(context
, _this
, count
, arguments
));
525 // XXX: this is horribly inefficient
526 std::set
<void *> backup
;
531 std::ostringstream str
;
535 JSValueRef
length(CYGetProperty(context
, _this
, length_s
));
538 for (size_t index(0), count(CYCastDouble(context
, length
)); index
!= count
; ++index
) {
545 JSValueRef
value(CYGetProperty(context
, _this
, index
));
546 if (!JSValueIsUndefined(context
, value
))
547 str
<< CYPoolCCYON(pool
, context
, value
, *objects
);
552 } catch (const CYException
&error
) {
559 std::string
value(str
.str());
560 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
563 static JSValueRef
String_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
565 std::ostringstream str
;
567 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, _this
)));
568 CYStringify(str
, string
.data
, string
.size
);
570 std::string
value(str
.str());
571 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
574 JSObjectRef
CYMakePointer(JSContextRef context
, void *pointer
, size_t length
, sig::Type
*type
, ffi_type
*ffi
, JSObjectRef owner
) {
575 Pointer
*internal(new Pointer(pointer
, context
, owner
, length
, type
));
576 return JSObjectMake(context
, Pointer_
, internal
);
579 JSObjectRef
CYMakeCString(JSContextRef context
, char *pointer
, JSObjectRef owner
) {
580 CString
*internal(new CString(pointer
, context
, owner
));
581 return JSObjectMake(context
, CString_
, internal
);
584 static JSObjectRef
CYMakeFunctor(JSContextRef context
, void (*function
)(), const sig::Signature
&signature
) {
585 return JSObjectMake(context
, Functor_
, new cy::Functor(signature
, function
));
588 static JSObjectRef
CYMakeFunctor(JSContextRef context
, const char *symbol
, const char *encoding
, void **cache
) {
589 cy::Functor
*internal
;
591 internal
= reinterpret_cast<cy::Functor
*>(*cache
);
593 void (*function
)()(reinterpret_cast<void (*)()>(CYCastSymbol(symbol
)));
594 if (function
== NULL
)
597 internal
= new cy::Functor(encoding
, function
);
602 return JSObjectMake(context
, Functor_
, internal
);
605 static bool CYGetOffset(CYPool
&pool
, JSContextRef context
, JSStringRef value
, ssize_t
&index
) {
606 return CYGetOffset(CYPoolCString(pool
, context
, value
), index
);
609 void *CYCastPointer_(JSContextRef context
, JSValueRef value
, bool *guess
) {
612 else switch (JSValueGetType(context
, value
)) {
615 case kJSTypeObject
: {
616 JSObjectRef
object((JSObjectRef
) value
);
617 if (JSValueIsObjectOfClass(context
, value
, Pointer_
)) {
618 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
619 return internal
->value_
;
621 JSValueRef
toPointer(CYGetProperty(context
, object
, toPointer_s
));
622 if (CYIsCallable(context
, toPointer
)) {
623 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toPointer
, object
, 0, NULL
));
624 _assert(value
!= NULL
);
625 return CYCastPointer_(context
, value
, guess
);
631 double number(CYCastDouble(context
, value
));
632 if (!std::isnan(number
))
633 return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number
)));
635 throw CYJSError(context
, "cannot convert value to pointer");
643 void CYPoolFFI(CYPool
*pool
, JSContextRef context
, sig::Type
*type
, ffi_type
*ffi
, void *data
, JSValueRef value
) {
644 switch (type
->primitive
) {
646 *reinterpret_cast<bool *>(data
) = JSValueToBoolean(context
, value
);
649 #define CYPoolFFI_(primitive, native) \
650 case sig::primitive ## _P: \
651 *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \
654 CYPoolFFI_(uchar
, unsigned char)
655 CYPoolFFI_(char, char)
656 CYPoolFFI_(ushort
, unsigned short)
657 CYPoolFFI_(short, short)
658 CYPoolFFI_(ulong
, unsigned long)
659 CYPoolFFI_(long, long)
660 CYPoolFFI_(uint
, unsigned int)
662 CYPoolFFI_(ulonglong
, unsigned long long)
663 CYPoolFFI_(longlong
, long long)
664 CYPoolFFI_(float, float)
665 CYPoolFFI_(double, double)
668 uint8_t *base(reinterpret_cast<uint8_t *>(data
));
669 JSObjectRef
aggregate(JSValueIsObject(context
, value
) ? (JSObjectRef
) value
: NULL
);
670 for (size_t index(0); index
!= type
->data
.data
.size
; ++index
) {
671 ffi_type
*field(ffi
->elements
[index
]);
674 if (aggregate
== NULL
)
677 rhs
= CYGetProperty(context
, aggregate
, index
);
678 if (JSValueIsUndefined(context
, rhs
))
679 throw CYJSError(context
, "unable to extract array value");
682 CYPoolFFI(pool
, context
, type
->data
.data
.type
, field
, base
, rhs
);
689 *reinterpret_cast<void **>(data
) = CYCastPointer
<void *>(context
, value
);
692 case sig::string_P
: {
694 *reinterpret_cast<const char **>(data
) = CYCastPointer
<const char *>(context
, value
, &guess
);
695 if (guess
&& pool
!= NULL
)
696 *reinterpret_cast<const char **>(data
) = CYPoolCString(*pool
, context
, value
);
699 case sig::struct_P
: {
700 uint8_t *base(reinterpret_cast<uint8_t *>(data
));
701 JSObjectRef
aggregate(JSValueIsObject(context
, value
) ? (JSObjectRef
) value
: NULL
);
702 for (size_t index(0); index
!= type
->data
.signature
.count
; ++index
) {
703 sig::Element
*element(&type
->data
.signature
.elements
[index
]);
704 ffi_type
*field(ffi
->elements
[index
]);
707 if (aggregate
== NULL
)
710 rhs
= CYGetProperty(context
, aggregate
, index
);
711 if (JSValueIsUndefined(context
, rhs
)) {
712 if (element
->name
!= NULL
)
713 rhs
= CYGetProperty(context
, aggregate
, CYJSString(element
->name
));
716 if (JSValueIsUndefined(context
, rhs
)) undefined
:
717 throw CYJSError(context
, "unable to extract structure value");
721 CYPoolFFI(pool
, context
, element
->type
, field
, base
, rhs
);
731 for (CYHook
*hook
: GetHooks())
732 if (hook
->PoolFFI
!= NULL
)
733 if ((*hook
->PoolFFI
)(pool
, context
, type
, ffi
, data
, value
))
736 CYThrow("unimplemented signature code: '%c''\n", type
->primitive
);
740 JSValueRef
CYFromFFI(JSContextRef context
, sig::Type
*type
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) {
741 switch (type
->primitive
) {
743 return CYCastJSValue(context
, *reinterpret_cast<bool *>(data
));
745 #define CYFromFFI_(primitive, native) \
746 case sig::primitive ## _P: \
747 return CYCastJSValue(context, *reinterpret_cast<native *>(data)); \
749 CYFromFFI_(uchar, unsigned char)
750 CYFromFFI_(char, char)
751 CYFromFFI_(ushort
, unsigned short)
752 CYFromFFI_(short, short)
753 CYFromFFI_(ulong
, unsigned long)
754 CYFromFFI_(long, long)
755 CYFromFFI_(uint
, unsigned int)
757 CYFromFFI_(ulonglong
, unsigned long long)
758 CYFromFFI_(longlong
, long long)
759 CYFromFFI_(float, float)
760 CYFromFFI_(double, double)
763 if (void *pointer
= data
)
764 return CYMakePointer(context
, pointer
, type
->data
.data
.size
, type
->data
.data
.type
, NULL
, owner
);
768 if (void *pointer
= *reinterpret_cast<void **>(data
))
769 return CYMakePointer(context
, pointer
, _not(size_t), type
->data
.data
.type
, NULL
, owner
);
773 if (char *pointer
= *reinterpret_cast<char **>(data
))
774 return CYMakeCString(context
, pointer
, owner
);
778 return CYMakeStruct(context
, data
, type
, ffi
, owner
);
780 return CYJSUndefined(context
);
783 return CYJSNull(context
);
785 for (CYHook
*hook
: GetHooks())
786 if (hook
->FromFFI
!= NULL
)
787 if (JSValueRef value
= (*hook
->FromFFI
)(context
, type
, ffi
, data
, initialize
, owner
))
790 CYThrow("unimplemented signature code: '%c''\n", type
->primitive
);
794 void CYExecuteClosure(ffi_cif
*cif
, void *result
, void **arguments
, void *arg
) {
795 Closure_privateData
*internal(reinterpret_cast<Closure_privateData
*>(arg
));
797 JSContextRef
context(internal
->context_
);
799 size_t count(internal
->cif_
.nargs
);
800 JSValueRef values
[count
];
802 for (size_t index(0); index
!= count
; ++index
)
803 values
[index
] = CYFromFFI(context
, internal
->signature_
.elements
[1 + index
].type
, internal
->cif_
.arg_types
[index
], arguments
[index
]);
805 JSValueRef
value(internal
->adapter_(context
, count
, values
, internal
->function_
));
806 CYPoolFFI(NULL
, context
, internal
->signature_
.elements
[0].type
, internal
->cif_
.rtype
, result
, value
);
809 static JSValueRef
FunctionAdapter_(JSContextRef context
, size_t count
, JSValueRef values
[], JSObjectRef function
) {
810 return CYCallAsFunction(context
, function
, NULL
, count
, values
);
813 Closure_privateData
*CYMakeFunctor_(JSContextRef context
, JSObjectRef function
, const sig::Signature
&signature
, JSValueRef (*adapter
)(JSContextRef
, size_t, JSValueRef
[], JSObjectRef
)) {
814 // XXX: in case of exceptions this will leak
815 // XXX: in point of fact, this may /need/ to leak :(
816 Closure_privateData
*internal(new Closure_privateData(context
, function
, adapter
, signature
));
818 #if defined(__APPLE__) && (defined(__arm__) || defined(__arm64__))
820 ffi_closure
*writable(reinterpret_cast<ffi_closure
*>(ffi_closure_alloc(sizeof(ffi_closure
), &executable
)));
822 ffi_status
status(ffi_prep_closure_loc(writable
, &internal
->cif_
, &CYExecuteClosure
, internal
, executable
));
823 _assert(status
== FFI_OK
);
825 internal
->value_
= executable
;
827 ffi_closure
*closure((ffi_closure
*) _syscall(mmap(
828 NULL
, sizeof(ffi_closure
),
829 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
833 ffi_status
status(ffi_prep_closure(closure
, &internal
->cif_
, &CYExecuteClosure
, internal
));
834 _assert(status
== FFI_OK
);
836 _syscall(mprotect(closure
, sizeof(*closure
), PROT_READ
| PROT_EXEC
));
838 internal
->value_
= closure
;
844 static JSObjectRef
CYMakeFunctor(JSContextRef context
, JSObjectRef function
, const sig::Signature
&signature
) {
845 Closure_privateData
*internal(CYMakeFunctor_(context
, function
, signature
, &FunctionAdapter_
));
846 JSObjectRef
object(JSObjectMake(context
, Functor_
, internal
));
847 // XXX: see above notes about needing to leak
848 JSValueProtect(CYGetJSContext(context
), object
);
852 JSValueRef
CYGetCachedValue(JSContextRef context
, JSStringRef name
) {
853 return CYGetProperty(context
, CYCastJSObject(context
, CYGetProperty(context
, CYGetGlobalObject(context
), cy_s
)), name
);
856 JSObjectRef
CYGetCachedObject(JSContextRef context
, JSStringRef name
) {
857 return CYCastJSObject(context
, CYGetCachedValue(context
, name
));
860 static JSObjectRef
CYMakeFunctor(JSContextRef context
, JSValueRef value
, const sig::Signature
&signature
) {
861 JSObjectRef
Function(CYGetCachedObject(context
, CYJSString("Function")));
863 bool function(_jsccall(JSValueIsInstanceOfConstructor
, context
, value
, Function
));
865 JSObjectRef
function(CYCastJSObject(context
, value
));
866 return CYMakeFunctor(context
, function
, signature
);
868 void (*function
)()(CYCastPointer
<void (*)()>(context
, value
));
869 return CYMakeFunctor(context
, function
, signature
);
873 static JSValueRef
CString_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
875 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(object
)));
876 char *string(static_cast<char *>(internal
->value_
));
879 if (!CYGetOffset(pool
, context
, property
, offset
))
882 return CYCastJSValue(context
, CYJSString(CYUTF8String(&string
[offset
], 1)));
885 static bool CString_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
887 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(object
)));
888 char *string(static_cast<char *>(internal
->value_
));
891 if (!CYGetOffset(pool
, context
, property
, offset
))
894 const char *data(CYPoolCString(pool
, context
, value
));
895 string
[offset
] = *data
;
899 static bool Index_(CYPool
&pool
, JSContextRef context
, Struct_privateData
*internal
, JSStringRef property
, ssize_t
&index
, uint8_t *&base
) {
900 Type_privateData
*typical(internal
->type_
);
901 sig::Type
*type(typical
->type_
);
905 const char *name(CYPoolCString(pool
, context
, property
));
906 size_t length(strlen(name
));
907 double number(CYCastDouble(name
, length
));
909 size_t count(type
->data
.signature
.count
);
911 if (std::isnan(number
)) {
912 if (property
== NULL
)
915 sig::Element
*elements(type
->data
.signature
.elements
);
917 for (size_t local(0); local
!= count
; ++local
) {
918 sig::Element
*element(&elements
[local
]);
919 if (element
->name
!= NULL
&& strcmp(name
, element
->name
) == 0) {
927 index
= static_cast<ssize_t
>(number
);
928 if (index
!= number
|| index
< 0 || static_cast<size_t>(index
) >= count
)
933 ffi_type
**elements(typical
->GetFFI()->elements
);
935 base
= reinterpret_cast<uint8_t *>(internal
->value_
);
936 for (ssize_t
local(0); local
!= index
; ++local
)
937 base
+= elements
[local
]->size
;
942 static JSValueRef
Pointer_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
944 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
946 if (JSStringIsEqual(property
, length_s
))
947 return internal
->length_
== _not(size_t) ? CYJSUndefined(context
) : CYCastJSValue(context
, internal
->length_
);
949 Type_privateData
*typical(internal
->type_
);
950 if (typical
->type_
== NULL
)
952 sig::Type
&type(*typical
->type_
);
955 if (JSStringIsEqualToUTF8CString(property
, "$cyi"))
957 else if (!CYGetOffset(pool
, context
, property
, offset
))
960 if (type
.primitive
== sig::function_P
)
961 return CYMakeFunctor(context
, reinterpret_cast<void (*)()>(internal
->value_
), type
.data
.signature
);
963 ffi_type
*ffi(typical
->GetFFI());
965 uint8_t *base(reinterpret_cast<uint8_t *>(internal
->value_
));
966 base
+= ffi
->size
* offset
;
968 JSObjectRef
owner(internal
->GetOwner() ?: object
);
969 return CYFromFFI(context
, &type
, ffi
, base
, false, owner
);
972 static bool Pointer_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
974 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
975 Type_privateData
*typical(internal
->type_
);
977 if (typical
->type_
== NULL
)
981 if (JSStringIsEqualToUTF8CString(property
, "$cyi"))
983 else if (!CYGetOffset(pool
, context
, property
, offset
))
986 ffi_type
*ffi(typical
->GetFFI());
988 uint8_t *base(reinterpret_cast<uint8_t *>(internal
->value_
));
989 base
+= ffi
->size
* offset
;
991 CYPoolFFI(NULL
, context
, typical
->type_
, ffi
, base
, value
);
995 static JSValueRef Struct_callAsFunction_$
cya(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
996 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(_this
)));
997 Type_privateData
*typical(internal
->type_
);
998 return CYMakePointer(context
, internal
->value_
, _not(size_t), typical
->type_
, typical
->ffi_
, _this
);
1001 static JSValueRef
Struct_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1003 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1004 Type_privateData
*typical(internal
->type_
);
1009 if (!Index_(pool
, context
, internal
, property
, index
, base
))
1012 JSObjectRef
owner(internal
->GetOwner() ?: object
);
1014 return CYFromFFI(context
, typical
->type_
->data
.signature
.elements
[index
].type
, typical
->GetFFI()->elements
[index
], base
, false, owner
);
1017 static bool Struct_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
1019 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1020 Type_privateData
*typical(internal
->type_
);
1025 if (!Index_(pool
, context
, internal
, property
, index
, base
))
1028 CYPoolFFI(NULL
, context
, typical
->type_
->data
.signature
.elements
[index
].type
, typical
->GetFFI()->elements
[index
], base
, value
);
1032 static void Struct_getPropertyNames(JSContextRef context
, JSObjectRef object
, JSPropertyNameAccumulatorRef names
) {
1033 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
1034 Type_privateData
*typical(internal
->type_
);
1035 sig::Type
*type(typical
->type_
);
1040 size_t count(type
->data
.signature
.count
);
1041 sig::Element
*elements(type
->data
.signature
.elements
);
1045 for (size_t index(0); index
!= count
; ++index
) {
1047 name
= elements
[index
].name
;
1050 sprintf(number
, "%zu", index
);
1054 JSPropertyNameAccumulatorAddName(names
, CYJSString(name
));
1058 void CYCallFunction(CYPool
&pool
, JSContextRef context
, ffi_cif
*cif
, void (*function
)(), void *value
, void **values
) {
1059 ffi_call(cif
, function
, value
, values
);
1062 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
)()) {
1063 if (setups
+ count
!= signature
->count
- 1)
1064 throw CYJSError(context
, "incorrect number of arguments to ffi function");
1066 size_t size(setups
+ count
);
1068 memcpy(values
, setup
, sizeof(void *) * setups
);
1070 for (size_t index(setups
); index
!= size
; ++index
) {
1071 sig::Element
*element(&signature
->elements
[index
+ 1]);
1072 ffi_type
*ffi(cif
->arg_types
[index
]);
1074 values
[index
] = new(pool
) uint8_t[ffi
->size
];
1075 CYPoolFFI(&pool
, context
, element
->type
, ffi
, values
[index
], arguments
[index
- setups
]);
1078 uint8_t value
[cif
->rtype
->size
];
1080 void (*call
)(CYPool
&, JSContextRef
, ffi_cif
*, void (*)(), void *, void **) = &CYCallFunction
;
1081 // XXX: this only supports one hook, but it is a bad idea anyway
1082 for (CYHook
*hook
: GetHooks())
1083 if (hook
->CallFunction
!= NULL
)
1084 call
= hook
->CallFunction
;
1086 call(pool
, context
, cif
, function
, value
, values
);
1087 return CYFromFFI(context
, signature
->elements
[0].type
, cif
->rtype
, value
, initialize
);
1090 static JSValueRef
Functor_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1092 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(object
)));
1093 return CYCallFunction(pool
, context
, 0, NULL
, count
, arguments
, false, &internal
->signature_
, &internal
->cif_
, internal
->GetValue());
1096 static JSValueRef
Pointer_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1097 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
1098 if (internal
->type_
->type_
->primitive
!= sig::function_P
)
1099 throw CYJSError(context
, "cannot call a pointer to non-function");
1100 JSObjectRef
functor(CYCastJSObject(context
, CYGetProperty(context
, object
, cyi_s
)));
1101 return CYCallAsFunction(context
, functor
, _this
, count
, arguments
);
1104 JSObjectRef
CYMakeType(JSContextRef context
, const char *encoding
) {
1105 Type_privateData
*internal(new Type_privateData(encoding
));
1106 return JSObjectMake(context
, Type_privateData::Class_
, internal
);
1109 JSObjectRef
CYMakeType(JSContextRef context
, sig::Type
*type
) {
1110 Type_privateData
*internal(new Type_privateData(type
));
1111 return JSObjectMake(context
, Type_privateData::Class_
, internal
);
1114 JSObjectRef
CYMakeType(JSContextRef context
, sig::Signature
*signature
) {
1121 type
.primitive
= sig::function_P
;
1122 sig::Copy(pool
, type
.data
.signature
, *signature
);
1124 return CYMakeType(context
, &type
);
1127 static bool All_hasProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
) {
1128 JSObjectRef
global(CYGetGlobalObject(context
));
1129 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1130 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1132 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1133 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1)))
1134 if (CYHasProperty(context
, space
, property
))
1138 CYUTF8String
name(CYPoolUTF8String(pool
, context
, property
));
1140 size_t length(name
.size
);
1141 char keyed
[length
+ 2];
1142 memcpy(keyed
+ 1, name
.data
, length
+ 1);
1144 static const char *modes
= "0124";
1145 for (size_t i(0); i
!= 4; ++i
) {
1146 keyed
[0] = modes
[i
];
1147 if (CYBridgeHash(keyed
, length
+ 1) != NULL
)
1154 static JSValueRef
All_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1155 JSObjectRef
global(CYGetGlobalObject(context
));
1156 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1157 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1159 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1160 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1)))
1161 if (JSValueRef value
= CYGetProperty(context
, space
, property
))
1162 if (!JSValueIsUndefined(context
, value
))
1166 CYUTF8String
name(CYPoolUTF8String(pool
, context
, property
));
1168 size_t length(name
.size
);
1169 char keyed
[length
+ 2];
1170 memcpy(keyed
+ 1, name
.data
, length
+ 1);
1172 static const char *modes
= "0124";
1173 for (size_t i(0); i
!= 4; ++i
) {
1174 char mode(modes
[i
]);
1177 if (CYBridgeEntry
*entry
= CYBridgeHash(keyed
, length
+ 1))
1180 return JSEvaluateScript(CYGetJSContext(context
), CYJSString(entry
->value_
), NULL
, NULL
, 0, NULL
);
1183 return CYMakeFunctor(context
, name
.data
, entry
->value_
, &entry
->cache_
);
1186 if (void *symbol
= CYCastSymbol(name
.data
)) {
1187 // XXX: this is horrendously inefficient
1188 sig::Signature signature
;
1189 sig::Parse(pool
, &signature
, entry
->value_
, &Structor_
);
1191 sig::sig_ffi_cif(pool
, &sig::ObjectiveC
, &signature
, &cif
);
1192 return CYFromFFI(context
, signature
.elements
[0].type
, cif
.rtype
, symbol
);
1195 // XXX: implement case 3
1197 return CYMakeType(context
, entry
->value_
);
1204 static void All_getPropertyNames(JSContextRef context
, JSObjectRef object
, JSPropertyNameAccumulatorRef names
) {
1205 JSObjectRef
global(CYGetGlobalObject(context
));
1206 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1207 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1209 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1210 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1))) {
1211 JSPropertyNameArrayRef
subset(JSObjectCopyPropertyNames(context
, space
));
1212 for (size_t index(0), count(JSPropertyNameArrayGetCount(subset
)); index
!= count
; ++index
)
1213 JSPropertyNameAccumulatorAddName(names
, JSPropertyNameArrayGetNameAtIndex(subset
, index
));
1214 JSPropertyNameArrayRelease(subset
);
1218 static JSObjectRef
CString_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1220 throw CYJSError(context
, "incorrect number of arguments to CString constructor");
1221 char *value(CYCastPointer
<char *>(context
, arguments
[0]));
1222 return CYMakeCString(context
, value
, NULL
);
1225 static JSObjectRef
Pointer_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1227 throw CYJSError(context
, "incorrect number of arguments to Pointer constructor");
1231 void *value(CYCastPointer
<void *>(context
, arguments
[0]));
1232 const char *type(CYPoolCString(pool
, context
, arguments
[1]));
1234 sig::Signature signature
;
1235 sig::Parse(pool
, &signature
, type
, &Structor_
);
1237 return CYMakePointer(context
, value
, _not(size_t), signature
.elements
[0].type
, NULL
, NULL
);
1240 static JSObjectRef
Type_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1244 } else if (count
== 1) {
1245 const char *type(CYPoolCString(pool
, context
, arguments
[0]));
1246 return CYMakeType(context
, type
);
1247 } else if (count
== 2) {
1248 JSObjectRef
types(CYCastJSObject(context
, arguments
[0]));
1249 size_t count(CYArrayLength(context
, types
));
1251 JSObjectRef
names(CYCastJSObject(context
, arguments
[1]));
1257 type
.primitive
= sig::struct_P
;
1258 type
.data
.signature
.elements
= new(pool
) sig::Element
[count
];
1259 type
.data
.signature
.count
= count
;
1261 for (size_t i(0); i
!= count
; ++i
) {
1262 sig::Element
&element(type
.data
.signature
.elements
[i
]);
1263 element
.offset
= _not(size_t);
1265 JSValueRef
name(CYArrayGet(context
, names
, i
));
1266 if (JSValueIsUndefined(context
, name
))
1267 element
.name
= NULL
;
1269 element
.name
= CYPoolCString(pool
, context
, name
);
1271 JSObjectRef
object(CYCastJSObject(context
, CYArrayGet(context
, types
, i
)));
1272 _assert(JSValueIsObjectOfClass(context
, object
, Type_privateData::Class_
));
1273 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1274 element
.type
= internal
->type_
;
1277 return CYMakeType(context
, &type
);
1279 throw CYJSError(context
, "incorrect number of arguments to Type constructor");
1283 static JSValueRef Type_callAsFunction_$
With(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], sig::Primitive primitive
, JSValueRef
*exception
) { CYTry
{
1284 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1292 type
.primitive
= primitive
;
1293 type
.data
.signature
.elements
= new(pool
) sig::Element
[1 + count
];
1294 type
.data
.signature
.count
= 1 + count
;
1296 type
.data
.signature
.elements
[0].name
= NULL
;
1297 type
.data
.signature
.elements
[0].type
= internal
->type_
;
1298 type
.data
.signature
.elements
[0].offset
= _not(size_t);
1300 for (size_t i(0); i
!= count
; ++i
) {
1301 sig::Element
&element(type
.data
.signature
.elements
[i
+ 1]);
1302 element
.name
= NULL
;
1303 element
.offset
= _not(size_t);
1305 JSObjectRef
object(CYCastJSObject(context
, arguments
[i
]));
1306 _assert(JSValueIsObjectOfClass(context
, object
, Type_privateData::Class_
));
1307 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1309 element
.type
= internal
->type_
;
1312 return CYMakeType(context
, &type
);
1315 static JSValueRef
Type_callAsFunction_arrayOf(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1317 throw CYJSError(context
, "incorrect number of arguments to Type.arrayOf");
1318 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1321 size_t index(CYGetIndex(pool
, context
, CYJSString(context
, arguments
[0])));
1322 if (index
== _not(size_t))
1323 throw CYJSError(context
, "invalid array size used with Type.arrayOf");
1329 type
.primitive
= sig::array_P
;
1330 type
.data
.data
.type
= internal
->type_
;
1331 type
.data
.data
.size
= index
;
1333 return CYMakeType(context
, &type
);
1336 static JSValueRef
Type_callAsFunction_blockWith(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1337 return Type_callAsFunction_$
With(context
, object
, _this
, count
, arguments
, sig::block_P
, exception
);
1340 static JSValueRef
Type_callAsFunction_constant(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1342 throw CYJSError(context
, "incorrect number of arguments to Type.constant");
1343 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1345 sig::Type
type(*internal
->type_
);
1346 type
.flags
|= JOC_TYPE_CONST
;
1347 return CYMakeType(context
, &type
);
1350 static JSValueRef
Type_callAsFunction_long(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1352 throw CYJSError(context
, "incorrect number of arguments to Type.long");
1353 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1355 sig::Type
type(*internal
->type_
);
1357 switch (type
.primitive
) {
1358 case sig::short_P
: type
.primitive
= sig::int_P
; break;
1359 case sig::int_P
: type
.primitive
= sig::long_P
; break;
1360 case sig::long_P
: type
.primitive
= sig::longlong_P
; break;
1361 default: throw CYJSError(context
, "invalid type argument to Type.long");
1364 return CYMakeType(context
, &type
);
1367 static JSValueRef
Type_callAsFunction_short(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1369 throw CYJSError(context
, "incorrect number of arguments to Type.short");
1370 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1372 sig::Type
type(*internal
->type_
);
1374 switch (type
.primitive
) {
1375 case sig::int_P
: type
.primitive
= sig::short_P
; break;
1376 case sig::long_P
: type
.primitive
= sig::int_P
; break;
1377 case sig::longlong_P
: type
.primitive
= sig::long_P
; break;
1378 default: throw CYJSError(context
, "invalid type argument to Type.short");
1381 return CYMakeType(context
, &type
);
1384 static JSValueRef
Type_callAsFunction_signed(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1386 throw CYJSError(context
, "incorrect number of arguments to Type.signed");
1387 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1389 sig::Type
type(*internal
->type_
);
1391 switch (type
.primitive
) {
1392 case sig::char_P
: case sig::uchar_P
: type
.primitive
= sig::char_P
; break;
1393 case sig::short_P
: case sig::ushort_P
: type
.primitive
= sig::short_P
; break;
1394 case sig::int_P
: case sig::uint_P
: type
.primitive
= sig::int_P
; break;
1395 case sig::long_P
: case sig::ulong_P
: type
.primitive
= sig::long_P
; break;
1396 case sig::longlong_P
: case sig::ulonglong_P
: type
.primitive
= sig::longlong_P
; break;
1397 default: throw CYJSError(context
, "invalid type argument to Type.signed");
1400 return CYMakeType(context
, &type
);
1403 static JSValueRef
Type_callAsFunction_unsigned(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1405 throw CYJSError(context
, "incorrect number of arguments to Type.unsigned");
1406 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1408 sig::Type
type(*internal
->type_
);
1410 switch (type
.primitive
) {
1411 case sig::char_P
: case sig::uchar_P
: type
.primitive
= sig::uchar_P
; break;
1412 case sig::short_P
: case sig::ushort_P
: type
.primitive
= sig::ushort_P
; break;
1413 case sig::int_P
: case sig::uint_P
: type
.primitive
= sig::uint_P
; break;
1414 case sig::long_P
: case sig::ulong_P
: type
.primitive
= sig::ulong_P
; break;
1415 case sig::longlong_P
: case sig::ulonglong_P
: type
.primitive
= sig::ulonglong_P
; break;
1416 default: throw CYJSError(context
, "invalid type argument to Type.unsigned");
1419 return CYMakeType(context
, &type
);
1422 static JSValueRef
Type_callAsFunction_functionWith(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1423 return Type_callAsFunction_$
With(context
, object
, _this
, count
, arguments
, sig::function_P
, exception
);
1426 static JSValueRef
Type_callAsFunction_pointerTo(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1428 throw CYJSError(context
, "incorrect number of arguments to Type.pointerTo");
1429 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1434 if (internal
->type_
->primitive
== sig::char_P
) {
1435 type
.flags
= internal
->type_
->flags
;
1436 type
.primitive
= sig::string_P
;
1437 type
.data
.data
.type
= NULL
;
1438 type
.data
.data
.size
= 0;
1441 type
.primitive
= sig::pointer_P
;
1442 type
.data
.data
.type
= internal
->type_
;
1443 type
.data
.data
.size
= 0;
1446 return CYMakeType(context
, &type
);
1449 static JSValueRef
Type_callAsFunction_withName(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1451 throw CYJSError(context
, "incorrect number of arguments to Type.withName");
1452 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1455 const char *name(CYPoolCString(pool
, context
, arguments
[0]));
1457 sig::Type
type(*internal
->type_
);
1459 return CYMakeType(context
, &type
);
1462 static JSValueRef
Type_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1464 throw CYJSError(context
, "incorrect number of arguments to type cast function");
1465 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1467 if (internal
->type_
->primitive
== sig::function_P
)
1468 return CYMakeFunctor(context
, arguments
[0], internal
->type_
->data
.signature
);
1470 sig::Type
*type(internal
->type_
);
1471 ffi_type
*ffi(internal
->GetFFI());
1473 uint8_t value
[ffi
->size
];
1475 CYPoolFFI(&pool
, context
, type
, ffi
, value
, arguments
[0]);
1476 return CYFromFFI(context
, type
, ffi
, value
);
1479 static JSObjectRef
Type_callAsConstructor(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1481 throw CYJSError(context
, "incorrect number of arguments to Type allocator");
1482 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1484 sig::Type
*type(internal
->type_
);
1487 if (type
->primitive
!= sig::array_P
)
1488 length
= _not(size_t);
1490 length
= type
->data
.data
.size
;
1491 type
= type
->data
.data
.type
;
1494 void *value(calloc(1, internal
->GetFFI()->size
));
1495 return CYMakePointer(context
, value
, length
, type
, NULL
, NULL
);
1498 static JSObjectRef
Functor_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1500 throw CYJSError(context
, "incorrect number of arguments to Functor constructor");
1502 const char *encoding(CYPoolCString(pool
, context
, arguments
[1]));
1503 sig::Signature signature
;
1504 sig::Parse(pool
, &signature
, encoding
, &Structor_
);
1505 return CYMakeFunctor(context
, arguments
[0], signature
);
1508 static JSValueRef
CString_callAsFunction_toPointer(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1509 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(_this
)));
1515 type
.primitive
= sig::char_P
;
1516 type
.data
.data
.type
= NULL
;
1517 type
.data
.data
.size
= 0;
1519 return CYMakePointer(context
, internal
->value_
, _not(size_t), &type
, NULL
, NULL
);
1522 static JSValueRef Functor_callAsFunction_$
cya(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1524 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(_this
)));
1530 type
.primitive
= sig::function_P
;
1531 sig::Copy(pool
, type
.data
.signature
, internal
->signature_
);
1533 return CYMakePointer(context
, internal
->value_
, _not(size_t), &type
, NULL
, NULL
);
1536 static JSValueRef
Pointer_callAsFunction_toPointer(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1540 static JSValueRef
CYValue_callAsFunction_valueOf(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1541 CYValue
*internal(reinterpret_cast<CYValue
*>(JSObjectGetPrivate(_this
)));
1542 return CYCastJSValue(context
, reinterpret_cast<uintptr_t>(internal
->value_
));
1545 static JSValueRef
CYValue_callAsFunction_toJSON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1546 return CYValue_callAsFunction_valueOf(context
, object
, _this
, count
, arguments
, exception
);
1549 static JSValueRef
CYValue_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1550 CYValue
*internal(reinterpret_cast<CYValue
*>(JSObjectGetPrivate(_this
)));
1551 std::ostringstream str
;
1553 if (internal
->value_
== NULL
)
1555 else if (dladdr(internal
->value_
, &info
) == 0)
1556 str
<< internal
->value_
;
1558 str
<< info
.dli_sname
;
1559 off_t
offset(static_cast<char *>(internal
->value_
) - static_cast<char *>(info
.dli_saddr
));
1561 str
<< "+0x" << std::hex
<< offset
;
1563 std::string
value(str
.str());
1564 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
1567 static JSValueRef
Pointer_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1568 std::set
<void *> *objects(CYCastObjects(context
, _this
, count
, arguments
));
1570 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1571 if (internal
->length_
!= _not(size_t)) {
1572 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array_prototype")));
1573 JSObjectRef
toCYON(CYCastJSObject(context
, CYGetProperty(context
, Array
, toCYON_s
)));
1574 return CYCallAsFunction(context
, toCYON
, _this
, count
, arguments
);
1575 } else if (internal
->type_
->type_
== NULL
) pointer
: {
1577 std::ostringstream str
;
1583 type
.primitive
= sig::pointer_P
;
1584 type
.data
.data
.type
= internal
->type_
->type_
;
1585 type
.data
.data
.size
= 0;
1588 CYOutput
output(*str
.rdbuf(), options
);
1589 (new(pool
) CYTypeExpression(Decode(pool
, &type
)))->Output(output
, CYNoFlags
);
1591 str
<< "(" << internal
->value_
<< ")";
1592 std::string
value(str
.str());
1593 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
1595 JSValueRef
value(CYGetProperty(context
, _this
, cyi_s
));
1596 if (JSValueIsUndefined(context
, value
))
1599 return CYCastJSValue(context
, pool
.strcat("&", CYPoolCCYON(pool
, context
, value
, objects
), NULL
));
1600 } catch (const CYException
&e
) {
1605 static JSValueRef
CString_getProperty_length(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1606 CString
*internal(reinterpret_cast<CString
*>(JSObjectGetPrivate(object
)));
1607 char *string(static_cast<char *>(internal
->value_
));
1608 return CYCastJSValue(context
, strlen(string
));
1611 static JSValueRef
CString_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1616 type
.primitive
= sig::char_P
;
1617 type
.data
.data
.type
= NULL
;
1618 type
.data
.data
.size
= 0;
1620 return CYMakeType(context
, &type
);
1623 static JSValueRef
Pointer_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1624 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
1625 return CYMakeType(context
, internal
->type_
->type_
);
1628 static JSValueRef
CString_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1629 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1630 const char *string(static_cast<const char *>(internal
->value_
));
1631 std::ostringstream str
;
1633 CYStringify(str
, string
, strlen(string
), true);
1634 std::string
value(str
.str());
1635 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
1638 static JSValueRef
CString_callAsFunction_toString(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1639 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1640 const char *string(static_cast<const char *>(internal
->value_
));
1641 return CYCastJSValue(context
, string
);
1644 static JSValueRef
Functor_getProperty_type(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1645 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(object
)));
1646 return CYMakeType(context
, &internal
->signature_
);
1649 static JSValueRef
Type_getProperty_alignment(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1650 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1651 return CYCastJSValue(context
, internal
->GetFFI()->alignment
);
1654 static JSValueRef
Type_getProperty_name(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1655 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1656 return CYCastJSValue(context
, internal
->type_
->name
);
1659 static JSValueRef
Type_getProperty_size(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
1660 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1661 return CYCastJSValue(context
, internal
->GetFFI()->size
);
1664 static JSValueRef
Type_callAsFunction_toString(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1665 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1667 const char *type(sig::Unparse(pool
, internal
->type_
));
1668 return CYCastJSValue(context
, CYJSString(type
));
1671 static JSValueRef
Type_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1672 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1676 CYOutput
output(out
, options
);
1677 (new(pool
) CYTypeExpression(Decode(pool
, internal
->type_
)))->Output(output
, CYNoFlags
);
1678 return CYCastJSValue(context
, CYJSString(out
.str().c_str()));
1681 static JSValueRef
Type_callAsFunction_toJSON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1682 return Type_callAsFunction_toString(context
, object
, _this
, count
, arguments
, exception
);
1685 static JSStaticFunction CString_staticFunctions
[6] = {
1686 {"toCYON", &CString_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1687 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1688 {"toPointer", &CString_callAsFunction_toPointer
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1689 {"toString", &CString_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1690 {"valueOf", &CString_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1694 static JSStaticValue CString_staticValues
[3] = {
1695 {"length", &CString_getProperty_length
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1696 {"type", &CString_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1697 {NULL
, NULL
, NULL
, 0}
1700 static JSStaticFunction Pointer_staticFunctions
[5] = {
1701 {"toCYON", &Pointer_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1702 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1703 {"toPointer", &Pointer_callAsFunction_toPointer
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1704 {"valueOf", &CYValue_callAsFunction_valueOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1708 static JSStaticValue Pointer_staticValues
[2] = {
1709 {"type", &Pointer_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1710 {NULL
, NULL
, NULL
, 0}
1713 static JSStaticFunction Struct_staticFunctions
[2] = {
1714 {"$cya", &Struct_callAsFunction_$cya
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1718 static JSStaticFunction Functor_staticFunctions
[5] = {
1719 {"$cya", &Functor_callAsFunction_$cya
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1720 {"toCYON", &CYValue_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1721 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1722 {"valueOf", &CYValue_callAsFunction_valueOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1727 JSStaticFunction
const * const Functor::StaticFunctions
= Functor_staticFunctions
;
1730 static JSStaticValue Functor_staticValues
[2] = {
1731 {"type", &Functor_getProperty_type
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1732 {NULL
, NULL
, NULL
, 0}
1736 JSStaticValue
const * const Functor::StaticValues
= Functor_staticValues
;
1739 static JSStaticValue Type_staticValues
[4] = {
1740 {"alignment", &Type_getProperty_alignment
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1741 {"name", &Type_getProperty_name
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1742 {"size", &Type_getProperty_size
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1743 {NULL
, NULL
, NULL
, 0}
1746 static JSStaticFunction Type_staticFunctions
[14] = {
1747 {"arrayOf", &Type_callAsFunction_arrayOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1748 {"blockWith", &Type_callAsFunction_blockWith
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1749 {"constant", &Type_callAsFunction_constant
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1750 {"functionWith", &Type_callAsFunction_functionWith
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1751 {"long", &Type_callAsFunction_long
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1752 {"pointerTo", &Type_callAsFunction_pointerTo
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1753 {"short", &Type_callAsFunction_short
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1754 {"signed", &Type_callAsFunction_signed
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1755 {"withName", &Type_callAsFunction_withName
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1756 {"toCYON", &Type_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1757 {"toJSON", &Type_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1758 {"toString", &Type_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1759 {"unsigned", &Type_callAsFunction_unsigned
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1763 static JSObjectRef (*JSObjectMakeArray$
)(JSContextRef
, size_t, const JSValueRef
[], JSValueRef
*);
1765 _visible
void CYSetArgs(int argc
, const char *argv
[]) {
1766 JSContextRef
context(CYGetJSContext());
1767 JSValueRef args
[argc
];
1768 for (int i(0); i
!= argc
; ++i
)
1769 args
[i
] = CYCastJSValue(context
, argv
[i
]);
1772 if (JSObjectMakeArray$
!= NULL
)
1773 array
= _jsccall(*JSObjectMakeArray$
, context
, argc
, args
);
1775 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array")));
1776 JSValueRef
value(CYCallAsFunction(context
, Array
, NULL
, argc
, args
));
1777 array
= CYCastJSObject(context
, value
);
1780 JSObjectRef
System(CYGetCachedObject(context
, CYJSString("System")));
1781 CYSetProperty(context
, System
, CYJSString("args"), array
);
1784 JSObjectRef
CYGetGlobalObject(JSContextRef context
) {
1785 return JSContextGetGlobalObject(context
);
1788 // XXX: this is neither exceptin safe nor even terribly sane
1789 class ExecutionHandle
{
1791 JSContextRef context_
;
1792 std::vector
<void *> handles_
;
1795 ExecutionHandle(JSContextRef context
) :
1798 handles_
.resize(GetHooks().size());
1799 for (size_t i(0); i
!= GetHooks().size(); ++i
) {
1800 CYHook
*hook(GetHooks()[i
]);
1801 if (hook
->ExecuteStart
!= NULL
)
1802 handles_
[i
] = (*hook
->ExecuteStart
)(context_
);
1808 ~ExecutionHandle() {
1809 for (size_t i(GetHooks().size()); i
!= 0; --i
) {
1810 CYHook
*hook(GetHooks()[i
-1]);
1811 if (hook
->ExecuteEnd
!= NULL
)
1812 (*hook
->ExecuteEnd
)(context_
, handles_
[i
-1]);
1817 static volatile bool cancel_
;
1819 static bool CYShouldTerminate(JSContextRef context
, void *arg
) {
1823 _visible
const char *CYExecute(JSContextRef context
, CYPool
&pool
, CYUTF8String code
) {
1824 ExecutionHandle
handle(context
);
1827 if (&JSContextGroupSetExecutionTimeLimit
!= NULL
)
1828 JSContextGroupSetExecutionTimeLimit(JSContextGetGroup(context
), 0.5, &CYShouldTerminate
, NULL
);
1831 JSValueRef
result(_jsccall(JSEvaluateScript
, context
, CYJSString(code
), NULL
, NULL
, 0));
1832 if (JSValueIsUndefined(context
, result
))
1835 std::set
<void *> objects
;
1836 const char *json(_jsccall(CYPoolCCYON
, pool
, context
, result
, objects
));
1837 CYSetProperty(context
, CYGetGlobalObject(context
), Result_
, result
);
1840 } catch (const CYException
&error
) {
1841 return pool
.strcat("throw ", error
.PoolCString(pool
), NULL
);
1845 _visible
void CYCancel() {
1849 static bool initialized_
= false;
1851 void CYInitializeDynamic() {
1853 initialized_
= true;
1856 JSObjectMakeArray$
= reinterpret_cast<JSObjectRef (*)(JSContextRef
, size_t, const JSValueRef
[], JSValueRef
*)>(dlsym(RTLD_DEFAULT
, "JSObjectMakeArray"));
1857 JSSynchronousGarbageCollectForDebugging$
= reinterpret_cast<void (*)(JSContextRef
)>(dlsym(RTLD_DEFAULT
, "JSSynchronousGarbageCollectForDebugging"));
1859 JSClassDefinition definition
;
1861 definition
= kJSClassDefinitionEmpty
;
1862 definition
.className
= "All";
1863 definition
.hasProperty
= &All_hasProperty
;
1864 definition
.getProperty
= &All_getProperty
;
1865 definition
.getPropertyNames
= &All_getPropertyNames
;
1866 All_
= JSClassCreate(&definition
);
1868 definition
= kJSClassDefinitionEmpty
;
1869 definition
.className
= "Context";
1870 definition
.finalize
= &CYFinalize
;
1871 Context_
= JSClassCreate(&definition
);
1873 definition
= kJSClassDefinitionEmpty
;
1874 definition
.className
= "CString";
1875 definition
.staticFunctions
= CString_staticFunctions
;
1876 definition
.staticValues
= CString_staticValues
;
1877 definition
.getProperty
= &CString_getProperty
;
1878 definition
.setProperty
= &CString_setProperty
;
1879 definition
.finalize
= &CYFinalize
;
1880 CString_
= JSClassCreate(&definition
);
1882 definition
= kJSClassDefinitionEmpty
;
1883 definition
.className
= "Functor";
1884 definition
.staticFunctions
= cy::Functor::StaticFunctions
;
1885 definition
.staticValues
= Functor_staticValues
;
1886 definition
.callAsFunction
= &Functor_callAsFunction
;
1887 definition
.finalize
= &CYFinalize
;
1888 Functor_
= JSClassCreate(&definition
);
1890 definition
= kJSClassDefinitionEmpty
;
1891 definition
.className
= "Pointer";
1892 definition
.staticFunctions
= Pointer_staticFunctions
;
1893 definition
.staticValues
= Pointer_staticValues
;
1894 definition
.callAsFunction
= &Pointer_callAsFunction
;
1895 definition
.getProperty
= &Pointer_getProperty
;
1896 definition
.setProperty
= &Pointer_setProperty
;
1897 definition
.finalize
= &CYFinalize
;
1898 Pointer_
= JSClassCreate(&definition
);
1900 definition
= kJSClassDefinitionEmpty
;
1901 definition
.className
= "Struct";
1902 definition
.staticFunctions
= Struct_staticFunctions
;
1903 definition
.getProperty
= &Struct_getProperty
;
1904 definition
.setProperty
= &Struct_setProperty
;
1905 definition
.getPropertyNames
= &Struct_getPropertyNames
;
1906 definition
.finalize
= &CYFinalize
;
1907 Struct_
= JSClassCreate(&definition
);
1909 definition
= kJSClassDefinitionEmpty
;
1910 definition
.className
= "Type";
1911 definition
.staticValues
= Type_staticValues
;
1912 definition
.staticFunctions
= Type_staticFunctions
;
1913 definition
.callAsFunction
= &Type_callAsFunction
;
1914 definition
.callAsConstructor
= &Type_callAsConstructor
;
1915 definition
.finalize
= &CYFinalize
;
1916 Type_privateData::Class_
= JSClassCreate(&definition
);
1918 definition
= kJSClassDefinitionEmpty
;
1919 definition
.className
= "Global";
1920 //definition.getProperty = &Global_getProperty;
1921 Global_
= JSClassCreate(&definition
);
1923 Array_s
= JSStringCreateWithUTF8CString("Array");
1924 cy_s
= JSStringCreateWithUTF8CString("$cy");
1925 cyi_s
= JSStringCreateWithUTF8CString("$cyi");
1926 length_s
= JSStringCreateWithUTF8CString("length");
1927 message_s
= JSStringCreateWithUTF8CString("message");
1928 name_s
= JSStringCreateWithUTF8CString("name");
1929 pop_s
= JSStringCreateWithUTF8CString("pop");
1930 prototype_s
= JSStringCreateWithUTF8CString("prototype");
1931 push_s
= JSStringCreateWithUTF8CString("push");
1932 splice_s
= JSStringCreateWithUTF8CString("splice");
1933 toCYON_s
= JSStringCreateWithUTF8CString("toCYON");
1934 toJSON_s
= JSStringCreateWithUTF8CString("toJSON");
1935 toPointer_s
= JSStringCreateWithUTF8CString("toPointer");
1936 toString_s
= JSStringCreateWithUTF8CString("toString");
1937 weak_s
= JSStringCreateWithUTF8CString("weak");
1939 Result_
= JSStringCreateWithUTF8CString("_");
1941 for (CYHook
*hook
: GetHooks())
1942 if (hook
->Initialize
!= NULL
)
1943 (*hook
->Initialize
)();
1946 void CYThrow(JSContextRef context
, JSValueRef value
) {
1948 throw CYJSError(context
, value
);
1951 const char *CYJSError::PoolCString(CYPool
&pool
) const {
1952 std::set
<void *> objects
;
1953 // XXX: this used to be CYPoolCString
1954 return CYPoolCCYON(pool
, context_
, value_
, objects
);
1957 JSValueRef
CYJSError::CastJSValue(JSContextRef context
, const char *name
) const {
1958 // XXX: what if the context is different? or the name? I dunno. ("epic" :/)
1962 JSValueRef
CYCastJSError(JSContextRef context
, const char *name
, const char *message
) {
1963 JSObjectRef
Error(CYGetCachedObject(context
, CYJSString(name
)));
1964 JSValueRef arguments
[1] = {CYCastJSValue(context
, message
)};
1965 return _jsccall(JSObjectCallAsConstructor
, context
, Error
, 1, arguments
);
1968 JSValueRef
CYPoolError::CastJSValue(JSContextRef context
, const char *name
) const {
1969 return CYCastJSError(context
, name
, message_
);
1972 CYJSError::CYJSError(JSContextRef context
, const char *format
, ...) {
1973 _assert(context
!= NULL
);
1978 va_start(args
, format
);
1979 // XXX: there might be a beter way to think about this
1980 const char *message(pool
.vsprintf(64, format
, args
));
1983 value_
= CYCastJSError(context
, "Error", message
);
1986 JSGlobalContextRef
CYGetJSContext(JSContextRef context
) {
1987 return reinterpret_cast<Context
*>(JSObjectGetPrivate(CYCastJSObject(context
, CYGetProperty(context
, CYGetGlobalObject(context
), cy_s
))))->context_
;
1994 CYFile(void *data
, size_t size
) :
2001 static void CYFileExit(void *data
) {
2002 CYFile
*file(reinterpret_cast<CYFile
*>(data
));
2003 _syscall(munmap(file
->data_
, file
->size_
));
2006 static void *CYPoolFile(CYPool
&pool
, const char *path
, size_t *psize
) {
2007 int fd(_syscall_(open(path
, O_RDONLY
), 1, ENOENT
));
2012 _syscall(fstat(fd
, &stat
));
2013 size_t size(stat
.st_size
);
2018 _syscall(base
= mmap(NULL
, size
, PROT_READ
, MAP_SHARED
, fd
, 0));
2020 CYFile
*file(new (pool
) CYFile(base
, size
));
2021 pool
.atexit(&CYFileExit
, file
);
2023 _syscall(close(fd
));
2027 static CYUTF8String
CYPoolFileUTF8String(CYPool
&pool
, const char *path
) {
2029 data
.data
= reinterpret_cast<char *>(CYPoolFile(pool
, path
, &data
.size
));
2033 static const char *CYPoolLibraryPath(CYPool
&pool
) {
2035 _assert(dladdr(reinterpret_cast<void *>(&CYPoolLibraryPath
), &addr
) != 0);
2036 char *lib(pool
.strdup(addr
.dli_fname
));
2038 char *slash(strrchr(lib
, '/'));
2039 _assert(slash
!= NULL
);
2045 static JSValueRef
require(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
2046 _assert(count
== 1);
2049 const char *lib(CYPoolLibraryPath(pool
));
2051 CYJSString
property("exports");
2054 const char *name(CYPoolCString(pool
, context
, arguments
[0]));
2055 const char *path(pool
.strcat(lib
, "/cycript0.9/", name
, ".cy", NULL
));
2057 CYJSString
key(path
);
2058 JSObjectRef
modules(CYGetCachedObject(context
, CYJSString("modules")));
2059 JSValueRef
cache(CYGetProperty(context
, modules
, key
));
2061 if (!JSValueIsUndefined(context
, cache
))
2062 module = CYCastJSObject(context
, cache
);
2064 CYUTF8String
code(CYPoolFileUTF8String(pool
, path
));
2066 if (code
.data
== NULL
) {
2067 if (strchr(name
, '/') == NULL
&& (
2069 dlopen(pool
.strcat("/System/Library/Frameworks/", name
, ".framework/", name
, NULL
), RTLD_LAZY
| RTLD_GLOBAL
) != NULL
||
2070 dlopen(pool
.strcat("/System/Library/PrivateFrameworks/", name
, ".framework/", name
, NULL
), RTLD_LAZY
| RTLD_GLOBAL
) != NULL
||
2073 return CYJSUndefined(NULL
);
2075 CYThrow("Can't find module: %s", name
);
2078 module = JSObjectMake(context
, NULL
, NULL
);
2079 CYSetProperty(context
, modules
, key
, module);
2081 JSObjectRef
exports(JSObjectMake(context
, NULL
, NULL
));
2082 CYSetProperty(context
, module, property
, exports
);
2084 std::stringstream wrap
;
2085 wrap
<< "(function (exports, require, module) { " << code
<< "\n});";
2086 code
= CYPoolCode(pool
, *wrap
.rdbuf());
2088 JSValueRef
value(_jsccall(JSEvaluateScript
, context
, CYJSString(code
), NULL
, NULL
, 0));
2089 JSObjectRef
function(CYCastJSObject(context
, value
));
2091 JSValueRef arguments
[3] = { exports
, JSObjectMakeFunctionWithCallback(context
, CYJSString("require"), &require
), module };
2092 CYCallAsFunction(context
, function
, NULL
, 3, arguments
);
2095 return CYGetProperty(context
, module, property
);
2098 static bool CYRunScript(JSGlobalContextRef context
, const char *path
) {
2100 CYUTF8String
code(CYPoolFileUTF8String(pool
, path
));
2101 if (code
.data
== NULL
)
2104 CYStream
stream(code
.data
, code
.data
+ code
.size
);
2105 code
= CYPoolCode(pool
, stream
);
2106 _jsccall(JSEvaluateScript
, context
, CYJSString(code
), NULL
, NULL
, 0);
2110 extern "C" void CYDestroyWeak(JSWeakObjectMapRef weak
, void *data
) {
2113 extern "C" void CYSetupContext(JSGlobalContextRef context
) {
2114 CYInitializeDynamic();
2116 JSObjectRef
global(CYGetGlobalObject(context
));
2118 JSObjectRef
cy(JSObjectMake(context
, Context_
, new Context(context
)));
2119 CYSetProperty(context
, global
, cy_s
, cy
, kJSPropertyAttributeDontEnum
);
2121 /* Cache Globals {{{ */
2122 JSObjectRef
Array(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Array"))));
2123 CYSetProperty(context
, cy
, CYJSString("Array"), Array
);
2125 JSObjectRef
Array_prototype(CYCastJSObject(context
, CYGetProperty(context
, Array
, prototype_s
)));
2126 CYSetProperty(context
, cy
, CYJSString("Array_prototype"), Array_prototype
);
2128 JSObjectRef
Boolean(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Boolean"))));
2129 CYSetProperty(context
, cy
, CYJSString("Boolean"), Boolean
);
2131 JSObjectRef
Boolean_prototype(CYCastJSObject(context
, CYGetProperty(context
, Boolean
, prototype_s
)));
2132 CYSetProperty(context
, cy
, CYJSString("Boolean_prototype"), Boolean_prototype
);
2134 JSObjectRef
Error(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Error"))));
2135 CYSetProperty(context
, cy
, CYJSString("Error"), Error
);
2137 JSObjectRef
Function(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Function"))));
2138 CYSetProperty(context
, cy
, CYJSString("Function"), Function
);
2140 JSObjectRef
Function_prototype(CYCastJSObject(context
, CYGetProperty(context
, Function
, prototype_s
)));
2141 CYSetProperty(context
, cy
, CYJSString("Function_prototype"), Function_prototype
);
2143 JSObjectRef
Number(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Number"))));
2144 CYSetProperty(context
, cy
, CYJSString("Number"), Number
);
2146 JSObjectRef
Number_prototype(CYCastJSObject(context
, CYGetProperty(context
, Number
, prototype_s
)));
2147 CYSetProperty(context
, cy
, CYJSString("Number_prototype"), Number_prototype
);
2149 JSObjectRef
Object(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Object"))));
2150 CYSetProperty(context
, cy
, CYJSString("Object"), Object
);
2152 JSObjectRef
Object_prototype(CYCastJSObject(context
, CYGetProperty(context
, Object
, prototype_s
)));
2153 CYSetProperty(context
, cy
, CYJSString("Object_prototype"), Object_prototype
);
2155 JSObjectRef
String(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("String"))));
2156 CYSetProperty(context
, cy
, CYJSString("String"), String
);
2158 JSObjectRef
String_prototype(CYCastJSObject(context
, CYGetProperty(context
, String
, prototype_s
)));
2159 CYSetProperty(context
, cy
, CYJSString("String_prototype"), String_prototype
);
2161 JSObjectRef
SyntaxError(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("SyntaxError"))));
2162 CYSetProperty(context
, cy
, CYJSString("SyntaxError"), SyntaxError
);
2165 CYSetProperty(context
, Array_prototype
, toCYON_s
, &Array_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
);
2166 CYSetProperty(context
, String_prototype
, toCYON_s
, &String_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
);
2168 JSObjectRef
cycript(JSObjectMake(context
, NULL
, NULL
));
2169 CYSetProperty(context
, global
, CYJSString("Cycript"), cycript
);
2170 CYSetProperty(context
, cycript
, CYJSString("compile"), &Cycript_compile_callAsFunction
);
2171 CYSetProperty(context
, cycript
, CYJSString("gc"), &Cycript_gc_callAsFunction
);
2173 JSObjectRef
CString(JSObjectMakeConstructor(context
, CString_
, &CString_new
));
2174 CYSetPrototype(context
, CYCastJSObject(context
, CYGetProperty(context
, CString
, prototype_s
)), String_prototype
);
2175 CYSetProperty(context
, cycript
, CYJSString("CString"), CString
);
2177 JSObjectRef
Functor(JSObjectMakeConstructor(context
, Functor_
, &Functor_new
));
2178 CYSetPrototype(context
, CYCastJSObject(context
, CYGetProperty(context
, Functor
, prototype_s
)), Function_prototype
);
2179 CYSetProperty(context
, cycript
, CYJSString("Functor"), Functor
);
2181 CYSetProperty(context
, cycript
, CYJSString("Pointer"), JSObjectMakeConstructor(context
, Pointer_
, &Pointer_new
));
2182 CYSetProperty(context
, cycript
, CYJSString("Type"), JSObjectMakeConstructor(context
, Type_privateData::Class_
, &Type_new
));
2184 JSObjectRef
modules(JSObjectMake(context
, NULL
, NULL
));
2185 CYSetProperty(context
, cy
, CYJSString("modules"), modules
);
2187 JSObjectRef
all(JSObjectMake(context
, All_
, NULL
));
2188 CYSetProperty(context
, cycript
, CYJSString("all"), all
);
2190 JSObjectRef
alls(_jsccall(JSObjectCallAsConstructor
, context
, Array
, 0, NULL
));
2191 CYSetProperty(context
, cycript
, CYJSString("alls"), alls
);
2194 JSObjectRef
last(NULL
), curr(global
);
2196 goto next
; for (JSValueRef next
;;) {
2197 if (JSValueIsNull(context
, next
))
2200 curr
= CYCastJSObject(context
, next
);
2202 next
= JSObjectGetPrototype(context
, curr
);
2205 CYSetPrototype(context
, last
, all
);
2208 JSObjectRef
System(JSObjectMake(context
, NULL
, NULL
));
2209 CYSetProperty(context
, cy
, CYJSString("System"), System
);
2211 CYSetProperty(context
, all
, CYJSString("require"), &require
, kJSPropertyAttributeDontEnum
);
2213 CYSetProperty(context
, global
, CYJSString("system"), System
);
2214 CYSetProperty(context
, System
, CYJSString("args"), CYJSNull(context
));
2215 //CYSetProperty(context, System, CYJSString("global"), global);
2216 CYSetProperty(context
, System
, CYJSString("print"), &System_print
);
2219 if (&JSWeakObjectMapCreate
!= NULL
) {
2220 JSWeakObjectMapRef
weak(JSWeakObjectMapCreate(context
, NULL
, &CYDestroyWeak
));
2221 CYSetProperty(context
, cy
, weak_s
, CYCastJSValue(context
, reinterpret_cast<uintptr_t>(weak
)));
2225 if (CYBridgeEntry
*entry
= CYBridgeHash("1dlerror", 8))
2226 entry
->cache_
= new cy::Functor(entry
->value_
, reinterpret_cast<void (*)()>(&dlerror
));
2228 CYRunScript(context
, "libcycript.cy");
2230 for (CYHook
*hook
: GetHooks())
2231 if (hook
->SetupContext
!= NULL
)
2232 (*hook
->SetupContext
)(context
);
2234 CYArrayPush(context
, alls
, cycript
);
2237 static JSGlobalContextRef context_
;
2239 _visible JSGlobalContextRef
CYGetJSContext() {
2240 CYInitializeDynamic();
2242 if (context_
== NULL
) {
2243 context_
= JSGlobalContextCreate(Global_
);
2244 CYSetupContext(context_
);
2250 _visible
void CYDestroyContext() {
2251 if (context_
== NULL
)
2253 JSGlobalContextRelease(context_
);