1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #include "Internal.hpp"
27 #include "cycript.hpp"
29 #include "sig/parse.hpp"
30 #include "sig/ffi_type.hpp"
32 #include "Pooling.hpp"
33 #include "Execute.hpp"
38 #include <ext/stdio_filebuf.h>
46 #include "Cycript.tab.hh"
49 #include "JavaScript.hpp"
52 struct CYHooks
*hooks_
;
54 /* JavaScript Properties {{{ */
55 JSValueRef
CYGetProperty(JSContextRef context
, JSObjectRef object
, size_t index
) {
56 JSValueRef
exception(NULL
);
57 JSValueRef
value(JSObjectGetPropertyAtIndex(context
, object
, index
, &exception
));
58 CYThrow(context
, exception
);
62 JSValueRef
CYGetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
) {
63 JSValueRef
exception(NULL
);
64 JSValueRef
value(JSObjectGetProperty(context
, object
, name
, &exception
));
65 CYThrow(context
, exception
);
69 void CYSetProperty(JSContextRef context
, JSObjectRef object
, size_t index
, JSValueRef value
) {
70 JSValueRef
exception(NULL
);
71 JSObjectSetPropertyAtIndex(context
, object
, index
, value
, &exception
);
72 CYThrow(context
, exception
);
75 void CYSetProperty(JSContextRef context
, JSObjectRef object
, JSStringRef name
, JSValueRef value
, JSPropertyAttributes attributes
) {
76 JSValueRef
exception(NULL
);
77 JSObjectSetProperty(context
, object
, name
, value
, attributes
, &exception
);
78 CYThrow(context
, exception
);
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 /* JavaScript Strings {{{ */
86 JSStringRef
CYCopyJSString(const char *value
) {
87 return value
== NULL
? NULL
: JSStringCreateWithUTF8CString(value
);
90 JSStringRef
CYCopyJSString(JSStringRef value
) {
91 return value
== NULL
? NULL
: JSStringRetain(value
);
94 JSStringRef
CYCopyJSString(CYUTF8String value
) {
95 // XXX: this is very wrong; it needs to convert to UTF16 and then create from there
96 return CYCopyJSString(value
.data
);
99 JSStringRef
CYCopyJSString(JSContextRef context
, JSValueRef value
) {
100 if (JSValueIsNull(context
, value
))
102 JSValueRef
exception(NULL
);
103 JSStringRef
string(JSValueToStringCopy(context
, value
, &exception
));
104 CYThrow(context
, exception
);
108 static CYUTF16String
CYCastUTF16String(JSStringRef value
) {
109 return CYUTF16String(JSStringGetCharactersPtr(value
), JSStringGetLength(value
));
112 CYUTF8String
CYPoolUTF8String(apr_pool_t
*pool
, JSContextRef context
, JSStringRef value
) {
113 return CYPoolUTF8String(pool
, CYCastUTF16String(value
));
116 const char *CYPoolCString(apr_pool_t
*pool
, JSContextRef context
, JSStringRef value
) {
117 CYUTF8String
utf8(CYPoolUTF8String(pool
, context
, value
));
118 _assert(memchr(utf8
.data
, '\0', utf8
.size
) == NULL
);
122 const char *CYPoolCString(apr_pool_t
*pool
, JSContextRef context
, JSValueRef value
) {
123 return JSValueIsNull(context
, value
) ? NULL
: CYPoolCString(pool
, context
, CYJSString(context
, value
));
126 /* Index Offsets {{{ */
127 size_t CYGetIndex(apr_pool_t
*pool
, JSContextRef context
, JSStringRef value
) {
128 return CYGetIndex(CYPoolUTF8String(pool
, context
, value
));
132 static JSClassRef All_
;
133 static JSClassRef Context_
;
135 static JSClassRef Global_
;
136 static JSClassRef Pointer_
;
137 static JSClassRef Struct_
;
141 JSStringRef length_s
;
142 JSStringRef message_s
;
145 JSStringRef prototype_s
;
147 JSStringRef splice_s
;
148 JSStringRef toCYON_s
;
149 JSStringRef toJSON_s
;
150 JSStringRef toPointer_s
;
151 JSStringRef toString_s
;
153 static JSStringRef Result_
;
155 void CYFinalize(JSObjectRef object
) {
156 CYData
*internal(reinterpret_cast<CYData
*>(JSObjectGetPrivate(object
)));
157 if (--internal
->count_
== 0)
161 void Structor_(apr_pool_t
*pool
, sig::Type
*&type
) {
163 type
->primitive
== sig::pointer_P
&&
164 type
->data
.data
.type
!= NULL
&&
165 type
->data
.data
.type
->primitive
== sig::struct_P
&&
166 type
->data
.data
.type
->name
!= NULL
&&
167 strcmp(type
->data
.data
.type
->name
, "_objc_class") == 0
169 type
->primitive
= sig::typename_P
;
170 type
->data
.data
.type
= NULL
;
174 if (type
->primitive
!= sig::struct_P
|| type
->name
== NULL
)
177 size_t length(strlen(type
->name
));
178 char keyed
[length
+ 2];
179 memcpy(keyed
+ 1, type
->name
, length
+ 1);
181 static const char *modes
= "34";
182 for (size_t i(0); i
!= 2; ++i
) {
186 if (CYBridgeEntry
*entry
= CYBridgeHash(keyed
, length
+ 1))
189 sig::Parse(pool
, &type
->data
.signature
, entry
->value_
, &Structor_
);
193 sig::Signature signature
;
194 sig::Parse(pool
, &signature
, entry
->value_
, &Structor_
);
195 type
= signature
.elements
[0].type
;
201 JSClassRef
Type_privateData::Class_
;
206 JSGlobalContextRef context_
;
208 Context(JSGlobalContextRef context
) :
217 Type_privateData
*type_
;
220 Pointer(void *value
, JSContextRef context
, JSObjectRef owner
, size_t length
, sig::Type
*type
) :
221 CYOwned(value
, context
, owner
),
222 type_(new(pool_
) Type_privateData(type
)),
228 struct Struct_privateData
:
231 Type_privateData
*type_
;
233 Struct_privateData(JSContextRef context
, JSObjectRef owner
) :
234 CYOwned(NULL
, context
, owner
)
239 typedef std::map
<const char *, Type_privateData
*, CYCStringLess
> TypeMap
;
240 static TypeMap Types_
;
242 JSObjectRef
CYMakeStruct(JSContextRef context
, void *data
, sig::Type
*type
, ffi_type
*ffi
, JSObjectRef owner
) {
243 Struct_privateData
*internal(new Struct_privateData(context
, owner
));
244 apr_pool_t
*pool(internal
->pool_
);
245 Type_privateData
*typical(new(pool
) Type_privateData(type
, ffi
));
246 internal
->type_
= typical
;
249 internal
->value_
= data
;
251 size_t size(typical
->GetFFI()->size
);
252 void *copy(apr_palloc(internal
->pool_
, size
));
253 memcpy(copy
, data
, size
);
254 internal
->value_
= copy
;
257 return JSObjectMake(context
, Struct_
, internal
);
260 static void *CYCastSymbol(const char *name
) {
261 return dlsym(RTLD_DEFAULT
, name
);
264 JSValueRef
CYCastJSValue(JSContextRef context
, bool value
) {
265 return JSValueMakeBoolean(context
, value
);
268 JSValueRef
CYCastJSValue(JSContextRef context
, double value
) {
269 return JSValueMakeNumber(context
, value
);
272 #define CYCastJSValue_(Type_) \
273 JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \
274 return JSValueMakeNumber(context, static_cast<double>(value)); \
278 CYCastJSValue_(unsigned int)
279 CYCastJSValue_(long int)
280 CYCastJSValue_(long unsigned int)
281 CYCastJSValue_(long long int)
282 CYCastJSValue_(long long unsigned int)
284 JSValueRef
CYJSUndefined(JSContextRef context
) {
285 return JSValueMakeUndefined(context
);
288 double CYCastDouble(JSContextRef context
, JSValueRef value
) {
289 JSValueRef
exception(NULL
);
290 double number(JSValueToNumber(context
, value
, &exception
));
291 CYThrow(context
, exception
);
295 bool CYCastBool(JSContextRef context
, JSValueRef value
) {
296 return JSValueToBoolean(context
, value
);
299 JSValueRef
CYJSNull(JSContextRef context
) {
300 return JSValueMakeNull(context
);
303 JSValueRef
CYCastJSValue(JSContextRef context
, JSStringRef value
) {
304 return value
== NULL
? CYJSNull(context
) : JSValueMakeString(context
, value
);
307 JSValueRef
CYCastJSValue(JSContextRef context
, const char *value
) {
308 return CYCastJSValue(context
, CYJSString(value
));
311 JSObjectRef
CYCastJSObject(JSContextRef context
, JSValueRef value
) {
312 JSValueRef
exception(NULL
);
313 JSObjectRef
object(JSValueToObject(context
, value
, &exception
));
314 CYThrow(context
, exception
);
318 JSValueRef
CYCallAsFunction(JSContextRef context
, JSObjectRef function
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[]) {
319 JSValueRef
exception(NULL
);
320 JSValueRef
value(JSObjectCallAsFunction(context
, function
, _this
, count
, arguments
, &exception
));
321 CYThrow(context
, exception
);
325 bool CYIsCallable(JSContextRef context
, JSValueRef value
) {
326 return value
!= NULL
&& JSValueIsObject(context
, value
) && JSObjectIsFunction(context
, (JSObjectRef
) value
);
329 static JSValueRef
System_print(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
334 printf("%s\n", CYPoolCString(pool
, context
, arguments
[0]));
337 return CYJSUndefined(context
);
340 static size_t Nonce_(0);
342 static JSValueRef $
cyq(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
344 const char *name(apr_psprintf(pool
, "%s%"APR_SIZE_T_FMT
"", CYPoolCString(pool
, context
, arguments
[0]), Nonce_
++));
345 return CYCastJSValue(context
, name
);
348 static JSValueRef
Cycript_gc_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
349 JSGarbageCollect(context
);
350 return CYJSUndefined(context
);
353 const char *CYPoolCCYON(apr_pool_t
*pool
, JSContextRef context
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
354 switch (JSType type
= JSValueGetType(context
, value
)) {
355 case kJSTypeUndefined
:
360 return CYCastBool(context
, value
) ? "true" : "false";
362 case kJSTypeNumber
: {
363 std::ostringstream str
;
364 CYNumerify(str
, CYCastDouble(context
, value
));
365 std::string
value(str
.str());
366 return apr_pstrmemdup(pool
, value
.c_str(), value
.size());
369 case kJSTypeString
: {
370 std::ostringstream str
;
371 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, value
)));
372 CYStringify(str
, string
.data
, string
.size
);
373 std::string
value(str
.str());
374 return apr_pstrmemdup(pool
, value
.c_str(), value
.size());
378 return CYPoolCCYON(pool
, context
, (JSObjectRef
) value
);
380 throw CYJSError(context
, "JSValueGetType() == 0x%x", type
);
384 const char *CYPoolCCYON(apr_pool_t
*pool
, JSContextRef context
, JSValueRef value
) {
385 JSValueRef
exception(NULL
);
386 const char *cyon(CYPoolCCYON(pool
, context
, value
, &exception
));
387 CYThrow(context
, exception
);
391 const char *CYPoolCCYON(apr_pool_t
*pool
, JSContextRef context
, JSObjectRef object
) {
392 JSValueRef
toCYON(CYGetProperty(context
, object
, toCYON_s
));
393 if (CYIsCallable(context
, toCYON
)) {
394 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toCYON
, object
, 0, NULL
));
395 _assert(value
!= NULL
);
396 return CYPoolCString(pool
, context
, value
);
399 JSValueRef
toJSON(CYGetProperty(context
, object
, toJSON_s
));
400 if (CYIsCallable(context
, toJSON
)) {
401 JSValueRef arguments
[1] = {CYCastJSValue(context
, CYJSString(""))};
402 JSValueRef
exception(NULL
);
403 const char *cyon(CYPoolCCYON(pool
, context
, CYCallAsFunction(context
, (JSObjectRef
) toJSON
, object
, 1, arguments
), &exception
));
404 CYThrow(context
, exception
);
408 if (JSObjectIsFunction(context
, object
)) {
409 JSValueRef
toString(CYGetProperty(context
, object
, toString_s
));
410 if (CYIsCallable(context
, toString
)) {
411 JSValueRef arguments
[1] = {CYCastJSValue(context
, CYJSString(""))};
412 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toString
, object
, 1, arguments
));
413 _assert(value
!= NULL
);
414 return CYPoolCString(pool
, context
, value
);
418 std::ostringstream str
;
422 // XXX: this is, sadly, going to leak
423 JSPropertyNameArrayRef
names(JSObjectCopyPropertyNames(context
, object
));
427 for (size_t index(0), count(JSPropertyNameArrayGetCount(names
)); index
!= count
; ++index
) {
428 JSStringRef
name(JSPropertyNameArrayGetNameAtIndex(names
, index
));
429 JSValueRef
value(CYGetProperty(context
, object
, name
));
436 CYUTF8String
string(CYPoolUTF8String(pool
, context
, name
));
440 CYStringify(str
, string
.data
, string
.size
);
442 str
<< ':' << CYPoolCCYON(pool
, context
, value
);
447 JSPropertyNameArrayRelease(names
);
449 std::string
string(str
.str());
450 return apr_pstrmemdup(pool
, string
.c_str(), string
.size());
453 static JSValueRef
Array_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
455 std::ostringstream str
;
459 JSValueRef
length(CYGetProperty(context
, _this
, length_s
));
462 for (size_t index(0), count(CYCastDouble(context
, length
)); index
!= count
; ++index
) {
463 JSValueRef
value(CYGetProperty(context
, _this
, index
));
470 if (!JSValueIsUndefined(context
, value
))
471 str
<< CYPoolCCYON(pool
, context
, value
);
480 std::string
value(str
.str());
481 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
484 static JSValueRef
String_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
486 std::ostringstream str
;
488 CYUTF8String
string(CYPoolUTF8String(pool
, context
, CYJSString(context
, _this
)));
489 CYStringify(str
, string
.data
, string
.size
);
491 std::string
value(str
.str());
492 return CYCastJSValue(context
, CYJSString(CYUTF8String(value
.c_str(), value
.size())));
495 JSObjectRef
CYMakePointer(JSContextRef context
, void *pointer
, size_t length
, sig::Type
*type
, ffi_type
*ffi
, JSObjectRef owner
) {
496 Pointer
*internal(new Pointer(pointer
, context
, owner
, length
, type
));
497 return JSObjectMake(context
, Pointer_
, internal
);
500 static JSObjectRef
CYMakeFunctor(JSContextRef context
, void (*function
)(), const char *type
) {
501 return JSObjectMake(context
, Functor_
, new cy::Functor(type
, function
));
504 static JSObjectRef
CYMakeFunctor(JSContextRef context
, const char *symbol
, const char *type
, void **cache
) {
505 cy::Functor
*internal
;
507 internal
= reinterpret_cast<cy::Functor
*>(*cache
);
509 void (*function
)()(reinterpret_cast<void (*)()>(CYCastSymbol(symbol
)));
510 if (function
== NULL
)
513 internal
= new cy::Functor(type
, function
);
518 return JSObjectMake(context
, Functor_
, internal
);
521 static bool CYGetOffset(apr_pool_t
*pool
, JSContextRef context
, JSStringRef value
, ssize_t
&index
) {
522 return CYGetOffset(CYPoolCString(pool
, context
, value
), index
);
525 void *CYCastPointer_(JSContextRef context
, JSValueRef value
) {
526 switch (JSValueGetType(context
, value
)) {
529 case kJSTypeObject
: {
530 JSObjectRef
object((JSObjectRef
) value
);
531 if (JSValueIsObjectOfClass(context
, value
, Pointer_
)) {
532 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
533 return internal
->value_
;
535 JSValueRef
toPointer(CYGetProperty(context
, object
, toPointer_s
));
536 if (CYIsCallable(context
, toPointer
)) {
537 JSValueRef
value(CYCallAsFunction(context
, (JSObjectRef
) toPointer
, object
, 0, NULL
));
538 _assert(value
!= NULL
);
539 return CYCastPointer_(context
, value
);
542 double number(CYCastDouble(context
, value
));
543 if (std::isnan(number
))
544 throw CYJSError(context
, "cannot convert value to pointer");
545 return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number
)));
549 void CYPoolFFI(apr_pool_t
*pool
, JSContextRef context
, sig::Type
*type
, ffi_type
*ffi
, void *data
, JSValueRef value
) {
550 switch (type
->primitive
) {
552 *reinterpret_cast<bool *>(data
) = JSValueToBoolean(context
, value
);
555 #define CYPoolFFI_(primitive, native) \
556 case sig::primitive ## _P: \
557 *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \
560 CYPoolFFI_(uchar
, unsigned char)
561 CYPoolFFI_(char, char)
562 CYPoolFFI_(ushort
, unsigned short)
563 CYPoolFFI_(short, short)
564 CYPoolFFI_(ulong
, unsigned long)
565 CYPoolFFI_(long, long)
566 CYPoolFFI_(uint
, unsigned int)
568 CYPoolFFI_(ulonglong
, unsigned long long)
569 CYPoolFFI_(longlong
, long long)
570 CYPoolFFI_(float, float)
571 CYPoolFFI_(double, double)
574 uint8_t *base(reinterpret_cast<uint8_t *>(data
));
575 JSObjectRef
aggregate(JSValueIsObject(context
, value
) ? (JSObjectRef
) value
: NULL
);
576 for (size_t index(0); index
!= type
->data
.data
.size
; ++index
) {
577 ffi_type
*field(ffi
->elements
[index
]);
580 if (aggregate
== NULL
)
583 rhs
= CYGetProperty(context
, aggregate
, index
);
584 if (JSValueIsUndefined(context
, rhs
))
585 throw CYJSError(context
, "unable to extract array value");
588 CYPoolFFI(pool
, context
, type
->data
.data
.type
, field
, base
, rhs
);
595 *reinterpret_cast<void **>(data
) = CYCastPointer
<void *>(context
, value
);
599 *reinterpret_cast<const char **>(data
) = CYPoolCString(pool
, context
, value
);
602 case sig::struct_P
: {
603 uint8_t *base(reinterpret_cast<uint8_t *>(data
));
604 JSObjectRef
aggregate(JSValueIsObject(context
, value
) ? (JSObjectRef
) value
: NULL
);
605 for (size_t index(0); index
!= type
->data
.signature
.count
; ++index
) {
606 sig::Element
*element(&type
->data
.signature
.elements
[index
]);
607 ffi_type
*field(ffi
->elements
[index
]);
610 if (aggregate
== NULL
)
613 rhs
= CYGetProperty(context
, aggregate
, index
);
614 if (JSValueIsUndefined(context
, rhs
)) {
615 if (element
->name
!= NULL
)
616 rhs
= CYGetProperty(context
, aggregate
, CYJSString(element
->name
));
619 if (JSValueIsUndefined(context
, rhs
)) undefined
:
620 throw CYJSError(context
, "unable to extract structure value");
624 CYPoolFFI(pool
, context
, element
->type
, field
, base
, rhs
);
634 if (hooks_
!= NULL
&& hooks_
->PoolFFI
!= NULL
)
635 if ((*hooks_
->PoolFFI
)(pool
, context
, type
, ffi
, data
, value
))
638 CYThrow("unimplemented signature code: '%c''\n", type
->primitive
);
642 JSValueRef
CYFromFFI(JSContextRef context
, sig::Type
*type
, ffi_type
*ffi
, void *data
, bool initialize
, JSObjectRef owner
) {
643 switch (type
->primitive
) {
645 return CYCastJSValue(context
, *reinterpret_cast<bool *>(data
));
647 #define CYFromFFI_(primitive, native) \
648 case sig::primitive ## _P: \
649 return CYCastJSValue(context, *reinterpret_cast<native *>(data)); \
651 CYFromFFI_(uchar, unsigned char)
652 CYFromFFI_(char, char)
653 CYFromFFI_(ushort
, unsigned short)
654 CYFromFFI_(short, short)
655 CYFromFFI_(ulong
, unsigned long)
656 CYFromFFI_(long, long)
657 CYFromFFI_(uint
, unsigned int)
659 CYFromFFI_(ulonglong
, unsigned long long)
660 CYFromFFI_(longlong
, long long)
661 CYFromFFI_(float, float)
662 CYFromFFI_(double, double)
665 if (void *pointer
= data
)
666 return CYMakePointer(context
, pointer
, type
->data
.data
.size
, type
->data
.data
.type
, NULL
, owner
);
670 if (void *pointer
= *reinterpret_cast<void **>(data
))
671 return CYMakePointer(context
, pointer
, _not(size_t), type
->data
.data
.type
, NULL
, owner
);
675 if (char *utf8
= *reinterpret_cast<char **>(data
))
676 return CYCastJSValue(context
, utf8
);
680 return CYMakeStruct(context
, data
, type
, ffi
, owner
);
682 return CYJSUndefined(context
);
685 return CYJSNull(context
);
687 if (hooks_
!= NULL
&& hooks_
->FromFFI
!= NULL
)
688 if (JSValueRef value
= (*hooks_
->FromFFI
)(context
, type
, ffi
, data
, initialize
, owner
))
691 CYThrow("unimplemented signature code: '%c''\n", type
->primitive
);
695 void CYExecuteClosure(ffi_cif
*cif
, void *result
, void **arguments
, void *arg
, JSValueRef (*adapter
)(JSContextRef
, size_t, JSValueRef
[], JSObjectRef
)) {
696 Closure_privateData
*internal(reinterpret_cast<Closure_privateData
*>(arg
));
698 JSContextRef
context(internal
->context_
);
700 size_t count(internal
->cif_
.nargs
);
701 JSValueRef values
[count
];
703 for (size_t index(0); index
!= count
; ++index
)
704 values
[index
] = CYFromFFI(context
, internal
->signature_
.elements
[1 + index
].type
, internal
->cif_
.arg_types
[index
], arguments
[index
]);
706 JSValueRef
value(adapter(context
, count
, values
, internal
->function_
));
707 CYPoolFFI(NULL
, context
, internal
->signature_
.elements
[0].type
, internal
->cif_
.rtype
, result
, value
);
710 static JSValueRef
FunctionAdapter_(JSContextRef context
, size_t count
, JSValueRef values
[], JSObjectRef function
) {
711 return CYCallAsFunction(context
, function
, NULL
, count
, values
);
714 static void FunctionClosure_(ffi_cif
*cif
, void *result
, void **arguments
, void *arg
) {
715 CYExecuteClosure(cif
, result
, arguments
, arg
, &FunctionAdapter_
);
718 Closure_privateData
*CYMakeFunctor_(JSContextRef context
, JSObjectRef function
, const char *type
, void (*callback
)(ffi_cif
*, void *, void **, void *)) {
719 // XXX: in case of exceptions this will leak
720 // XXX: in point of fact, this may /need/ to leak :(
721 Closure_privateData
*internal(new Closure_privateData(context
, function
, type
));
723 #if defined(__APPLE__) && defined(__arm__)
725 ffi_closure
*writable(reinterpret_cast<ffi_closure
*>(ffi_closure_alloc(sizeof(ffi_closure
), &executable
)));
727 ffi_status
status(ffi_prep_closure_loc(writable
, &internal
->cif_
, callback
, internal
, executable
));
728 _assert(status
== FFI_OK
);
730 internal
->value_
= executable
;
732 ffi_closure
*closure((ffi_closure
*) _syscall(mmap(
733 NULL
, sizeof(ffi_closure
),
734 PROT_READ
| PROT_WRITE
, MAP_ANON
| MAP_PRIVATE
,
738 ffi_status
status(ffi_prep_closure(closure
, &internal
->cif_
, callback
, internal
));
739 _assert(status
== FFI_OK
);
741 _syscall(mprotect(closure
, sizeof(*closure
), PROT_READ
| PROT_EXEC
));
743 internal
->value_
= closure
;
749 static JSObjectRef
CYMakeFunctor(JSContextRef context
, JSObjectRef function
, const char *type
) {
750 Closure_privateData
*internal(CYMakeFunctor_(context
, function
, type
, &FunctionClosure_
));
751 JSObjectRef
object(JSObjectMake(context
, Functor_
, internal
));
752 // XXX: see above notes about needing to leak
753 JSValueProtect(CYGetJSContext(context
), object
);
757 JSObjectRef
CYGetCachedObject(JSContextRef context
, JSStringRef name
) {
758 return CYCastJSObject(context
, CYGetProperty(context
, CYCastJSObject(context
, CYGetProperty(context
, CYGetGlobalObject(context
), cy_s
)), name
));
761 static JSObjectRef
CYMakeFunctor(JSContextRef context
, JSValueRef value
, const char *type
) {
762 JSObjectRef
Function(CYGetCachedObject(context
, CYJSString("Function")));
764 JSValueRef
exception(NULL
);
765 bool function(JSValueIsInstanceOfConstructor(context
, value
, Function
, &exception
));
766 CYThrow(context
, exception
);
769 JSObjectRef
function(CYCastJSObject(context
, value
));
770 return CYMakeFunctor(context
, function
, type
);
772 void (*function
)()(CYCastPointer
<void (*)()>(context
, value
));
773 return CYMakeFunctor(context
, function
, type
);
777 static bool Index_(apr_pool_t
*pool
, JSContextRef context
, Struct_privateData
*internal
, JSStringRef property
, ssize_t
&index
, uint8_t *&base
) {
778 Type_privateData
*typical(internal
->type_
);
779 sig::Type
*type(typical
->type_
);
783 const char *name(CYPoolCString(pool
, context
, property
));
784 size_t length(strlen(name
));
785 double number(CYCastDouble(name
, length
));
787 size_t count(type
->data
.signature
.count
);
789 if (std::isnan(number
)) {
790 if (property
== NULL
)
793 sig::Element
*elements(type
->data
.signature
.elements
);
795 for (size_t local(0); local
!= count
; ++local
) {
796 sig::Element
*element(&elements
[local
]);
797 if (element
->name
!= NULL
&& strcmp(name
, element
->name
) == 0) {
805 index
= static_cast<ssize_t
>(number
);
806 if (index
!= number
|| index
< 0 || static_cast<size_t>(index
) >= count
)
811 ffi_type
**elements(typical
->GetFFI()->elements
);
813 base
= reinterpret_cast<uint8_t *>(internal
->value_
);
814 for (ssize_t
local(0); local
!= index
; ++local
)
815 base
+= elements
[local
]->size
;
820 static JSValueRef
Pointer_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
822 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
824 if (JSStringIsEqual(property
, length_s
))
825 return internal
->length_
== _not(size_t) ? CYJSUndefined(context
) : CYCastJSValue(context
, internal
->length_
);
827 Type_privateData
*typical(internal
->type_
);
829 if (typical
->type_
== NULL
)
833 if (JSStringIsEqualToUTF8CString(property
, "$cyi"))
835 else if (!CYGetOffset(pool
, context
, property
, offset
))
838 ffi_type
*ffi(typical
->GetFFI());
840 uint8_t *base(reinterpret_cast<uint8_t *>(internal
->value_
));
841 base
+= ffi
->size
* offset
;
843 JSObjectRef
owner(internal
->GetOwner() ?: object
);
844 return CYFromFFI(context
, typical
->type_
, ffi
, base
, false, owner
);
847 static bool Pointer_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
849 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(object
)));
850 Type_privateData
*typical(internal
->type_
);
852 if (typical
->type_
== NULL
)
856 if (JSStringIsEqualToUTF8CString(property
, "$cyi"))
858 else if (!CYGetOffset(pool
, context
, property
, offset
))
861 ffi_type
*ffi(typical
->GetFFI());
863 uint8_t *base(reinterpret_cast<uint8_t *>(internal
->value_
));
864 base
+= ffi
->size
* offset
;
866 CYPoolFFI(NULL
, context
, typical
->type_
, ffi
, base
, value
);
870 static JSValueRef Struct_callAsFunction_$
cya(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
871 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(_this
)));
872 Type_privateData
*typical(internal
->type_
);
873 return CYMakePointer(context
, internal
->value_
, _not(size_t), typical
->type_
, typical
->ffi_
, _this
);
876 static JSValueRef
Struct_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
878 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
879 Type_privateData
*typical(internal
->type_
);
884 if (!Index_(pool
, context
, internal
, property
, index
, base
))
887 JSObjectRef
owner(internal
->GetOwner() ?: object
);
889 return CYFromFFI(context
, typical
->type_
->data
.signature
.elements
[index
].type
, typical
->GetFFI()->elements
[index
], base
, false, owner
);
892 static bool Struct_setProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef value
, JSValueRef
*exception
) { CYTry
{
894 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
895 Type_privateData
*typical(internal
->type_
);
900 if (!Index_(pool
, context
, internal
, property
, index
, base
))
903 CYPoolFFI(NULL
, context
, typical
->type_
->data
.signature
.elements
[index
].type
, typical
->GetFFI()->elements
[index
], base
, value
);
907 static void Struct_getPropertyNames(JSContextRef context
, JSObjectRef object
, JSPropertyNameAccumulatorRef names
) {
908 Struct_privateData
*internal(reinterpret_cast<Struct_privateData
*>(JSObjectGetPrivate(object
)));
909 Type_privateData
*typical(internal
->type_
);
910 sig::Type
*type(typical
->type_
);
915 size_t count(type
->data
.signature
.count
);
916 sig::Element
*elements(type
->data
.signature
.elements
);
920 for (size_t index(0); index
!= count
; ++index
) {
922 name
= elements
[index
].name
;
925 sprintf(number
, "%zu", index
);
929 JSPropertyNameAccumulatorAddName(names
, CYJSString(name
));
933 JSValueRef
CYCallFunction(apr_pool_t
*pool
, JSContextRef context
, size_t setups
, void *setup
[], size_t count
, const JSValueRef arguments
[], bool initialize
, JSValueRef
*exception
, sig::Signature
*signature
, ffi_cif
*cif
, void (*function
)()) { CYTry
{
934 if (setups
+ count
!= signature
->count
- 1)
935 throw CYJSError(context
, "incorrect number of arguments to ffi function");
937 size_t size(setups
+ count
);
939 memcpy(values
, setup
, sizeof(void *) * setups
);
941 for (size_t index(setups
); index
!= size
; ++index
) {
942 sig::Element
*element(&signature
->elements
[index
+ 1]);
943 ffi_type
*ffi(cif
->arg_types
[index
]);
945 values
[index
] = new(pool
) uint8_t[ffi
->size
];
946 CYPoolFFI(pool
, context
, element
->type
, ffi
, values
[index
], arguments
[index
- setups
]);
949 uint8_t value
[cif
->rtype
->size
];
951 if (hooks_
!= NULL
&& hooks_
->CallFunction
!= NULL
)
952 (*hooks_
->CallFunction
)(context
, cif
, function
, value
, values
);
954 ffi_call(cif
, function
, value
, values
);
956 return CYFromFFI(context
, signature
->elements
[0].type
, cif
->rtype
, value
, initialize
);
959 static JSValueRef
Functor_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
961 cy::Functor
*internal(reinterpret_cast<cy::Functor
*>(JSObjectGetPrivate(object
)));
962 return CYCallFunction(pool
, context
, 0, NULL
, count
, arguments
, false, exception
, &internal
->signature_
, &internal
->cif_
, internal
->GetValue());
965 JSObjectRef
CYMakeType(JSContextRef context
, const char *type
) {
966 Type_privateData
*internal(new Type_privateData(type
));
967 return JSObjectMake(context
, Type_privateData::Class_
, internal
);
970 JSObjectRef
CYMakeType(JSContextRef context
, sig::Type
*type
) {
971 Type_privateData
*internal(new Type_privateData(type
));
972 return JSObjectMake(context
, Type_privateData::Class_
, internal
);
975 static JSValueRef
All_getProperty(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) { CYTry
{
976 JSObjectRef
global(CYGetGlobalObject(context
));
977 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
978 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
980 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
981 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1)))
982 if (JSValueRef value
= CYGetProperty(context
, space
, property
))
983 if (!JSValueIsUndefined(context
, value
))
987 CYUTF8String
name(CYPoolUTF8String(pool
, context
, property
));
989 size_t length(name
.size
);
990 char keyed
[length
+ 2];
991 memcpy(keyed
+ 1, name
.data
, length
+ 1);
993 static const char *modes
= "0124";
994 for (size_t i(0); i
!= 4; ++i
) {
998 if (CYBridgeEntry
*entry
= CYBridgeHash(keyed
, length
+ 1))
1001 return JSEvaluateScript(CYGetJSContext(context
), CYJSString(entry
->value_
), NULL
, NULL
, 0, NULL
);
1004 return CYMakeFunctor(context
, name
.data
, entry
->value_
, &entry
->cache_
);
1007 if (void *symbol
= CYCastSymbol(name
.data
)) {
1008 // XXX: this is horrendously inefficient
1009 sig::Signature signature
;
1010 sig::Parse(pool
, &signature
, entry
->value_
, &Structor_
);
1012 sig::sig_ffi_cif(pool
, &sig::ObjectiveC
, &signature
, &cif
);
1013 return CYFromFFI(context
, signature
.elements
[0].type
, cif
.rtype
, symbol
);
1016 // XXX: implement case 3
1018 return CYMakeType(context
, entry
->value_
);
1025 static void All_getPropertyNames(JSContextRef context
, JSObjectRef object
, JSPropertyNameAccumulatorRef names
) {
1026 JSObjectRef
global(CYGetGlobalObject(context
));
1027 JSObjectRef
cycript(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Cycript"))));
1028 JSObjectRef
alls(CYCastJSObject(context
, CYGetProperty(context
, cycript
, CYJSString("alls"))));
1030 for (size_t i(0), count(CYArrayLength(context
, alls
)); i
!= count
; ++i
)
1031 if (JSObjectRef space
= CYCastJSObject(context
, CYArrayGet(context
, alls
, count
- i
- 1))) {
1032 JSPropertyNameArrayRef
subset(JSObjectCopyPropertyNames(context
, space
));
1033 for (size_t index(0), count(JSPropertyNameArrayGetCount(subset
)); index
!= count
; ++index
)
1034 JSPropertyNameAccumulatorAddName(names
, JSPropertyNameArrayGetNameAtIndex(subset
, index
));
1035 JSPropertyNameArrayRelease(subset
);
1039 static JSObjectRef
Pointer_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1041 throw CYJSError(context
, "incorrect number of arguments to Pointer constructor");
1045 void *value(CYCastPointer
<void *>(context
, arguments
[0]));
1046 const char *type(CYPoolCString(pool
, context
, arguments
[1]));
1048 sig::Signature signature
;
1049 sig::Parse(pool
, &signature
, type
, &Structor_
);
1051 return CYMakePointer(context
, value
, _not(size_t), signature
.elements
[0].type
, NULL
, NULL
);
1054 static JSObjectRef
Type_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1056 throw CYJSError(context
, "incorrect number of arguments to Type constructor");
1058 const char *type(CYPoolCString(pool
, context
, arguments
[0]));
1059 return CYMakeType(context
, type
);
1062 static JSValueRef
Type_callAsFunction_arrayOf(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1064 throw CYJSError(context
, "incorrect number of arguments to Type.arrayOf");
1065 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1068 size_t index(CYGetIndex(pool
, context
, CYJSString(context
, arguments
[0])));
1069 if (index
== _not(size_t))
1070 throw CYJSError(context
, "invalid array size used with Type.arrayOf");
1076 type
.primitive
= sig::array_P
;
1077 type
.data
.data
.type
= internal
->type_
;
1078 type
.data
.data
.size
= index
;
1080 return CYMakeType(context
, &type
);
1083 static JSValueRef
Type_callAsFunction_constant(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1085 throw CYJSError(context
, "incorrect number of arguments to Type.constant");
1086 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1088 sig::Type
type(*internal
->type_
);
1089 type
.flags
|= JOC_TYPE_CONST
;
1090 return CYMakeType(context
, &type
);
1093 static JSValueRef
Type_callAsFunction_pointerTo(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1095 throw CYJSError(context
, "incorrect number of arguments to Type.pointerTo");
1096 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1102 type
.primitive
= sig::pointer_P
;
1103 type
.data
.data
.type
= internal
->type_
;
1104 type
.data
.data
.size
= 0;
1106 return CYMakeType(context
, &type
);
1109 static JSValueRef
Type_callAsFunction_withName(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1111 throw CYJSError(context
, "incorrect number of arguments to Type.withName");
1112 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1115 const char *name(CYPoolCString(pool
, context
, arguments
[0]));
1117 sig::Type
type(*internal
->type_
);
1119 return CYMakeType(context
, &type
);
1122 static JSValueRef
Type_callAsFunction(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1124 throw CYJSError(context
, "incorrect number of arguments to type cast function");
1125 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1127 sig::Type
*type(internal
->type_
);
1128 ffi_type
*ffi(internal
->GetFFI());
1130 uint8_t value
[ffi
->size
];
1132 CYPoolFFI(pool
, context
, type
, ffi
, value
, arguments
[0]);
1133 return CYFromFFI(context
, type
, ffi
, value
);
1136 static JSObjectRef
Type_callAsConstructor(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1138 throw CYJSError(context
, "incorrect number of arguments to Type allocator");
1139 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1141 sig::Type
*type(internal
->type_
);
1144 if (type
->primitive
!= sig::array_P
)
1145 length
= _not(size_t);
1147 length
= type
->data
.data
.size
;
1148 type
= type
->data
.data
.type
;
1151 void *value(malloc(internal
->GetFFI()->size
));
1152 return CYMakePointer(context
, value
, length
, type
, NULL
, NULL
);
1155 static JSObjectRef
Functor_new(JSContextRef context
, JSObjectRef object
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1157 throw CYJSError(context
, "incorrect number of arguments to Functor constructor");
1159 const char *type(CYPoolCString(pool
, context
, arguments
[1]));
1160 return CYMakeFunctor(context
, arguments
[0], type
);
1163 static JSValueRef
CYValue_callAsFunction_valueOf(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1164 CYValue
*internal(reinterpret_cast<CYValue
*>(JSObjectGetPrivate(_this
)));
1165 return CYCastJSValue(context
, reinterpret_cast<uintptr_t>(internal
->value_
));
1168 static JSValueRef
CYValue_callAsFunction_toJSON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1169 return CYValue_callAsFunction_valueOf(context
, object
, _this
, count
, arguments
, exception
);
1172 static JSValueRef
CYValue_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1173 CYValue
*internal(reinterpret_cast<CYValue
*>(JSObjectGetPrivate(_this
)));
1175 sprintf(string
, "%p", internal
->value_
);
1176 return CYCastJSValue(context
, string
);
1179 static JSValueRef
Pointer_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1180 Pointer
*internal(reinterpret_cast<Pointer
*>(JSObjectGetPrivate(_this
)));
1181 if (internal
->length_
!= _not(size_t)) {
1182 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array_prototype")));
1183 JSObjectRef
toCYON(CYCastJSObject(context
, CYGetProperty(context
, Array
, toCYON_s
)));
1184 return CYCallAsFunction(context
, toCYON
, _this
, count
, arguments
);
1187 sprintf(string
, "%p", internal
->value_
);
1188 return CYCastJSValue(context
, string
);
1192 static JSValueRef
Type_getProperty_alignment(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) {
1193 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1194 return CYCastJSValue(context
, internal
->GetFFI()->alignment
);
1197 static JSValueRef
Type_getProperty_name(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) {
1198 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1199 return CYCastJSValue(context
, internal
->type_
->name
);
1202 static JSValueRef
Type_getProperty_size(JSContextRef context
, JSObjectRef object
, JSStringRef property
, JSValueRef
*exception
) {
1203 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(object
)));
1204 return CYCastJSValue(context
, internal
->GetFFI()->size
);
1207 static JSValueRef
Type_callAsFunction_toString(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1208 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1210 const char *type(sig::Unparse(pool
, internal
->type_
));
1211 return CYCastJSValue(context
, CYJSString(type
));
1214 static JSValueRef
Type_callAsFunction_toCYON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) { CYTry
{
1215 Type_privateData
*internal(reinterpret_cast<Type_privateData
*>(JSObjectGetPrivate(_this
)));
1217 const char *type(sig::Unparse(pool
, internal
->type_
));
1218 std::ostringstream str
;
1219 CYStringify(str
, type
, strlen(type
));
1220 char *cyon(apr_pstrcat(pool
, "new Type(", str
.str().c_str(), ")", NULL
));
1221 return CYCastJSValue(context
, CYJSString(cyon
));
1224 static JSValueRef
Type_callAsFunction_toJSON(JSContextRef context
, JSObjectRef object
, JSObjectRef _this
, size_t count
, const JSValueRef arguments
[], JSValueRef
*exception
) {
1225 return Type_callAsFunction_toString(context
, object
, _this
, count
, arguments
, exception
);
1228 static JSStaticFunction Pointer_staticFunctions
[4] = {
1229 {"toCYON", &Pointer_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1230 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1231 {"valueOf", &CYValue_callAsFunction_valueOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1235 static JSStaticFunction Struct_staticFunctions
[2] = {
1236 {"$cya", &Struct_callAsFunction_$cya
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1240 static JSStaticFunction Functor_staticFunctions
[4] = {
1241 {"toCYON", &CYValue_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1242 {"toJSON", &CYValue_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1243 {"valueOf", &CYValue_callAsFunction_valueOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1248 JSStaticFunction
const * const Functor::StaticFunctions
= Functor_staticFunctions
;
1251 static JSStaticValue Type_staticValues
[4] = {
1252 {"alignment", &Type_getProperty_alignment
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1253 {"name", &Type_getProperty_name
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1254 {"size", &Type_getProperty_size
, NULL
, kJSPropertyAttributeReadOnly
| kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1255 {NULL
, NULL
, NULL
, 0}
1258 static JSStaticFunction Type_staticFunctions
[8] = {
1259 {"arrayOf", &Type_callAsFunction_arrayOf
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1260 {"constant", &Type_callAsFunction_constant
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1261 {"pointerTo", &Type_callAsFunction_pointerTo
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1262 {"withName", &Type_callAsFunction_withName
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1263 {"toCYON", &Type_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1264 {"toJSON", &Type_callAsFunction_toJSON
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1265 {"toString", &Type_callAsFunction_toString
, kJSPropertyAttributeDontEnum
| kJSPropertyAttributeDontDelete
},
1269 static JSObjectRef (*JSObjectMakeArray$
)(JSContextRef
, size_t, const JSValueRef
[], JSValueRef
*);
1271 void CYSetArgs(int argc
, const char *argv
[]) {
1272 JSContextRef
context(CYGetJSContext());
1273 JSValueRef args
[argc
];
1274 for (int i(0); i
!= argc
; ++i
)
1275 args
[i
] = CYCastJSValue(context
, argv
[i
]);
1278 if (JSObjectMakeArray$
!= NULL
) {
1279 JSValueRef
exception(NULL
);
1280 array
= (*JSObjectMakeArray$
)(context
, argc
, args
, &exception
);
1281 CYThrow(context
, exception
);
1283 JSObjectRef
Array(CYGetCachedObject(context
, CYJSString("Array")));
1284 JSValueRef
value(CYCallAsFunction(context
, Array
, NULL
, argc
, args
));
1285 array
= CYCastJSObject(context
, value
);
1288 JSObjectRef
System(CYGetCachedObject(context
, CYJSString("System")));
1289 CYSetProperty(context
, System
, CYJSString("args"), array
);
1292 JSObjectRef
CYGetGlobalObject(JSContextRef context
) {
1293 return JSContextGetGlobalObject(context
);
1296 const char *CYExecute(apr_pool_t
*pool
, CYUTF8String code
) {
1297 JSContextRef
context(CYGetJSContext());
1298 JSValueRef
exception(NULL
), result
;
1301 if (hooks_
!= NULL
&& hooks_
->ExecuteStart
!= NULL
)
1302 handle
= (*hooks_
->ExecuteStart
)(context
);
1309 result
= JSEvaluateScript(context
, CYJSString(code
), NULL
, NULL
, 0, &exception
);
1310 } catch (const char *error
) {
1314 if (exception
!= NULL
) error
:
1315 return CYPoolCString(pool
, context
, CYJSString(context
, exception
));
1317 if (JSValueIsUndefined(context
, result
))
1321 json
= CYPoolCCYON(pool
, context
, result
, &exception
);
1322 } catch (const char *error
) {
1326 if (exception
!= NULL
)
1329 CYSetProperty(context
, CYGetGlobalObject(context
), Result_
, result
);
1331 if (hooks_
!= NULL
&& hooks_
->ExecuteEnd
!= NULL
)
1332 (*hooks_
->ExecuteEnd
)(context
, handle
);
1336 extern "C" void CydgetSetupContext(JSGlobalContextRef context
) {
1337 CYSetupContext(context
);
1340 static bool initialized_
= false;
1342 void CYInitializeDynamic() {
1344 initialized_
= true;
1347 CYInitializeStatic();
1349 JSObjectMakeArray$
= reinterpret_cast<JSObjectRef (*)(JSContextRef
, size_t, const JSValueRef
[], JSValueRef
*)>(dlsym(RTLD_DEFAULT
, "JSObjectMakeArray"));
1351 JSClassDefinition definition
;
1353 definition
= kJSClassDefinitionEmpty
;
1354 definition
.className
= "All";
1355 definition
.getProperty
= &All_getProperty
;
1356 definition
.getPropertyNames
= &All_getPropertyNames
;
1357 All_
= JSClassCreate(&definition
);
1359 definition
= kJSClassDefinitionEmpty
;
1360 definition
.className
= "Context";
1361 definition
.finalize
= &CYFinalize
;
1362 Context_
= JSClassCreate(&definition
);
1364 definition
= kJSClassDefinitionEmpty
;
1365 definition
.className
= "Functor";
1366 definition
.staticFunctions
= cy::Functor::StaticFunctions
;
1367 definition
.callAsFunction
= &Functor_callAsFunction
;
1368 definition
.finalize
= &CYFinalize
;
1369 Functor_
= JSClassCreate(&definition
);
1371 definition
= kJSClassDefinitionEmpty
;
1372 definition
.className
= "Pointer";
1373 definition
.staticFunctions
= Pointer_staticFunctions
;
1374 definition
.getProperty
= &Pointer_getProperty
;
1375 definition
.setProperty
= &Pointer_setProperty
;
1376 definition
.finalize
= &CYFinalize
;
1377 Pointer_
= JSClassCreate(&definition
);
1379 definition
= kJSClassDefinitionEmpty
;
1380 definition
.className
= "Struct";
1381 definition
.staticFunctions
= Struct_staticFunctions
;
1382 definition
.getProperty
= &Struct_getProperty
;
1383 definition
.setProperty
= &Struct_setProperty
;
1384 definition
.getPropertyNames
= &Struct_getPropertyNames
;
1385 definition
.finalize
= &CYFinalize
;
1386 Struct_
= JSClassCreate(&definition
);
1388 definition
= kJSClassDefinitionEmpty
;
1389 definition
.className
= "Type";
1390 definition
.staticValues
= Type_staticValues
;
1391 definition
.staticFunctions
= Type_staticFunctions
;
1392 definition
.callAsFunction
= &Type_callAsFunction
;
1393 definition
.callAsConstructor
= &Type_callAsConstructor
;
1394 definition
.finalize
= &CYFinalize
;
1395 Type_privateData::Class_
= JSClassCreate(&definition
);
1397 definition
= kJSClassDefinitionEmpty
;
1398 definition
.className
= "Global";
1399 //definition.getProperty = &Global_getProperty;
1400 Global_
= JSClassCreate(&definition
);
1402 Array_s
= JSStringCreateWithUTF8CString("Array");
1403 cy_s
= JSStringCreateWithUTF8CString("$cy");
1404 length_s
= JSStringCreateWithUTF8CString("length");
1405 message_s
= JSStringCreateWithUTF8CString("message");
1406 name_s
= JSStringCreateWithUTF8CString("name");
1407 pop_s
= JSStringCreateWithUTF8CString("pop");
1408 prototype_s
= JSStringCreateWithUTF8CString("prototype");
1409 push_s
= JSStringCreateWithUTF8CString("push");
1410 splice_s
= JSStringCreateWithUTF8CString("splice");
1411 toCYON_s
= JSStringCreateWithUTF8CString("toCYON");
1412 toJSON_s
= JSStringCreateWithUTF8CString("toJSON");
1413 toPointer_s
= JSStringCreateWithUTF8CString("toPointer");
1414 toString_s
= JSStringCreateWithUTF8CString("toString");
1416 Result_
= JSStringCreateWithUTF8CString("_");
1418 if (hooks_
!= NULL
&& hooks_
->Initialize
!= NULL
)
1419 (*hooks_
->Initialize
)();
1422 void CYThrow(JSContextRef context
, JSValueRef value
) {
1424 throw CYJSError(context
, value
);
1427 const char *CYJSError::PoolCString(apr_pool_t
*pool
) const {
1428 // XXX: this used to be CYPoolCString
1429 return CYPoolCCYON(pool
, context_
, value_
);
1432 JSValueRef
CYJSError::CastJSValue(JSContextRef context
) const {
1433 // XXX: what if the context is different?
1437 JSValueRef
CYCastJSError(JSContextRef context
, const char *message
) {
1438 JSObjectRef
Error(CYGetCachedObject(context
, CYJSString("Error")));
1440 JSValueRef arguments
[1] = {CYCastJSValue(context
, message
)};
1442 JSValueRef
exception(NULL
);
1443 JSValueRef
value(JSObjectCallAsConstructor(context
, Error
, 1, arguments
, &exception
));
1444 CYThrow(context
, exception
);
1449 JSValueRef
CYPoolError::CastJSValue(JSContextRef context
) const {
1450 return CYCastJSError(context
, message_
);
1453 CYJSError::CYJSError(JSContextRef context
, const char *format
, ...) {
1454 _assert(context
!= NULL
);
1459 va_start(args
, format
);
1460 const char *message(apr_pvsprintf(pool
, format
, args
));
1463 value_
= CYCastJSError(context
, message
);
1466 JSGlobalContextRef
CYGetJSContext(JSContextRef context
) {
1467 return reinterpret_cast<Context
*>(JSObjectGetPrivate(CYCastJSObject(context
, CYGetProperty(context
, CYGetGlobalObject(context
), cy_s
))))->context_
;
1470 extern "C" void CYSetupContext(JSGlobalContextRef context
) {
1471 JSValueRef
exception(NULL
);
1473 CYInitializeDynamic();
1475 JSObjectRef
global(CYGetGlobalObject(context
));
1477 JSObjectRef
cy(JSObjectMake(context
, Context_
, new Context(context
)));
1478 CYSetProperty(context
, global
, cy_s
, cy
, kJSPropertyAttributeDontEnum
);
1480 /* Cache Globals {{{ */
1481 JSObjectRef
Array(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Array"))));
1482 CYSetProperty(context
, cy
, CYJSString("Array"), Array
);
1484 JSObjectRef
Array_prototype(CYCastJSObject(context
, CYGetProperty(context
, Array
, prototype_s
)));
1485 CYSetProperty(context
, cy
, CYJSString("Array_prototype"), Array_prototype
);
1487 JSObjectRef
Error(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Error"))));
1488 CYSetProperty(context
, cy
, CYJSString("Error"), Error
);
1490 JSObjectRef
Function(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Function"))));
1491 CYSetProperty(context
, cy
, CYJSString("Function"), Function
);
1493 JSObjectRef
Function_prototype(CYCastJSObject(context
, CYGetProperty(context
, Function
, prototype_s
)));
1494 CYSetProperty(context
, cy
, CYJSString("Function_prototype"), Function_prototype
);
1496 JSObjectRef
Object(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("Object"))));
1497 CYSetProperty(context
, cy
, CYJSString("Object"), Object
);
1499 JSObjectRef
Object_prototype(CYCastJSObject(context
, CYGetProperty(context
, Object
, prototype_s
)));
1500 CYSetProperty(context
, cy
, CYJSString("Object_prototype"), Object_prototype
);
1502 JSObjectRef
String(CYCastJSObject(context
, CYGetProperty(context
, global
, CYJSString("String"))));
1503 CYSetProperty(context
, cy
, CYJSString("String"), String
);
1505 JSObjectRef
String_prototype(CYCastJSObject(context
, CYGetProperty(context
, String
, prototype_s
)));
1506 CYSetProperty(context
, cy
, CYJSString("String_prototype"), String_prototype
);
1509 CYSetProperty(context
, Array_prototype
, toCYON_s
, &Array_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
);
1510 CYSetProperty(context
, String_prototype
, toCYON_s
, &String_callAsFunction_toCYON
, kJSPropertyAttributeDontEnum
);
1512 JSObjectRef
cycript(JSObjectMake(context
, NULL
, NULL
));
1513 CYSetProperty(context
, global
, CYJSString("Cycript"), cycript
);
1514 CYSetProperty(context
, cycript
, CYJSString("gc"), &Cycript_gc_callAsFunction
);
1516 JSObjectRef
Functor(JSObjectMakeConstructor(context
, Functor_
, &Functor_new
));
1517 JSObjectSetPrototype(context
, CYCastJSObject(context
, CYGetProperty(context
, Functor
, prototype_s
)), Function_prototype
);
1518 CYSetProperty(context
, cycript
, CYJSString("Functor"), Functor
);
1520 CYSetProperty(context
, cycript
, CYJSString("Pointer"), JSObjectMakeConstructor(context
, Pointer_
, &Pointer_new
));
1521 CYSetProperty(context
, cycript
, CYJSString("Type"), JSObjectMakeConstructor(context
, Type_privateData::Class_
, &Type_new
));
1523 JSObjectRef
all(JSObjectMake(context
, All_
, NULL
));
1524 CYSetProperty(context
, cycript
, CYJSString("all"), all
);
1526 JSObjectRef
alls(JSObjectCallAsConstructor(context
, Array
, 0, NULL
, &exception
));
1527 CYThrow(context
, exception
);
1528 CYSetProperty(context
, cycript
, CYJSString("alls"), alls
);
1531 JSObjectRef
last(NULL
), curr(global
);
1533 goto next
; for (JSValueRef next
;;) {
1534 if (JSValueIsNull(context
, next
))
1537 curr
= CYCastJSObject(context
, next
);
1539 next
= JSObjectGetPrototype(context
, curr
);
1542 JSObjectSetPrototype(context
, last
, all
);
1545 CYSetProperty(context
, global
, CYJSString("$cyq"), &$cyq
, kJSPropertyAttributeDontEnum
);
1547 JSObjectRef
System(JSObjectMake(context
, NULL
, NULL
));
1548 CYSetProperty(context
, cy
, CYJSString("System"), System
);
1550 CYSetProperty(context
, global
, CYJSString("system"), System
);
1551 CYSetProperty(context
, System
, CYJSString("args"), CYJSNull(context
));
1552 //CYSetProperty(context, System, CYJSString("global"), global);
1553 CYSetProperty(context
, System
, CYJSString("print"), &System_print
);
1555 if (CYBridgeEntry
*entry
= CYBridgeHash("1dlerror", 8))
1556 entry
->cache_
= new cy::Functor(entry
->value_
, reinterpret_cast<void (*)()>(&dlerror
));
1558 if (hooks_
!= NULL
&& hooks_
->SetupContext
!= NULL
)
1559 (*hooks_
->SetupContext
)(context
);
1561 CYArrayPush(context
, alls
, cycript
);
1564 JSGlobalContextRef
CYGetJSContext() {
1565 CYInitializeDynamic();
1567 static JSGlobalContextRef context_
;
1569 if (context_
== NULL
) {
1570 context_
= JSGlobalContextCreate(Global_
);
1571 CYSetupContext(context_
);