1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
22 #include <Foundation/Foundation.h>
24 #include "ObjectiveC/Internal.hpp"
26 #include <objc/objc-api.h>
28 #include "cycript.hpp"
30 #include "ObjectiveC/Internal.hpp"
33 #include <CoreFoundation/CoreFoundation.h>
34 #include <JavaScriptCore/JSStringRefCF.h>
35 #include <objc/runtime.h>
39 #include <malloc/malloc.h>
40 #include <mach/mach.h>
45 #include "JavaScript.hpp"
47 #include "Execute.hpp"
55 #define CYObjectiveTry_ { \
57 #define CYObjectiveTry { \
58 JSContextRef context(context_); \
60 #define CYObjectiveCatch \
61 catch (const CYException &error) { \
62 @throw CYCastNSObject(NULL, context, error.CastJSValue(context)); \
68 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
70 #define CYPoolCatch(value) \
71 @catch (NSException *error) { \
72 _saved = [error retain]; \
73 throw CYJSError(context, CYCastJSValue(context, error)); \
78 [_saved autorelease]; \
84 #define CYSadCatch(value) \
85 @catch (NSException *error ) { \
86 throw CYJSError(context, CYCastJSValue(context, error)); \
91 #define class_getSuperclass GSObjCSuper
92 #define class_getInstanceVariable GSCGetInstanceVariableDefinition
93 #define class_getName GSNameFromClass
95 #define class_removeMethods(cls, list) GSRemoveMethodList(cls, list, YES)
97 #define ivar_getName(ivar) ((ivar)->ivar_name)
98 #define ivar_getOffset(ivar) ((ivar)->ivar_offset)
99 #define ivar_getTypeEncoding(ivar) ((ivar)->ivar_type)
101 #define method_getName(method) ((method)->method_name)
102 #define method_getImplementation(method) ((method)->method_imp)
103 #define method_getTypeEncoding(method) ((method)->method_types)
104 #define method_setImplementation(method, imp) ((void) ((method)->method_imp = (imp)))
107 #define objc_getClass GSClassFromName
109 #define objc_getProtocol GSProtocolFromName
111 #define object_getClass GSObjCClass
113 #define object_getInstanceVariable(object, name, value) ({ \
114 objc_ivar *ivar(class_getInstanceVariable(object_getClass(object), name)); \
115 _assert(value != NULL); \
117 GSObjCGetVariable(object, ivar_getOffset(ivar), sizeof(void *), value); \
121 #define object_setIvar(object, ivar, value) ({ \
122 void *data = (value); \
123 GSObjCSetVariable(object, ivar_getOffset(ivar), sizeof(void *), &data); \
126 #define protocol_getName(protocol) [(protocol) name]
129 static void (*$objc_setAssociatedObject)(id object, void *key, id value, objc_AssociationPolicy policy);
130 static id (*$objc_getAssociatedObject)(id object, void *key);
131 static void (*$objc_removeAssociatedObjects)(id object);
135 struct BlockLiteral {
139 void (*invoke)(void *, ...);
143 struct BlockDescriptor1 {
144 unsigned long int reserved;
145 unsigned long int size;
148 struct BlockDescriptor2 {
149 void (*copy_helper)(BlockLiteral *dst, BlockLiteral *src);
150 void (*dispose_helper)(BlockLiteral *src);
153 struct BlockDescriptor3 {
154 const char *signature;
159 BLOCK_DEALLOCATING = 0x0001,
160 BLOCK_REFCOUNT_MASK = 0xfffe,
161 BLOCK_NEEDS_FREE = 1 << 24,
162 BLOCK_HAS_COPY_DISPOSE = 1 << 25,
163 BLOCK_HAS_CTOR = 1 << 26,
164 BLOCK_IS_GC = 1 << 27,
165 BLOCK_IS_GLOBAL = 1 << 28,
166 BLOCK_HAS_STRET = 1 << 29,
167 BLOCK_HAS_SIGNATURE = 1 << 30,
170 JSValueRef CYSendMessage(CYPool &pool, JSContextRef context, id self, Class super, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize);
172 /* Objective-C Pool Release {{{ */
173 void CYPoolRelease_(void *data) {
174 id object(reinterpret_cast<id>(data));
178 id CYPoolRelease_(CYPool *pool, id object) {
181 else if (pool == NULL)
182 return [object autorelease];
184 pool->atexit(CYPoolRelease_);
189 template <typename Type_>
190 Type_ CYPoolRelease(CYPool *pool, Type_ object) {
191 return (Type_) CYPoolRelease_(pool, (id) object);
194 /* Objective-C Strings {{{ */
195 const char *CYPoolCString(CYPool &pool, JSContextRef context, NSString *value) {
196 size_t size([value maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding] + 1);
197 char *string(new(pool) char[size]);
198 if (![value getCString:string maxLength:size encoding:NSUTF8StringEncoding])
199 throw CYJSError(context, "[NSString getCString:maxLength:encoding:] == NO");
203 JSStringRef CYCopyJSString(JSContextRef context, NSString *value) {
205 return JSStringCreateWithCFString(reinterpret_cast<CFStringRef>(value));
208 return CYCopyJSString(CYPoolCString(pool, context, value));
212 JSStringRef CYCopyJSString(JSContextRef context, NSObject *value) {
215 // XXX: this definition scares me; is anyone using this?!
216 NSString *string([value description]);
217 return CYCopyJSString(context, string);
220 NSString *CYCopyNSString(const CYUTF8String &value) {
222 return (NSString *) CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8 *>(value.data), value.size, kCFStringEncodingUTF8, true);
224 return [[NSString alloc] initWithBytes:value.data length:value.size encoding:NSUTF8StringEncoding];
228 NSString *CYCopyNSString(JSContextRef context, JSStringRef value) {
230 return (NSString *) JSStringCopyCFString(kCFAllocatorDefault, value);
233 return CYCopyNSString(CYPoolUTF8String(pool, context, value));
237 NSString *CYCopyNSString(JSContextRef context, JSValueRef value) {
238 return CYCopyNSString(context, CYJSString(context, value));
241 NSString *CYCastNSString(CYPool *pool, const CYUTF8String &value) {
242 return CYPoolRelease(pool, CYCopyNSString(value));
245 NSString *CYCastNSString(CYPool *pool, SEL sel) {
246 const char *name(sel_getName(sel));
247 return CYPoolRelease(pool, CYCopyNSString(CYUTF8String(name, strlen(name))));
250 NSString *CYCastNSString(CYPool *pool, JSContextRef context, JSStringRef value) {
251 return CYPoolRelease(pool, CYCopyNSString(context, value));
254 CYUTF8String CYCastUTF8String(NSString *value) {
255 NSData *data([value dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO]);
256 return CYUTF8String(reinterpret_cast<const char *>([data bytes]), [data length]);
260 JSValueRef CYCastJSValue(JSContextRef context, NSObject *value);
262 void CYThrow(JSContextRef context, NSException *error, JSValueRef *exception) {
263 if (exception == NULL)
265 *exception = CYCastJSValue(context, error);
268 size_t CYGetIndex(NSString *value) {
269 return CYGetIndex(CYCastUTF8String(value));
272 bool CYGetOffset(CYPool &pool, JSContextRef context, NSString *value, ssize_t &index) {
273 return CYGetOffset(CYPoolCString(pool, context, value), index);
276 static JSClassRef Instance_;
278 static JSClassRef ArrayInstance_;
279 static JSClassRef BooleanInstance_;
280 static JSClassRef FunctionInstance_;
281 static JSClassRef NumberInstance_;
282 static JSClassRef ObjectInstance_;
283 static JSClassRef StringInstance_;
285 static JSClassRef Class_;
286 static JSClassRef Internal_;
287 static JSClassRef Message_;
288 static JSClassRef Messages_;
289 static JSClassRef Selector_;
290 static JSClassRef Super_;
292 static JSClassRef ObjectiveC_Classes_;
293 static JSClassRef ObjectiveC_Constants_;
294 static JSClassRef ObjectiveC_Protocols_;
297 static JSClassRef ObjectiveC_Image_Classes_;
298 static JSClassRef ObjectiveC_Images_;
302 static Class __NSMallocBlock__;
303 static Class NSCFBoolean_;
304 static Class NSCFType_;
305 static Class NSGenericDeallocHandler_;
306 static Class NSZombie_;
308 static std::set<Class> banned_;
310 static Class NSBoolNumber_;
313 static Class NSArray_;
314 static Class NSBlock_;
315 static Class NSDictionary_;
316 static Class NSNumber_;
317 static Class NSString_;
318 static Class Object_;
320 static Type_privateData *Object_type;
321 static Type_privateData *Selector_type;
323 Type_privateData *Instance::GetType() const {
327 Type_privateData *Selector_privateData::GetType() const {
328 return Selector_type;
331 static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception);
333 JSValueRef CYGetClassPrototype(JSContextRef context, Class self, bool meta) {
335 return CYGetCachedObject(context, CYJSString("Instance_prototype"));
336 else if (meta && !class_isMetaClass(self))
337 return CYGetCachedObject(context, CYJSString("Class_prototype"));
339 JSObjectRef global(CYGetGlobalObject(context));
340 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
343 sprintf(label, "i%p", self);
344 CYJSString name(label);
346 JSValueRef value(CYGetProperty(context, cy, name));
347 if (!JSValueIsUndefined(context, value))
350 JSClassRef _class(NULL);
351 JSValueRef prototype;
354 if (self == NSCFBoolean_)
356 if (self == NSBoolNumber_)
358 prototype = CYGetCachedObject(context, CYJSString("BooleanInstance_prototype"));
359 else if (self == NSArray_)
360 prototype = CYGetCachedObject(context, CYJSString("ArrayInstance_prototype"));
361 else if (self == NSBlock_)
362 prototype = CYGetCachedObject(context, CYJSString("FunctionInstance_prototype"));
363 else if (self == NSNumber_)
364 prototype = CYGetCachedObject(context, CYJSString("NumberInstance_prototype"));
365 else if (self == NSDictionary_)
366 prototype = CYGetCachedObject(context, CYJSString("ObjectInstance_prototype"));
367 else if (self == NSString_)
368 prototype = CYGetCachedObject(context, CYJSString("StringInstance_prototype"));
370 prototype = CYGetClassPrototype(context, class_getSuperclass(self), meta);
372 JSObjectRef object(JSObjectMake(context, _class, NULL));
373 JSObjectSetPrototype(context, object, prototype);
374 CYSetProperty(context, cy, name, object);
379 _finline JSValueRef CYGetClassPrototype(JSContextRef context, Class self) {
380 return CYGetClassPrototype(context, self, class_isMetaClass(self));
383 JSObjectRef Messages::Make(JSContextRef context, Class _class) {
384 JSObjectRef value(JSObjectMake(context, Messages_, new Messages(_class)));
385 if (Class super = class_getSuperclass(_class))
386 JSObjectSetPrototype(context, value, Messages::Make(context, super));
390 JSObjectRef Internal::Make(JSContextRef context, id object, JSObjectRef owner) {
391 return JSObjectMake(context, Internal_, new Internal(object, context, owner));
395 JSObjectRef Super::Make(JSContextRef context, id object, Class _class) {
396 JSObjectRef value(JSObjectMake(context, Super_, new Super(object, _class)));
400 bool CYIsKindOfClass(id object, Class _class) {
401 for (Class isa(object_getClass(object)); isa != NULL; isa = class_getSuperclass(isa))
407 JSObjectRef Instance::Make(JSContextRef context, id object, Flags flags) {
408 JSObjectRef value(JSObjectMake(context, CYIsKindOfClass(object, NSBlock_) ? FunctionInstance_ : Instance_, new Instance(object, flags)));
409 JSObjectSetPrototype(context, value, CYGetClassPrototype(context, object_getClass(object)));
413 Instance::~Instance() {
414 if ((flags_ & Transient) == 0)
415 [GetValue() release];
418 struct Message_privateData :
423 Message_privateData(SEL sel, const char *type, IMP value = NULL) :
424 cy::Functor(type, reinterpret_cast<void (*)()>(value)),
430 JSObjectRef CYMakeInstance(JSContextRef context, id object, bool transient) {
431 Instance::Flags flags;
434 flags = Instance::Transient;
436 flags = Instance::None;
437 object = [object retain];
440 return Instance::Make(context, object, flags);
443 @interface NSMethodSignature (Cycript)
444 - (NSString *) _typeString;
447 @interface NSObject (Cycript)
449 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context;
450 - (JSType) cy$JSType;
452 - (JSValueRef) cy$toJSON:(NSString *)key inContext:(JSContextRef)context;
453 - (NSString *) cy$toCYON:(bool)objective;
455 - (bool) cy$hasProperty:(NSString *)name;
456 - (NSObject *) cy$getProperty:(NSString *)name;
457 - (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context;
458 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value;
459 - (bool) cy$deleteProperty:(NSString *)name;
460 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context;
462 + (bool) cy$hasImplicitProperties;
468 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context;
471 NSString *CYCastNSCYON(id value, bool objective) {
477 Class _class(object_getClass(value));
478 SEL sel(@selector(cy$toCYON:));
480 if (objc_method *toCYON = class_getInstanceMethod(_class, sel))
481 string = reinterpret_cast<NSString *(*)(id, SEL, bool)>(method_getImplementation(toCYON))(value, sel, objective);
482 else if (objc_method *methodSignatureForSelector = class_getInstanceMethod(_class, @selector(methodSignatureForSelector:))) {
483 if (reinterpret_cast<NSMethodSignature *(*)(id, SEL, SEL)>(method_getImplementation(methodSignatureForSelector))(value, @selector(methodSignatureForSelector:), sel) != nil)
484 string = [value cy$toCYON:objective];
489 else if (value == NSZombie_)
490 string = @"_NSZombie_";
491 else if (_class == NSZombie_)
492 string = [NSString stringWithFormat:@"<_NSZombie_: %p>", value];
493 // XXX: frowny /in/ the pants
494 else if (banned_.find(value) != banned_.end())
498 string = [NSString stringWithFormat:@"%@", value];
503 string = @"undefined";
510 struct PropertyAttributes {
515 const char *variable;
528 PropertyAttributes(objc_property_t property) :
540 name = property_getName(property);
541 const char *attributes(property_getAttributes(property));
543 for (char *token(pool_.strdup(attributes)), *next; token != NULL; token = next) {
544 if ((next = strchr(token, ',')) != NULL)
547 case 'R': readonly = true; break;
548 case 'C': copy = true; break;
549 case '&': retain = true; break;
550 case 'N': nonatomic = true; break;
551 case 'G': getter_ = token + 1; break;
552 case 'S': setter_ = token + 1; break;
553 case 'V': variable = token + 1; break;
557 /*if (variable == NULL) {
558 variable = property_getName(property);
559 size_t size(strlen(variable));
560 char *name(new(pool_) char[size + 2]);
562 memcpy(name + 1, variable, size);
563 name[size + 1] = '\0';
568 const char *Getter() {
570 getter_ = pool_.strdup(name);
574 const char *Setter() {
575 if (setter_ == NULL && !readonly) {
576 size_t length(strlen(name));
578 char *temp(new(pool_) char[length + 5]);
584 temp[3] = toupper(name[0]);
585 memcpy(temp + 4, name + 1, length - 1);
588 temp[length + 3] = ':';
589 temp[length + 4] = '\0';
599 @interface CYWebUndefined : NSObject {
602 + (CYWebUndefined *) undefined;
606 @implementation CYWebUndefined
608 + (CYWebUndefined *) undefined {
609 static CYWebUndefined *instance_([[CYWebUndefined alloc] init]);
615 #define WebUndefined CYWebUndefined
617 /* Bridge: CYJSObject {{{ */
618 @interface CYJSObject : NSMutableDictionary {
620 JSGlobalContextRef context_;
623 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
625 - (NSUInteger) count;
626 - (id) objectForKey:(id)key;
627 - (NSEnumerator *) keyEnumerator;
628 - (void) setObject:(id)object forKey:(id)key;
629 - (void) removeObjectForKey:(id)key;
633 /* Bridge: CYJSArray {{{ */
634 @interface CYJSArray : NSMutableArray {
636 JSGlobalContextRef context_;
639 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
641 - (NSUInteger) count;
642 - (id) objectAtIndex:(NSUInteger)index;
644 - (void) addObject:(id)anObject;
645 - (void) insertObject:(id)anObject atIndex:(NSUInteger)index;
646 - (void) removeLastObject;
647 - (void) removeObjectAtIndex:(NSUInteger)index;
648 - (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
653 _finline bool CYJSValueIsNSObject(JSContextRef context, JSValueRef value) {
654 return JSValueIsObjectOfClass(context, value, Instance_) || JSValueIsObjectOfClass(context, value, FunctionInstance_);
657 _finline bool CYJSValueIsInstanceOfCachedConstructor(JSContextRef context, JSValueRef value, JSStringRef cache) {
658 return _jsccall(JSValueIsInstanceOfConstructor, context, value, CYGetCachedObject(context, cache));
661 struct CYBlockDescriptor {
663 BlockDescriptor1 one_;
664 BlockDescriptor2 two_;
665 BlockDescriptor3 three_;
668 Closure_privateData *internal_;
671 void CYDisposeBlock(BlockLiteral *literal) {
672 delete reinterpret_cast<CYBlockDescriptor *>(literal->descriptor)->internal_;
675 static JSValueRef BlockAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) {
676 JSObjectRef _this(CYCastJSObject(context, values[0]));
677 return CYCallAsFunction(context, function, _this, count - 1, values + 1);
680 static void BlockClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
681 CYExecuteClosure(cif, result, arguments, arg, &BlockAdapter_);
684 NSBlock *CYMakeBlock(JSContextRef context, JSObjectRef function, sig::Signature &signature) {
685 _assert(__NSMallocBlock__ != Nil);
686 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(malloc(sizeof(BlockLiteral))));
688 CYBlockDescriptor *descriptor(new CYBlockDescriptor);
689 memset(&descriptor->d_, 0, sizeof(descriptor->d_));
691 descriptor->internal_ = CYMakeFunctor_(context, function, signature, &BlockClosure_);
692 literal->invoke = reinterpret_cast<void (*)(void *, ...)>(descriptor->internal_->GetValue());
694 literal->isa = __NSMallocBlock__;
695 literal->flags = BLOCK_HAS_SIGNATURE | BLOCK_HAS_COPY_DISPOSE | BLOCK_IS_GLOBAL;
696 literal->reserved = 0;
697 literal->descriptor = descriptor;
699 descriptor->d_.one_.size = sizeof(descriptor->d_);
700 descriptor->d_.two_.dispose_helper = &CYDisposeBlock;
701 descriptor->d_.three_.signature = sig::Unparse(*descriptor->internal_->pool_, &signature);
703 return reinterpret_cast<NSBlock *>(literal);
706 NSObject *CYCastNSObject(CYPool *pool, JSContextRef context, JSObjectRef object) {
707 if (CYJSValueIsNSObject(context, object)) {
708 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
709 return internal->GetValue();
712 bool array(CYJSValueIsInstanceOfCachedConstructor(context, object, Array_s));
713 id value(array ? [CYJSArray alloc] : [CYJSObject alloc]);
714 return CYPoolRelease(pool, [value initWithJSObject:object inContext:context]);
717 NSNumber *CYCopyNSNumber(JSContextRef context, JSValueRef value) {
718 return [[NSNumber alloc] initWithDouble:CYCastDouble(context, value)];
722 @interface NSBoolNumber : NSNumber {
727 id CYNSObject(CYPool *pool, JSContextRef context, JSValueRef value, bool cast) {
731 switch (JSType type = JSValueGetType(context, value)) {
732 case kJSTypeUndefined:
733 object = [WebUndefined undefined];
743 object = (id) (CYCastBool(context, value) ? kCFBooleanTrue : kCFBooleanFalse);
746 object = [[NSBoolNumber alloc] initWithBool:CYCastBool(context, value)];
752 object = CYCopyNSNumber(context, value);
757 object = CYCopyNSString(context, value);
762 // XXX: this might could be more efficient
763 object = CYCastNSObject(pool, context, (JSObjectRef) value);
768 throw CYJSError(context, "JSValueGetType() == 0x%x", type);
775 return CYPoolRelease(pool, object);
777 return [object retain];
780 NSObject *CYCastNSObject(CYPool *pool, JSContextRef context, JSValueRef value) {
781 return CYNSObject(pool, context, value, true);
784 NSObject *CYCopyNSObject(CYPool &pool, JSContextRef context, JSValueRef value) {
785 return CYNSObject(&pool, context, value, false);
788 /* Bridge: NSArray {{{ */
789 @implementation NSArray (Cycript)
792 return [[self mutableCopy] autorelease];
795 - (NSString *) cy$toCYON:(bool)objective {
796 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
797 [json appendString:@"@["];
801 for (id object in self) {
803 for (size_t index(0), count([self count]); index != count; ++index) {
804 id object([self objectAtIndex:index]);
807 [json appendString:@","];
810 if (object == nil || [object cy$JSType] != kJSTypeUndefined)
811 [json appendString:CYCastNSCYON(object, true)];
813 [json appendString:@","];
818 [json appendString:@"]"];
822 - (bool) cy$hasProperty:(NSString *)name {
823 if ([name isEqualToString:@"length"])
826 size_t index(CYGetIndex(name));
827 if (index == _not(size_t) || index >= [self count])
828 return [super cy$hasProperty:name];
833 - (NSObject *) cy$getProperty:(NSString *)name {
834 size_t index(CYGetIndex(name));
835 if (index == _not(size_t) || index >= [self count])
836 return [super cy$getProperty:name];
838 return [self objectAtIndex:index];
841 - (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context {
843 if ([name isEqualToString:@"length"])
844 return CYCastJSValue(context, [self count]);
847 return [super cy$getProperty:name inContext:context];
850 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
851 [super cy$getPropertyNames:names inContext:context];
853 for (size_t index(0), count([self count]); index != count; ++index) {
854 id object([self objectAtIndex:index]);
855 if (object == nil || [object cy$JSType] != kJSTypeUndefined) {
857 sprintf(name, "%zu", index);
858 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
863 + (bool) cy$hasImplicitProperties {
869 /* Bridge: NSBlock {{{ */
876 /* Bridge: NSBoolNumber {{{ */
878 @implementation NSBoolNumber (Cycript)
880 - (JSType) cy$JSType {
881 return kJSTypeBoolean;
884 - (NSString *) cy$toCYON:(bool)objective {
885 NSString *value([self boolValue] ? @"true" : @"false");
886 return objective ? value : [NSString stringWithFormat:@"@%@", value];
889 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
890 return CYCastJSValue(context, (bool) [self boolValue]);
896 /* Bridge: NSDictionary {{{ */
897 @implementation NSDictionary (Cycript)
900 return [[self mutableCopy] autorelease];
903 - (NSString *) cy$toCYON:(bool)objective {
904 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
905 [json appendString:@"@{"];
909 for (NSObject *key in self) {
911 NSEnumerator *keys([self keyEnumerator]);
912 while (NSObject *key = [keys nextObject]) {
915 [json appendString:@","];
918 [json appendString:CYCastNSCYON(key, true)];
919 [json appendString:@":"];
920 NSObject *object([self objectForKey:key]);
921 [json appendString:CYCastNSCYON(object, true)];
924 [json appendString:@"}"];
928 - (bool) cy$hasProperty:(NSString *)name {
929 return [self objectForKey:name] != nil;
932 - (NSObject *) cy$getProperty:(NSString *)name {
933 return [self objectForKey:name];
936 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
937 [super cy$getPropertyNames:names inContext:context];
940 for (NSObject *key in self) {
942 NSEnumerator *keys([self keyEnumerator]);
943 while (NSObject *key = [keys nextObject]) {
945 JSPropertyNameAccumulatorAddName(names, CYJSString(context, key));
949 + (bool) cy$hasImplicitProperties {
955 /* Bridge: NSMutableArray {{{ */
956 @implementation NSMutableArray (Cycript)
958 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
959 if ([name isEqualToString:@"length"]) {
960 // XXX: is this not intelligent?
961 NSNumber *number(reinterpret_cast<NSNumber *>(value));
963 NSUInteger size([number unsignedIntegerValue]);
965 NSUInteger size([number unsignedIntValue]);
967 NSUInteger count([self count]);
969 [self removeObjectsInRange:NSMakeRange(size, count - size)];
970 else if (size != count) {
971 WebUndefined *undefined([WebUndefined undefined]);
972 for (size_t i(count); i != size; ++i)
973 [self addObject:undefined];
978 size_t index(CYGetIndex(name));
979 if (index == _not(size_t))
980 return [super cy$setProperty:name to:value];
982 id object(value ?: [NSNull null]);
984 size_t count([self count]);
986 [self replaceObjectAtIndex:index withObject:object];
988 if (index != count) {
989 WebUndefined *undefined([WebUndefined undefined]);
990 for (size_t i(count); i != index; ++i)
991 [self addObject:undefined];
994 [self addObject:object];
1000 - (bool) cy$deleteProperty:(NSString *)name {
1001 size_t index(CYGetIndex(name));
1002 if (index == _not(size_t) || index >= [self count])
1003 return [super cy$deleteProperty:name];
1004 [self replaceObjectAtIndex:index withObject:[WebUndefined undefined]];
1010 /* Bridge: NSMutableDictionary {{{ */
1011 @implementation NSMutableDictionary (Cycript)
1013 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1014 [self setObject:(value ?: [NSNull null]) forKey:name];
1018 - (bool) cy$deleteProperty:(NSString *)name {
1019 if ([self objectForKey:name] == nil)
1022 [self removeObjectForKey:name];
1029 /* Bridge: NSNumber {{{ */
1030 @implementation NSNumber (Cycript)
1032 - (JSType) cy$JSType {
1034 // XXX: this just seems stupid
1035 if ([self class] == NSCFBoolean_)
1036 return kJSTypeBoolean;
1038 return kJSTypeNumber;
1041 - (NSString *) cy$toCYON:(bool)objective {
1042 NSString *value([self cy$JSType] != kJSTypeBoolean ? [self stringValue] : [self boolValue] ? @"true" : @"false");
1043 return objective ? value : [NSString stringWithFormat:@"@%@", value];
1046 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1047 return [self cy$JSType] != kJSTypeBoolean ? CYCastJSValue(context, [self doubleValue]) : CYCastJSValue(context, static_cast<bool>([self boolValue]));
1048 } CYObjectiveCatch }
1052 /* Bridge: NSNull {{{ */
1053 @implementation NSNull (Cycript)
1055 - (JSType) cy$JSType {
1059 - (NSString *) cy$toCYON:(bool)objective {
1060 NSString *value(@"null");
1061 return objective ? value : [NSString stringWithFormat:@"@%@", value];
1064 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1065 return CYJSNull(context);
1066 } CYObjectiveCatch }
1070 /* Bridge: NSObject {{{ */
1071 @implementation NSObject (Cycript)
1077 - (JSValueRef) cy$toJSON:(NSString *)key inContext:(JSContextRef)context {
1078 return [self cy$valueOfInContext:context];
1081 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1083 } CYObjectiveCatch }
1085 - (JSType) cy$JSType {
1086 return kJSTypeObject;
1089 - (NSString *) cy$toCYON:(bool)objective {
1090 return [@"^" stringByAppendingString:[[self description] cy$toCYON:true]];
1093 - (bool) cy$hasProperty:(NSString *)name {
1097 - (NSObject *) cy$getProperty:(NSString *)name {
1101 - (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context { CYObjectiveTry_ {
1102 if (NSObject *value = [self cy$getProperty:name])
1103 return CYCastJSValue(context, value);
1105 } CYObjectiveCatch }
1107 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1111 - (bool) cy$deleteProperty:(NSString *)name {
1115 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
1118 + (bool) cy$hasImplicitProperties {
1124 /* Bridge: NSProxy {{{ */
1125 @implementation NSProxy (Cycript)
1127 - (NSString *) cy$toCYON:(bool)objective {
1128 return [[self description] cy$toCYON:objective];
1133 /* Bridge: NSSet {{{ */
1134 @implementation NSSet (Cycript)
1136 - (NSString *) cy$toCYON:(bool)objective {
1137 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
1138 [json appendString:@"[NSSet setWithArray:"];
1139 [json appendString:CYCastNSCYON([self allObjects], true)];
1140 [json appendString:@"]]"];
1146 /* Bridge: NSString {{{ */
1147 @implementation NSString (Cycript)
1150 return [[self copy] autorelease];
1153 - (JSType) cy$JSType {
1154 return kJSTypeString;
1157 - (NSString *) cy$toCYON:(bool)objective {
1158 std::ostringstream str;
1161 CYUTF8String string(CYCastUTF8String(self));
1162 CYStringify(str, string.data, string.size);
1163 std::string value(str.str());
1164 return CYCastNSString(NULL, CYUTF8String(value.c_str(), value.size()));
1167 - (bool) cy$hasProperty:(NSString *)name {
1168 size_t index(CYGetIndex(name));
1169 if (index == _not(size_t) || index >= [self length])
1170 return [super cy$hasProperty:name];
1175 - (NSObject *) cy$getProperty:(NSString *)name {
1176 size_t index(CYGetIndex(name));
1177 if (index == _not(size_t) || index >= [self length])
1178 return [super cy$getProperty:name];
1180 return [self substringWithRange:NSMakeRange(index, 1)];
1183 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
1184 [super cy$getPropertyNames:names inContext:context];
1186 for (size_t index(0), length([self length]); index != length; ++index) {
1188 sprintf(name, "%zu", index);
1189 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
1193 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1194 return CYCastJSValue(context, CYJSString(context, self));
1195 } CYObjectiveCatch }
1199 /* Bridge: WebUndefined {{{ */
1200 @implementation WebUndefined (Cycript)
1202 - (JSType) cy$JSType {
1203 return kJSTypeUndefined;
1206 - (NSString *) cy$toCYON:(bool)objective {
1207 NSString *value(@"undefined");
1208 return value; // XXX: maybe use the below code, adding @undefined?
1209 //return objective ? value : [NSString stringWithFormat:@"@%@", value];
1212 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1213 return CYJSUndefined(context);
1214 } CYObjectiveCatch }
1219 static bool CYIsClass(id self) {
1221 return class_isMetaClass(object_getClass(self));
1223 return GSObjCIsClass(self);
1227 Class CYCastClass(CYPool &pool, JSContextRef context, JSValueRef value) {
1228 id self(CYCastNSObject(&pool, context, value));
1229 if (CYIsClass(self))
1230 return (Class) self;
1231 throw CYJSError(context, "got something that is not a Class");
1235 NSArray *CYCastNSArray(JSContextRef context, JSPropertyNameArrayRef names) {
1237 size_t size(JSPropertyNameArrayGetCount(names));
1238 NSMutableArray *array([NSMutableArray arrayWithCapacity:size]);
1239 for (size_t index(0); index != size; ++index)
1240 [array addObject:CYCastNSString(&pool, context, JSPropertyNameArrayGetNameAtIndex(names, index))];
1244 JSValueRef CYCastJSValue(JSContextRef context, NSObject *value) { CYPoolTry {
1246 return CYJSNull(context);
1248 return CYMakeInstance(context, value, false);
1249 } CYPoolCatch(NULL) return /*XXX*/ NULL; }
1251 @implementation CYJSObject
1253 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context { CYObjectiveTry_ {
1254 if ((self = [super init]) != nil) {
1256 context_ = CYGetJSContext(context);
1257 JSGlobalContextRetain(context_);
1258 JSValueProtect(context_, object_);
1260 } CYObjectiveCatch }
1262 - (void) dealloc { CYObjectiveTry {
1263 JSValueUnprotect(context_, object_);
1264 JSGlobalContextRelease(context_);
1266 } CYObjectiveCatch }
1268 - (NSString *) cy$toCYON:(bool)objective { CYObjectiveTry {
1270 const char *cyon(CYPoolCCYON(pool, context, object_));
1272 return [super cy$toCYON:objective];
1274 return [NSString stringWithUTF8String:cyon];
1275 } CYObjectiveCatch }
1277 - (NSUInteger) count { CYObjectiveTry {
1278 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object_));
1279 size_t size(JSPropertyNameArrayGetCount(names));
1280 JSPropertyNameArrayRelease(names);
1282 } CYObjectiveCatch }
1284 - (id) objectForKey:(id)key { CYObjectiveTry {
1285 JSValueRef value(CYGetProperty(context, object_, CYJSString(context, (NSObject *) key)));
1286 if (JSValueIsUndefined(context, value))
1288 return CYCastNSObject(NULL, context, value) ?: [NSNull null];
1289 } CYObjectiveCatch }
1291 - (NSEnumerator *) keyEnumerator { CYObjectiveTry {
1292 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object_));
1293 NSEnumerator *enumerator([CYCastNSArray(context, names) objectEnumerator]);
1294 JSPropertyNameArrayRelease(names);
1296 } CYObjectiveCatch }
1298 - (void) setObject:(id)object forKey:(id)key { CYObjectiveTry {
1299 CYSetProperty(context, object_, CYJSString(context, (NSObject *) key), CYCastJSValue(context, (NSString *) object));
1300 } CYObjectiveCatch }
1302 - (void) removeObjectForKey:(id)key { CYObjectiveTry {
1303 (void) _jsccall(JSObjectDeleteProperty, context, object_, CYJSString(context, (NSObject *) key));
1304 } CYObjectiveCatch }
1308 @implementation CYJSArray
1310 - (NSString *) cy$toCYON:(bool)objective { CYObjectiveTry {
1312 return [NSString stringWithUTF8String:CYPoolCCYON(pool, context, object_)];
1313 } CYObjectiveCatch }
1315 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context { CYObjectiveTry_ {
1316 if ((self = [super init]) != nil) {
1318 context_ = CYGetJSContext(context);
1319 JSGlobalContextRetain(context_);
1320 JSValueProtect(context_, object_);
1322 } CYObjectiveCatch }
1324 - (void) dealloc { CYObjectiveTry {
1325 JSValueUnprotect(context_, object_);
1326 JSGlobalContextRelease(context_);
1328 } CYObjectiveCatch }
1330 - (NSUInteger) count { CYObjectiveTry {
1331 return CYArrayLength(context, object_);
1332 } CYObjectiveCatch }
1334 - (id) objectAtIndex:(NSUInteger)index { CYObjectiveTry {
1335 size_t bounds([self count]);
1336 if (index >= bounds)
1337 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray objectAtIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1338 JSValueRef value(_jsccall(JSObjectGetPropertyAtIndex, context, object_, index));
1339 return CYCastNSObject(NULL, context, value) ?: [NSNull null];
1340 } CYObjectiveCatch }
1342 - (void) addObject:(id)object { CYObjectiveTry {
1343 CYArrayPush(context, object_, CYCastJSValue(context, (NSObject *) object));
1344 } CYObjectiveCatch }
1346 - (void) insertObject:(id)object atIndex:(NSUInteger)index { CYObjectiveTry {
1347 size_t bounds([self count] + 1);
1348 if (index >= bounds)
1349 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray insertObject:atIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1350 JSValueRef arguments[3];
1351 arguments[0] = CYCastJSValue(context, index);
1352 arguments[1] = CYCastJSValue(context, 0);
1353 arguments[2] = CYCastJSValue(context, (NSObject *) object);
1354 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1355 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, splice_s)), object_, 3, arguments);
1356 } CYObjectiveCatch }
1358 - (void) removeLastObject { CYObjectiveTry {
1359 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1360 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, pop_s)), object_, 0, NULL);
1361 } CYObjectiveCatch }
1363 - (void) removeObjectAtIndex:(NSUInteger)index { CYObjectiveTry {
1364 size_t bounds([self count]);
1365 if (index >= bounds)
1366 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray removeObjectAtIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1367 JSValueRef arguments[2];
1368 arguments[0] = CYCastJSValue(context, index);
1369 arguments[1] = CYCastJSValue(context, 1);
1370 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1371 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, splice_s)), object_, 2, arguments);
1372 } CYObjectiveCatch }
1374 - (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)object { CYObjectiveTry {
1375 size_t bounds([self count]);
1376 if (index >= bounds)
1377 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray replaceObjectAtIndex:withObject:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1378 CYSetProperty(context, object_, index, CYCastJSValue(context, (NSObject *) object));
1379 } CYObjectiveCatch }
1383 // XXX: inherit from or replace with CYJSObject
1384 @interface CYInternal : NSObject {
1385 JSGlobalContextRef context_;
1386 JSObjectRef object_;
1391 @implementation CYInternal
1393 - (void) dealloc { CYObjectiveTry {
1394 JSValueUnprotect(context_, object_);
1395 JSGlobalContextRelease(context_);
1397 } CYObjectiveCatch }
1399 - (id) initInContext:(JSContextRef)context { CYObjectiveTry_ {
1400 if ((self = [super init]) != nil) {
1401 context_ = CYGetJSContext(context);
1402 JSGlobalContextRetain(context_);
1404 } CYObjectiveCatch }
1406 - (bool) hasProperty:(JSStringRef)name inContext:(JSContextRef)context {
1407 if (object_ == NULL)
1410 return JSObjectHasProperty(context, object_, name);
1413 - (JSValueRef) getProperty:(JSStringRef)name inContext:(JSContextRef)context {
1414 if (object_ == NULL)
1417 return CYGetProperty(context, object_, name);
1420 - (void) setProperty:(JSStringRef)name toValue:(JSValueRef)value inContext:(JSContextRef)context {
1421 @synchronized (self) {
1422 if (object_ == NULL) {
1423 object_ = JSObjectMake(context, NULL, NULL);
1424 JSValueProtect(context, object_);
1428 CYSetProperty(context, object_, name, value);
1431 + (CYInternal *) get:(id)object {
1432 if ($objc_getAssociatedObject == NULL)
1435 @synchronized (object) {
1436 if (CYInternal *internal = $objc_getAssociatedObject(object, @selector(cy$internal)))
1443 + (CYInternal *) set:(id)object inContext:(JSContextRef)context {
1444 if ($objc_getAssociatedObject == NULL)
1447 @synchronized (object) {
1448 if (CYInternal *internal = $objc_getAssociatedObject(object, @selector(cy$internal)))
1451 if ($objc_setAssociatedObject == NULL)
1454 CYInternal *internal([[[CYInternal alloc] initInContext:context] autorelease]);
1455 objc_setAssociatedObject(object, @selector(cy$internal), internal, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
1464 static JSObjectRef CYMakeSelector(JSContextRef context, SEL sel) {
1465 Selector_privateData *internal(new Selector_privateData(sel));
1466 return JSObjectMake(context, Selector_, internal);
1469 static SEL CYCastSEL(JSContextRef context, JSValueRef value) {
1470 if (JSValueIsObjectOfClass(context, value, Selector_)) {
1471 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1472 return reinterpret_cast<SEL>(internal->value_);
1474 return CYCastPointer<SEL>(context, value);
1477 void *CYObjectiveC_ExecuteStart(JSContextRef context) { CYSadTry {
1478 return (void *) [[NSAutoreleasePool alloc] init];
1479 } CYSadCatch(NULL) }
1481 void CYObjectiveC_ExecuteEnd(JSContextRef context, void *handle) { CYSadTry {
1482 return [(NSAutoreleasePool *) handle release];
1485 JSValueRef CYObjectiveC_RuntimeProperty(JSContextRef context, CYUTF8String name) { CYPoolTry {
1487 return Instance::Make(context, nil);
1488 if (Class _class = objc_getClass(name.data))
1489 return CYMakeInstance(context, _class, true);
1490 if (Protocol *protocol = objc_getProtocol(name.data))
1491 return CYMakeInstance(context, protocol, true);
1493 } CYPoolCatch(NULL) return /*XXX*/ NULL; }
1495 static void CYObjectiveC_CallFunction(JSContextRef context, ffi_cif *cif, void (*function)(), uint8_t *value, void **values) { CYSadTry {
1496 ffi_call(cif, function, value, values);
1499 static NSBlock *CYCastNSBlock(CYPool &pool, JSContextRef context, JSValueRef value, sig::Signature *signature) {
1500 if (JSValueIsNull(context, value))
1502 JSObjectRef object(CYCastJSObject(context, value));
1504 if (JSValueIsObjectOfClass(context, object, FunctionInstance_))
1505 return reinterpret_cast<Instance *>(JSObjectGetPrivate(object))->GetValue();
1507 if (JSValueIsObjectOfClass(context, object, Instance_)) {
1508 _assert(reinterpret_cast<Instance *>(JSObjectGetPrivate(object))->GetValue() == nil);
1512 _assert(JSObjectIsFunction(context, object));
1514 _assert(signature != NULL);
1515 _assert(signature->count != 0);
1517 sig::Signature modified;
1518 modified.count = signature->count + 1;
1519 modified.elements = new(pool) sig::Element[modified.count];
1521 modified.elements[0] = signature->elements[0];
1522 memcpy(modified.elements + 2, signature->elements + 1, sizeof(sig::Element) * (signature->count - 1));
1524 modified.elements[1].name = NULL;
1525 modified.elements[1].type = new(pool) sig::Type();
1526 modified.elements[1].offset = _not(size_t);
1528 memset(modified.elements[1].type, 0, sizeof(sig::Type));
1529 modified.elements[1].type->primitive = sig::object_P;
1531 return CYMakeBlock(context, object, modified);
1534 static bool CYObjectiveC_PoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) { CYSadTry {
1535 // XXX: assigning to an indirect id * works for return values, but not for properties and fields
1537 switch (type->primitive) {
1539 // XXX: this function might not handle the idea of a null pool
1540 *reinterpret_cast<id *>(data) = CYCastNSBlock(*pool, context, value, &type->data.signature);
1544 case sig::typename_P:
1545 *reinterpret_cast<id *>(data) = CYCastNSObject(pool, context, value);
1548 case sig::selector_P:
1549 *reinterpret_cast<SEL *>(data) = CYCastSEL(context, value);
1557 } CYSadCatch(false) }
1559 static JSValueRef CYObjectiveC_FromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) { CYPoolTry {
1560 switch (type->primitive) {
1561 // XXX: do something epic about blocks
1564 if (NSObject *object = *reinterpret_cast<NSObject **>(data)) {
1565 JSValueRef value(CYCastJSValue(context, object));
1571 case sig::typename_P:
1572 return CYMakeInstance(context, *reinterpret_cast<Class *>(data), true);
1574 case sig::selector_P:
1575 if (SEL sel = *reinterpret_cast<SEL *>(data))
1576 return CYMakeSelector(context, sel);
1580 return CYJSNull(context);
1584 } CYPoolCatch(NULL) return /*XXX*/ NULL; }
1586 static bool CYImplements(id object, Class _class, SEL selector, bool devoid = false) {
1587 if (objc_method *method = class_getInstanceMethod(_class, selector)) {
1590 #if OBJC_API_VERSION >= 2
1592 method_getReturnType(method, type, sizeof(type));
1594 const char *type(method_getTypeEncoding(method));
1600 // XXX: possibly use a more "awesome" check?
1604 static JSValueRef MessageAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) {
1605 JSObjectRef _this(CYCastJSObject(context, values[0]));
1606 return CYCallAsFunction(context, function, _this, count - 2, values + 2);
1609 static void MessageClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
1610 CYExecuteClosure(cif, result, arguments, arg, &MessageAdapter_);
1613 static JSObjectRef CYMakeMessage(JSContextRef context, SEL sel, IMP imp, const char *type) {
1614 Message_privateData *internal(new Message_privateData(sel, type, imp));
1615 return JSObjectMake(context, Message_, internal);
1618 static IMP CYMakeMessage(JSContextRef context, JSValueRef value, const char *encoding) {
1619 JSObjectRef function(CYCastJSObject(context, value));
1621 sig::Signature signature;
1622 sig::Parse(pool, &signature, encoding, &Structor_);
1623 Closure_privateData *internal(CYMakeFunctor_(context, function, signature, &MessageClosure_));
1624 // XXX: see notes in Library.cpp about needing to leak
1625 return reinterpret_cast<IMP>(internal->GetValue());
1628 static bool Messages_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1629 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1630 Class _class(internal->GetValue());
1633 const char *name(CYPoolCString(pool, context, property));
1635 if (SEL sel = sel_getUid(name))
1636 if (class_getInstanceMethod(_class, sel) != NULL)
1642 static JSValueRef Messages_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1643 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1644 Class _class(internal->GetValue());
1647 const char *name(CYPoolCString(pool, context, property));
1649 if (SEL sel = sel_getUid(name))
1650 if (objc_method *method = class_getInstanceMethod(_class, sel))
1651 return CYMakeMessage(context, sel, method_getImplementation(method), method_getTypeEncoding(method));
1656 static bool Messages_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
1657 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1658 Class _class(internal->GetValue());
1661 const char *name(CYPoolCString(pool, context, property));
1662 SEL sel(sel_registerName(name));
1667 if (JSValueIsObjectOfClass(context, value, Message_)) {
1668 Message_privateData *message(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1669 type = sig::Unparse(pool, &message->signature_);
1670 imp = reinterpret_cast<IMP>(message->GetValue());
1671 } else if (objc_method *method = class_getInstanceMethod(_class, sel)) {
1672 type = method_getTypeEncoding(method);
1673 imp = CYMakeMessage(context, value, type);
1674 } else _assert(false);
1676 objc_method *method(NULL);
1677 #if OBJC_API_VERSION >= 2
1679 objc_method **methods(class_copyMethodList(_class, &size));
1680 for (size_t i(0); i != size; ++i)
1681 if (sel_isEqual(method_getName(methods[i]), sel)) {
1682 method = methods[i];
1687 for (objc_method_list *methods(_class->methods); methods != NULL; methods = methods->method_next)
1688 for (int i(0); i != methods->method_count; ++i)
1689 if (sel_isEqual(method_getName(&methods->method_list[i]), sel)) {
1690 method = &methods->method_list[i];
1696 method_setImplementation(method, imp);
1699 GSMethodList list(GSAllocMethodList(1));
1700 GSAppendMethodToList(list, sel, type, imp, YES);
1701 GSAddMethodList(_class, list, YES);
1702 GSFlushMethodCacheForClass(_class);
1704 class_addMethod(_class, sel, imp, type);
1711 #if 0 && OBJC_API_VERSION < 2
1712 static bool Messages_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1713 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1714 Class _class(internal->GetValue());
1717 const char *name(CYPoolCString(pool, context, property));
1719 if (SEL sel = sel_getUid(name))
1720 if (objc_method *method = class_getInstanceMethod(_class, sel)) {
1721 objc_method_list list = {NULL, 1, {method}};
1722 class_removeMethods(_class, &list);
1730 static void Messages_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
1731 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1732 Class _class(internal->GetValue());
1734 #if OBJC_API_VERSION >= 2
1736 objc_method **data(class_copyMethodList(_class, &size));
1737 for (size_t i(0); i != size; ++i)
1738 JSPropertyNameAccumulatorAddName(names, CYJSString(sel_getName(method_getName(data[i]))));
1741 for (objc_method_list *methods(_class->methods); methods != NULL; methods = methods->method_next)
1742 for (int i(0); i != methods->method_count; ++i)
1743 JSPropertyNameAccumulatorAddName(names, CYJSString(sel_getName(method_getName(&methods->method_list[i]))));
1747 static bool CYHasImplicitProperties(Class _class) {
1748 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1749 if (!CYImplements(_class, object_getClass(_class), @selector(cy$hasImplicitProperties)))
1751 return [_class cy$hasImplicitProperties];
1754 static bool Instance_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1755 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1756 id self(internal->GetValue());
1758 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
1762 NSString *name(CYCastNSString(&pool, context, property));
1764 if (CYInternal *internal = [CYInternal get:self])
1765 if ([internal hasProperty:property inContext:context])
1768 Class _class(object_getClass(self));
1771 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1772 if (CYImplements(self, _class, @selector(cy$hasProperty:)))
1773 if ([self cy$hasProperty:name])
1775 } CYPoolCatch(false)
1777 const char *string(CYPoolCString(pool, context, name));
1780 if (class_getProperty(_class, string) != NULL)
1784 if (CYHasImplicitProperties(_class))
1785 if (SEL sel = sel_getUid(string))
1786 if (CYImplements(self, _class, sel, true))
1792 static JSValueRef Instance_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1793 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1794 id self(internal->GetValue());
1796 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
1797 return Internal::Make(context, self, object);
1800 NSString *name(CYCastNSString(&pool, context, property));
1802 if (CYInternal *internal = [CYInternal get:self])
1803 if (JSValueRef value = [internal getProperty:property inContext:context])
1807 if (JSValueRef value = [self cy$getProperty:name inContext:context])
1811 const char *string(CYPoolCString(pool, context, name));
1812 Class _class(object_getClass(self));
1815 if (objc_property_t property = class_getProperty(_class, string)) {
1816 PropertyAttributes attributes(property);
1817 SEL sel(sel_registerName(attributes.Getter()));
1818 return CYSendMessage(pool, context, self, NULL, sel, 0, NULL, false);
1822 if (CYHasImplicitProperties(_class))
1823 if (SEL sel = sel_getUid(string))
1824 if (CYImplements(self, _class, sel, true))
1825 return CYSendMessage(pool, context, self, NULL, sel, 0, NULL, false);
1830 static bool Instance_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
1831 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1832 id self(internal->GetValue());
1836 NSString *name(CYCastNSString(&pool, context, property));
1837 NSObject *data(CYCastNSObject(&pool, context, value));
1840 if ([self cy$setProperty:name to:data])
1842 } CYPoolCatch(false)
1844 const char *string(CYPoolCString(pool, context, name));
1845 Class _class(object_getClass(self));
1848 if (objc_property_t property = class_getProperty(_class, string)) {
1849 PropertyAttributes attributes(property);
1850 if (const char *setter = attributes.Setter()) {
1851 SEL sel(sel_registerName(setter));
1852 JSValueRef arguments[1] = {value};
1853 CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false);
1859 size_t length(strlen(string));
1861 char set[length + 5];
1867 if (string[0] != '\0') {
1868 set[3] = toupper(string[0]);
1869 memcpy(set + 4, string + 1, length - 1);
1872 set[length + 3] = ':';
1873 set[length + 4] = '\0';
1875 if (SEL sel = sel_getUid(set))
1876 if (CYImplements(self, _class, sel)) {
1877 JSValueRef arguments[1] = {value};
1878 CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false);
1882 if (CYInternal *internal = [CYInternal set:self inContext:context]) {
1883 [internal setProperty:property toValue:value inContext:context];
1890 static bool Instance_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1891 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1892 id self(internal->GetValue());
1895 NSString *name(CYCastNSString(NULL, context, property));
1896 return [self cy$deleteProperty:name];
1897 } CYPoolCatch(false)
1898 } CYCatch(false) return /*XXX*/ false; }
1900 static void Instance_getPropertyNames_message(JSPropertyNameAccumulatorRef names, objc_method *method) {
1901 const char *name(sel_getName(method_getName(method)));
1902 if (strchr(name, ':') != NULL)
1905 const char *type(method_getTypeEncoding(method));
1906 if (type == NULL || *type == '\0' || *type == 'v')
1909 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
1912 static void Instance_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
1913 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1914 id self(internal->GetValue());
1917 Class _class(object_getClass(self));
1922 objc_property_t *data(class_copyPropertyList(_class, &size));
1923 for (size_t i(0); i != size; ++i)
1924 JSPropertyNameAccumulatorAddName(names, CYJSString(property_getName(data[i])));
1929 if (CYHasImplicitProperties(_class))
1930 for (Class current(_class); current != nil; current = class_getSuperclass(current)) {
1931 #if OBJC_API_VERSION >= 2
1933 objc_method **data(class_copyMethodList(current, &size));
1934 for (size_t i(0); i != size; ++i)
1935 Instance_getPropertyNames_message(names, data[i]);
1938 for (objc_method_list *methods(current->methods); methods != NULL; methods = methods->method_next)
1939 for (int i(0); i != methods->method_count; ++i)
1940 Instance_getPropertyNames_message(names, &methods->method_list[i]);
1945 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1946 if (CYImplements(self, _class, @selector(cy$getPropertyNames:inContext:)))
1947 [self cy$getPropertyNames:names inContext:context];
1951 static JSObjectRef Instance_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1952 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1953 JSObjectRef value(Instance::Make(context, [internal->GetValue() alloc], Instance::Uninitialized));
1957 static const char *CYBlockEncoding(NSBlock *self) {
1958 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
1959 if ((literal->flags & BLOCK_HAS_SIGNATURE) == 0)
1961 uint8_t *descriptor(reinterpret_cast<uint8_t *>(literal->descriptor));
1962 descriptor += sizeof(BlockDescriptor1);
1963 if ((literal->flags & BLOCK_HAS_COPY_DISPOSE) != 0)
1964 descriptor += sizeof(BlockDescriptor2);
1965 BlockDescriptor3 *descriptor3(reinterpret_cast<BlockDescriptor3 *>(descriptor));
1966 return descriptor3->signature;
1969 static JSValueRef FunctionInstance_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1970 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1971 id self(internal->GetValue());
1973 if (const char *encoding = CYBlockEncoding(self)) {
1979 sig::Signature signature;
1980 sig::Parse(pool, &signature, encoding, &Structor_);
1983 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
1985 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
1986 void (*function)() = reinterpret_cast<void (*)()>(literal->invoke);
1987 return CYCallFunction(pool, context, 1, setup, count, arguments, false, &signature, &cif, function);
1991 CYThrow("NSBlock without signature field passed arguments");
1995 } CYPoolCatch(NULL);
2000 static bool Instance_hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef instance, JSValueRef *exception) { CYTry {
2001 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) constructor)));
2002 Class _class(internal->GetValue());
2003 if (!CYIsClass(_class))
2006 if (CYJSValueIsNSObject(context, instance)) {
2007 Instance *linternal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) instance)));
2008 // XXX: this isn't always safe
2009 return [linternal->GetValue() isKindOfClass:_class];
2015 static JSValueRef Instance_box_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2017 throw CYJSError(context, "incorrect number of arguments to Instance");
2019 id value(CYCastNSObject(&pool, context, arguments[0]));
2021 value = [NSNull null];
2022 return CYCastJSValue(context, [value cy$box]);
2025 static bool Internal_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2026 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2029 id self(internal->GetValue());
2030 const char *name(CYPoolCString(pool, context, property));
2032 if (object_getInstanceVariable(self, name, NULL) != NULL)
2038 static void CYBitField(unsigned &length, unsigned &shift, id self, Ivar ivar, const char *encoding, unsigned offset) {
2039 length = CYCastDouble(encoding + 1);
2043 objc_ivar **ivars(class_copyIvarList(object_getClass(self), &size));
2044 for (size_t i(0); i != size; ++i)
2045 if (ivars[i] == ivar)
2047 else if (ivar_getOffset(ivars[i]) == offset) {
2048 const char *encoding(ivar_getTypeEncoding(ivars[i]));
2049 _assert(encoding[0] == 'b');
2050 shift += CYCastDouble(encoding + 1);
2055 static JSValueRef Internal_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2056 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2059 id self(internal->GetValue());
2060 const char *name(CYPoolCString(pool, context, property));
2063 if (strcmp(name, "isa") == 0)
2064 return CYCastJSValue(context, object_getClass(self));
2067 if (objc_ivar *ivar = object_getInstanceVariable(self, name, NULL)) {
2068 ptrdiff_t offset(ivar_getOffset(ivar));
2069 void *data(reinterpret_cast<uint8_t *>(self) + offset);
2071 const char *encoding(ivar_getTypeEncoding(ivar));
2072 if (encoding[0] == 'b') {
2073 unsigned length, shift;
2074 CYBitField(length, shift, self, ivar, encoding, offset);
2075 _assert(shift + length <= sizeof(uintptr_t) * 8);
2076 uintptr_t &field(*reinterpret_cast<uintptr_t *>(data));
2077 uintptr_t mask((1 << length) - 1);
2078 return CYCastJSValue(context, (field >> shift) & mask);
2080 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2081 return CYFromFFI(context, type.type_, type.GetFFI(), data);
2088 static bool Internal_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
2089 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2092 id self(internal->GetValue());
2093 const char *name(CYPoolCString(pool, context, property));
2095 if (objc_ivar *ivar = object_getInstanceVariable(self, name, NULL)) {
2096 ptrdiff_t offset(ivar_getOffset(ivar));
2097 void *data(reinterpret_cast<uint8_t *>(self) + offset);
2099 const char *encoding(ivar_getTypeEncoding(ivar));
2100 if (encoding[0] == 'b') {
2101 unsigned length, shift;
2102 CYBitField(length, shift, self, ivar, encoding, offset);
2103 _assert(shift + length <= sizeof(uintptr_t) * 8);
2104 uintptr_t &field(*reinterpret_cast<uintptr_t *>(data));
2105 uintptr_t mask((1 << length) - 1);
2106 field = field & ~(mask << shift) | (uintptr_t(CYCastDouble(context, value)) & mask) << shift;
2108 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2109 CYPoolFFI(&pool, context, type.type_, type.GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar), value);
2117 static void Internal_getPropertyNames_(Class _class, JSPropertyNameAccumulatorRef names) {
2118 if (Class super = class_getSuperclass(_class))
2119 Internal_getPropertyNames_(super, names);
2121 #if OBJC_API_VERSION >= 2
2123 objc_ivar **data(class_copyIvarList(_class, &size));
2124 for (size_t i(0); i != size; ++i)
2125 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(data[i])));
2128 if (objc_ivar_list *ivars = _class->ivars)
2129 for (int i(0); i != ivars->ivar_count; ++i)
2130 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(&ivars->ivar_list[i])));
2134 static void Internal_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2135 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2138 id self(internal->GetValue());
2139 Class _class(object_getClass(self));
2141 Internal_getPropertyNames_(_class, names);
2144 static JSValueRef Internal_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2145 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2146 return internal->GetOwner();
2149 static bool ObjectiveC_Classes_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2151 return objc_getClass(CYPoolCString(pool, context, property)) != Nil;
2154 static JSValueRef ObjectiveC_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2156 NSString *name(CYCastNSString(&pool, context, property));
2157 if (Class _class = NSClassFromString(name))
2158 return CYMakeInstance(context, _class, true);
2163 static Class *CYCopyClassList(size_t &size) {
2164 size = objc_getClassList(NULL, 0);
2165 Class *data(reinterpret_cast<Class *>(malloc(sizeof(Class) * size)));
2168 size_t writ(objc_getClassList(data, size));
2174 Class *copy(reinterpret_cast<Class *>(realloc(data, sizeof(Class) * writ)));
2186 static void ObjectiveC_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2189 if (Class *data = CYCopyClassList(size)) {
2190 for (size_t i(0); i != size; ++i)
2191 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(data[i])));
2196 while (Class _class = objc_next_class(&state))
2197 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(_class)));
2201 #if OBJC_API_VERSION >= 2
2202 static JSValueRef ObjectiveC_Image_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2203 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2206 const char *name(CYPoolCString(pool, context, property));
2208 const char **data(objc_copyClassNamesForImage(internal, &size));
2210 for (size_t i(0); i != size; ++i)
2211 if (strcmp(name, data[i]) == 0) {
2212 if (Class _class = objc_getClass(name)) {
2213 value = CYMakeInstance(context, _class, true);
2224 static void ObjectiveC_Image_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2225 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2227 const char **data(objc_copyClassNamesForImage(internal, &size));
2228 for (size_t i(0); i != size; ++i)
2229 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2233 static JSValueRef ObjectiveC_Images_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2235 const char *name(CYPoolCString(pool, context, property));
2237 const char **data(objc_copyImageNames(&size));
2238 for (size_t i(0); i != size; ++i)
2239 if (strcmp(name, data[i]) == 0) {
2248 JSObjectRef value(JSObjectMake(context, NULL, NULL));
2249 CYSetProperty(context, value, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Image_Classes_, const_cast<char *>(name)));
2253 static void ObjectiveC_Images_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2255 const char **data(objc_copyImageNames(&size));
2256 for (size_t i(0); i != size; ++i)
2257 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2262 static JSValueRef ObjectiveC_Protocols_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2264 const char *name(CYPoolCString(pool, context, property));
2265 if (Protocol *protocol = objc_getProtocol(name))
2266 return CYMakeInstance(context, protocol, true);
2270 static void ObjectiveC_Protocols_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2271 #if OBJC_API_VERSION >= 2
2273 Protocol **data(objc_copyProtocolList(&size));
2274 for (size_t i(0); i != size; ++i)
2275 JSPropertyNameAccumulatorAddName(names, CYJSString(protocol_getName(data[i])));
2282 static JSValueRef ObjectiveC_Constants_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2284 CYUTF8String name(CYPoolUTF8String(pool, context, property));
2286 return Instance::Make(context, nil);
2290 static void ObjectiveC_Constants_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2291 JSPropertyNameAccumulatorAddName(names, CYJSString("nil"));
2295 static kern_return_t CYReadMemory(task_t task, vm_address_t address, vm_size_t size, void **data) {
2296 *data = reinterpret_cast<void *>(address);
2297 return KERN_SUCCESS;
2301 std::set<Class> query_;
2302 JSContextRef context_;
2303 JSObjectRef results_;
2306 struct CYObjectStruct {
2310 static void choose_(task_t task, void *baton, unsigned type, vm_range_t *ranges, unsigned count) {
2311 CYChoice *choice(reinterpret_cast<CYChoice *>(baton));
2312 JSContextRef context(choice->context_);
2314 for (unsigned i(0); i != count; ++i) {
2315 vm_range_t &range(ranges[i]);
2316 void *data(reinterpret_cast<void *>(range.address));
2317 size_t size(range.size);
2319 if (size < sizeof(CYObjectStruct))
2322 uintptr_t *pointers(reinterpret_cast<uintptr_t *>(data));
2324 Class isa(reinterpret_cast<Class>(pointers[0] & 0x1fffffff8));
2326 Class isa(reinterpret_cast<Class>(pointers[0]));
2329 std::set<Class>::const_iterator result(choice->query_.find(isa));
2330 if (result == choice->query_.end())
2333 size_t needed(class_getInstanceSize(*result));
2334 // XXX: if (size < needed)
2335 if (needed <= 496 && (needed + 15) / 16 * 16 != size || needed > 496 && (needed + 511) / 512 * 512 != size)
2337 CYArrayPush(context, choice->results_, CYCastJSValue(context, reinterpret_cast<id>(data)));
2341 static JSValueRef choose(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2343 throw CYJSError(context, "choose() takes a class argument");
2345 CYGarbageCollect(context);
2348 Class _class(CYCastNSObject(&pool, context, arguments[0]));
2350 vm_address_t *zones(NULL);
2352 kern_return_t error(malloc_get_all_zones(0, &CYReadMemory, &zones, &size));
2353 _assert(error == KERN_SUCCESS);
2355 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array")));
2356 JSObjectRef results(_jsccall(JSObjectCallAsConstructor, context, Array, 0, NULL));
2359 choice.context_ = context;
2360 choice.results_ = results;
2363 Class *classes(CYCopyClassList(number));
2364 _assert(classes != NULL);
2366 for (size_t i(0); i != number; ++i)
2367 for (Class current(classes[i]); current != Nil; current = class_getSuperclass(current))
2368 if (current == _class) {
2369 choice.query_.insert(classes[i]);
2375 for (unsigned i(0); i != size; ++i) {
2376 const malloc_zone_t *zone(reinterpret_cast<const malloc_zone_t *>(zones[i]));
2377 if (zone == NULL || zone->introspect == NULL)
2380 zone->introspect->enumerator(mach_task_self(), &choice, MALLOC_PTR_IN_USE_RANGE_TYPE, zones[i], &CYReadMemory, &choose_);
2388 #if defined(__i386__) || defined(__x86_64__)
2389 #define OBJC_MAX_STRUCT_BY_VALUE 8
2390 static int struct_forward_array[] = {
2391 0, 0, 0, 1, 0, 1, 1, 1, 0 };
2392 #elif defined(__arm__)
2393 #define OBJC_MAX_STRUCT_BY_VALUE 1
2394 static int struct_forward_array[] = {
2396 #elif defined(__arm64__)
2399 #error missing objc-runtime-info
2403 static bool stret(ffi_type *ffi_type) {
2404 return ffi_type->type == FFI_TYPE_STRUCT && (
2405 ffi_type->size > OBJC_MAX_STRUCT_BY_VALUE ||
2406 struct_forward_array[ffi_type->size] != 0
2412 JSValueRef CYSendMessage(CYPool &pool, JSContextRef context, id self, Class _class, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize) {
2416 _class = object_getClass(self);
2420 if (objc_method *method = class_getInstanceMethod(_class, _cmd)) {
2421 imp = method_getImplementation(method);
2422 type = method_getTypeEncoding(method);
2427 NSMethodSignature *method([self methodSignatureForSelector:_cmd]);
2429 throw CYJSError(context, "unrecognized selector %s sent to object %p", sel_getName(_cmd), self);
2430 type = CYPoolCString(pool, context, [method _typeString]);
2438 sig::Signature signature;
2439 sig::Parse(pool, &signature, type, &Structor_);
2441 size_t used(count + 3);
2442 if (used > signature.count) {
2443 sig::Element *elements(new (pool) sig::Element[used]);
2444 memcpy(elements, signature.elements, used * sizeof(sig::Element));
2446 for (size_t index(signature.count); index != used; ++index) {
2447 sig::Element *element(&elements[index]);
2448 element->name = NULL;
2449 element->offset = _not(size_t);
2451 sig::Type *type(new (pool) sig::Type);
2452 memset(type, 0, sizeof(*type));
2453 type->primitive = sig::object_P;
2454 element->type = type;
2457 signature.elements = elements;
2458 signature.count = used;
2462 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
2467 if (stret(cif.rtype))
2468 imp = class_getMethodImplementation_stret(_class, _cmd);
2471 imp = class_getMethodImplementation(_class, _cmd);
2473 objc_super super = {self, _class};
2474 imp = objc_msg_lookup_super(&super, _cmd);
2478 void (*function)() = reinterpret_cast<void (*)()>(imp);
2479 return CYCallFunction(pool, context, 2, setup, count, arguments, initialize, &signature, &cif, function);
2482 static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[]) {
2484 throw CYJSError(context, "too few arguments to objc_msgSend");
2494 if (JSValueIsObjectOfClass(context, arguments[0], Super_)) {
2495 cy::Super *internal(reinterpret_cast<cy::Super *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2496 self = internal->GetValue();
2497 _class = internal->class_;;
2498 uninitialized = false;
2499 } else if (CYJSValueIsNSObject(context, arguments[0])) {
2500 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2501 self = internal->GetValue();
2503 uninitialized = internal->IsUninitialized();
2505 internal->value_ = nil;
2507 self = CYCastNSObject(&pool, context, arguments[0]);
2509 uninitialized = false;
2513 return CYJSNull(context);
2515 _cmd = CYCastSEL(context, arguments[1]);
2517 return CYSendMessage(pool, context, self, _class, _cmd, count - 2, arguments + 2, uninitialized);
2520 static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2521 return $objc_msgSend(context, object, _this, count, arguments);
2524 static JSValueRef Selector_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2525 JSValueRef setup[count + 2];
2528 memcpy(setup + 2, arguments, sizeof(JSValueRef) * count);
2529 return $objc_msgSend(context, NULL, NULL, count + 2, setup);
2532 static JSValueRef Message_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2534 Message_privateData *internal(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate(object)));
2536 // XXX: handle Instance::Uninitialized?
2537 id self(CYCastNSObject(&pool, context, _this));
2541 setup[1] = &internal->sel_;
2543 return CYCallFunction(pool, context, 2, setup, count, arguments, false, &internal->signature_, &internal->cif_, internal->GetValue());
2546 static JSObjectRef Super_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2548 throw CYJSError(context, "incorrect number of arguments to objc_super constructor");
2550 id self(CYCastNSObject(&pool, context, arguments[0]));
2551 Class _class(CYCastClass(pool, context, arguments[1]));
2552 return cy::Super::Make(context, self, _class);
2555 static JSObjectRef Selector_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2557 throw CYJSError(context, "incorrect number of arguments to Selector constructor");
2559 const char *name(CYPoolCString(pool, context, arguments[0]));
2560 return CYMakeSelector(context, sel_registerName(name));
2563 static JSObjectRef Instance_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2565 throw CYJSError(context, "incorrect number of arguments to Instance constructor");
2566 id self(count == 0 ? nil : CYCastPointer<id>(context, arguments[0]));
2567 return CYMakeInstance(context, self, false);
2570 static JSValueRef CYValue_getProperty_value(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2571 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(object)));
2572 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
2575 static JSValueRef CYValue_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2576 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
2577 Type_privateData *typical(internal->GetType());
2582 if (typical == NULL) {
2586 type = typical->type_;
2587 ffi = typical->ffi_;
2590 return CYMakePointer(context, &internal->value_, _not(size_t), type, ffi, object);
2593 static JSValueRef FunctionInstance_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2594 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2595 const char *encoding(CYBlockEncoding(internal->GetValue()));
2596 if (encoding == NULL)
2597 return CYJSNull(context);
2598 // XXX: this should be stored on a FunctionInstance private value subclass
2600 sig::Signature signature;
2601 sig::Parse(pool, &signature, encoding, &Structor_);
2602 return CYMakeType(context, &signature);
2605 static JSValueRef Instance_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2606 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2607 return Instance::Make(context, (id) object_getClass(internal->GetValue()));
2610 static JSValueRef Instance_getProperty_prototype(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2611 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2612 id self(internal->GetValue());
2613 if (!CYIsClass(self))
2614 return CYJSUndefined(context);
2615 return CYGetClassPrototype(context, self);
2618 static JSValueRef Instance_getProperty_messages(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2619 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2620 id self(internal->GetValue());
2621 if (!CYIsClass(self))
2622 return CYJSUndefined(context);
2623 return Messages::Make(context, (Class) self);
2626 static JSValueRef Instance_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2627 if (!CYJSValueIsNSObject(context, _this))
2630 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2631 return CYCastJSValue(context, CYJSString(context, CYCastNSCYON(internal->GetValue(), false)));
2634 static JSValueRef Instance_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2635 if (!CYJSValueIsNSObject(context, _this))
2638 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2639 id value(internal->GetValue());
2646 key = CYCastNSString(NULL, context, CYJSString(context, arguments[0]));
2648 if (!CYImplements(value, object_getClass(value), @selector(cy$toJSON:inContext:)))
2649 return CYJSUndefined(context);
2650 else if (JSValueRef json = [value cy$toJSON:key inContext:context])
2653 return CYCastJSValue(context, CYJSString(context, [value description]));
2655 } CYCatch(NULL) return /*XXX*/ NULL; }
2657 static JSValueRef Instance_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2658 if (!CYJSValueIsNSObject(context, _this))
2661 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2662 id value(internal->GetValue());
2664 if (![value respondsToSelector:@selector(cy$valueOfInContext:)])
2667 if (JSValueRef result = [value cy$valueOfInContext:context])
2671 } CYCatch(NULL) return /*XXX*/ NULL; }
2673 static JSValueRef Instance_callAsFunction_toPointer(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2674 if (!CYJSValueIsNSObject(context, _this))
2677 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2678 // XXX: but... but... THIS ISN'T A POINTER! :(
2679 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->GetValue()));
2680 } CYCatch(NULL) return /*XXX*/ NULL; }
2682 static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2683 if (!CYJSValueIsNSObject(context, _this))
2686 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2687 id value(internal->GetValue());
2690 // XXX: this seems like a stupid implementation; what if it crashes? why not use the CYONifier backend?
2691 return CYCastJSValue(context, CYJSString(context, [value description]));
2693 } CYCatch(NULL) return /*XXX*/ NULL; }
2695 static JSValueRef Class_callAsFunction_pointerTo(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2696 if (!CYJSValueIsNSObject(context, _this))
2699 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2700 id value(internal->GetValue());
2702 if (!CYIsClass(value))
2703 CYThrow("non-Class object cannot be used as Type");
2705 // XXX: this is a very silly implementation
2707 std::ostringstream type;
2709 type << class_getName(value);
2713 return CYMakeType(context, type.str().c_str());
2715 } CYCatch(NULL) return /*XXX*/ NULL; }
2717 static JSValueRef Selector_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2718 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2719 return CYCastJSValue(context, sel_getName(internal->GetValue()));
2722 static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2723 return Selector_callAsFunction_toString(context, object, _this, count, arguments, exception);
2726 static JSValueRef Selector_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2727 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2728 const char *name(sel_getName(internal->GetValue()));
2731 NSString *string([NSString stringWithFormat:@"@selector(%s)", name]);
2732 return CYCastJSValue(context, CYJSString(context, string));
2734 } CYCatch(NULL) return /*XXX*/ NULL; }
2736 static JSValueRef Selector_callAsFunction_type(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2738 throw CYJSError(context, "incorrect number of arguments to Selector.type");
2741 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2742 SEL sel(internal->GetValue());
2744 Class _class(_require(CYCastClass(pool, context, arguments[0])));
2745 objc_method *method(_require(class_getInstanceMethod(_class, sel)));
2746 const char *encoding(method_getTypeEncoding(method));
2748 sig::Signature signature;
2749 sig::Parse(pool, &signature, encoding, &Structor_);
2750 return CYMakeType(context, &signature);
2753 static JSStaticValue Selector_staticValues[2] = {
2754 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete},
2755 {NULL, NULL, NULL, 0}
2758 // XXX: this is sadly duplicated in FunctionInstance_staticValues
2759 static JSStaticValue Instance_staticValues[5] = {
2760 {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2761 {"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2762 {"prototype", &Instance_getProperty_prototype, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2763 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2764 {NULL, NULL, NULL, 0}
2767 static JSStaticValue FunctionInstance_staticValues[6] = {
2768 {"type", &FunctionInstance_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2769 // XXX: this is sadly a duplicate of Instance_staticValues
2770 {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2771 {"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2772 {"prototype", &Instance_getProperty_prototype, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2773 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2774 {NULL, NULL, NULL, 0}
2777 static JSStaticFunction Instance_staticFunctions[7] = {
2778 {"$cya", &CYValue_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2779 {"toCYON", &Instance_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2780 {"toJSON", &Instance_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2781 {"valueOf", &Instance_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2782 {"toPointer", &Instance_callAsFunction_toPointer, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2783 {"toString", &Instance_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2787 static JSStaticFunction Class_staticFunctions[2] = {
2788 {"pointerTo", &Class_callAsFunction_pointerTo, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2792 static JSStaticFunction Internal_staticFunctions[2] = {
2793 {"$cya", &Internal_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2797 static JSStaticFunction Selector_staticFunctions[5] = {
2798 {"toCYON", &Selector_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2799 {"toJSON", &Selector_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2800 {"toString", &Selector_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2801 {"type", &Selector_callAsFunction_type, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2806 JSValueRef NSCFType$cy$toJSON$inContext$(id self, SEL sel, JSValueRef key, JSContextRef context) { CYObjectiveTry_ {
2807 return CYCastJSValue(context, [(NSString *) CFCopyDescription((CFTypeRef) self) autorelease]);
2808 } CYObjectiveCatch }
2811 void CYObjectiveC_Initialize() { /*XXX*/ JSContextRef context(NULL); CYPoolTry {
2812 $objc_setAssociatedObject = reinterpret_cast<void (*)(id, void *, id value, objc_AssociationPolicy)>(dlsym(RTLD_DEFAULT, "objc_setAssociatedObject"));
2813 $objc_getAssociatedObject = reinterpret_cast<id (*)(id, void *)>(dlsym(RTLD_DEFAULT, "objc_getAssociatedObject"));
2814 $objc_removeAssociatedObjects = reinterpret_cast<void (*)(id)>(dlsym(RTLD_DEFAULT, "objc_removeAssociatedObjects"));
2816 CYPool &pool(CYGetGlobalPool());
2818 Object_type = new(pool) Type_privateData("@");
2819 Selector_type = new(pool) Type_privateData(":");
2821 NSArray_ = objc_getClass("NSArray");
2822 NSBlock_ = objc_getClass("NSBlock");
2823 NSDictionary_ = objc_getClass("NSDictionary");
2824 NSNumber_ = objc_getClass("NSNumber");
2825 NSString_ = objc_getClass("NSString");
2826 Object_ = objc_getClass("Object");
2829 __NSMallocBlock__ = objc_getClass("__NSMallocBlock__");
2831 // XXX: apparently, iOS now has both of these
2832 NSCFBoolean_ = objc_getClass("__NSCFBoolean");
2833 if (NSCFBoolean_ == nil)
2834 NSCFBoolean_ = objc_getClass("NSCFBoolean");
2836 NSCFType_ = objc_getClass("NSCFType");
2838 NSZombie_ = objc_getClass("_NSZombie_");
2840 banned_.insert(Object_);
2841 banned_.insert(objc_getClass("__NSAtom"));
2842 banned_.insert(objc_getClass("__NSGenericDeallocHandler"));
2843 banned_.insert(objc_getClass("NSMessageBuilder"));
2844 banned_.insert(objc_getClass("__NSMessageBuilder"));
2846 NSBoolNumber_ = objc_getClass("NSBoolNumber");
2849 JSClassDefinition definition;
2851 definition = kJSClassDefinitionEmpty;
2852 definition.className = "Instance";
2853 definition.staticValues = Instance_staticValues;
2854 definition.staticFunctions = Instance_staticFunctions;
2855 definition.hasProperty = &Instance_hasProperty;
2856 definition.getProperty = &Instance_getProperty;
2857 definition.setProperty = &Instance_setProperty;
2858 definition.deleteProperty = &Instance_deleteProperty;
2859 definition.getPropertyNames = &Instance_getPropertyNames;
2860 definition.callAsConstructor = &Instance_callAsConstructor;
2861 definition.hasInstance = &Instance_hasInstance;
2862 definition.finalize = &CYFinalize;
2863 Instance_ = JSClassCreate(&definition);
2865 definition.className = "ArrayInstance";
2866 ArrayInstance_ = JSClassCreate(&definition);
2868 definition.className = "BooleanInstance";
2869 BooleanInstance_ = JSClassCreate(&definition);
2871 definition.className = "NumberInstance";
2872 NumberInstance_ = JSClassCreate(&definition);
2874 definition.className = "ObjectInstance";
2875 ObjectInstance_ = JSClassCreate(&definition);
2877 definition.className = "StringInstance";
2878 StringInstance_ = JSClassCreate(&definition);
2880 definition.className = "FunctionInstance";
2881 definition.staticValues = FunctionInstance_staticValues;
2882 definition.callAsFunction = &FunctionInstance_callAsFunction;
2883 FunctionInstance_ = JSClassCreate(&definition);
2885 definition = kJSClassDefinitionEmpty;
2886 definition.className = "Class";
2887 definition.staticFunctions = Class_staticFunctions;
2888 Class_ = JSClassCreate(&definition);
2890 definition = kJSClassDefinitionEmpty;
2891 definition.className = "Internal";
2892 definition.staticFunctions = Internal_staticFunctions;
2893 definition.hasProperty = &Internal_hasProperty;
2894 definition.getProperty = &Internal_getProperty;
2895 definition.setProperty = &Internal_setProperty;
2896 definition.getPropertyNames = &Internal_getPropertyNames;
2897 definition.finalize = &CYFinalize;
2898 Internal_ = JSClassCreate(&definition);
2900 definition = kJSClassDefinitionEmpty;
2901 definition.className = "Message";
2902 definition.staticFunctions = cy::Functor::StaticFunctions;
2903 definition.staticValues = cy::Functor::StaticValues;
2904 definition.callAsFunction = &Message_callAsFunction;
2905 definition.finalize = &CYFinalize;
2906 Message_ = JSClassCreate(&definition);
2908 definition = kJSClassDefinitionEmpty;
2909 definition.className = "Messages";
2910 definition.hasProperty = &Messages_hasProperty;
2911 definition.getProperty = &Messages_getProperty;
2912 definition.setProperty = &Messages_setProperty;
2913 #if 0 && OBJC_API_VERSION < 2
2914 definition.deleteProperty = &Messages_deleteProperty;
2916 definition.getPropertyNames = &Messages_getPropertyNames;
2917 definition.finalize = &CYFinalize;
2918 Messages_ = JSClassCreate(&definition);
2920 definition = kJSClassDefinitionEmpty;
2921 definition.className = "Selector";
2922 definition.staticValues = Selector_staticValues;
2923 definition.staticFunctions = Selector_staticFunctions;
2924 definition.callAsFunction = &Selector_callAsFunction;
2925 definition.finalize = &CYFinalize;
2926 Selector_ = JSClassCreate(&definition);
2928 definition = kJSClassDefinitionEmpty;
2929 definition.className = "Super";
2930 definition.staticFunctions = Internal_staticFunctions;
2931 definition.finalize = &CYFinalize;
2932 Super_ = JSClassCreate(&definition);
2934 definition = kJSClassDefinitionEmpty;
2935 definition.className = "ObjectiveC::Classes";
2936 definition.hasProperty = &ObjectiveC_Classes_hasProperty;
2937 definition.getProperty = &ObjectiveC_Classes_getProperty;
2938 definition.getPropertyNames = &ObjectiveC_Classes_getPropertyNames;
2939 ObjectiveC_Classes_ = JSClassCreate(&definition);
2941 definition = kJSClassDefinitionEmpty;
2942 definition.className = "ObjectiveC::Constants";
2943 definition.getProperty = &ObjectiveC_Constants_getProperty;
2944 definition.getPropertyNames = &ObjectiveC_Constants_getPropertyNames;
2945 ObjectiveC_Constants_ = JSClassCreate(&definition);
2947 #if OBJC_API_VERSION >= 2
2948 definition = kJSClassDefinitionEmpty;
2949 definition.className = "ObjectiveC::Images";
2950 definition.getProperty = &ObjectiveC_Images_getProperty;
2951 definition.getPropertyNames = &ObjectiveC_Images_getPropertyNames;
2952 ObjectiveC_Images_ = JSClassCreate(&definition);
2954 definition = kJSClassDefinitionEmpty;
2955 definition.className = "ObjectiveC::Image::Classes";
2956 definition.getProperty = &ObjectiveC_Image_Classes_getProperty;
2957 definition.getPropertyNames = &ObjectiveC_Image_Classes_getPropertyNames;
2958 ObjectiveC_Image_Classes_ = JSClassCreate(&definition);
2961 definition = kJSClassDefinitionEmpty;
2962 definition.className = "ObjectiveC::Protocols";
2963 definition.getProperty = &ObjectiveC_Protocols_getProperty;
2964 definition.getPropertyNames = &ObjectiveC_Protocols_getPropertyNames;
2965 ObjectiveC_Protocols_ = JSClassCreate(&definition);
2968 // XXX: this is horrible; there has to be a better way to do this
2970 class_addMethod(NSCFType_, @selector(cy$toJSON:inContext:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON$inContext$), "^{OpaqueJSValue=}32@0:8@16^{OpaqueJSContext=}24");
2972 class_addMethod(NSCFType_, @selector(cy$toJSON:inContext:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON$inContext$), "^{OpaqueJSValue=}16@0:4@8^{OpaqueJSContext=}12");
2977 void CYObjectiveC_SetupContext(JSContextRef context) { CYPoolTry {
2978 JSObjectRef global(CYGetGlobalObject(context));
2979 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
2980 JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript"))));
2981 JSObjectRef all(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("all"))));
2982 JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls"))));
2984 JSObjectRef ObjectiveC(JSObjectMake(context, NULL, NULL));
2985 CYSetProperty(context, cycript, CYJSString("ObjectiveC"), ObjectiveC);
2987 JSObjectRef protocols(JSObjectMake(context, ObjectiveC_Protocols_, NULL));
2988 CYSetProperty(context, ObjectiveC, CYJSString("protocols"), protocols);
2989 CYArrayPush(context, alls, protocols);
2991 JSObjectRef classes(JSObjectMake(context, ObjectiveC_Classes_, NULL));
2992 CYSetProperty(context, ObjectiveC, CYJSString("classes"), classes);
2993 CYArrayPush(context, alls, classes);
2995 JSObjectRef constants(JSObjectMake(context, ObjectiveC_Constants_, NULL));
2996 CYSetProperty(context, ObjectiveC, CYJSString("constants"), constants);
2997 CYArrayPush(context, alls, constants);
2999 #if OBJC_API_VERSION >= 2
3000 CYSetProperty(context, ObjectiveC, CYJSString("images"), JSObjectMake(context, ObjectiveC_Images_, NULL));
3003 JSObjectRef Class(JSObjectMakeConstructor(context, Class_, NULL));
3004 JSObjectRef Instance(JSObjectMakeConstructor(context, Instance_, &Instance_new));
3005 JSObjectRef Message(JSObjectMakeConstructor(context, Message_, NULL));
3006 JSObjectRef Selector(JSObjectMakeConstructor(context, Selector_, &Selector_new));
3007 JSObjectRef Super(JSObjectMakeConstructor(context, Super_, &Super_new));
3009 JSObjectRef Instance_prototype(CYCastJSObject(context, CYGetProperty(context, Instance, prototype_s)));
3010 CYSetProperty(context, cy, CYJSString("Instance_prototype"), Instance_prototype);
3012 JSObjectRef ArrayInstance(JSObjectMakeConstructor(context, ArrayInstance_, NULL));
3013 JSObjectRef ArrayInstance_prototype(CYCastJSObject(context, CYGetProperty(context, ArrayInstance, prototype_s)));
3014 CYSetProperty(context, cy, CYJSString("ArrayInstance_prototype"), ArrayInstance_prototype);
3015 JSObjectRef Array_prototype(CYGetCachedObject(context, CYJSString("Array_prototype")));
3016 JSObjectSetPrototype(context, ArrayInstance_prototype, Array_prototype);
3018 JSObjectRef BooleanInstance(JSObjectMakeConstructor(context, BooleanInstance_, NULL));
3019 JSObjectRef BooleanInstance_prototype(CYCastJSObject(context, CYGetProperty(context, BooleanInstance, prototype_s)));
3020 CYSetProperty(context, cy, CYJSString("BooleanInstance_prototype"), BooleanInstance_prototype);
3021 JSObjectRef Boolean_prototype(CYGetCachedObject(context, CYJSString("Boolean_prototype")));
3022 JSObjectSetPrototype(context, BooleanInstance_prototype, Boolean_prototype);
3024 JSObjectRef FunctionInstance(JSObjectMakeConstructor(context, FunctionInstance_, NULL));
3025 JSObjectRef FunctionInstance_prototype(CYCastJSObject(context, CYGetProperty(context, FunctionInstance, prototype_s)));
3026 CYSetProperty(context, cy, CYJSString("FunctionInstance_prototype"), FunctionInstance_prototype);
3027 JSObjectRef Function_prototype(CYGetCachedObject(context, CYJSString("Function_prototype")));
3028 JSObjectSetPrototype(context, FunctionInstance_prototype, Function_prototype);
3030 JSObjectRef NumberInstance(JSObjectMakeConstructor(context, NumberInstance_, NULL));
3031 JSObjectRef NumberInstance_prototype(CYCastJSObject(context, CYGetProperty(context, NumberInstance, prototype_s)));
3032 CYSetProperty(context, cy, CYJSString("NumberInstance_prototype"), NumberInstance_prototype);
3033 JSObjectRef Number_prototype(CYGetCachedObject(context, CYJSString("Number_prototype")));
3034 JSObjectSetPrototype(context, NumberInstance_prototype, Number_prototype);
3036 JSObjectRef ObjectInstance(JSObjectMakeConstructor(context, ObjectInstance_, NULL));
3037 JSObjectRef ObjectInstance_prototype(CYCastJSObject(context, CYGetProperty(context, ObjectInstance, prototype_s)));
3038 CYSetProperty(context, cy, CYJSString("ObjectInstance_prototype"), ObjectInstance_prototype);
3039 JSObjectRef Object_prototype(CYGetCachedObject(context, CYJSString("Object_prototype")));
3040 JSObjectSetPrototype(context, ObjectInstance_prototype, Object_prototype);
3042 JSObjectRef StringInstance(JSObjectMakeConstructor(context, StringInstance_, NULL));
3043 JSObjectRef StringInstance_prototype(CYCastJSObject(context, CYGetProperty(context, StringInstance, prototype_s)));
3044 CYSetProperty(context, cy, CYJSString("StringInstance_prototype"), StringInstance_prototype);
3045 JSObjectRef String_prototype(CYGetCachedObject(context, CYJSString("String_prototype")));
3046 JSObjectSetPrototype(context, StringInstance_prototype, String_prototype);
3048 JSObjectRef Class_prototype(CYCastJSObject(context, CYGetProperty(context, Class, prototype_s)));
3049 CYSetProperty(context, cy, CYJSString("Class_prototype"), Class_prototype);
3050 JSObjectSetPrototype(context, Class_prototype, Instance_prototype);
3052 CYSetProperty(context, cycript, CYJSString("Instance"), Instance);
3053 CYSetProperty(context, cycript, CYJSString("Selector"), Selector);
3054 CYSetProperty(context, cycript, CYJSString("objc_super"), Super);
3056 JSObjectRef box(JSObjectMakeFunctionWithCallback(context, CYJSString("box"), &Instance_box_callAsFunction));
3057 CYSetProperty(context, Instance, CYJSString("box"), box, kJSPropertyAttributeDontEnum);
3060 CYSetProperty(context, all, CYJSString("choose"), &choose, kJSPropertyAttributeDontEnum);
3063 CYSetProperty(context, all, CYJSString("objc_msgSend"), &$objc_msgSend, kJSPropertyAttributeDontEnum);
3065 JSObjectSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Message, prototype_s)), Function_prototype);
3066 JSObjectSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Selector, prototype_s)), Function_prototype);
3069 static CYHooks CYObjectiveCHooks = {
3070 &CYObjectiveC_ExecuteStart,
3071 &CYObjectiveC_ExecuteEnd,
3072 &CYObjectiveC_CallFunction,
3073 &CYObjectiveC_Initialize,
3074 &CYObjectiveC_SetupContext,
3075 &CYObjectiveC_PoolFFI,
3076 &CYObjectiveC_FromFFI,
3079 struct CYObjectiveC {
3081 hooks_ = &CYObjectiveCHooks;
3082 // XXX: evil magic juju to make this actually take effect on a Mac when compiled with autoconf/libtool doom!
3083 _assert(hooks_ != NULL);
3087 extern "C" void CydgetSetupContext(JSGlobalContextRef context) { CYObjectiveTry_ {
3088 CYSetupContext(context);
3089 } CYObjectiveCatch }
3091 extern "C" void CydgetMemoryParse(const uint16_t **data, size_t *size) { try {
3094 CYUTF8String utf8(CYPoolUTF8String(pool, CYUTF16String(*data, *size)));
3095 CYStream stream(utf8.data, utf8.data + utf8.size);
3096 utf8 = CYPoolCode(pool, stream);
3098 CYUTF16String utf16(CYPoolUTF16String(pool, CYUTF8String(utf8.data, utf8.size)));
3099 size_t bytes(utf16.size * sizeof(uint16_t));
3100 uint16_t *copy(reinterpret_cast<uint16_t *>(malloc(bytes)));
3101 memcpy(copy, utf16.data, bytes);
3105 } catch (const CYException &exception) {
3107 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"%s", exception.PoolCString(pool)] userInfo:nil];