1 /* Cycript - Remote Execution Server and Disassembler
2 * Copyright (C) 2009 Jay Freeman (saurik)
5 /* Modified BSD License {{{ */
7 * Redistribution and use in source and binary
8 * forms, with or without modification, are permitted
9 * provided that the following conditions are met:
11 * 1. Redistributions of source code must retain the
12 * above copyright notice, this list of conditions
13 * and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the
15 * above copyright notice, this list of conditions
16 * and the following disclaimer in the documentation
17 * and/or other materials provided with the
19 * 3. The name of the author may not be used to endorse
20 * or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS''
24 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
25 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
34 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
36 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <substrate.h>
41 #include "cycript.hpp"
43 #include "sig/parse.hpp"
44 #include "sig/ffi_type.hpp"
46 #include "Pooling.hpp"
50 #include <CoreFoundation/CoreFoundation.h>
51 #include <CoreFoundation/CFLogUtilities.h>
52 #include <JavaScriptCore/JSStringRefCF.h>
55 #include <Foundation/Foundation.h>
57 #include <WebKit/WebScriptObject.h>
62 #include <ext/stdio_filebuf.h>
70 #include "Cycript.tab.hh"
72 #include <apr_thread_proc.h>
77 #define _assert(test) do { \
79 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:[NSString stringWithFormat:@"_assert(%s):%s(%u):%s", #test, __FILE__, __LINE__, __FUNCTION__] userInfo:nil]; \
82 #define _trace() do { \
83 CFLog(kCFLogLevelNotice, CFSTR("_trace():%u"), __LINE__); \
88 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
90 #define CYPoolCatch(value) \
91 @catch (NSException *error) { \
92 _saved = [error retain]; \
98 [_saved autorelease]; \
102 void CYThrow(JSContextRef context, JSValueRef value);
104 const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception);
105 JSStringRef CYCopyJSString(const char *value);
107 void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value);
109 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)());
110 JSValueRef CYSendMessage(apr_pool_t *pool, JSContextRef context, id self, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception);
112 /* JavaScript Properties {{{ */
113 JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, size_t index) {
114 JSValueRef exception(NULL);
115 JSValueRef value(JSObjectGetPropertyAtIndex(context, object, index, &exception));
116 CYThrow(context, exception);
120 JSValueRef CYGetProperty(JSContextRef context, JSObjectRef object, JSStringRef name) {
121 JSValueRef exception(NULL);
122 JSValueRef value(JSObjectGetProperty(context, object, name, &exception));
123 CYThrow(context, exception);
127 void CYSetProperty(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value) {
128 JSValueRef exception(NULL);
129 JSObjectSetPropertyAtIndex(context, object, index, value, &exception);
130 CYThrow(context, exception);
133 void CYSetProperty(JSContextRef context, JSObjectRef object, JSStringRef name, JSValueRef value) {
134 JSValueRef exception(NULL);
135 JSObjectSetProperty(context, object, name, value, kJSPropertyAttributeNone, &exception);
136 CYThrow(context, exception);
139 /* JavaScript Strings {{{ */
140 JSStringRef CYCopyJSString(const char *value) {
141 return value == NULL ? NULL : JSStringCreateWithUTF8CString(value);
144 JSStringRef CYCopyJSString(JSStringRef value) {
145 return value == NULL ? NULL : JSStringRetain(value);
148 JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value) {
149 if (JSValueIsNull(context, value))
151 JSValueRef exception(NULL);
152 JSStringRef string(JSValueToStringCopy(context, value, &exception));
153 CYThrow(context, exception);
163 JSStringRelease(string_);
167 CYJSString(const CYJSString &rhs) :
168 string_(CYCopyJSString(rhs.string_))
172 template <typename Arg0_>
173 CYJSString(Arg0_ arg0) :
174 string_(CYCopyJSString(arg0))
178 template <typename Arg0_, typename Arg1_>
179 CYJSString(Arg0_ arg0, Arg1_ arg1) :
180 string_(CYCopyJSString(arg0, arg1))
184 CYJSString &operator =(const CYJSString &rhs) {
186 string_ = CYCopyJSString(rhs.string_);
199 operator JSStringRef() const {
204 /* Objective-C Strings {{{ */
205 JSStringRef CYCopyJSString_(NSString *value) {
207 return JSStringCreateWithCFString(reinterpret_cast<CFStringRef>(value));
209 return CYCopyJSString([value UTF8String]);
213 JSStringRef CYCopyJSString(id value) {
216 // XXX: this definition scares me; is anyone using this?!
217 NSString *string([value description]);
218 return CYCopyJSString_(string);
222 CFStringRef CYCopyCFString(JSStringRef value) {
223 return JSStringCopyCFString(kCFAllocatorDefault, value);
226 CFStringRef CYCopyCFString(JSContextRef context, JSValueRef value) {
227 return CYCopyCFString(CYJSString(context, value));
232 static JSGlobalContextRef Context_;
233 static JSObjectRef System_;
234 static JSObjectRef ObjectiveC_;
236 static JSClassRef Functor_;
237 static JSClassRef Instance_;
238 static JSClassRef Internal_;
239 static JSClassRef Message_;
240 static JSClassRef Messages_;
241 static JSClassRef NSArrayPrototype_;
242 static JSClassRef Pointer_;
243 static JSClassRef Runtime_;
244 static JSClassRef Selector_;
245 static JSClassRef Struct_;
247 static JSClassRef ObjectiveC_Classes_;
248 static JSClassRef ObjectiveC_Image_Classes_;
249 static JSClassRef ObjectiveC_Images_;
250 static JSClassRef ObjectiveC_Protocols_;
252 static JSObjectRef Array_;
253 static JSObjectRef Function_;
254 static JSObjectRef String_;
256 static JSStringRef Result_;
258 static JSStringRef length_;
259 static JSStringRef message_;
260 static JSStringRef name_;
261 static JSStringRef prototype_;
262 static JSStringRef toCYON_;
263 static JSStringRef toJSON_;
265 static JSObjectRef Instance_prototype_;
266 static JSObjectRef Object_prototype_;
268 static JSObjectRef Array_prototype_;
269 static JSObjectRef Array_pop_;
270 static JSObjectRef Array_push_;
271 static JSObjectRef Array_splice_;
273 static Class NSArray_;
274 static Class NSCFBoolean_;
275 static Class NSCFType_;
276 static Class NSDictionary_;
277 static Class NSMessageBuilder_;
278 static Class NSZombie_;
279 static Class Object_;
281 static NSArray *Bridge_;
283 static void Finalize(JSObjectRef object) {
284 delete reinterpret_cast<CYData *>(JSObjectGetPrivate(object));
287 class Type_privateData;
297 CYValue(const void *value) :
298 value_(const_cast<void *>(value))
302 CYValue(const CYValue &rhs) :
307 virtual Type_privateData *GetType() const {
312 struct Selector_privateData :
315 Selector_privateData(SEL value) :
320 SEL GetValue() const {
321 return reinterpret_cast<SEL>(value_);
324 virtual Type_privateData *GetType() const;
327 // XXX: trick this out with associated objects!
328 JSValueRef CYGetClassPrototype(JSContextRef context, id self) {
330 return Instance_prototype_;
332 // XXX: I need to think through multi-context
333 typedef std::map<id, JSValueRef> CacheMap;
334 static CacheMap cache_;
336 JSValueRef &value(cache_[self]);
340 JSClassRef _class(NULL);
341 JSValueRef prototype;
343 if (self == NSArray_)
344 prototype = Array_prototype_;
345 else if (self == NSDictionary_)
346 prototype = Object_prototype_;
348 prototype = CYGetClassPrototype(context, class_getSuperclass(self));
350 JSObjectRef object(JSObjectMake(context, _class, NULL));
351 JSObjectSetPrototype(context, object, prototype);
353 JSValueProtect(context, object);
363 Transient = (1 << 0),
364 Uninitialized = (1 << 1),
369 Instance(id value, Flags flags) :
375 virtual ~Instance() {
376 if ((flags_ & Transient) == 0)
377 // XXX: does this handle background threads correctly?
378 // XXX: this simply does not work on the console because I'm stupid
379 [GetValue() performSelector:@selector(release) withObject:nil afterDelay:0];
382 static JSObjectRef Make(JSContextRef context, id object, Flags flags = None) {
383 JSObjectRef value(JSObjectMake(context, Instance_, new Instance(object, flags)));
384 JSObjectSetPrototype(context, value, CYGetClassPrototype(context, object == nil ? nil : object_getClass(object)));
388 id GetValue() const {
389 return reinterpret_cast<id>(value_);
392 bool IsUninitialized() const {
393 return (flags_ & Uninitialized) != 0;
396 virtual Type_privateData *GetType() const;
402 Messages(Class value) :
407 static JSObjectRef Make(JSContextRef context, Class _class, bool array = false) {
408 JSObjectRef value(JSObjectMake(context, Messages_, new Messages(_class)));
409 if (_class == NSArray_)
411 if (Class super = class_getSuperclass(_class))
412 JSObjectSetPrototype(context, value, Messages::Make(context, super, array));
414 JSObjectSetPrototype(context, value, Array_prototype_);*/
418 Class GetValue() const {
419 return reinterpret_cast<Class>(value_);
427 JSContextRef context_;
431 CYOwned(void *value, JSContextRef context, JSObjectRef owner) :
436 JSValueProtect(context_, owner_);
440 JSValueUnprotect(context_, owner_);
443 JSObjectRef GetOwner() const {
451 Internal(id value, JSContextRef context, JSObjectRef owner) :
452 CYOwned(value, context, owner)
456 static JSObjectRef Make(JSContextRef context, id object, JSObjectRef owner) {
457 return JSObjectMake(context, Internal_, new Internal(object, context, owner));
460 id GetValue() const {
461 return reinterpret_cast<id>(value_);
467 void Copy(apr_pool_t *pool, Type &lhs, Type &rhs);
469 void Copy(apr_pool_t *pool, Element &lhs, Element &rhs) {
470 lhs.name = apr_pstrdup(pool, rhs.name);
471 if (rhs.type == NULL)
474 lhs.type = new(pool) Type;
475 Copy(pool, *lhs.type, *rhs.type);
477 lhs.offset = rhs.offset;
480 void Copy(apr_pool_t *pool, Signature &lhs, Signature &rhs) {
481 size_t count(rhs.count);
483 lhs.elements = new(pool) Element[count];
484 for (size_t index(0); index != count; ++index)
485 Copy(pool, lhs.elements[index], rhs.elements[index]);
488 void Copy(apr_pool_t *pool, Type &lhs, Type &rhs) {
489 lhs.primitive = rhs.primitive;
490 lhs.name = apr_pstrdup(pool, rhs.name);
491 lhs.flags = rhs.flags;
493 if (sig::IsAggregate(rhs.primitive))
494 Copy(pool, lhs.data.signature, rhs.data.signature);
496 sig::Type *&lht(lhs.data.data.type);
497 sig::Type *&rht(rhs.data.data.type);
502 lht = new(pool) Type;
503 Copy(pool, *lht, *rht);
506 lhs.data.data.size = rhs.data.data.size;
510 void Copy(apr_pool_t *pool, ffi_type &lhs, ffi_type &rhs) {
512 lhs.alignment = rhs.alignment;
514 if (rhs.elements == NULL)
518 while (rhs.elements[count] != NULL)
521 lhs.elements = new(pool) ffi_type *[count + 1];
522 lhs.elements[count] = NULL;
524 for (size_t index(0); index != count; ++index) {
525 // XXX: if these are libffi native then you can just take them
526 ffi_type *ffi(new(pool) ffi_type);
527 lhs.elements[index] = ffi;
528 sig::Copy(pool, *ffi, *rhs.elements[index]);
535 struct CStringMapLess :
536 std::binary_function<const char *, const char *, bool>
538 _finline bool operator ()(const char *lhs, const char *rhs) const {
539 return strcmp(lhs, rhs) < 0;
543 void Structor_(apr_pool_t *pool, const char *name, const char *types, sig::Type *&type) {
548 if (NSMutableArray *entry = [[Bridge_ objectAtIndex:2] objectForKey:[NSString stringWithUTF8String:name]])
549 switch ([[entry objectAtIndex:0] intValue]) {
551 sig::Parse(pool, &type->data.signature, [[entry objectAtIndex:1] UTF8String], &Structor_);
555 sig::Signature signature;
556 sig::Parse(pool, &signature, [[entry objectAtIndex:1] UTF8String], &Structor_);
557 type = signature.elements[0].type;
563 struct Type_privateData :
566 static Type_privateData *Object;
567 static Type_privateData *Selector;
569 static JSClassRef Class_;
574 void Set(sig::Type *type) {
575 type_ = new(pool_) sig::Type;
576 sig::Copy(pool_, *type_, *type);
579 Type_privateData(apr_pool_t *pool, const char *type) :
585 sig::Signature signature;
586 sig::Parse(pool_, &signature, type, &Structor_);
587 type_ = signature.elements[0].type;
590 Type_privateData(sig::Type *type) :
597 Type_privateData(sig::Type *type, ffi_type *ffi) {
598 ffi_ = new(pool_) ffi_type;
599 sig::Copy(pool_, *ffi_, *ffi);
605 ffi_ = new(pool_) ffi_type;
607 sig::Element element;
609 element.type = type_;
612 sig::Signature signature;
613 signature.elements = &element;
617 sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature, &cif);
625 JSClassRef Type_privateData::Class_;
626 Type_privateData *Type_privateData::Object;
627 Type_privateData *Type_privateData::Selector;
629 Type_privateData *Instance::GetType() const {
630 return Type_privateData::Object;
633 Type_privateData *Selector_privateData::GetType() const {
634 return Type_privateData::Selector;
640 Type_privateData *type_;
642 Pointer(void *value, JSContextRef context, JSObjectRef owner, sig::Type *type) :
643 CYOwned(value, context, owner),
644 type_(new(pool_) Type_privateData(type))
649 struct Struct_privateData :
652 Type_privateData *type_;
654 Struct_privateData(JSContextRef context, JSObjectRef owner) :
655 CYOwned(NULL, context, owner)
660 typedef std::map<const char *, Type_privateData *, CStringMapLess> TypeMap;
661 static TypeMap Types_;
663 JSObjectRef CYMakeStruct(JSContextRef context, void *data, sig::Type *type, ffi_type *ffi, JSObjectRef owner) {
664 Struct_privateData *internal(new Struct_privateData(context, owner));
665 apr_pool_t *pool(internal->pool_);
666 Type_privateData *typical(new(pool) Type_privateData(type, ffi));
667 internal->type_ = typical;
670 internal->value_ = data;
672 size_t size(typical->GetFFI()->size);
673 void *copy(apr_palloc(internal->pool_, size));
674 memcpy(copy, data, size);
675 internal->value_ = copy;
678 return JSObjectMake(context, Struct_, internal);
681 struct Functor_privateData :
684 sig::Signature signature_;
688 Functor_privateData(const char *type, void (*value)()) :
689 CYValue(reinterpret_cast<void *>(value))
691 sig::Parse(pool_, &signature_, type, &Structor_);
692 sig::sig_ffi_cif(pool_, &sig::ObjectiveC, &signature_, &cif_);
695 void (*GetValue())() const {
696 return reinterpret_cast<void (*)()>(value_);
700 struct Closure_privateData :
703 JSContextRef context_;
704 JSObjectRef function_;
706 Closure_privateData(JSContextRef context, JSObjectRef function, const char *type) :
707 Functor_privateData(type, NULL),
711 JSValueProtect(context_, function_);
714 virtual ~Closure_privateData() {
715 JSValueUnprotect(context_, function_);
719 struct Message_privateData :
724 Message_privateData(SEL sel, const char *type, IMP value = NULL) :
725 Functor_privateData(type, reinterpret_cast<void (*)()>(value)),
731 JSObjectRef CYMakeInstance(JSContextRef context, id object, bool transient) {
732 Instance::Flags flags;
735 flags = Instance::Transient;
737 flags = Instance::None;
738 object = [object retain];
741 return Instance::Make(context, object, flags);
744 const char *CYPoolCString(apr_pool_t *pool, NSString *value) {
746 return [value UTF8String];
748 size_t size([value maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding] + 1);
749 char *string(new(pool) char[size]);
750 if (![value getCString:string maxLength:size encoding:NSUTF8StringEncoding])
751 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:@"[NSString getCString:maxLength:encoding:] == NO" userInfo:nil];
756 JSValueRef CYCastJSValue(JSContextRef context, bool value) {
757 return JSValueMakeBoolean(context, value);
760 JSValueRef CYCastJSValue(JSContextRef context, double value) {
761 return JSValueMakeNumber(context, value);
764 #define CYCastJSValue_(Type_) \
765 JSValueRef CYCastJSValue(JSContextRef context, Type_ value) { \
766 return JSValueMakeNumber(context, static_cast<double>(value)); \
770 CYCastJSValue_(unsigned int)
771 CYCastJSValue_(long int)
772 CYCastJSValue_(long unsigned int)
773 CYCastJSValue_(long long int)
774 CYCastJSValue_(long long unsigned int)
776 JSValueRef CYJSUndefined(JSContextRef context) {
777 return JSValueMakeUndefined(context);
780 size_t CYGetIndex(const char *value) {
781 if (value[0] != '0') {
783 size_t index(strtoul(value, &end, 10));
784 if (value + strlen(value) == end)
786 } else if (value[1] == '\0')
792 static const char *CYPoolCString(apr_pool_t *pool, JSStringRef value);
794 size_t CYGetIndex(apr_pool_t *pool, NSString *value) {
795 return CYGetIndex(CYPoolCString(pool, value));
798 size_t CYGetIndex(apr_pool_t *pool, JSStringRef value) {
799 return CYGetIndex(CYPoolCString(pool, value));
802 bool CYGetOffset(const char *value, ssize_t &index) {
803 if (value[0] != '0') {
805 index = strtol(value, &end, 10);
806 if (value + strlen(value) == end)
808 } else if (value[1] == '\0') {
816 bool CYGetOffset(apr_pool_t *pool, NSString *value, ssize_t &index) {
817 return CYGetOffset(CYPoolCString(pool, value), index);
820 NSString *CYPoolNSCYON(apr_pool_t *pool, id value);
822 @interface NSMethodSignature (Cycript)
823 - (NSString *) _typeString;
826 @interface NSObject (Cycript)
828 - (JSValueRef) cy$JSValueInContext:(JSContextRef)context;
829 - (JSType) cy$JSType;
831 - (NSObject *) cy$toJSON:(NSString *)key;
832 - (NSString *) cy$toCYON;
833 - (NSString *) cy$toKey;
835 - (bool) cy$hasProperty:(NSString *)name;
836 - (NSObject *) cy$getProperty:(NSString *)name;
837 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value;
838 - (bool) cy$deleteProperty:(NSString *)name;
843 - (JSValueRef) cy$JSValueInContext:(JSContextRef)context;
846 @interface NSString (Cycript)
847 - (void *) cy$symbol;
851 struct PropertyAttributes {
856 const char *variable;
869 PropertyAttributes(objc_property_t property) :
881 name = property_getName(property);
882 const char *attributes(property_getAttributes(property));
884 for (char *state, *token(apr_strtok(apr_pstrdup(pool_, attributes), ",", &state)); token != NULL; token = apr_strtok(NULL, ",", &state)) {
886 case 'R': readonly = true; break;
887 case 'C': copy = true; break;
888 case '&': retain = true; break;
889 case 'N': nonatomic = true; break;
890 case 'G': getter_ = token + 1; break;
891 case 'S': setter_ = token + 1; break;
892 case 'V': variable = token + 1; break;
896 /*if (variable == NULL) {
897 variable = property_getName(property);
898 size_t size(strlen(variable));
899 char *name(new(pool_) char[size + 2]);
901 memcpy(name + 1, variable, size);
902 name[size + 1] = '\0';
907 const char *Getter() {
909 getter_ = apr_pstrdup(pool_, name);
913 const char *Setter() {
914 if (setter_ == NULL && !readonly) {
915 size_t length(strlen(name));
917 char *temp(new(pool_) char[length + 5]);
923 temp[3] = toupper(name[0]);
924 memcpy(temp + 4, name + 1, length - 1);
927 temp[length + 3] = ':';
928 temp[length + 4] = '\0';
939 NSString *NSCFType$cy$toJSON(id self, SEL sel, NSString *key) {
940 return [(NSString *) CFCopyDescription((CFTypeRef) self) autorelease];
945 @interface CYWebUndefined : NSObject {
948 + (CYWebUndefined *) undefined;
952 @implementation CYWebUndefined
954 + (CYWebUndefined *) undefined {
955 static CYWebUndefined *instance_([[CYWebUndefined alloc] init]);
961 #define WebUndefined CYWebUndefined
964 /* Bridge: NSArray {{{ */
965 @implementation NSArray (Cycript)
967 - (NSString *) cy$toCYON {
968 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
969 [json appendString:@"["];
973 for (id object in self) {
976 for (size_t index(0), count([self count]); index != count; ++index) {
977 object = [self objectAtIndex:index];
980 [json appendString:@","];
983 if (object == nil || [object cy$JSType] != kJSTypeUndefined)
984 [json appendString:CYPoolNSCYON(NULL, object)];
986 [json appendString:@","];
991 [json appendString:@"]"];
995 - (bool) cy$hasProperty:(NSString *)name {
996 if ([name isEqualToString:@"length"])
999 size_t index(CYGetIndex(NULL, name));
1000 if (index == _not(size_t) || index >= [self count])
1001 return [super cy$hasProperty:name];
1006 - (NSObject *) cy$getProperty:(NSString *)name {
1007 if ([name isEqualToString:@"length"]) {
1008 NSUInteger count([self count]);
1010 return [NSNumber numberWithUnsignedInteger:count];
1012 return [NSNumber numberWithUnsignedInt:count];
1016 size_t index(CYGetIndex(NULL, name));
1017 if (index == _not(size_t) || index >= [self count])
1018 return [super cy$getProperty:name];
1020 return [self objectAtIndex:index];
1025 /* Bridge: NSDictionary {{{ */
1026 @implementation NSDictionary (Cycript)
1028 - (NSString *) cy$toCYON {
1029 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
1030 [json appendString:@"{"];
1034 for (id key in self) {
1036 NSEnumerator *keys([self keyEnumerator]);
1037 while (id key = [keys nextObject]) {
1040 [json appendString:@","];
1043 [json appendString:[key cy$toKey]];
1044 [json appendString:@":"];
1045 NSObject *object([self objectForKey:key]);
1046 [json appendString:CYPoolNSCYON(NULL, object)];
1049 [json appendString:@"}"];
1053 - (bool) cy$hasProperty:(NSString *)name {
1054 return [self objectForKey:name] != nil;
1057 - (NSObject *) cy$getProperty:(NSString *)name {
1058 return [self objectForKey:name];
1063 /* Bridge: NSMutableArray {{{ */
1064 @implementation NSMutableArray (Cycript)
1066 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1067 if ([name isEqualToString:@"length"]) {
1068 // XXX: is this not intelligent?
1069 NSNumber *number(reinterpret_cast<NSNumber *>(value));
1071 NSUInteger size([number unsignedIntegerValue]);
1073 NSUInteger size([number unsignedIntValue]);
1075 NSUInteger count([self count]);
1077 [self removeObjectsInRange:NSMakeRange(size, count - size)];
1078 else if (size != count) {
1079 WebUndefined *undefined([WebUndefined undefined]);
1080 for (size_t i(count); i != size; ++i)
1081 [self addObject:undefined];
1086 size_t index(CYGetIndex(NULL, name));
1087 if (index == _not(size_t))
1088 return [super cy$setProperty:name to:value];
1090 id object(value ?: [NSNull null]);
1092 size_t count([self count]);
1094 [self replaceObjectAtIndex:index withObject:object];
1096 if (index != count) {
1097 WebUndefined *undefined([WebUndefined undefined]);
1098 for (size_t i(count); i != index; ++i)
1099 [self addObject:undefined];
1102 [self addObject:object];
1108 - (bool) cy$deleteProperty:(NSString *)name {
1109 size_t index(CYGetIndex(NULL, name));
1110 if (index == _not(size_t) || index >= [self count])
1111 return [super cy$deleteProperty:name];
1112 [self replaceObjectAtIndex:index withObject:[WebUndefined undefined]];
1118 /* Bridge: NSMutableDictionary {{{ */
1119 @implementation NSMutableDictionary (Cycript)
1121 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1122 [self setObject:(value ?: [NSNull null]) forKey:name];
1126 - (bool) cy$deleteProperty:(NSString *)name {
1127 if ([self objectForKey:name] == nil)
1130 [self removeObjectForKey:name];
1137 /* Bridge: NSNumber {{{ */
1138 @implementation NSNumber (Cycript)
1140 - (JSType) cy$JSType {
1141 // XXX: this just seems stupid
1142 return [self class] == NSCFBoolean_ ? kJSTypeBoolean : kJSTypeNumber;
1145 - (NSObject *) cy$toJSON:(NSString *)key {
1149 - (NSString *) cy$toCYON {
1150 return [self cy$JSType] != kJSTypeBoolean ? [self stringValue] : [self boolValue] ? @"true" : @"false";
1153 - (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
1154 return [self cy$JSType] != kJSTypeBoolean ? CYCastJSValue(context, [self doubleValue]) : CYCastJSValue(context, [self boolValue]);
1159 /* Bridge: NSNull {{{ */
1160 @implementation NSNull (Cycript)
1162 - (JSType) cy$JSType {
1166 - (NSObject *) cy$toJSON:(NSString *)key {
1170 - (NSString *) cy$toCYON {
1176 /* Bridge: NSObject {{{ */
1177 @implementation NSObject (Cycript)
1179 - (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
1180 return CYMakeInstance(context, self, false);
1183 - (JSType) cy$JSType {
1184 return kJSTypeObject;
1187 - (NSObject *) cy$toJSON:(NSString *)key {
1188 return [self description];
1191 - (NSString *) cy$toCYON {
1192 return [[self cy$toJSON:@""] cy$toCYON];
1195 - (NSString *) cy$toKey {
1196 return [self cy$toCYON];
1199 - (bool) cy$hasProperty:(NSString *)name {
1203 - (NSObject *) cy$getProperty:(NSString *)name {
1207 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1211 - (bool) cy$deleteProperty:(NSString *)name {
1217 /* Bridge: NSProxy {{{ */
1218 @implementation NSProxy (Cycript)
1220 - (NSObject *) cy$toJSON:(NSString *)key {
1221 return [self description];
1224 - (NSString *) cy$toCYON {
1225 return [[self cy$toJSON:@""] cy$toCYON];
1230 /* Bridge: NSString {{{ */
1231 @implementation NSString (Cycript)
1233 - (JSType) cy$JSType {
1234 return kJSTypeString;
1237 - (NSObject *) cy$toJSON:(NSString *)key {
1241 - (NSString *) cy$toCYON {
1242 // XXX: this should use the better code from Output.cpp
1243 CFMutableStringRef json(CFStringCreateMutableCopy(kCFAllocatorDefault, 0, (CFStringRef) self));
1245 CFStringFindAndReplace(json, CFSTR("\\"), CFSTR("\\\\"), CFRangeMake(0, CFStringGetLength(json)), 0);
1246 CFStringFindAndReplace(json, CFSTR("\""), CFSTR("\\\""), CFRangeMake(0, CFStringGetLength(json)), 0);
1247 CFStringFindAndReplace(json, CFSTR("\t"), CFSTR("\\t"), CFRangeMake(0, CFStringGetLength(json)), 0);
1248 CFStringFindAndReplace(json, CFSTR("\r"), CFSTR("\\r"), CFRangeMake(0, CFStringGetLength(json)), 0);
1249 CFStringFindAndReplace(json, CFSTR("\n"), CFSTR("\\n"), CFRangeMake(0, CFStringGetLength(json)), 0);
1251 CFStringInsert(json, 0, CFSTR("\""));
1252 CFStringAppend(json, CFSTR("\""));
1254 return [reinterpret_cast<const NSString *>(json) autorelease];
1257 - (NSString *) cy$toKey {
1258 const char *value([self UTF8String]);
1259 size_t size(strlen(value));
1264 if (DigitRange_[value[0]]) {
1265 size_t index(CYGetIndex(NULL, self));
1266 if (index == _not(size_t))
1269 if (!WordStartRange_[value[0]])
1271 for (size_t i(1); i != size; ++i)
1272 if (!WordEndRange_[value[i]])
1279 return [self cy$toCYON];
1282 - (void *) cy$symbol {
1284 return dlsym(RTLD_DEFAULT, CYPoolCString(pool, self));
1289 /* Bridge: WebUndefined {{{ */
1290 @implementation WebUndefined (Cycript)
1292 - (JSType) cy$JSType {
1293 return kJSTypeUndefined;
1296 - (NSObject *) cy$toJSON:(NSString *)key {
1300 - (NSString *) cy$toCYON {
1301 return @"undefined";
1304 - (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
1305 return CYJSUndefined(context);
1311 /* Bridge: CYJSObject {{{ */
1312 @interface CYJSObject : NSMutableDictionary {
1313 JSObjectRef object_;
1314 JSContextRef context_;
1317 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
1319 - (NSString *) cy$toJSON:(NSString *)key;
1321 - (NSUInteger) count;
1322 - (id) objectForKey:(id)key;
1323 - (NSEnumerator *) keyEnumerator;
1324 - (void) setObject:(id)object forKey:(id)key;
1325 - (void) removeObjectForKey:(id)key;
1329 /* Bridge: CYJSArray {{{ */
1330 @interface CYJSArray : NSMutableArray {
1331 JSObjectRef object_;
1332 JSContextRef context_;
1335 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
1337 - (NSUInteger) count;
1338 - (id) objectAtIndex:(NSUInteger)index;
1340 - (void) addObject:(id)anObject;
1341 - (void) insertObject:(id)anObject atIndex:(NSUInteger)index;
1342 - (void) removeLastObject;
1343 - (void) removeObjectAtIndex:(NSUInteger)index;
1344 - (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
1352 @catch (id error) { \
1353 CYThrow(context, error, exception); \
1357 apr_status_t CYPoolRelease_(void *data) {
1358 id object(reinterpret_cast<id>(data));
1363 id CYPoolRelease(apr_pool_t *pool, id object) {
1366 else if (pool == NULL)
1367 return [object autorelease];
1369 apr_pool_cleanup_register(pool, object, &CYPoolRelease_, &apr_pool_cleanup_null);
1374 CFTypeRef CYPoolRelease(apr_pool_t *pool, CFTypeRef object) {
1375 return (CFTypeRef) CYPoolRelease(pool, (id) object);
1378 id CYCastNSObject_(apr_pool_t *pool, JSContextRef context, JSObjectRef object) {
1379 JSValueRef exception(NULL);
1380 bool array(JSValueIsInstanceOfConstructor(context, object, Array_, &exception));
1381 CYThrow(context, exception);
1382 id value(array ? [CYJSArray alloc] : [CYJSObject alloc]);
1383 return CYPoolRelease(pool, [value initWithJSObject:object inContext:context]);
1386 id CYCastNSObject(apr_pool_t *pool, JSContextRef context, JSObjectRef object) {
1387 if (!JSValueIsObjectOfClass(context, object, Instance_))
1388 return CYCastNSObject_(pool, context, object);
1390 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1391 return internal->GetValue();
1395 double CYCastDouble(const char *value, size_t size) {
1397 double number(strtod(value, &end));
1398 if (end != value + size)
1403 double CYCastDouble(const char *value) {
1404 return CYCastDouble(value, strlen(value));
1407 double CYCastDouble(JSContextRef context, JSValueRef value) {
1408 JSValueRef exception(NULL);
1409 double number(JSValueToNumber(context, value, &exception));
1410 CYThrow(context, exception);
1414 CFNumberRef CYCopyCFNumber(JSContextRef context, JSValueRef value) {
1415 double number(CYCastDouble(context, value));
1416 return CFNumberCreate(kCFAllocatorDefault, kCFNumberDoubleType, &number);
1419 CFStringRef CYCopyCFString(const char *value) {
1420 return CFStringCreateWithCString(kCFAllocatorDefault, value, kCFStringEncodingUTF8);
1423 NSString *CYCastNSString(apr_pool_t *pool, const char *value) {
1424 return (NSString *) CYPoolRelease(pool, CYCopyCFString(value));
1427 NSString *CYCastNSString(apr_pool_t *pool, JSStringRef value) {
1428 return (NSString *) CYPoolRelease(pool, CYCopyCFString(value));
1431 bool CYCastBool(JSContextRef context, JSValueRef value) {
1432 return JSValueToBoolean(context, value);
1435 CFTypeRef CYCFType(apr_pool_t *pool, JSContextRef context, JSValueRef value, bool cast) {
1439 switch (JSType type = JSValueGetType(context, value)) {
1440 case kJSTypeUndefined:
1441 object = [WebUndefined undefined];
1449 case kJSTypeBoolean:
1450 object = CYCastBool(context, value) ? kCFBooleanTrue : kCFBooleanFalse;
1455 object = CYCopyCFNumber(context, value);
1460 object = CYCopyCFString(context, value);
1465 // XXX: this might could be more efficient
1466 object = (CFTypeRef) CYCastNSObject(pool, context, (JSObjectRef) value);
1471 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:[NSString stringWithFormat:@"JSValueGetType() == 0x%x", type] userInfo:nil];
1478 return CYPoolRelease(pool, object);
1480 return CFRetain(object);
1483 CFTypeRef CYCastCFType(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1484 return CYCFType(pool, context, value, true);
1487 CFTypeRef CYCopyCFType(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1488 return CYCFType(pool, context, value, false);
1491 NSArray *CYCastNSArray(JSPropertyNameArrayRef names) {
1493 size_t size(JSPropertyNameArrayGetCount(names));
1494 NSMutableArray *array([NSMutableArray arrayWithCapacity:size]);
1495 for (size_t index(0); index != size; ++index)
1496 [array addObject:CYCastNSString(pool, JSPropertyNameArrayGetNameAtIndex(names, index))];
1500 id CYCastNSObject(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1501 return reinterpret_cast<const NSObject *>(CYCastCFType(pool, context, value));
1504 void CYThrow(JSContextRef context, JSValueRef value) {
1507 @throw CYCastNSObject(NULL, context, value);
1510 JSValueRef CYJSNull(JSContextRef context) {
1511 return JSValueMakeNull(context);
1514 JSValueRef CYCastJSValue(JSContextRef context, JSStringRef value) {
1515 return value == NULL ? CYJSNull(context) : JSValueMakeString(context, value);
1518 JSValueRef CYCastJSValue(JSContextRef context, const char *value) {
1519 return CYCastJSValue(context, CYJSString(value));
1522 JSValueRef CYCastJSValue(JSContextRef context, id value) {
1524 return CYJSNull(context);
1525 else if ([value respondsToSelector:@selector(cy$JSValueInContext:)])
1526 return [value cy$JSValueInContext:context];
1528 return CYMakeInstance(context, value, false);
1531 JSObjectRef CYCastJSObject(JSContextRef context, JSValueRef value) {
1532 JSValueRef exception(NULL);
1533 JSObjectRef object(JSValueToObject(context, value, &exception));
1534 CYThrow(context, exception);
1538 void CYThrow(JSContextRef context, id error, JSValueRef *exception) {
1539 if (exception == NULL)
1541 *exception = CYCastJSValue(context, error);
1544 JSValueRef CYCallAsFunction(JSContextRef context, JSObjectRef function, JSObjectRef _this, size_t count, JSValueRef arguments[]) {
1545 JSValueRef exception(NULL);
1546 JSValueRef value(JSObjectCallAsFunction(context, function, _this, count, arguments, &exception));
1547 CYThrow(context, exception);
1551 bool CYIsCallable(JSContextRef context, JSValueRef value) {
1552 // XXX: this isn't actually correct
1553 return value != NULL && JSValueIsObject(context, value);
1556 @implementation CYJSObject
1558 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context {
1559 if ((self = [super init]) != nil) {
1562 JSValueProtect(context_, object_);
1567 JSValueUnprotect(context_, object_);
1571 - (NSObject *) cy$toJSON:(NSString *)key {
1572 JSValueRef toJSON(CYGetProperty(context_, object_, toJSON_));
1573 if (!CYIsCallable(context_, toJSON))
1574 return [super cy$toJSON:key];
1576 JSValueRef arguments[1] = {CYCastJSValue(context_, key)};
1577 JSValueRef value(CYCallAsFunction(context_, (JSObjectRef) toJSON, object_, 1, arguments));
1578 // XXX: do I really want an NSNull here?!
1579 return CYCastNSObject(NULL, context_, value) ?: [NSNull null];
1583 - (NSString *) cy$toCYON {
1584 JSValueRef toCYON(CYGetProperty(context_, object_, toCYON_));
1585 if (!CYIsCallable(context_, toCYON)) super:
1586 return [super cy$toCYON];
1587 else if (JSValueRef value = CYCallAsFunction(context_, (JSObjectRef) toCYON, object_, 0, NULL))
1588 return CYCastNSString(NULL, CYJSString(context_, value));
1592 - (NSUInteger) count {
1593 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context_, object_));
1594 size_t size(JSPropertyNameArrayGetCount(names));
1595 JSPropertyNameArrayRelease(names);
1599 - (id) objectForKey:(id)key {
1600 JSValueRef value(CYGetProperty(context_, object_, CYJSString(key)));
1601 if (JSValueIsUndefined(context_, value))
1603 return CYCastNSObject(NULL, context_, value) ?: [NSNull null];
1606 - (NSEnumerator *) keyEnumerator {
1607 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context_, object_));
1608 NSEnumerator *enumerator([CYCastNSArray(names) objectEnumerator]);
1609 JSPropertyNameArrayRelease(names);
1613 - (void) setObject:(id)object forKey:(id)key {
1614 CYSetProperty(context_, object_, CYJSString(key), CYCastJSValue(context_, object));
1617 - (void) removeObjectForKey:(id)key {
1618 JSValueRef exception(NULL);
1619 (void) JSObjectDeleteProperty(context_, object_, CYJSString(key), &exception);
1620 CYThrow(context_, exception);
1625 @implementation CYJSArray
1627 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context {
1628 if ((self = [super init]) != nil) {
1631 JSValueProtect(context_, object_);
1636 JSValueUnprotect(context_, object_);
1640 - (NSUInteger) count {
1641 return CYCastDouble(context_, CYGetProperty(context_, object_, length_));
1644 - (id) objectAtIndex:(NSUInteger)index {
1645 size_t bounds([self count]);
1646 if (index >= bounds)
1647 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray objectAtIndex:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
1648 JSValueRef exception(NULL);
1649 JSValueRef value(JSObjectGetPropertyAtIndex(context_, object_, index, &exception));
1650 CYThrow(context_, exception);
1651 return CYCastNSObject(NULL, context_, value) ?: [NSNull null];
1654 - (void) addObject:(id)object {
1655 JSValueRef exception(NULL);
1656 JSValueRef arguments[1];
1657 arguments[0] = CYCastJSValue(context_, object);
1658 JSObjectCallAsFunction(context_, Array_push_, object_, 1, arguments, &exception);
1659 CYThrow(context_, exception);
1662 - (void) insertObject:(id)object atIndex:(NSUInteger)index {
1663 size_t bounds([self count] + 1);
1664 if (index >= bounds)
1665 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray insertObject:atIndex:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
1666 JSValueRef exception(NULL);
1667 JSValueRef arguments[3];
1668 arguments[0] = CYCastJSValue(context_, index);
1669 arguments[1] = CYCastJSValue(context_, 0);
1670 arguments[2] = CYCastJSValue(context_, object);
1671 JSObjectCallAsFunction(context_, Array_splice_, object_, 3, arguments, &exception);
1672 CYThrow(context_, exception);
1675 - (void) removeLastObject {
1676 JSValueRef exception(NULL);
1677 JSObjectCallAsFunction(context_, Array_pop_, object_, 0, NULL, &exception);
1678 CYThrow(context_, exception);
1681 - (void) removeObjectAtIndex:(NSUInteger)index {
1682 size_t bounds([self count]);
1683 if (index >= bounds)
1684 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray removeObjectAtIndex:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
1685 JSValueRef exception(NULL);
1686 JSValueRef arguments[2];
1687 arguments[0] = CYCastJSValue(context_, index);
1688 arguments[1] = CYCastJSValue(context_, 1);
1689 JSObjectCallAsFunction(context_, Array_splice_, object_, 2, arguments, &exception);
1690 CYThrow(context_, exception);
1693 - (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)object {
1694 size_t bounds([self count]);
1695 if (index >= bounds)
1696 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray replaceObjectAtIndex:withObject:]: index (%zu) beyond bounds (%zu)", index, bounds] userInfo:nil];
1697 CYSetProperty(context_, object_, index, CYCastJSValue(context_, object));
1702 NSString *CYCopyNSCYON(id value) {
1708 Class _class(object_getClass(value));
1709 SEL sel(@selector(cy$toCYON));
1711 if (Method toCYON = class_getInstanceMethod(_class, sel))
1712 string = reinterpret_cast<NSString *(*)(id, SEL)>(method_getImplementation(toCYON))(value, sel);
1713 else if (Method methodSignatureForSelector = class_getInstanceMethod(_class, @selector(methodSignatureForSelector:))) {
1714 if (reinterpret_cast<NSMethodSignature *(*)(id, SEL, SEL)>(method_getImplementation(methodSignatureForSelector))(value, @selector(methodSignatureForSelector:), sel) != nil)
1715 string = [value cy$toCYON];
1718 if (value == NSZombie_)
1719 string = @"_NSZombie_";
1720 else if (_class == NSZombie_)
1721 string = [NSString stringWithFormat:@"<_NSZombie_: %p>", value];
1722 // XXX: frowny /in/ the pants
1723 else if (value == NSMessageBuilder_ || value == Object_)
1726 string = [NSString stringWithFormat:@"%@", value];
1729 // XXX: frowny pants
1731 string = @"undefined";
1734 return [string retain];
1737 NSString *CYCopyNSCYON(JSContextRef context, JSValueRef value, JSValueRef *exception) {
1738 if (JSValueIsNull(context, value))
1739 return [@"null" retain];
1743 return CYCopyNSCYON(CYCastNSObject(NULL, context, value));
1748 NSString *CYPoolNSCYON(apr_pool_t *pool, id value) {
1749 return CYPoolRelease(pool, static_cast<id>(CYCopyNSCYON(value)));
1752 const char *CYPoolCCYON(apr_pool_t *pool, JSContextRef context, JSValueRef value, JSValueRef *exception) {
1753 if (NSString *json = CYCopyNSCYON(context, value, exception)) {
1754 const char *string(CYPoolCString(pool, json));
1760 // XXX: use objc_getAssociatedObject and objc_setAssociatedObject on 10.6
1764 JSObjectRef object_;
1772 // XXX: delete object_? ;(
1775 static CYInternal *Get(id self) {
1776 CYInternal *internal(NULL);
1777 if (object_getInstanceVariable(self, "cy$internal_", reinterpret_cast<void **>(&internal)) == NULL) {
1778 // XXX: do something epic? ;P
1784 static CYInternal *Set(id self) {
1785 CYInternal *internal(NULL);
1786 if (Ivar ivar = object_getInstanceVariable(self, "cy$internal_", reinterpret_cast<void **>(&internal))) {
1787 if (internal == NULL) {
1788 internal = new CYInternal();
1789 object_setIvar(self, ivar, reinterpret_cast<id>(internal));
1792 // XXX: do something epic? ;P
1798 bool HasProperty(JSContextRef context, JSStringRef name) {
1799 if (object_ == NULL)
1801 return JSObjectHasProperty(context, object_, name);
1804 JSValueRef GetProperty(JSContextRef context, JSStringRef name) {
1805 if (object_ == NULL)
1807 return CYGetProperty(context, object_, name);
1810 void SetProperty(JSContextRef context, JSStringRef name, JSValueRef value) {
1811 if (object_ == NULL)
1812 object_ = JSObjectMake(context, NULL, NULL);
1813 CYSetProperty(context, object_, name, value);
1817 static JSObjectRef CYMakeSelector(JSContextRef context, SEL sel) {
1818 Selector_privateData *internal(new Selector_privateData(sel));
1819 return JSObjectMake(context, Selector_, internal);
1822 static JSObjectRef CYMakePointer(JSContextRef context, void *pointer, sig::Type *type, ffi_type *ffi, JSObjectRef owner) {
1823 Pointer *internal(new Pointer(pointer, context, owner, type));
1824 return JSObjectMake(context, Pointer_, internal);
1827 static JSObjectRef CYMakeFunctor(JSContextRef context, void (*function)(), const char *type) {
1828 Functor_privateData *internal(new Functor_privateData(type, function));
1829 return JSObjectMake(context, Functor_, internal);
1832 static const char *CYPoolCString(apr_pool_t *pool, JSStringRef value) {
1834 // XXX: this could be much more efficient
1835 const char *string([CYCastNSString(NULL, value) UTF8String]);
1838 size_t size(JSStringGetMaximumUTF8CStringSize(value));
1839 char *string(new(pool) char[size]);
1840 JSStringGetUTF8CString(value, string, size);
1845 static const char *CYPoolCString(apr_pool_t *pool, JSContextRef context, JSValueRef value) {
1846 return JSValueIsNull(context, value) ? NULL : CYPoolCString(pool, CYJSString(context, value));
1849 static bool CYGetOffset(apr_pool_t *pool, JSStringRef value, ssize_t &index) {
1850 return CYGetOffset(CYPoolCString(pool, value), index);
1853 // XXX: this macro is unhygenic
1854 #define CYCastCString(context, value) ({ \
1856 if (value == NULL) \
1858 else if (JSStringRef string = CYCopyJSString(context, value)) { \
1859 size_t size(JSStringGetMaximumUTF8CStringSize(string)); \
1860 utf8 = reinterpret_cast<char *>(alloca(size)); \
1861 JSStringGetUTF8CString(string, utf8, size); \
1862 JSStringRelease(string); \
1868 static void *CYCastPointer_(JSContextRef context, JSValueRef value) {
1869 switch (JSValueGetType(context, value)) {
1872 /*case kJSTypeString:
1873 return dlsym(RTLD_DEFAULT, CYCastCString(context, value));
1875 if (JSValueIsObjectOfClass(context, value, Pointer_)) {
1876 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate((JSObjectRef) value)));
1877 return internal->value_;
1880 double number(CYCastDouble(context, value));
1881 if (std::isnan(number))
1882 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"cannot convert value to pointer" userInfo:nil];
1883 return reinterpret_cast<void *>(static_cast<uintptr_t>(static_cast<long long>(number)));
1887 template <typename Type_>
1888 static _finline Type_ CYCastPointer(JSContextRef context, JSValueRef value) {
1889 return reinterpret_cast<Type_>(CYCastPointer_(context, value));
1892 static SEL CYCastSEL(JSContextRef context, JSValueRef value) {
1893 if (JSValueIsObjectOfClass(context, value, Selector_)) {
1894 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1895 return reinterpret_cast<SEL>(internal->value_);
1897 return CYCastPointer<SEL>(context, value);
1900 static void CYPoolFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) {
1901 switch (type->primitive) {
1902 case sig::boolean_P:
1903 *reinterpret_cast<bool *>(data) = JSValueToBoolean(context, value);
1906 #define CYPoolFFI_(primitive, native) \
1907 case sig::primitive ## _P: \
1908 *reinterpret_cast<native *>(data) = CYCastDouble(context, value); \
1911 CYPoolFFI_(uchar, unsigned char)
1912 CYPoolFFI_(char, char)
1913 CYPoolFFI_(ushort, unsigned short)
1914 CYPoolFFI_(short, short)
1915 CYPoolFFI_(ulong, unsigned long)
1916 CYPoolFFI_(long, long)
1917 CYPoolFFI_(uint, unsigned int)
1918 CYPoolFFI_(int, int)
1919 CYPoolFFI_(ulonglong, unsigned long long)
1920 CYPoolFFI_(longlong, long long)
1921 CYPoolFFI_(float, float)
1922 CYPoolFFI_(double, double)
1925 case sig::typename_P:
1926 *reinterpret_cast<id *>(data) = CYCastNSObject(pool, context, value);
1929 case sig::selector_P:
1930 *reinterpret_cast<SEL *>(data) = CYCastSEL(context, value);
1933 case sig::pointer_P:
1934 *reinterpret_cast<void **>(data) = CYCastPointer<void *>(context, value);
1938 *reinterpret_cast<const char **>(data) = CYPoolCString(pool, context, value);
1941 case sig::struct_P: {
1942 uint8_t *base(reinterpret_cast<uint8_t *>(data));
1943 JSObjectRef aggregate(JSValueIsObject(context, value) ? (JSObjectRef) value : NULL);
1944 for (size_t index(0); index != type->data.signature.count; ++index) {
1945 sig::Element *element(&type->data.signature.elements[index]);
1946 ffi_type *field(ffi->elements[index]);
1949 if (aggregate == NULL)
1952 rhs = CYGetProperty(context, aggregate, index);
1953 if (JSValueIsUndefined(context, rhs)) {
1954 if (element->name != NULL)
1955 rhs = CYGetProperty(context, aggregate, CYJSString(element->name));
1958 if (JSValueIsUndefined(context, rhs)) undefined:
1959 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"unable to extract structure value" userInfo:nil];
1963 CYPoolFFI(pool, context, element->type, field, base, rhs);
1965 base += field->size;
1973 NSLog(@"CYPoolFFI(%c)\n", type->primitive);
1978 static JSValueRef CYFromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize = false, JSObjectRef owner = NULL) {
1981 switch (type->primitive) {
1982 case sig::boolean_P:
1983 value = CYCastJSValue(context, *reinterpret_cast<bool *>(data));
1986 #define CYFromFFI_(primitive, native) \
1987 case sig::primitive ## _P: \
1988 value = CYCastJSValue(context, *reinterpret_cast<native *>(data)); \
1991 CYFromFFI_(uchar, unsigned char)
1992 CYFromFFI_(char, char)
1993 CYFromFFI_(ushort, unsigned short)
1994 CYFromFFI_(short, short)
1995 CYFromFFI_(ulong, unsigned long)
1996 CYFromFFI_(long, long)
1997 CYFromFFI_(uint, unsigned int)
1998 CYFromFFI_(int, int)
1999 CYFromFFI_(ulonglong, unsigned long long)
2000 CYFromFFI_(longlong, long long)
2001 CYFromFFI_(float, float)
2002 CYFromFFI_(double, double)
2004 case sig::object_P: {
2005 if (id object = *reinterpret_cast<id *>(data)) {
2006 value = CYCastJSValue(context, object);
2012 case sig::typename_P:
2013 value = CYMakeInstance(context, *reinterpret_cast<Class *>(data), true);
2016 case sig::selector_P:
2017 if (SEL sel = *reinterpret_cast<SEL *>(data))
2018 value = CYMakeSelector(context, sel);
2022 case sig::pointer_P:
2023 if (void *pointer = *reinterpret_cast<void **>(data))
2024 value = CYMakePointer(context, pointer, type->data.data.type, ffi, owner);
2029 if (char *utf8 = *reinterpret_cast<char **>(data))
2030 value = CYCastJSValue(context, utf8);
2035 value = CYMakeStruct(context, data, type, ffi, owner);
2039 value = CYJSUndefined(context);
2043 value = CYJSNull(context);
2047 NSLog(@"CYFromFFI(%c)\n", type->primitive);
2054 static bool CYImplements(id object, Class _class, SEL selector, bool devoid) {
2055 if (Method method = class_getInstanceMethod(_class, selector)) {
2059 method_getReturnType(method, type, sizeof(type));
2064 // XXX: possibly use a more "awesome" check?
2068 static const char *CYPoolTypeEncoding(apr_pool_t *pool, Class _class, SEL sel, Method method) {
2070 return method_getTypeEncoding(method);
2071 else if (NSString *type = [[Bridge_ objectAtIndex:1] objectForKey:CYCastNSString(pool, sel_getName(sel))])
2072 return CYPoolCString(pool, type);
2077 static void FunctionClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
2078 Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg));
2080 JSContextRef context(internal->context_);
2082 size_t count(internal->cif_.nargs);
2083 JSValueRef values[count];
2085 for (size_t index(0); index != count; ++index)
2086 values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]);
2088 JSValueRef value(CYCallAsFunction(context, internal->function_, NULL, count, values));
2089 CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value);
2092 static void MessageClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
2093 Closure_privateData *internal(reinterpret_cast<Closure_privateData *>(arg));
2095 JSContextRef context(internal->context_);
2097 size_t count(internal->cif_.nargs);
2098 JSValueRef values[count];
2100 for (size_t index(0); index != count; ++index)
2101 values[index] = CYFromFFI(context, internal->signature_.elements[1 + index].type, internal->cif_.arg_types[index], arguments[index]);
2103 JSObjectRef _this(CYCastJSObject(context, values[0]));
2105 JSValueRef value(CYCallAsFunction(context, internal->function_, _this, count - 2, values + 2));
2106 CYPoolFFI(NULL, context, internal->signature_.elements[0].type, internal->cif_.rtype, result, value);
2109 static Closure_privateData *CYMakeFunctor_(JSContextRef context, JSObjectRef function, const char *type, void (*callback)(ffi_cif *, void *, void **, void *)) {
2110 // XXX: in case of exceptions this will leak
2111 // XXX: in point of fact, this may /need/ to leak :(
2112 Closure_privateData *internal(new Closure_privateData(CYGetJSContext(), function, type));
2114 ffi_closure *closure((ffi_closure *) _syscall(mmap(
2115 NULL, sizeof(ffi_closure),
2116 PROT_READ | PROT_WRITE, MAP_ANON | MAP_PRIVATE,
2120 ffi_status status(ffi_prep_closure(closure, &internal->cif_, callback, internal));
2121 _assert(status == FFI_OK);
2123 _syscall(mprotect(closure, sizeof(*closure), PROT_READ | PROT_EXEC));
2125 internal->value_ = closure;
2130 static JSObjectRef CYMakeFunctor(JSContextRef context, JSObjectRef function, const char *type) {
2131 Closure_privateData *internal(CYMakeFunctor_(context, function, type, &FunctionClosure_));
2132 return JSObjectMake(context, Functor_, internal);
2135 static JSObjectRef CYMakeFunctor(JSContextRef context, JSValueRef value, const char *type) {
2136 JSValueRef exception(NULL);
2137 bool function(JSValueIsInstanceOfConstructor(context, value, Function_, &exception));
2138 CYThrow(context, exception);
2141 JSObjectRef function(CYCastJSObject(context, value));
2142 return CYMakeFunctor(context, function, type);
2144 void (*function)()(CYCastPointer<void (*)()>(context, value));
2145 return CYMakeFunctor(context, function, type);
2149 static JSObjectRef CYMakeMessage(JSContextRef context, SEL sel, IMP imp, const char *type) {
2150 Message_privateData *internal(new Message_privateData(sel, type, imp));
2151 return JSObjectMake(context, Message_, internal);
2154 static IMP CYMakeMessage(JSContextRef context, JSValueRef value, const char *type) {
2155 JSObjectRef function(CYCastJSObject(context, value));
2156 Closure_privateData *internal(CYMakeFunctor_(context, function, type, &MessageClosure_));
2157 return reinterpret_cast<IMP>(internal->GetValue());
2160 static bool Messages_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2161 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
2162 Class _class(internal->GetValue());
2165 const char *name(CYPoolCString(pool, property));
2167 if (SEL sel = sel_getUid(name))
2168 if (class_getInstanceMethod(_class, sel) != NULL)
2174 static JSValueRef Messages_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2175 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
2176 Class _class(internal->GetValue());
2179 const char *name(CYPoolCString(pool, property));
2181 if (SEL sel = sel_getUid(name))
2182 if (Method method = class_getInstanceMethod(_class, sel))
2183 return CYMakeMessage(context, sel, method_getImplementation(method), method_getTypeEncoding(method));
2188 static bool Messages_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2189 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
2190 Class _class(internal->GetValue());
2193 const char *name(CYPoolCString(pool, property));
2195 SEL sel(sel_registerName(name));
2197 Method method(class_getInstanceMethod(_class, sel));
2202 if (JSValueIsObjectOfClass(context, value, Message_)) {
2203 Message_privateData *message(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
2204 type = sig::Unparse(pool, &message->signature_);
2205 imp = reinterpret_cast<IMP>(message->GetValue());
2207 type = CYPoolTypeEncoding(pool, _class, sel, method);
2208 imp = CYMakeMessage(context, value, type);
2212 method_setImplementation(method, imp);
2214 class_replaceMethod(_class, sel, imp, type);
2220 static bool Messages_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2221 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
2222 Class _class(internal->GetValue());
2225 const char *name(CYPoolCString(pool, property));
2227 if (SEL sel = sel_getUid(name))
2228 if (Method method = class_getInstanceMethod(_class, sel)) {
2229 objc_method_list list = {NULL, 1, {method}};
2230 class_removeMethods(_class, &list);
2238 static void Messages_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2239 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
2240 Class _class(internal->GetValue());
2243 Method *data(class_copyMethodList(_class, &size));
2244 for (size_t i(0); i != size; ++i)
2245 JSPropertyNameAccumulatorAddName(names, CYJSString(sel_getName(method_getName(data[i]))));
2249 static bool Instance_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2250 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2251 id self(internal->GetValue());
2253 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
2257 NSString *name(CYCastNSString(pool, property));
2259 if (CYInternal *internal = CYInternal::Get(self))
2260 if (internal->HasProperty(context, property))
2263 Class _class(object_getClass(self));
2266 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
2267 if (CYImplements(self, _class, @selector(cy$hasProperty:), false))
2268 if ([self cy$hasProperty:name])
2270 } CYPoolCatch(false)
2272 const char *string(CYPoolCString(pool, name));
2274 if (class_getProperty(_class, string) != NULL)
2277 if (SEL sel = sel_getUid(string))
2278 if (CYImplements(self, _class, sel, true))
2284 static JSValueRef Instance_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2285 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2286 id self(internal->GetValue());
2288 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
2289 return Internal::Make(context, self, object);
2293 NSString *name(CYCastNSString(pool, property));
2295 if (CYInternal *internal = CYInternal::Get(self))
2296 if (JSValueRef value = internal->GetProperty(context, property))
2300 if (NSObject *data = [self cy$getProperty:name])
2301 return CYCastJSValue(context, data);
2304 const char *string(CYPoolCString(pool, name));
2305 Class _class(object_getClass(self));
2308 if (objc_property_t property = class_getProperty(_class, string)) {
2309 PropertyAttributes attributes(property);
2310 SEL sel(sel_registerName(attributes.Getter()));
2311 return CYSendMessage(pool, context, self, sel, 0, NULL, false, exception);
2315 if (SEL sel = sel_getUid(string))
2316 if (CYImplements(self, _class, sel, true))
2317 return CYSendMessage(pool, context, self, sel, 0, NULL, false, exception);
2323 static bool Instance_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2324 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2325 id self(internal->GetValue());
2330 NSString *name(CYCastNSString(pool, property));
2331 NSString *data(CYCastNSObject(pool, context, value));
2334 if ([self cy$setProperty:name to:data])
2338 const char *string(CYPoolCString(pool, name));
2339 Class _class(object_getClass(self));
2342 if (objc_property_t property = class_getProperty(_class, string)) {
2343 PropertyAttributes attributes(property);
2344 if (const char *setter = attributes.Setter()) {
2345 SEL sel(sel_registerName(setter));
2346 JSValueRef arguments[1] = {value};
2347 CYSendMessage(pool, context, self, sel, 1, arguments, false, exception);
2353 size_t length(strlen(string));
2355 char set[length + 5];
2361 if (string[0] != '\0') {
2362 set[3] = toupper(string[0]);
2363 memcpy(set + 4, string + 1, length - 1);
2366 set[length + 3] = ':';
2367 set[length + 4] = '\0';
2369 if (SEL sel = sel_getUid(set))
2370 if (CYImplements(self, _class, sel, false)) {
2371 JSValueRef arguments[1] = {value};
2372 CYSendMessage(pool, context, self, sel, 1, arguments, false, exception);
2375 if (CYInternal *internal = CYInternal::Set(self)) {
2376 internal->SetProperty(context, property, value);
2384 static bool Instance_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2385 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2386 id self(internal->GetValue());
2390 NSString *name(CYCastNSString(NULL, property));
2391 return [self cy$deleteProperty:name];
2396 static void Instance_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2397 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2398 id self(internal->GetValue());
2401 Class _class(object_getClass(self));
2405 objc_property_t *data(class_copyPropertyList(_class, &size));
2406 for (size_t i(0); i != size; ++i)
2407 JSPropertyNameAccumulatorAddName(names, CYJSString(property_getName(data[i])));
2412 static JSObjectRef Instance_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2414 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2415 JSObjectRef value(Instance::Make(context, [internal->GetValue() alloc], Instance::Uninitialized));
2420 static bool CYIsClass(id self) {
2421 // XXX: this is a lame object_isClass
2422 return class_getInstanceMethod(object_getClass(self), @selector(alloc)) != NULL;
2425 static bool Instance_hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef instance, JSValueRef *exception) {
2426 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) constructor)));
2427 Class _class(internal->GetValue());
2428 if (!CYIsClass(_class))
2431 if (JSValueIsObjectOfClass(context, instance, Instance_)) {
2432 Instance *linternal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) instance)));
2433 // XXX: this isn't always safe
2435 return [linternal->GetValue() isKindOfClass:_class];
2442 static bool Internal_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2443 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2446 id self(internal->GetValue());
2447 const char *name(CYPoolCString(pool, property));
2449 if (object_getInstanceVariable(self, name, NULL) != NULL)
2455 static JSValueRef Internal_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2456 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2460 id self(internal->GetValue());
2461 const char *name(CYPoolCString(pool, property));
2463 if (Ivar ivar = object_getInstanceVariable(self, name, NULL)) {
2464 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2465 return CYFromFFI(context, type.type_, type.GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar));
2472 static bool Internal_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2473 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2477 id self(internal->GetValue());
2478 const char *name(CYPoolCString(pool, property));
2480 if (Ivar ivar = object_getInstanceVariable(self, name, NULL)) {
2481 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2482 CYPoolFFI(pool, context, type.type_, type.GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar), value);
2490 static void Internal_getPropertyNames_(Class _class, JSPropertyNameAccumulatorRef names) {
2491 if (Class super = class_getSuperclass(_class))
2492 Internal_getPropertyNames_(super, names);
2495 Ivar *data(class_copyIvarList(_class, &size));
2496 for (size_t i(0); i != size; ++i)
2497 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(data[i])));
2501 static void Internal_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2502 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2505 id self(internal->GetValue());
2506 Class _class(object_getClass(self));
2508 Internal_getPropertyNames_(_class, names);
2511 static JSValueRef Internal_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2512 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2513 return internal->GetOwner();
2516 static bool Index_(apr_pool_t *pool, Struct_privateData *internal, JSStringRef property, ssize_t &index, uint8_t *&base) {
2517 Type_privateData *typical(internal->type_);
2518 sig::Type *type(typical->type_);
2522 const char *name(CYPoolCString(pool, property));
2523 size_t length(strlen(name));
2524 double number(CYCastDouble(name, length));
2526 size_t count(type->data.signature.count);
2528 if (std::isnan(number)) {
2529 if (property == NULL)
2532 sig::Element *elements(type->data.signature.elements);
2534 for (size_t local(0); local != count; ++local) {
2535 sig::Element *element(&elements[local]);
2536 if (element->name != NULL && strcmp(name, element->name) == 0) {
2544 index = static_cast<ssize_t>(number);
2545 if (index != number || index < 0 || static_cast<size_t>(index) >= count)
2550 ffi_type **elements(typical->GetFFI()->elements);
2552 base = reinterpret_cast<uint8_t *>(internal->value_);
2553 for (ssize_t local(0); local != index; ++local)
2554 base += elements[local]->size;
2559 static JSValueRef Pointer_getIndex(JSContextRef context, JSObjectRef object, size_t index, JSValueRef *exception) {
2560 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2561 Type_privateData *typical(internal->type_);
2563 ffi_type *ffi(typical->GetFFI());
2565 uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_));
2566 base += ffi->size * index;
2568 JSObjectRef owner(internal->GetOwner() ?: object);
2571 return CYFromFFI(context, typical->type_, ffi, base, false, owner);
2575 static JSValueRef Pointer_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2577 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2578 Type_privateData *typical(internal->type_);
2580 if (typical->type_ == NULL)
2584 if (!CYGetOffset(pool, property, offset))
2587 return Pointer_getIndex(context, object, offset, exception);
2590 static JSValueRef Pointer_getProperty_$cyi(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2591 return Pointer_getIndex(context, object, 0, exception);
2594 static bool Pointer_setIndex(JSContextRef context, JSObjectRef object, size_t index, JSValueRef value, JSValueRef *exception) {
2595 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2596 Type_privateData *typical(internal->type_);
2598 ffi_type *ffi(typical->GetFFI());
2600 uint8_t *base(reinterpret_cast<uint8_t *>(internal->value_));
2601 base += ffi->size * index;
2604 CYPoolFFI(NULL, context, typical->type_, ffi, base, value);
2609 static bool Pointer_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2611 Pointer *internal(reinterpret_cast<Pointer *>(JSObjectGetPrivate(object)));
2612 Type_privateData *typical(internal->type_);
2614 if (typical->type_ == NULL)
2618 if (!CYGetOffset(pool, property, offset))
2621 return Pointer_setIndex(context, object, offset, value, exception);
2624 static bool Pointer_setProperty_$cyi(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2625 return Pointer_setIndex(context, object, 0, value, exception);
2628 static JSValueRef Struct_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2629 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(_this)));
2630 Type_privateData *typical(internal->type_);
2631 return CYMakePointer(context, internal->value_, typical->type_, typical->ffi_, _this);
2634 static JSValueRef Struct_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2636 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object)));
2637 Type_privateData *typical(internal->type_);
2642 if (!Index_(pool, internal, property, index, base))
2645 JSObjectRef owner(internal->GetOwner() ?: object);
2648 return CYFromFFI(context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, false, owner);
2652 static bool Struct_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) {
2654 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object)));
2655 Type_privateData *typical(internal->type_);
2660 if (!Index_(pool, internal, property, index, base))
2664 CYPoolFFI(NULL, context, typical->type_->data.signature.elements[index].type, typical->GetFFI()->elements[index], base, value);
2669 static void Struct_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2670 Struct_privateData *internal(reinterpret_cast<Struct_privateData *>(JSObjectGetPrivate(object)));
2671 Type_privateData *typical(internal->type_);
2672 sig::Type *type(typical->type_);
2677 size_t count(type->data.signature.count);
2678 sig::Element *elements(type->data.signature.elements);
2682 for (size_t index(0); index != count; ++index) {
2684 name = elements[index].name;
2687 sprintf(number, "%lu", index);
2691 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
2695 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)()) {
2697 if (setups + count != signature->count - 1)
2698 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to ffi function" userInfo:nil];
2700 size_t size(setups + count);
2702 memcpy(values, setup, sizeof(void *) * setups);
2704 for (size_t index(setups); index != size; ++index) {
2705 sig::Element *element(&signature->elements[index + 1]);
2706 ffi_type *ffi(cif->arg_types[index]);
2708 values[index] = new(pool) uint8_t[ffi->size];
2709 CYPoolFFI(pool, context, element->type, ffi, values[index], arguments[index - setups]);
2712 uint8_t value[cif->rtype->size];
2713 ffi_call(cif, function, value, values);
2715 return CYFromFFI(context, signature->elements[0].type, cif->rtype, value, initialize);
2719 static JSValueRef ObjectiveC_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2722 NSString *name(CYCastNSString(pool, property));
2723 if (Class _class = NSClassFromString(name))
2724 return CYMakeInstance(context, _class, true);
2729 static void ObjectiveC_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2730 size_t size(objc_getClassList(NULL, 0));
2731 Class *data(reinterpret_cast<Class *>(malloc(sizeof(Class) * size)));
2734 size_t writ(objc_getClassList(data, size));
2737 if (Class *copy = reinterpret_cast<Class *>(realloc(data, sizeof(Class) * writ))) {
2743 for (size_t i(0); i != writ; ++i)
2744 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(data[i])));
2750 static JSValueRef ObjectiveC_Image_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2751 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2755 const char *name(CYPoolCString(pool, property));
2757 const char **data(objc_copyClassNamesForImage(internal, &size));
2759 for (size_t i(0); i != size; ++i)
2760 if (strcmp(name, data[i]) == 0) {
2761 if (Class _class = objc_getClass(name)) {
2762 value = CYMakeInstance(context, _class, true);
2774 static void ObjectiveC_Image_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2775 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2777 const char **data(objc_copyClassNamesForImage(internal, &size));
2778 for (size_t i(0); i != size; ++i)
2779 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2783 static JSValueRef ObjectiveC_Images_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2786 const char *name(CYPoolCString(pool, property));
2788 const char **data(objc_copyImageNames(&size));
2789 for (size_t i(0); i != size; ++i)
2790 if (strcmp(name, data[i]) == 0) {
2799 JSObjectRef value(JSObjectMake(context, NULL, NULL));
2800 CYSetProperty(context, value, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Image_Classes_, const_cast<char *>(name)));
2805 static void ObjectiveC_Images_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2807 const char **data(objc_copyImageNames(&size));
2808 for (size_t i(0); i != size; ++i)
2809 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2813 static JSValueRef ObjectiveC_Protocols_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2816 NSString *name(CYCastNSString(pool, property));
2817 if (Protocol *protocol = NSProtocolFromString(name))
2818 return CYMakeInstance(context, protocol, true);
2823 static void ObjectiveC_Protocols_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2825 Protocol **data(objc_copyProtocolList(&size));
2826 for (size_t i(0); i != size; ++i)
2827 JSPropertyNameAccumulatorAddName(names, CYJSString(protocol_getName(data[i])));
2831 static JSObjectRef CYMakeType(JSContextRef context, const char *type) {
2832 Type_privateData *internal(new Type_privateData(NULL, type));
2833 return JSObjectMake(context, Type_privateData::Class_, internal);
2836 static JSObjectRef CYMakeType(JSContextRef context, sig::Type *type) {
2837 Type_privateData *internal(new Type_privateData(type));
2838 return JSObjectMake(context, Type_privateData::Class_, internal);
2841 static JSValueRef Runtime_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
2842 if (JSStringIsEqualToUTF8CString(property, "nil"))
2843 return Instance::Make(context, nil);
2847 NSString *name(CYCastNSString(pool, property));
2848 if (Class _class = NSClassFromString(name))
2849 return CYMakeInstance(context, _class, true);
2850 if (NSMutableArray *entry = [[Bridge_ objectAtIndex:0] objectForKey:name])
2851 switch ([[entry objectAtIndex:0] intValue]) {
2853 return JSEvaluateScript(CYGetJSContext(), CYJSString([entry objectAtIndex:1]), NULL, NULL, 0, NULL);
2855 return CYMakeFunctor(context, reinterpret_cast<void (*)()>([name cy$symbol]), CYPoolCString(pool, [entry objectAtIndex:1]));
2857 // XXX: this is horrendously inefficient
2858 sig::Signature signature;
2859 sig::Parse(pool, &signature, CYPoolCString(pool, [entry objectAtIndex:1]), &Structor_);
2861 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
2862 return CYFromFFI(context, signature.elements[0].type, cif.rtype, [name cy$symbol]);
2864 if (NSMutableArray *entry = [[Bridge_ objectAtIndex:2] objectForKey:name])
2865 switch ([[entry objectAtIndex:0] intValue]) {
2866 // XXX: implement case 0
2868 return CYMakeType(context, CYPoolCString(pool, [entry objectAtIndex:1]));
2874 static bool stret(ffi_type *ffi_type) {
2875 return ffi_type->type == FFI_TYPE_STRUCT && (
2876 ffi_type->size > OBJC_MAX_STRUCT_BY_VALUE ||
2877 struct_forward_array[ffi_type->size] != 0
2882 int *_NSGetArgc(void);
2883 char ***_NSGetArgv(void);
2886 static JSValueRef System_print(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2891 NSLog(@"%s", CYCastCString(context, arguments[0]));
2892 return CYJSUndefined(context);
2896 JSValueRef CYSendMessage(apr_pool_t *pool, JSContextRef context, id self, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize, JSValueRef *exception) {
2899 Class _class(object_getClass(self));
2900 if (Method method = class_getInstanceMethod(_class, _cmd))
2901 type = method_getTypeEncoding(method);
2905 NSMethodSignature *method([self methodSignatureForSelector:_cmd]);
2907 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:[NSString stringWithFormat:@"unrecognized selector %s sent to object %p", sel_getName(_cmd), self] userInfo:nil];
2908 type = CYPoolCString(pool, [method _typeString]);
2917 sig::Signature signature;
2918 sig::Parse(pool, &signature, type, &Structor_);
2921 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
2923 void (*function)() = stret(cif.rtype) ? reinterpret_cast<void (*)()>(&objc_msgSend_stret) : reinterpret_cast<void (*)()>(&objc_msgSend);
2924 return CYCallFunction(pool, context, 2, setup, count, arguments, initialize, exception, &signature, &cif, function);
2927 static size_t Nonce_(0);
2929 static JSValueRef $cyq(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2931 sprintf(name, "%s%zu", CYCastCString(context, arguments[0]), Nonce_++);
2932 return CYCastJSValue(context, name);
2935 static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2945 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"too few arguments to objc_msgSend" userInfo:nil];
2947 if (JSValueIsObjectOfClass(context, arguments[0], Instance_)) {
2948 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2949 self = internal->GetValue();
2950 uninitialized = internal->IsUninitialized();
2952 internal->value_ = nil;
2954 self = CYCastNSObject(pool, context, arguments[0]);
2955 uninitialized = false;
2959 return CYJSNull(context);
2961 _cmd = CYCastSEL(context, arguments[1]);
2964 return CYSendMessage(pool, context, self, _cmd, count - 2, arguments + 2, uninitialized, exception);
2967 /* Hook: objc_registerClassPair {{{ */
2968 // XXX: replace this with associated objects
2970 MSHook(void, CYDealloc, id self, SEL sel) {
2971 CYInternal *internal;
2972 object_getInstanceVariable(self, "cy$internal_", reinterpret_cast<void **>(&internal));
2973 if (internal != NULL)
2975 _CYDealloc(self, sel);
2978 MSHook(void, objc_registerClassPair, Class _class) {
2979 Class super(class_getSuperclass(_class));
2980 if (super == NULL || class_getInstanceVariable(super, "cy$internal_") == NULL) {
2981 class_addIvar(_class, "cy$internal_", sizeof(CYInternal *), log2(sizeof(CYInternal *)), "^{CYInternal}");
2982 MSHookMessage(_class, @selector(dealloc), MSHake(CYDealloc));
2985 _objc_registerClassPair(_class);
2988 static JSValueRef objc_registerClassPair_(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2991 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to objc_registerClassPair" userInfo:nil];
2993 Class _class(CYCastNSObject(pool, context, arguments[0]));
2994 $objc_registerClassPair(_class);
2995 return CYJSUndefined(context);
3000 static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3001 JSGarbageCollect(context);
3002 return CYJSUndefined(context);
3005 static JSValueRef Selector_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3006 JSValueRef setup[count + 2];
3009 memcpy(setup + 2, arguments, sizeof(JSValueRef) * count);
3010 return $objc_msgSend(context, NULL, NULL, count + 2, setup, exception);
3013 static JSValueRef Message_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3015 Message_privateData *internal(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate(object)));
3017 // XXX: handle Instance::Uninitialized?
3018 id self(CYCastNSObject(pool, context, _this));
3022 setup[1] = &internal->sel_;
3024 return CYCallFunction(pool, context, 2, setup, count, arguments, false, exception, &internal->signature_, &internal->cif_, internal->GetValue());
3027 static JSValueRef Functor_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3029 Functor_privateData *internal(reinterpret_cast<Functor_privateData *>(JSObjectGetPrivate(object)));
3030 return CYCallFunction(pool, context, 0, NULL, count, arguments, false, exception, &internal->signature_, &internal->cif_, internal->GetValue());
3033 static JSObjectRef Selector_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3036 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Selector constructor" userInfo:nil];
3037 const char *name(CYCastCString(context, arguments[0]));
3038 return CYMakeSelector(context, sel_registerName(name));
3042 static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3045 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Functor constructor" userInfo:nil];
3047 void *value(CYCastPointer<void *>(context, arguments[0]));
3048 const char *type(CYCastCString(context, arguments[1]));
3052 sig::Signature signature;
3053 sig::Parse(pool, &signature, type, &Structor_);
3055 return CYMakePointer(context, value, signature.elements[0].type, NULL, NULL);
3059 static JSObjectRef Type_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3062 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Type constructor" userInfo:nil];
3063 const char *type(CYCastCString(context, arguments[0]));
3064 return CYMakeType(context, type);
3068 static JSValueRef Type_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3069 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object)));
3074 if (JSStringIsEqualToUTF8CString(property, "$cyi")) {
3075 type.primitive = sig::pointer_P;
3076 type.data.data.size = 0;
3078 size_t index(CYGetIndex(NULL, property));
3079 if (index == _not(size_t))
3081 type.primitive = sig::array_P;
3082 type.data.data.size = index;
3088 type.data.data.type = internal->type_;
3090 return CYMakeType(context, &type);
3094 static JSValueRef Type_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3095 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object)));
3099 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to type cast function" userInfo:nil];
3100 sig::Type *type(internal->type_);
3101 ffi_type *ffi(internal->GetFFI());
3103 uint8_t value[ffi->size];
3105 CYPoolFFI(pool, context, type, ffi, value, arguments[0]);
3106 return CYFromFFI(context, type, ffi, value);
3110 static JSObjectRef Type_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3113 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to type cast function" userInfo:nil];
3114 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(object)));
3116 sig::Type *type(internal->type_);
3119 if (type->primitive != sig::array_P)
3122 size = type->data.data.size;
3123 type = type->data.data.type;
3126 void *value(malloc(internal->GetFFI()->size));
3127 return CYMakePointer(context, value, type, NULL, NULL);
3131 static JSObjectRef Instance_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3134 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Instance constructor" userInfo:nil];
3135 id self(count == 0 ? nil : CYCastPointer<id>(context, arguments[0]));
3136 return Instance::Make(context, self);
3140 static JSObjectRef Functor_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3143 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Functor constructor" userInfo:nil];
3144 const char *type(CYCastCString(context, arguments[1]));
3145 return CYMakeFunctor(context, arguments[0], type);
3149 static JSValueRef CYValue_getProperty_value(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3150 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(object)));
3151 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
3154 static JSValueRef CYValue_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3155 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
3156 Type_privateData *typical(internal->GetType());
3161 if (typical == NULL) {
3165 type = typical->type_;
3166 ffi = typical->ffi_;
3169 return CYMakePointer(context, &internal->value_, type, ffi, object);
3172 static JSValueRef CYValue_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3173 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
3176 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
3180 static JSValueRef CYValue_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3181 return CYValue_callAsFunction_valueOf(context, object, _this, count, arguments, exception);
3184 static JSValueRef CYValue_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3185 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
3187 sprintf(string, "%p", internal->value_);
3190 return CYCastJSValue(context, string);
3194 static JSValueRef Instance_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3195 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
3196 return Instance::Make(context, object_getClass(internal->GetValue()));
3199 static JSValueRef Instance_getProperty_protocol(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3200 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
3201 id self(internal->GetValue());
3202 if (!CYIsClass(self))
3203 return CYJSUndefined(context);
3205 return CYGetClassPrototype(context, self);
3209 static JSValueRef Instance_getProperty_messages(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) {
3210 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
3211 id self(internal->GetValue());
3212 if (class_getInstanceMethod(object_getClass(self), @selector(alloc)) == NULL)
3213 return CYJSUndefined(context);
3214 return Messages::Make(context, self);
3217 static JSValueRef Instance_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3218 if (!JSValueIsObjectOfClass(context, _this, Instance_))
3221 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
3225 return CYCastJSValue(context, CYJSString(CYPoolNSCYON(NULL, internal->GetValue())));
3230 static JSValueRef Instance_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3231 if (!JSValueIsObjectOfClass(context, _this, Instance_))
3234 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
3238 NSString *key(count == 0 ? nil : CYCastNSString(NULL, CYJSString(context, arguments[0])));
3239 // XXX: check for support of cy$toJSON?
3240 return CYCastJSValue(context, CYJSString([internal->GetValue() cy$toJSON:key]));
3245 static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3246 if (!JSValueIsObjectOfClass(context, _this, Instance_))
3249 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
3253 return CYCastJSValue(context, CYJSString([internal->GetValue() description]));
3258 static JSValueRef Selector_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3259 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
3262 return CYCastJSValue(context, sel_getName(internal->GetValue()));
3266 static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3267 return Selector_callAsFunction_toString(context, object, _this, count, arguments, exception);
3270 static JSValueRef Selector_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3271 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
3272 const char *name(sel_getName(internal->GetValue()));
3276 return CYCastJSValue(context, CYJSString([NSString stringWithFormat:@"@selector(%s)", name]));
3281 static JSValueRef Selector_callAsFunction_type(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3284 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"incorrect number of arguments to Selector.type" userInfo:nil];
3286 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
3287 Class _class(CYCastNSObject(pool, context, arguments[0]));
3288 SEL sel(internal->GetValue());
3289 Method method(class_getInstanceMethod(_class, sel));
3290 const char *type(CYPoolTypeEncoding(pool, _class, sel, method));
3291 return type == NULL ? CYJSNull(context) : CYCastJSValue(context, CYJSString(type));
3295 static JSValueRef Type_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3297 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this)));
3299 const char *type(sig::Unparse(pool, internal->type_));
3301 return CYCastJSValue(context, CYJSString(type));
3306 static JSValueRef Type_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3308 Type_privateData *internal(reinterpret_cast<Type_privateData *>(JSObjectGetPrivate(_this)));
3310 const char *type(sig::Unparse(pool, internal->type_));
3312 return CYCastJSValue(context, CYJSString([NSString stringWithFormat:@"new Type(%@)", [[NSString stringWithUTF8String:type] cy$toCYON]]));
3317 static JSValueRef Type_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
3318 return Type_callAsFunction_toString(context, object, _this, count, arguments, exception);
3321 static JSStaticValue CYValue_staticValues[2] = {
3322 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete},
3323 {NULL, NULL, NULL, 0}
3326 static JSStaticValue Pointer_staticValues[2] = {
3327 {"$cyi", &Pointer_getProperty_$cyi, &Pointer_setProperty_$cyi, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3328 {NULL, NULL, NULL, 0}
3331 static JSStaticFunction Pointer_staticFunctions[4] = {
3332 {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3333 {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3334 {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3338 static JSStaticFunction Struct_staticFunctions[2] = {
3339 {"$cya", &Struct_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3343 static JSStaticFunction Functor_staticFunctions[4] = {
3344 {"toCYON", &CYValue_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3345 {"toJSON", &CYValue_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3346 {"valueOf", &CYValue_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3350 static JSStaticValue Instance_staticValues[5] = {
3351 {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3352 {"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3353 {"prototype", &Instance_getProperty_protocol, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3354 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3355 {NULL, NULL, NULL, 0}
3358 static JSStaticFunction Instance_staticFunctions[5] = {
3359 {"$cya", &CYValue_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3360 {"toCYON", &Instance_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3361 {"toJSON", &Instance_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3362 {"toString", &Instance_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3366 static JSStaticFunction Internal_staticFunctions[2] = {
3367 {"$cya", &Internal_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3371 static JSStaticFunction Selector_staticFunctions[5] = {
3372 {"toCYON", &Selector_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3373 {"toJSON", &Selector_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3374 {"toString", &Selector_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3375 {"type", &Selector_callAsFunction_type, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3379 static JSStaticFunction Type_staticFunctions[4] = {
3380 {"toCYON", &Type_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3381 {"toJSON", &Type_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3382 {"toString", &Type_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
3386 void CYSetArgs(int argc, const char *argv[]) {
3387 JSContextRef context(CYGetJSContext());
3388 JSValueRef args[argc];
3389 for (int i(0); i != argc; ++i)
3390 args[i] = CYCastJSValue(context, argv[i]);
3391 JSValueRef exception(NULL);
3392 JSObjectRef array(JSObjectMakeArray(context, argc, args, &exception));
3393 CYThrow(context, exception);
3394 CYSetProperty(context, System_, CYJSString("args"), array);
3397 JSObjectRef CYGetGlobalObject(JSContextRef context) {
3398 return JSContextGetGlobalObject(context);
3401 const char *CYExecute(apr_pool_t *pool, const char *code) { _pooled
3402 JSContextRef context(CYGetJSContext());
3403 JSValueRef exception(NULL), result;
3406 result = JSEvaluateScript(context, CYJSString(code), NULL, NULL, 0, &exception);
3407 } catch (const char *error) {
3411 if (exception != NULL) { error:
3416 if (JSValueIsUndefined(context, result))
3422 json = CYPoolCCYON(pool, context, result, &exception);
3423 } catch (const char *error) {
3427 if (exception != NULL)
3430 CYSetProperty(context, CYGetGlobalObject(context), Result_, result);
3434 static apr_pool_t *Pool_;
3438 const char * volatile data_;
3441 // XXX: this is "tre lame"
3442 @interface CYClient_ : NSObject {
3445 - (void) execute:(NSValue *)value;
3449 @implementation CYClient_
3451 - (void) execute:(NSValue *)value {
3452 CYExecute_ *execute(reinterpret_cast<CYExecute_ *>([value pointerValue]));
3453 const char *data(execute->data_);
3454 execute->data_ = NULL;
3455 execute->data_ = CYExecute(execute->pool_, data);
3464 apr_thread_t *thread_;
3466 CYClient(int socket) :
3472 _syscall(close(socket_));
3475 void Handle() { _pooled
3476 CYClient_ *client = [[[CYClient_ alloc] init] autorelease];
3480 if (!CYRecvAll(socket_, &size, sizeof(size)))
3484 char *data(new(pool) char[size + 1]);
3485 if (!CYRecvAll(socket_, data, size))
3489 CYDriver driver("");
3490 cy::parser parser(driver);
3492 driver.data_ = data;
3493 driver.size_ = size;
3496 if (parser.parse() != 0 || !driver.errors_.empty()) {
3498 size = _not(size_t);
3500 CYContext context(driver.pool_);
3501 driver.program_->Replace(context);
3502 std::ostringstream str;
3504 out << *driver.program_;
3505 std::string code(str.str());
3506 CYExecute_ execute = {pool, code.c_str()};
3507 [client performSelectorOnMainThread:@selector(execute:) withObject:[NSValue valueWithPointer:&execute] waitUntilDone:YES];
3508 json = execute.data_;
3509 size = json == NULL ? _not(size_t) : strlen(json);
3512 if (!CYSendAll(socket_, &size, sizeof(size)))
3515 if (!CYSendAll(socket_, json, size))
3521 static void * APR_THREAD_FUNC OnClient(apr_thread_t *thread, void *data) {
3522 CYClient *client(reinterpret_cast<CYClient *>(data));
3528 extern "C" void CYHandleClient(apr_pool_t *pool, int socket) {
3529 CYClient *client(new(pool) CYClient(socket));
3530 apr_threadattr_t *attr;
3531 _aprcall(apr_threadattr_create(&attr, client->pool_));
3532 _aprcall(apr_thread_create(&client->thread_, attr, &OnClient, client, client->pool_));
3535 MSInitialize { _pooled
3536 _aprcall(apr_initialize());
3537 _aprcall(apr_pool_create(&Pool_, NULL));
3539 Type_privateData::Object = new(Pool_) Type_privateData(Pool_, "@");
3540 Type_privateData::Selector = new(Pool_) Type_privateData(Pool_, ":");
3542 Bridge_ = [[NSMutableArray arrayWithContentsOfFile:@"/usr/lib/libcycript.plist"] retain];
3544 NSArray_ = objc_getClass("NSArray");
3545 NSCFBoolean_ = objc_getClass("NSCFBoolean");
3546 NSCFType_ = objc_getClass("NSCFType");
3547 NSDictionary_ = objc_getClass("NSDictonary");
3548 NSMessageBuilder_ = objc_getClass("NSMessageBuilder");
3549 NSZombie_ = objc_getClass("_NSZombie_");
3550 Object_ = objc_getClass("Object");
3553 JSGlobalContextRef CYGetJSContext() {
3554 if (Context_ == NULL) {
3555 JSClassDefinition definition;
3557 definition = kJSClassDefinitionEmpty;
3558 definition.className = "Functor";
3559 definition.staticFunctions = Functor_staticFunctions;
3560 definition.callAsFunction = &Functor_callAsFunction;
3561 definition.finalize = &Finalize;
3562 Functor_ = JSClassCreate(&definition);
3564 definition = kJSClassDefinitionEmpty;
3565 definition.className = "Instance";
3566 definition.staticValues = Instance_staticValues;
3567 definition.staticFunctions = Instance_staticFunctions;
3568 definition.hasProperty = &Instance_hasProperty;
3569 definition.getProperty = &Instance_getProperty;
3570 definition.setProperty = &Instance_setProperty;
3571 definition.deleteProperty = &Instance_deleteProperty;
3572 definition.getPropertyNames = &Instance_getPropertyNames;
3573 definition.callAsConstructor = &Instance_callAsConstructor;
3574 definition.hasInstance = &Instance_hasInstance;
3575 definition.finalize = &Finalize;
3576 Instance_ = JSClassCreate(&definition);
3578 definition = kJSClassDefinitionEmpty;
3579 definition.className = "Internal";
3580 definition.staticFunctions = Internal_staticFunctions;
3581 definition.hasProperty = &Internal_hasProperty;
3582 definition.getProperty = &Internal_getProperty;
3583 definition.setProperty = &Internal_setProperty;
3584 definition.getPropertyNames = &Internal_getPropertyNames;
3585 definition.finalize = &Finalize;
3586 Internal_ = JSClassCreate(&definition);
3588 definition = kJSClassDefinitionEmpty;
3589 definition.className = "Message";
3590 definition.staticFunctions = Functor_staticFunctions;
3591 definition.callAsFunction = &Message_callAsFunction;
3592 definition.finalize = &Finalize;
3593 Message_ = JSClassCreate(&definition);
3595 definition = kJSClassDefinitionEmpty;
3596 definition.className = "Messages";
3597 definition.hasProperty = &Messages_hasProperty;
3598 definition.getProperty = &Messages_getProperty;
3599 definition.setProperty = &Messages_setProperty;
3601 definition.deleteProperty = &Messages_deleteProperty;
3603 definition.getPropertyNames = &Messages_getPropertyNames;
3604 definition.finalize = &Finalize;
3605 Messages_ = JSClassCreate(&definition);
3607 definition = kJSClassDefinitionEmpty;
3608 definition.className = "NSArrayPrototype";
3609 //definition.hasProperty = &NSArrayPrototype_hasProperty;
3610 //definition.getProperty = &NSArrayPrototype_getProperty;
3611 //definition.setProperty = &NSArrayPrototype_setProperty;
3612 //definition.deleteProperty = &NSArrayPrototype_deleteProperty;
3613 //definition.getPropertyNames = &NSArrayPrototype_getPropertyNames;
3614 NSArrayPrototype_ = JSClassCreate(&definition);
3616 definition = kJSClassDefinitionEmpty;
3617 definition.className = "Pointer";
3618 definition.staticValues = Pointer_staticValues;
3619 definition.staticFunctions = Pointer_staticFunctions;
3620 definition.getProperty = &Pointer_getProperty;
3621 definition.setProperty = &Pointer_setProperty;
3622 definition.finalize = &Finalize;
3623 Pointer_ = JSClassCreate(&definition);
3625 definition = kJSClassDefinitionEmpty;
3626 definition.className = "Selector";
3627 definition.staticValues = CYValue_staticValues;
3628 definition.staticFunctions = Selector_staticFunctions;
3629 definition.callAsFunction = &Selector_callAsFunction;
3630 definition.finalize = &Finalize;
3631 Selector_ = JSClassCreate(&definition);
3633 definition = kJSClassDefinitionEmpty;
3634 definition.className = "Struct";
3635 definition.staticFunctions = Struct_staticFunctions;
3636 definition.getProperty = &Struct_getProperty;
3637 definition.setProperty = &Struct_setProperty;
3638 definition.getPropertyNames = &Struct_getPropertyNames;
3639 definition.finalize = &Finalize;
3640 Struct_ = JSClassCreate(&definition);
3642 definition = kJSClassDefinitionEmpty;
3643 definition.className = "Type";
3644 definition.staticFunctions = Type_staticFunctions;
3645 definition.getProperty = &Type_getProperty;
3646 definition.callAsFunction = &Type_callAsFunction;
3647 definition.callAsConstructor = &Type_callAsConstructor;
3648 definition.finalize = &Finalize;
3649 Type_privateData::Class_ = JSClassCreate(&definition);
3651 definition = kJSClassDefinitionEmpty;
3652 definition.className = "Runtime";
3653 definition.getProperty = &Runtime_getProperty;
3654 Runtime_ = JSClassCreate(&definition);
3656 definition = kJSClassDefinitionEmpty;
3657 definition.className = "ObjectiveC::Classes";
3658 definition.getProperty = &ObjectiveC_Classes_getProperty;
3659 definition.getPropertyNames = &ObjectiveC_Classes_getPropertyNames;
3660 ObjectiveC_Classes_ = JSClassCreate(&definition);
3662 definition = kJSClassDefinitionEmpty;
3663 definition.className = "ObjectiveC::Images";
3664 definition.getProperty = &ObjectiveC_Images_getProperty;
3665 definition.getPropertyNames = &ObjectiveC_Images_getPropertyNames;
3666 ObjectiveC_Images_ = JSClassCreate(&definition);
3668 definition = kJSClassDefinitionEmpty;
3669 definition.className = "ObjectiveC::Image::Classes";
3670 definition.getProperty = &ObjectiveC_Image_Classes_getProperty;
3671 definition.getPropertyNames = &ObjectiveC_Image_Classes_getPropertyNames;
3672 ObjectiveC_Image_Classes_ = JSClassCreate(&definition);
3674 definition = kJSClassDefinitionEmpty;
3675 definition.className = "ObjectiveC::Protocols";
3676 definition.getProperty = &ObjectiveC_Protocols_getProperty;
3677 definition.getPropertyNames = &ObjectiveC_Protocols_getPropertyNames;
3678 ObjectiveC_Protocols_ = JSClassCreate(&definition);
3680 definition = kJSClassDefinitionEmpty;
3681 //definition.getProperty = &Global_getProperty;
3682 JSClassRef Global(JSClassCreate(&definition));
3684 JSGlobalContextRef context(JSGlobalContextCreate(Global));
3687 JSObjectRef global(CYGetGlobalObject(context));
3689 JSObjectSetPrototype(context, global, JSObjectMake(context, Runtime_, NULL));
3690 ObjectiveC_ = JSObjectMake(context, NULL, NULL);
3691 CYSetProperty(context, global, CYJSString("ObjectiveC"), ObjectiveC_);
3693 CYSetProperty(context, ObjectiveC_, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Classes_, NULL));
3694 CYSetProperty(context, ObjectiveC_, CYJSString("images"), JSObjectMake(context, ObjectiveC_Images_, NULL));
3695 CYSetProperty(context, ObjectiveC_, CYJSString("protocols"), JSObjectMake(context, ObjectiveC_Protocols_, NULL));
3697 Array_ = CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Array")));
3698 Function_ = CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Function")));
3699 String_ = CYCastJSObject(context, CYGetProperty(context, global, CYJSString("String")));
3701 length_ = JSStringCreateWithUTF8CString("length");
3702 message_ = JSStringCreateWithUTF8CString("message");
3703 name_ = JSStringCreateWithUTF8CString("name");
3704 prototype_ = JSStringCreateWithUTF8CString("prototype");
3705 toCYON_ = JSStringCreateWithUTF8CString("toCYON");
3706 toJSON_ = JSStringCreateWithUTF8CString("toJSON");
3708 JSObjectRef Object(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Object"))));
3709 Object_prototype_ = CYCastJSObject(context, CYGetProperty(context, Object, prototype_));
3711 Array_prototype_ = CYCastJSObject(context, CYGetProperty(context, Array_, prototype_));
3712 Array_pop_ = CYCastJSObject(context, CYGetProperty(context, Array_prototype_, CYJSString("pop")));
3713 Array_push_ = CYCastJSObject(context, CYGetProperty(context, Array_prototype_, CYJSString("push")));
3714 Array_splice_ = CYCastJSObject(context, CYGetProperty(context, Array_prototype_, CYJSString("splice")));
3716 JSObjectRef Functor(JSObjectMakeConstructor(context, Functor_, &Functor_new));
3717 JSObjectRef Instance(JSObjectMakeConstructor(context, Instance_, &Instance_new));
3718 JSObjectRef Message(JSObjectMakeConstructor(context, Message_, NULL));
3719 JSObjectRef Selector(JSObjectMakeConstructor(context, Selector_, &Selector_new));
3721 Instance_prototype_ = (JSObjectRef) CYGetProperty(context, Instance, prototype_);
3723 JSValueRef function(CYGetProperty(context, Function_, prototype_));
3724 JSObjectSetPrototype(context, (JSObjectRef) CYGetProperty(context, Message, prototype_), function);
3725 JSObjectSetPrototype(context, (JSObjectRef) CYGetProperty(context, Functor, prototype_), function);
3726 JSObjectSetPrototype(context, (JSObjectRef) CYGetProperty(context, Selector, prototype_), function);
3728 CYSetProperty(context, global, CYJSString("Functor"), Functor);
3729 CYSetProperty(context, global, CYJSString("Instance"), Instance);
3730 CYSetProperty(context, global, CYJSString("Pointer"), JSObjectMakeConstructor(context, Pointer_, &Pointer_new));
3731 CYSetProperty(context, global, CYJSString("Selector"), Selector);
3732 CYSetProperty(context, global, CYJSString("Type"), JSObjectMakeConstructor(context, Type_privateData::Class_, &Type_new));
3734 MSHookFunction(&objc_registerClassPair, MSHake(objc_registerClassPair));
3737 class_addMethod(NSCFType_, @selector(cy$toJSON:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON), "@12@0:4@8");
3740 JSObjectRef cycript(JSObjectMake(context, NULL, NULL));
3741 CYSetProperty(context, global, CYJSString("Cycript"), cycript);
3742 CYSetProperty(context, cycript, CYJSString("gc"), JSObjectMakeFunctionWithCallback(context, CYJSString("gc"), &Cycript_gc_callAsFunction));
3744 CYSetProperty(context, global, CYJSString("objc_registerClassPair"), JSObjectMakeFunctionWithCallback(context, CYJSString("objc_registerClassPair"), &objc_registerClassPair_));
3745 CYSetProperty(context, global, CYJSString("objc_msgSend"), JSObjectMakeFunctionWithCallback(context, CYJSString("objc_msgSend"), &$objc_msgSend));
3746 CYSetProperty(context, global, CYJSString("$cyq"), JSObjectMakeFunctionWithCallback(context, CYJSString("$cyq"), &$cyq));
3748 System_ = JSObjectMake(context, NULL, NULL);
3749 CYSetProperty(context, global, CYJSString("system"), System_);
3750 CYSetProperty(context, System_, CYJSString("args"), CYJSNull(context));
3751 //CYSetProperty(context, System_, CYJSString("global"), global);
3753 CYSetProperty(context, System_, CYJSString("print"), JSObjectMakeFunctionWithCallback(context, CYJSString("print"), &System_print));
3755 Result_ = JSStringCreateWithUTF8CString("_");
3757 JSValueProtect(context, Array_);
3758 JSValueProtect(context, Function_);
3759 JSValueProtect(context, String_);
3761 JSValueProtect(context, Instance_prototype_);
3762 JSValueProtect(context, Object_prototype_);
3764 JSValueProtect(context, Array_prototype_);
3765 JSValueProtect(context, Array_pop_);
3766 JSValueProtect(context, Array_push_);
3767 JSValueProtect(context, Array_splice_);