1 /* Cycript - The Truly Universal Scripting Language
2 * Copyright (C) 2009-2016 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "cycript.hpp"
32 #include <malloc/malloc.h>
33 #include <mach/mach.h>
36 #include <objc/message.h>
37 #include <objc/runtime.h>
40 #include <CoreFoundation/CoreFoundation.h>
41 #include <JavaScriptCore/JSStringRefCF.h>
44 #include <Foundation/Foundation.h>
49 #include "Functor.hpp"
50 #include "JavaScript.hpp"
52 #include "Execute.hpp"
54 #include "ObjectiveC/Internal.hpp"
55 #include "ObjectiveC/Syntax.hpp"
57 #define CYObjectiveTry_ { \
59 #define CYObjectiveTry { \
60 JSContextRef context(context_); \
62 #define CYObjectiveCatch \
63 catch (const CYException &error) { \
64 @throw CYCastNSObject(NULL, context, error.CastJSValue(context, "Error")); \
70 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
72 #define CYPoolCatch(value) \
73 @catch (NSException *error) { \
74 _saved = [error retain]; \
75 throw CYJSError(context, CYCastJSValue(context, error)); \
80 [_saved autorelease]; \
86 #define CYSadCatch(value) \
87 @catch (NSException *error ) { \
88 throw CYJSError(context, CYCastJSValue(context, error)); \
92 #define _oassert(test) \
94 @throw [NSException exceptionWithName:NSInternalInconsistencyException reason:@"_assert(" #test ")" userInfo:nil];
102 void (*invoke)(void *, ...);
106 struct BlockDescriptor1 {
107 unsigned long int reserved;
108 unsigned long int size;
111 struct BlockDescriptor2 {
112 void (*copy_helper)(BlockLiteral *dst, BlockLiteral *src);
113 void (*dispose_helper)(BlockLiteral *src);
116 struct BlockDescriptor3 {
117 const char *signature;
122 BLOCK_DEALLOCATING = 0x0001,
123 BLOCK_REFCOUNT_MASK = 0xfffe,
124 BLOCK_NEEDS_FREE = 1 << 24,
125 BLOCK_HAS_COPY_DISPOSE = 1 << 25,
126 BLOCK_HAS_CTOR = 1 << 26,
127 BLOCK_IS_GC = 1 << 27,
128 BLOCK_IS_GLOBAL = 1 << 28,
129 BLOCK_HAS_STRET = 1 << 29,
130 BLOCK_HAS_SIGNATURE = 1 << 30,
133 static bool CYIsClass(id self) {
134 return class_isMetaClass(object_getClass(self));
137 JSValueRef CYSendMessage(CYPool &pool, JSContextRef context, id self, Class super, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize);
139 /* Objective-C Pool Release {{{ */
140 void CYPoolRelease_(void *data) {
141 id object(reinterpret_cast<id>(data));
145 id CYPoolRelease_(CYPool *pool, id object) {
148 else if (pool == NULL)
149 return [object autorelease];
151 pool->atexit(CYPoolRelease_);
156 template <typename Type_>
157 Type_ CYPoolRelease(CYPool *pool, Type_ object) {
158 return (Type_) CYPoolRelease_(pool, (id) object);
161 /* Objective-C Strings {{{ */
162 CYUTF8String CYPoolUTF8String(CYPool &pool, JSContextRef context, NSString *value) {
163 size_t size([value maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding]);
164 char *string(new(pool) char[size + 1]);
165 if (![value getCString:string maxLength:size encoding:NSUTF8StringEncoding])
166 throw CYJSError(context, "[NSString getCString:maxLength:encoding:] == NO");
167 return CYUTF8String(string, [value lengthOfBytesUsingEncoding:NSUTF8StringEncoding]);
170 const char *CYPoolCString(CYPool &pool, JSContextRef context, NSString *value) {
171 CYUTF8String utf8(CYPoolUTF8String(pool, context, value));
172 _assert(memchr(utf8.data, '\0', utf8.size) == NULL);
177 JSStringRef CYCopyJSString(JSContextRef context, NSString *value) {
178 return JSStringCreateWithCFString(reinterpret_cast<CFStringRef>(value));
182 JSStringRef CYCopyJSString(JSContextRef context, NSObject *value) {
185 // XXX: this definition scares me; is anyone using this?!
186 NSString *string([value description]);
188 return CYCopyJSString(context, string);
191 return CYCopyJSString(CYPoolUTF8String(pool, context, string));
195 NSString *CYCopyNSString(const CYUTF8String &value) {
197 return (NSString *) CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8 *>(value.data), value.size, kCFStringEncodingUTF8, true);
199 return [[NSString alloc] initWithBytes:value.data length:value.size encoding:NSUTF8StringEncoding];
203 NSString *CYCopyNSString(JSContextRef context, JSStringRef value) {
205 return (NSString *) JSStringCopyCFString(kCFAllocatorDefault, value);
208 return CYCopyNSString(CYPoolUTF8String(pool, context, value));
212 NSString *CYCopyNSString(JSContextRef context, JSValueRef value) {
213 return CYCopyNSString(context, CYJSString(context, value));
216 NSString *CYCastNSString(CYPool *pool, const CYUTF8String &value) {
217 return CYPoolRelease(pool, CYCopyNSString(value));
220 NSString *CYCastNSString(CYPool *pool, SEL sel) {
221 const char *name(sel_getName(sel));
222 return CYPoolRelease(pool, CYCopyNSString(CYUTF8String(name, strlen(name))));
225 NSString *CYCastNSString(CYPool *pool, JSContextRef context, JSStringRef value) {
226 return CYPoolRelease(pool, CYCopyNSString(context, value));
229 CYUTF8String CYCastUTF8String(NSString *value) {
230 NSData *data([value dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO]);
231 return CYUTF8String(reinterpret_cast<const char *>([data bytes]), [data length]);
235 JSValueRef CYCastJSValue(JSContextRef context, NSObject *value);
237 void CYThrow(JSContextRef context, NSException *error, JSValueRef *exception) {
238 if (exception == NULL)
240 *exception = CYCastJSValue(context, error);
243 size_t CYGetIndex(NSString *value) {
244 return CYGetIndex(CYCastUTF8String(value));
247 bool CYGetOffset(CYPool &pool, JSContextRef context, NSString *value, ssize_t &index) {
248 return CYGetOffset(CYPoolCString(pool, context, value), index);
251 static JSClassRef ObjectiveC_Classes_;
252 static JSClassRef ObjectiveC_Constants_;
253 static JSClassRef ObjectiveC_Protocols_;
256 static JSClassRef ObjectiveC_Image_Classes_;
257 static JSClassRef ObjectiveC_Images_;
261 static Class __NSMallocBlock__;
262 static Class NSCFBoolean_;
263 static Class NSCFType_;
264 static Class NSGenericDeallocHandler_;
266 static Class NSBoolNumber_;
269 static Class NSArray_;
270 static Class NSBlock_;
271 static Class NSDictionary_;
272 static Class NSNumber_;
273 static Class NSObject_;
274 static Class NSString_;
275 static Class NSZombie_;
276 static Class Object_;
278 static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception);
280 JSValueRef Messages::GetPrototype(JSContextRef context) const {
282 if (value_ == NSCFBoolean_)
284 if (value_ == NSBoolNumber_)
286 return CYGetCachedObject(context, CYJSString("BooleanInstance_prototype"));
287 if (value_ == NSArray_)
288 return CYGetCachedObject(context, CYJSString("ArrayInstance_prototype"));
289 if (value_ == NSBlock_)
290 return CYGetCachedObject(context, CYJSString("FunctionInstance_prototype"));
291 if (value_ == NSNumber_)
292 return CYGetCachedObject(context, CYJSString("NumberInstance_prototype"));
293 if (value_ == NSDictionary_)
294 return CYGetCachedObject(context, CYJSString("ObjectInstance_prototype"));
295 if (value_ == NSString_)
296 return CYGetCachedObject(context, CYJSString("StringInstance_prototype"));
298 if (Class super = class_getSuperclass(value_))
299 if (class_isMetaClass(value_) && !class_isMetaClass(super))
300 return CYGetCachedObject(context, CYJSString("TypeInstance_prototype"));
302 return CYPrivate<Messages>::Cache(context, super);
304 return CYGetCachedObject(context, CYJSString("Instance_prototype"));
307 bool CYIsKindOfClass(id object, Class _class) {
308 for (Class isa(object_getClass(object)); isa != NULL; isa = class_getSuperclass(isa))
314 JSValueRef Instance::GetPrototype(JSContextRef context) const {
315 return CYPrivate<Messages>::Cache(context, object_getClass(value_));
318 Instance::Instance(id value, Flags flags) :
323 /*else if ([value retainCount] == NSUInteger(-1))
324 flags_ |= Instance::Permanent;*/
326 value_ = [value_ retain];
329 Instance::~Instance() {
334 struct Message_privateData :
337 static JSClassRef Class_;
341 Message_privateData(SEL sel, const char *type, IMP value) :
342 cy::Functor(reinterpret_cast<void (*)()>(value), type),
347 virtual CYPropertyName *GetName(CYPool &pool) const;
349 static JSObjectRef Make(JSContextRef context, SEL sel, const char *type, IMP value);
352 JSClassRef Message_privateData::Class_;
354 JSObjectRef CYMakeInstance(JSContextRef context, id object, Instance::Flags flags = Instance::None) {
355 _assert(object != nil);
358 JSWeakObjectMapRef weak(CYCastPointer<JSWeakObjectMapRef>(context, CYGetCachedValue(context, weak_s)));
360 if (weak != NULL && &JSWeakObjectMapGet != NULL)
361 if (JSObjectRef instance = JSWeakObjectMapGet(context, weak, object))
365 JSObjectRef instance;
367 else if (CYIsKindOfClass(object, NSBlock_))
368 instance = CYPrivate<Block>::Make(context, object, flags);
369 else if (CYIsClass(object))
370 instance = CYPrivate<Constructor>::Make(context, object, flags);
372 instance = CYPrivate<Instance>::Make(context, object, flags);
375 if (weak != NULL && &JSWeakObjectMapSet != NULL)
376 JSWeakObjectMapSet(context, weak, object, instance);
382 @interface NSMethodSignature (Cycript)
383 - (NSString *) _typeString;
386 @interface NSObject (Cycript)
388 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context;
389 - (JSType) cy$JSType;
391 - (JSValueRef) cy$toJSON:(NSString *)key inContext:(JSContextRef)context;
392 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects;
394 - (bool) cy$hasProperty:(NSString *)name;
395 - (NSObject *) cy$getProperty:(NSString *)name;
396 - (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context;
397 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value;
398 - (bool) cy$deleteProperty:(NSString *)name;
399 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context;
401 + (bool) cy$hasImplicitProperties;
407 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context;
410 NSString *CYCastNSCYON(id value, bool objective, std::set<void *> &objects) {
411 _assert(value != nil);
413 Class _class(object_getClass(value));
415 if (class_isMetaClass(_class)) {
416 const char *name(class_getName(value));
417 if (class_isMetaClass(value))
418 return [NSString stringWithFormat:@"object_getClass(%s)", name];
420 return [NSString stringWithUTF8String:name];
423 if (_class == NSZombie_)
424 return [NSString stringWithFormat:@"<_NSZombie_: %p>", value];
426 SEL sel(@selector(cy$toCYON:inSet:));
428 if (objc_method *toCYON = class_getInstanceMethod(_class, sel))
429 return reinterpret_cast<NSString *(*)(id, SEL, bool, std::set<void *> &)>(method_getImplementation(toCYON))(value, sel, objective, objects);
430 else if (objc_method *methodSignatureForSelector = class_getInstanceMethod(_class, @selector(methodSignatureForSelector:)))
431 if (reinterpret_cast<NSMethodSignature *(*)(id, SEL, SEL)>(method_getImplementation(methodSignatureForSelector))(value, @selector(methodSignatureForSelector:), sel) != nil)
432 return [value cy$toCYON:objective inSet:objects];
434 return [NSString stringWithFormat:@"%@", value];
437 NSString *CYCastNSCYON(id value, bool objective, std::set<void *> *objects) {
439 return CYCastNSCYON(value, objective, *objects);
441 std::set<void *> objects;
442 return CYCastNSCYON(value, objective, objects);
446 struct PropertyAttributes {
451 const char *variable;
464 PropertyAttributes(objc_property_t property) :
476 name = property_getName(property);
477 const char *attributes(property_getAttributes(property));
479 for (char *token(pool_.strdup(attributes)), *next; token != NULL; token = next) {
480 if ((next = strchr(token, ',')) != NULL)
483 case 'R': readonly = true; break;
484 case 'C': copy = true; break;
485 case '&': retain = true; break;
486 case 'N': nonatomic = true; break;
487 case 'G': getter_ = token + 1; break;
488 case 'S': setter_ = token + 1; break;
489 case 'V': variable = token + 1; break;
493 /*if (variable == NULL) {
494 variable = property_getName(property);
495 size_t size(strlen(variable));
496 char *name(new(pool_) char[size + 2]);
498 memcpy(name + 1, variable, size);
499 name[size + 1] = '\0';
504 const char *Getter() {
506 getter_ = pool_.strdup(name);
510 const char *Setter() {
511 if (setter_ == NULL && !readonly) {
512 size_t length(strlen(name));
514 char *temp(new(pool_) char[length + 5]);
520 temp[3] = toupper(name[0]);
521 memcpy(temp + 4, name + 1, length - 1);
524 temp[length + 3] = ':';
525 temp[length + 4] = '\0';
534 @interface CYWebUndefined : NSObject {
537 + (CYWebUndefined *) undefined;
541 @implementation CYWebUndefined
543 + (CYWebUndefined *) undefined {
544 static CYWebUndefined *instance_([[CYWebUndefined alloc] init]);
550 #define WebUndefined CYWebUndefined
552 /* Bridge: CYJSObject {{{ */
553 @interface CYJSObject : NSMutableDictionary {
555 JSGlobalContextRef context_;
558 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
560 - (NSUInteger) count;
561 - (id) objectForKey:(id)key;
562 - (NSEnumerator *) keyEnumerator;
563 - (void) setObject:(id)object forKey:(id)key;
564 - (void) removeObjectForKey:(id)key;
568 /* Bridge: CYJSArray {{{ */
569 @interface CYJSArray : NSMutableArray {
571 JSGlobalContextRef context_;
574 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
576 - (NSUInteger) count;
577 - (id) objectAtIndex:(NSUInteger)index;
579 - (void) addObject:(id)anObject;
580 - (void) insertObject:(id)anObject atIndex:(NSUInteger)index;
581 - (void) removeLastObject;
582 - (void) removeObjectAtIndex:(NSUInteger)index;
583 - (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
588 _finline bool CYJSValueIsNSObject(JSContextRef context, JSValueRef value) {
589 return JSValueIsObjectOfClass(context, value, CYPrivate<Instance>::Class_);
592 _finline bool CYJSValueIsInstanceOfCachedConstructor(JSContextRef context, JSValueRef value, JSStringRef cache) {
593 return _jsccall(JSValueIsInstanceOfConstructor, context, value, CYGetCachedObject(context, cache));
597 struct CYBlockDescriptor {
599 BlockDescriptor1 one_;
600 BlockDescriptor2 two_;
601 BlockDescriptor3 three_;
604 Closure_privateData *internal_;
607 void CYDisposeBlock(BlockLiteral *literal) {
608 delete reinterpret_cast<CYBlockDescriptor *>(literal->descriptor)->internal_;
611 static JSValueRef BlockAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) {
612 JSObjectRef _this(CYCastJSObject(context, values[0]));
613 return CYCallAsFunction(context, function, _this, count - 1, values + 1);
616 NSBlock *CYMakeBlock(JSContextRef context, JSObjectRef function, sig::Signature &signature) {
617 _assert(__NSMallocBlock__ != Nil);
618 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(malloc(sizeof(BlockLiteral))));
620 CYBlockDescriptor *descriptor(new CYBlockDescriptor);
621 memset(&descriptor->d_, 0, sizeof(descriptor->d_));
623 descriptor->internal_ = CYMakeFunctor_(context, function, signature, &BlockAdapter_);
624 literal->invoke = reinterpret_cast<void (*)(void *, ...)>(descriptor->internal_->value_);
626 literal->isa = __NSMallocBlock__;
627 literal->flags = BLOCK_HAS_SIGNATURE | BLOCK_HAS_COPY_DISPOSE | BLOCK_IS_GLOBAL;
628 literal->reserved = 0;
629 literal->descriptor = descriptor;
631 descriptor->d_.one_.size = sizeof(descriptor->d_);
632 descriptor->d_.two_.dispose_helper = &CYDisposeBlock;
633 descriptor->d_.three_.signature = sig::Unparse(*descriptor->internal_->pool_, &signature);
635 return reinterpret_cast<NSBlock *>(literal);
639 NSObject *CYCastNSObject(CYPool *pool, JSContextRef context, JSObjectRef object) {
640 if (CYJSValueIsNSObject(context, object)) {
641 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
642 return internal->value_;
645 bool array(CYJSValueIsInstanceOfCachedConstructor(context, object, Array_s));
646 id value(array ? [CYJSArray alloc] : [CYJSObject alloc]);
647 return CYPoolRelease(pool, [value initWithJSObject:object inContext:context]);
650 NSNumber *CYCopyNSNumber(JSContextRef context, JSValueRef value) {
651 return [[NSNumber alloc] initWithDouble:CYCastDouble(context, value)];
655 @interface NSBoolNumber : NSNumber {
660 id CYNSObject(CYPool *pool, JSContextRef context, JSValueRef value, bool cast) {
664 switch (JSType type = JSValueGetType(context, value)) {
665 case kJSTypeUndefined:
666 object = [WebUndefined undefined];
676 object = (id) (CYCastBool(context, value) ? kCFBooleanTrue : kCFBooleanFalse);
679 object = [[NSBoolNumber alloc] initWithBool:CYCastBool(context, value)];
685 object = CYCopyNSNumber(context, value);
690 object = CYCopyNSString(context, value);
695 // XXX: this might could be more efficient
696 object = CYCastNSObject(pool, context, (JSObjectRef) value);
701 throw CYJSError(context, "JSValueGetType() == 0x%x", type);
708 return CYPoolRelease(pool, object);
710 return [object retain];
713 NSObject *CYCastNSObject(CYPool *pool, JSContextRef context, JSValueRef value) {
714 return CYNSObject(pool, context, value, true);
717 NSObject *CYCopyNSObject(CYPool &pool, JSContextRef context, JSValueRef value) {
718 return CYNSObject(&pool, context, value, false);
721 /* Bridge: NSArray {{{ */
722 @implementation NSArray (Cycript)
725 return [[self mutableCopy] autorelease];
728 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
729 _oassert(objects.insert(self).second);
731 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
732 [json appendString:@"@["];
736 for (id object in self) {
738 for (size_t index(0), count([self count]); index != count; ++index) {
739 id object([self objectAtIndex:index]);
742 [json appendString:@","];
745 if (object != nil && [object cy$JSType] != kJSTypeUndefined)
746 [json appendString:CYCastNSCYON(object, true, objects)];
748 [json appendString:@","];
753 [json appendString:@"]"];
757 - (bool) cy$hasProperty:(NSString *)name {
758 if ([name isEqualToString:@"length"])
761 size_t index(CYGetIndex(name));
762 if (index == _not(size_t) || index >= [self count])
763 return [super cy$hasProperty:name];
768 - (NSObject *) cy$getProperty:(NSString *)name {
769 size_t index(CYGetIndex(name));
770 if (index == _not(size_t) || index >= [self count])
771 return [super cy$getProperty:name];
773 return [self objectAtIndex:index];
776 - (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context {
778 if ([name isEqualToString:@"length"])
779 return CYCastJSValue(context, [self count]);
782 return [super cy$getProperty:name inContext:context];
785 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
786 [super cy$getPropertyNames:names inContext:context];
788 for (size_t index(0), count([self count]); index != count; ++index) {
789 id object([self objectAtIndex:index]);
790 if (object == nil || [object cy$JSType] != kJSTypeUndefined) {
792 sprintf(name, "%zu", index);
793 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
798 + (bool) cy$hasImplicitProperties {
804 /* Bridge: NSBlock {{{ */
806 @interface NSBlock : NSObject
810 static const char *CYBlockEncoding(NSBlock *self);
811 static bool CYBlockSignature(CYPool &pool, NSBlock *self, sig::Signature &signature);
813 @implementation NSBlock (Cycript)
815 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
819 if (!CYBlockSignature(pool, self, type.signature))
820 return [super cy$toCYON:objective inSet:objects];
821 _oassert(objects.insert(self).second);
823 CYType *typed((new(pool) CYTypeExpression(CYDecodeType(pool, &type)))->typed_);
824 CYTypeModifier *&modifier(CYGetLast(typed->modifier_));
825 CYTypeBlockWith *with(dynamic_cast<CYTypeBlockWith *>(modifier));
826 _assert(with != NULL);
827 CYObjCBlock *block(new(pool) CYObjCBlock(typed, with->parameters_, NULL));
830 std::ostringstream str;
832 CYOutput out(*str.rdbuf(), options);
833 block->Output(out, CYNoFlags);
835 std::string value(str.str());
836 return CYCastNSString(NULL, CYUTF8String(value.c_str(), value.size()));
842 /* Bridge: NSBoolNumber {{{ */
844 @implementation NSBoolNumber (Cycript)
846 - (JSType) cy$JSType {
847 return kJSTypeBoolean;
850 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
851 NSString *value([self boolValue] ? @"true" : @"false");
852 return objective ? value : [NSString stringWithFormat:@"@%@", value];
855 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
856 return CYCastJSValue(context, (bool) [self boolValue]);
862 /* Bridge: NSDictionary {{{ */
863 @implementation NSDictionary (Cycript)
866 return [[self mutableCopy] autorelease];
869 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
870 _oassert(objects.insert(self).second);
872 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
873 [json appendString:@"@{"];
877 for (NSObject *key in self) {
879 NSEnumerator *keys([self keyEnumerator]);
880 while (NSObject *key = [keys nextObject]) {
883 [json appendString:@","];
886 [json appendString:CYCastNSCYON(key, true, objects)];
887 [json appendString:@":"];
888 NSObject *object([self objectForKey:key]);
889 [json appendString:CYCastNSCYON(object, true, objects)];
892 [json appendString:@"}"];
896 - (bool) cy$hasProperty:(NSString *)name {
897 return [self objectForKey:name] != nil;
900 - (NSObject *) cy$getProperty:(NSString *)name {
901 return [self objectForKey:name];
904 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
905 [super cy$getPropertyNames:names inContext:context];
908 for (NSObject *key in self) {
910 NSEnumerator *keys([self keyEnumerator]);
911 while (NSObject *key = [keys nextObject]) {
913 JSPropertyNameAccumulatorAddName(names, CYJSString(context, key));
917 + (bool) cy$hasImplicitProperties {
923 /* Bridge: NSMutableArray {{{ */
924 @implementation NSMutableArray (Cycript)
926 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
927 if ([name isEqualToString:@"length"]) {
928 // XXX: is this not intelligent?
929 NSNumber *number(reinterpret_cast<NSNumber *>(value));
930 NSUInteger size([number unsignedIntegerValue]);
931 NSUInteger count([self count]);
933 [self removeObjectsInRange:NSMakeRange(size, count - size)];
934 else if (size != count) {
935 WebUndefined *undefined([WebUndefined undefined]);
936 for (size_t i(count); i != size; ++i)
937 [self addObject:undefined];
942 size_t index(CYGetIndex(name));
943 if (index == _not(size_t))
944 return [super cy$setProperty:name to:value];
946 id object(value ?: [NSNull null]);
948 size_t count([self count]);
950 [self replaceObjectAtIndex:index withObject:object];
952 if (index != count) {
953 WebUndefined *undefined([WebUndefined undefined]);
954 for (size_t i(count); i != index; ++i)
955 [self addObject:undefined];
958 [self addObject:object];
964 - (bool) cy$deleteProperty:(NSString *)name {
965 size_t index(CYGetIndex(name));
966 if (index == _not(size_t) || index >= [self count])
967 return [super cy$deleteProperty:name];
968 [self replaceObjectAtIndex:index withObject:[WebUndefined undefined]];
974 /* Bridge: NSMutableDictionary {{{ */
975 @implementation NSMutableDictionary (Cycript)
977 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
978 [self setObject:(value ?: [NSNull null]) forKey:name];
982 - (bool) cy$deleteProperty:(NSString *)name {
983 if ([self objectForKey:name] == nil)
986 [self removeObjectForKey:name];
993 /* Bridge: NSNumber {{{ */
994 @implementation NSNumber (Cycript)
996 - (JSType) cy$JSType {
998 // XXX: this just seems stupid
999 if ([self class] == NSCFBoolean_)
1000 return kJSTypeBoolean;
1002 return kJSTypeNumber;
1005 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1006 NSString *value([self cy$JSType] != kJSTypeBoolean ? [self stringValue] : [self boolValue] ? @"true" : @"false");
1007 return objective ? value : [NSString stringWithFormat:@"@%@", value];
1010 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1011 return [self cy$JSType] != kJSTypeBoolean ? CYCastJSValue(context, [self doubleValue]) : CYCastJSValue(context, static_cast<bool>([self boolValue]));
1012 } CYObjectiveCatch }
1016 /* Bridge: NSNull {{{ */
1017 @implementation NSNull (Cycript)
1019 - (JSType) cy$JSType {
1023 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1024 NSString *value(@"null");
1025 return objective ? value : [NSString stringWithFormat:@"@%@", value];
1028 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1029 return CYJSNull(context);
1030 } CYObjectiveCatch }
1034 /* Bridge: NSObject {{{ */
1035 @implementation NSObject (Cycript)
1041 - (JSValueRef) cy$toJSON:(NSString *)key inContext:(JSContextRef)context {
1042 return [self cy$valueOfInContext:context];
1045 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1047 } CYObjectiveCatch }
1049 - (JSType) cy$JSType {
1050 return kJSTypeObject;
1053 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1054 return [@"#" stringByAppendingString:[[self description] cy$toCYON:true inSet:objects]];
1057 - (bool) cy$hasProperty:(NSString *)name {
1061 - (NSObject *) cy$getProperty:(NSString *)name {
1065 - (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context { CYObjectiveTry_ {
1066 if (NSObject *value = [self cy$getProperty:name])
1067 return CYCastJSValue(context, value);
1069 } CYObjectiveCatch }
1071 - (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1075 - (bool) cy$deleteProperty:(NSString *)name {
1079 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
1082 + (bool) cy$hasImplicitProperties {
1088 /* Bridge: NSOrderedSet {{{ */
1090 @implementation NSOrderedSet (Cycript)
1092 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1093 _oassert(objects.insert(self).second);
1095 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
1096 [json appendString:@"[NSOrderedSet orderedSetWithArray:"];
1097 [json appendString:CYCastNSCYON([self array], true, objects)];
1098 [json appendString:@"]]"];
1105 /* Bridge: NSProxy {{{ */
1106 @implementation NSProxy (Cycript)
1108 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1109 return [[self description] cy$toCYON:objective inSet:objects];
1114 /* Bridge: NSSet {{{ */
1115 @implementation NSSet (Cycript)
1117 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1118 _oassert(objects.insert(self).second);
1120 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
1121 [json appendString:@"[NSSet setWithArray:"];
1122 [json appendString:CYCastNSCYON([self allObjects], true, objects)];
1123 [json appendString:@"]]"];
1129 /* Bridge: NSString {{{ */
1130 @implementation NSString (Cycript)
1133 return [[self copy] autorelease];
1136 - (JSType) cy$JSType {
1137 return kJSTypeString;
1140 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1141 std::ostringstream str;
1144 CYUTF8String string(CYCastUTF8String(self));
1145 CYStringify(str, string.data, string.size, CYStringifyModeNative);
1146 std::string value(str.str());
1147 return CYCastNSString(NULL, CYUTF8String(value.c_str(), value.size()));
1150 - (bool) cy$hasProperty:(NSString *)name {
1151 size_t index(CYGetIndex(name));
1152 if (index == _not(size_t) || index >= [self length])
1153 return [super cy$hasProperty:name];
1158 - (NSObject *) cy$getProperty:(NSString *)name {
1159 size_t index(CYGetIndex(name));
1160 if (index == _not(size_t) || index >= [self length])
1161 return [super cy$getProperty:name];
1163 return [self substringWithRange:NSMakeRange(index, 1)];
1166 - (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
1167 [super cy$getPropertyNames:names inContext:context];
1169 for (size_t index(0), length([self length]); index != length; ++index) {
1171 sprintf(name, "%zu", index);
1172 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
1176 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1177 return CYCastJSValue(context, CYJSString(context, self));
1178 } CYObjectiveCatch }
1182 /* Bridge: WebUndefined {{{ */
1183 @implementation WebUndefined (Cycript)
1185 - (JSType) cy$JSType {
1186 return kJSTypeUndefined;
1189 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects {
1190 NSString *value(@"undefined");
1191 return value; // XXX: maybe use the below code, adding @undefined?
1192 //return objective ? value : [NSString stringWithFormat:@"@%@", value];
1195 - (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1196 return CYJSUndefined(context);
1197 } CYObjectiveCatch }
1202 Class CYCastClass(CYPool &pool, JSContextRef context, JSValueRef value) {
1203 id self(CYCastNSObject(&pool, context, value));
1204 if (CYIsClass(self))
1205 return (Class) self;
1206 throw CYJSError(context, "got something that is not a Class");
1210 NSArray *CYCastNSArray(JSContextRef context, JSPropertyNameArrayRef names) {
1212 size_t size(JSPropertyNameArrayGetCount(names));
1213 NSMutableArray *array([NSMutableArray arrayWithCapacity:size]);
1214 for (size_t index(0); index != size; ++index)
1215 [array addObject:CYCastNSString(&pool, context, JSPropertyNameArrayGetNameAtIndex(names, index))];
1219 JSValueRef CYCastJSValue(JSContextRef context, NSObject *value) {
1221 return CYJSNull(context);
1222 return CYMakeInstance(context, value);
1225 @implementation CYJSObject
1227 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context { CYObjectiveTry_ {
1228 if ((self = [super init]) != nil) {
1230 context_ = CYGetJSContext(context);
1231 JSGlobalContextRetain(context_);
1232 JSValueProtect(context_, object_);
1234 } CYObjectiveCatch }
1236 - (void) dealloc { CYObjectiveTry {
1237 JSValueUnprotect(context_, object_);
1238 JSGlobalContextRelease(context_);
1240 } CYObjectiveCatch }
1242 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects { CYObjectiveTry {
1244 const char *cyon(CYPoolCCYON(pool, context, object_, objects));
1246 return [super cy$toCYON:objective inSet:objects];
1248 return [NSString stringWithUTF8String:cyon];
1249 } CYObjectiveCatch }
1251 - (NSUInteger) count { CYObjectiveTry {
1252 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object_));
1253 size_t size(JSPropertyNameArrayGetCount(names));
1254 JSPropertyNameArrayRelease(names);
1256 } CYObjectiveCatch }
1258 - (id) objectForKey:(id)key { CYObjectiveTry {
1259 JSValueRef value(CYGetProperty(context, object_, CYJSString(context, (NSObject *) key)));
1260 if (JSValueIsUndefined(context, value))
1262 return CYCastNSObject(NULL, context, value) ?: [NSNull null];
1263 } CYObjectiveCatch }
1265 - (NSEnumerator *) keyEnumerator { CYObjectiveTry {
1266 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object_));
1267 NSEnumerator *enumerator([CYCastNSArray(context, names) objectEnumerator]);
1268 JSPropertyNameArrayRelease(names);
1270 } CYObjectiveCatch }
1272 - (void) setObject:(id)object forKey:(id)key { CYObjectiveTry {
1273 CYSetProperty(context, object_, CYJSString(context, (NSObject *) key), CYCastJSValue(context, (NSString *) object));
1274 } CYObjectiveCatch }
1276 - (void) removeObjectForKey:(id)key { CYObjectiveTry {
1277 (void) _jsccall(JSObjectDeleteProperty, context, object_, CYJSString(context, (NSObject *) key));
1278 } CYObjectiveCatch }
1282 @implementation CYJSArray
1284 - (NSString *) cy$toCYON:(bool)objective inSet:(std::set<void *> &)objects { CYObjectiveTry {
1286 return [NSString stringWithUTF8String:CYPoolCCYON(pool, context, object_, objects)];
1287 } CYObjectiveCatch }
1289 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context { CYObjectiveTry_ {
1290 if ((self = [super init]) != nil) {
1292 context_ = CYGetJSContext(context);
1293 JSGlobalContextRetain(context_);
1294 JSValueProtect(context_, object_);
1296 } CYObjectiveCatch }
1298 - (void) dealloc { CYObjectiveTry {
1299 JSValueUnprotect(context_, object_);
1300 JSGlobalContextRelease(context_);
1302 } CYObjectiveCatch }
1304 - (NSUInteger) count { CYObjectiveTry {
1305 return CYArrayLength(context, object_);
1306 } CYObjectiveCatch }
1308 - (id) objectAtIndex:(NSUInteger)index { CYObjectiveTry {
1309 size_t bounds([self count]);
1310 if (index >= bounds)
1311 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray objectAtIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1312 JSValueRef value(_jsccall(JSObjectGetPropertyAtIndex, context, object_, index));
1313 return CYCastNSObject(NULL, context, value) ?: [NSNull null];
1314 } CYObjectiveCatch }
1316 - (void) addObject:(id)object { CYObjectiveTry {
1317 CYArrayPush(context, object_, CYCastJSValue(context, (NSObject *) object));
1318 } CYObjectiveCatch }
1320 - (void) insertObject:(id)object atIndex:(NSUInteger)index { CYObjectiveTry {
1321 size_t bounds([self count] + 1);
1322 if (index >= bounds)
1323 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray insertObject:atIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1324 JSValueRef arguments[3];
1325 arguments[0] = CYCastJSValue(context, index);
1326 arguments[1] = CYCastJSValue(context, 0);
1327 arguments[2] = CYCastJSValue(context, (NSObject *) object);
1328 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1329 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, splice_s)), object_, 3, arguments);
1330 } CYObjectiveCatch }
1332 - (void) removeLastObject { CYObjectiveTry {
1333 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1334 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, pop_s)), object_, 0, NULL);
1335 } CYObjectiveCatch }
1337 - (void) removeObjectAtIndex:(NSUInteger)index { CYObjectiveTry {
1338 size_t bounds([self count]);
1339 if (index >= bounds)
1340 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray removeObjectAtIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1341 JSValueRef arguments[2];
1342 arguments[0] = CYCastJSValue(context, index);
1343 arguments[1] = CYCastJSValue(context, 1);
1344 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1345 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, splice_s)), object_, 2, arguments);
1346 } CYObjectiveCatch }
1348 - (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)object { CYObjectiveTry {
1349 size_t bounds([self count]);
1350 if (index >= bounds)
1351 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray replaceObjectAtIndex:withObject:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1352 CYSetProperty(context, object_, index, CYCastJSValue(context, (NSObject *) object));
1353 } CYObjectiveCatch }
1357 // XXX: inherit from or replace with CYJSObject
1358 @interface CYInternal : NSObject {
1359 JSGlobalContextRef context_;
1360 JSObjectRef object_;
1365 @implementation CYInternal
1367 - (void) dealloc { CYObjectiveTry {
1368 JSValueUnprotect(context_, object_);
1369 JSGlobalContextRelease(context_);
1371 } CYObjectiveCatch }
1373 - (id) initInContext:(JSContextRef)context { CYObjectiveTry_ {
1374 if ((self = [super init]) != nil) {
1375 context_ = CYGetJSContext(context);
1376 JSGlobalContextRetain(context_);
1378 } CYObjectiveCatch }
1380 - (bool) hasProperty:(JSStringRef)name inContext:(JSContextRef)context {
1381 if (object_ == NULL)
1384 return JSObjectHasProperty(context, object_, name);
1387 - (JSValueRef) getProperty:(JSStringRef)name inContext:(JSContextRef)context {
1388 if (object_ == NULL)
1391 return CYGetProperty(context, object_, name);
1394 - (void) setProperty:(JSStringRef)name toValue:(JSValueRef)value inContext:(JSContextRef)context {
1395 @synchronized (self) {
1396 if (object_ == NULL) {
1397 object_ = JSObjectMake(context, NULL, NULL);
1398 JSValueProtect(context, object_);
1402 CYSetProperty(context, object_, name, value);
1405 + (CYInternal *) get:(id)object {
1407 if (&objc_getAssociatedObject == NULL)
1410 @synchronized (object) {
1411 if (CYInternal *internal = objc_getAssociatedObject(object, @selector(cy$internal)))
1419 + (CYInternal *) set:(id)object inContext:(JSContextRef)context {
1421 if (&objc_getAssociatedObject == NULL)
1424 @synchronized (object) {
1425 if (CYInternal *internal = objc_getAssociatedObject(object, @selector(cy$internal)))
1428 if (&objc_setAssociatedObject == NULL)
1431 CYInternal *internal([[[CYInternal alloc] initInContext:context] autorelease]);
1432 objc_setAssociatedObject(object, @selector(cy$internal), internal, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
1442 static JSValueRef CYCastJSValue(JSContextRef context, SEL sel) {
1444 return CYJSNull(context);
1445 return CYPrivate<Selector_privateData>::Make(context, sel);
1448 static SEL CYCastSEL(JSContextRef context, JSValueRef value) {
1449 if (JSValueIsObjectOfClass(context, value, CYPrivate<Selector_privateData>::Class_)) {
1450 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1451 return reinterpret_cast<SEL>(internal->value_);
1454 return sel_registerName(CYPoolCString(pool, context, value));
1458 void *CYObjectiveC_ExecuteStart(JSContextRef context) { CYSadTry {
1459 return (void *) [[NSAutoreleasePool alloc] init];
1460 } CYSadCatch(NULL) }
1462 void CYObjectiveC_ExecuteEnd(JSContextRef context, void *handle) { CYSadTry {
1463 return [(NSAutoreleasePool *) handle release];
1466 static void CYObjectiveC_CallFunction(CYPool &pool, JSContextRef context, ffi_cif *cif, void (*function)(), void *value, void **values) { CYSadTry {
1467 CYCallFunction(pool, context, cif, function, value, values);
1470 static NSBlock *CYCastNSBlock(CYPool &pool, JSContextRef context, JSValueRef value, const sig::Signature *signature) {
1472 if (JSValueIsNull(context, value))
1474 JSObjectRef object(CYCastJSObject(context, value));
1476 if (JSValueIsObjectOfClass(context, object, CYPrivate<Block>::Class_))
1477 return reinterpret_cast<Instance *>(JSObjectGetPrivate(object))->value_;
1479 if (JSValueIsObjectOfClass(context, object, CYPrivate<Instance>::Class_)) {
1480 _assert(reinterpret_cast<Instance *>(JSObjectGetPrivate(object))->value_ == nil);
1484 _assert(JSObjectIsFunction(context, object));
1486 _assert(signature != NULL);
1487 _assert(signature->count != 0);
1489 sig::Signature modified;
1490 modified.count = signature->count + 1;
1491 modified.elements = new(pool) sig::Element[modified.count];
1493 modified.elements[0] = signature->elements[0];
1494 memcpy(modified.elements + 2, signature->elements + 1, sizeof(sig::Element) * (signature->count - 1));
1496 modified.elements[1].name = NULL;
1497 modified.elements[1].type = new(pool) sig::Object();
1498 modified.elements[1].offset = _not(size_t);
1500 return CYMakeBlock(context, object, modified);
1508 void Block::PoolFFI(CYPool *pool, JSContextRef context, ffi_type *ffi, void *data, JSValueRef value) const {
1509 // XXX: this function actually needs to handle null pools as it is an autorelease
1510 _assert(pool != NULL);
1511 *reinterpret_cast<id *>(data) = CYCastNSBlock(*pool, context, value, &signature);
1514 // XXX: assigning to an indirect id * works for return values, but not for properties and fields
1515 void Object::PoolFFI(CYPool *pool, JSContextRef context, ffi_type *ffi, void *data, JSValueRef value) const {
1516 *reinterpret_cast<id *>(data) = CYCastNSObject(pool, context, value);
1519 void Meta::PoolFFI(CYPool *pool, JSContextRef context, ffi_type *ffi, void *data, JSValueRef value) const {
1520 *reinterpret_cast<id *>(data) = CYCastNSObject(pool, context, value);
1523 void Selector::PoolFFI(CYPool *pool, JSContextRef context, ffi_type *ffi, void *data, JSValueRef value) const {
1524 *reinterpret_cast<SEL *>(data) = CYCastSEL(context, value);
1527 JSValueRef Object::FromFFI(JSContextRef context, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) const {
1528 NSObject *value(*reinterpret_cast<NSObject **>(data));
1530 return CYJSNull(context);
1531 JSObjectRef object(CYMakeInstance(context, value));
1534 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1536 if (internal->IsUninitialized()) {
1537 internal->flags_ &= ~Instance::Uninitialized;
1538 if (internal->value_ == nil)
1539 internal->value_ = value;
1541 _assert(internal->value_ == value);
1550 JSValueRef Meta::FromFFI(JSContextRef context, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) const {
1551 if (Class value = *reinterpret_cast<Class *>(data))
1552 return CYMakeInstance(context, value, Instance::Permanent);
1553 return CYJSNull(context);
1556 JSValueRef Selector::FromFFI(JSContextRef context, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) const {
1557 return CYCastJSValue(context, *reinterpret_cast<SEL *>(data));
1560 JSValueRef Block::FromFFI(JSContextRef context, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) const {
1561 return CYCastJSValue(context, *reinterpret_cast<NSObject **>(data));
1566 static bool CYImplements(id object, Class _class, SEL selector, bool devoid = false) {
1567 if (objc_method *method = class_getInstanceMethod(_class, selector)) {
1571 method_getReturnType(method, type, sizeof(type));
1576 // XXX: possibly use a more "awesome" check?
1580 static JSValueRef MessageAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) {
1581 JSObjectRef _this(CYCastJSObject(context, values[0]));
1582 return CYCallAsFunction(context, function, _this, count - 2, values + 2);
1585 JSObjectRef Message_privateData::Make(JSContextRef context, SEL sel, const char *type, IMP value) {
1586 Message_privateData *internal(new Message_privateData(sel, type, value));
1587 JSObjectRef object(JSObjectMake(context, Message_privateData::Class_, internal));
1588 CYSetPrototype(context, object, CYGetCachedValue(context, CYJSString("Functor_prototype")));
1592 static IMP CYMakeMessage(JSContextRef context, JSValueRef value, const char *encoding) {
1593 JSObjectRef function(CYCastJSObject(context, value));
1595 sig::Signature signature;
1596 sig::Parse(pool, &signature, encoding, &Structor_);
1597 Closure_privateData *internal(CYMakeFunctor_(context, function, signature, &MessageAdapter_));
1598 // XXX: see notes in Library.cpp about needing to leak
1599 return reinterpret_cast<IMP>(internal->value_);
1602 static bool Messages_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1603 auto internal(CYPrivate<Messages>::Get(context, object));
1604 Class _class(internal->value_);
1607 const char *name(CYPoolCString(pool, context, property));
1609 if (SEL sel = sel_getUid(name))
1610 if (class_getInstanceMethod(_class, sel) != NULL)
1616 static JSValueRef Messages_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1617 auto internal(CYPrivate<Messages>::Get(context, object));
1618 Class _class(internal->value_);
1621 const char *name(CYPoolCString(pool, context, property));
1623 if (SEL sel = sel_getUid(name))
1624 if (objc_method *method = class_getInstanceMethod(_class, sel))
1625 return Message_privateData::Make(context, sel, method_getTypeEncoding(method), method_getImplementation(method));
1630 static bool Messages_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
1631 auto internal(CYPrivate<Messages>::Get(context, object));
1632 Class _class(internal->value_);
1635 const char *name(CYPoolCString(pool, context, property));
1636 SEL sel(sel_registerName(name));
1641 if (JSValueIsObjectOfClass(context, value, Message_privateData::Class_)) {
1642 Message_privateData *message(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1643 type = sig::Unparse(pool, &message->signature_);
1644 imp = reinterpret_cast<IMP>(message->value_);
1645 } else if (objc_method *method = class_getInstanceMethod(_class, sel)) {
1646 type = method_getTypeEncoding(method);
1647 imp = CYMakeMessage(context, value, type);
1648 } else return false;
1650 objc_method *method(NULL);
1652 objc_method **methods(class_copyMethodList(_class, &size));
1653 pool.atexit(free, methods);
1655 for (size_t i(0); i != size; ++i)
1656 if (sel_isEqual(method_getName(methods[i]), sel)) {
1657 method = methods[i];
1662 method_setImplementation(method, imp);
1664 class_addMethod(_class, sel, imp, type);
1669 static JSValueRef Messages_complete_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1671 if (!CYCastBool(context, arguments[1]))
1672 return CYObjectMakeArray(context, 0, NULL);
1676 _assert(count == 1);
1678 CYUTF8String prefix(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0])));
1680 auto internal(CYPrivate<Messages>::Get(context, _this));
1681 Class _class(internal->value_);
1684 objc_method **data(class_copyMethodList(_class, &size));
1685 pool.atexit(free, data);
1687 JSObjectRef array(NULL); {
1688 CYArrayBuilder<1024> values(context, array);
1690 for (size_t i(0); i != size; ++i) {
1691 CYUTF8String name(sel_getName(method_getName(data[i])));
1692 if (CYStartsWith(name, prefix))
1693 values(CYCastJSValue(context, CYJSString(name)));
1698 static bool CYHasImplicitProperties(JSContextRef context, Class _class) {
1699 if (!CYCastBool(context, CYGetCachedValue(context, CYJSString("cydget"))))
1700 if (class_getProperty(NSObject_, "description") != NULL)
1702 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1703 if (!CYImplements(_class, object_getClass(_class), @selector(cy$hasImplicitProperties)))
1705 return [_class cy$hasImplicitProperties];
1708 static objc_property_t CYFindProperty(CYPool &pool, Class _class, const char *name) {
1711 if (objc_property_t property = class_getProperty(_class, name))
1715 /* // XXX: I don't think any of this is required
1717 Protocol **protocols(class_copyProtocolList(_class, &count));
1718 // XXX: just implement a scope guard already :/
1719 pool.atexit(free, protocols);
1721 for (unsigned int i(0); i != count; ++i)
1722 if (objc_property_t property = protocol_getProperty(protocols[i], name, true, true))
1725 return CYFindProperty(pool, class_getSuperclass(_class), name); */
1728 static bool Instance_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1729 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1730 id self(internal->value_);
1732 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
1736 NSString *name(CYCastNSString(&pool, context, property));
1738 if (CYInternal *internal = [CYInternal get:self])
1739 if ([internal hasProperty:property inContext:context])
1742 Class _class(object_getClass(self));
1745 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1746 if (CYImplements(self, _class, @selector(cy$hasProperty:)))
1747 if ([self cy$hasProperty:name])
1749 } CYPoolCatch(false)
1751 const char *string(CYPoolCString(pool, context, name));
1753 if (CYFindProperty(pool, _class, string) != NULL)
1756 if (CYHasImplicitProperties(context, _class))
1757 if (SEL sel = sel_getUid(string))
1758 if (CYImplements(self, _class, sel, true))
1764 static JSValueRef Instance_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1765 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1766 id self(internal->value_);
1768 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
1769 return CYPrivate<Interior>::Make(context, self, context, object);
1772 NSString *name(CYCastNSString(&pool, context, property));
1774 if (CYInternal *internal = [CYInternal get:self])
1775 if (JSValueRef value = [internal getProperty:property inContext:context])
1779 if (JSValueRef value = [self cy$getProperty:name inContext:context])
1783 const char *string(CYPoolCString(pool, context, name));
1784 Class _class(object_getClass(self));
1786 if (objc_property_t property = CYFindProperty(pool, _class, string)) {
1787 PropertyAttributes attributes(property);
1788 SEL sel(sel_registerName(attributes.Getter()));
1789 return CYSendMessage(pool, context, self, NULL, sel, 0, NULL, false);
1792 if (CYHasImplicitProperties(context, _class))
1793 if (SEL sel = sel_getUid(string))
1794 if (CYImplements(self, _class, sel, true))
1795 return CYSendMessage(pool, context, self, NULL, sel, 0, NULL, false);
1800 static bool Instance_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
1801 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1802 id self(internal->value_);
1806 NSString *name(CYCastNSString(&pool, context, property));
1807 NSObject *data(CYCastNSObject(&pool, context, value));
1810 if ([self cy$setProperty:name to:data])
1812 } CYPoolCatch(false)
1814 const char *string(CYPoolCString(pool, context, name));
1815 Class _class(object_getClass(self));
1817 if (objc_property_t property = CYFindProperty(pool, _class, string)) {
1818 PropertyAttributes attributes(property);
1819 if (const char *setter = attributes.Setter()) {
1820 SEL sel(sel_registerName(setter));
1821 JSValueRef arguments[1] = {value};
1822 CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false);
1827 size_t length(strlen(string));
1829 char set[length + 5];
1835 if (string[0] != '\0') {
1836 set[3] = toupper(string[0]);
1837 memcpy(set + 4, string + 1, length - 1);
1840 set[length + 3] = ':';
1841 set[length + 4] = '\0';
1843 if (SEL sel = sel_getUid(set))
1844 if (CYImplements(self, _class, sel)) {
1845 JSValueRef arguments[1] = {value};
1846 CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false);
1850 if (CYInternal *internal = [CYInternal set:self inContext:context]) {
1851 [internal setProperty:property toValue:value inContext:context];
1858 static bool Instance_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1859 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1860 id self(internal->value_);
1863 NSString *name(CYCastNSString(NULL, context, property));
1864 return [self cy$deleteProperty:name];
1865 } CYPoolCatch(false)
1866 } CYCatch(false) return /*XXX*/ false; }
1868 static void CYForEachProperty(CYPool &pool, Class _class, const Functor<void (objc_method *, const char *)> &code) {
1869 for (; _class != Nil; _class = class_getSuperclass(_class)) {
1871 objc_method **data(class_copyMethodList(_class, &size));
1872 pool.atexit(free, data);
1874 for (size_t i(0); i != size; ++i) {
1875 objc_method *method(data[i]);
1877 const char *name(sel_getName(method_getName(method)));
1878 if (strchr(name, ':') != NULL)
1886 static void Instance_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
1887 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1888 id self(internal->value_);
1891 Class _class(object_getClass(self));
1893 for (Class current(_class); current != Nil; current = class_getSuperclass(current)) {
1895 objc_property_t *data(class_copyPropertyList(current, &size));
1896 pool.atexit(free, data);
1898 for (size_t i(0); i != size; ++i)
1899 JSPropertyNameAccumulatorAddName(names, CYJSString(property_getName(data[i])));
1902 if (CYHasImplicitProperties(context, _class))
1903 CYForEachProperty(pool, _class, fun([&](objc_method *method, const char *name) {
1904 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
1908 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1909 if (CYImplements(self, _class, @selector(cy$getPropertyNames:inContext:)))
1910 [self cy$getPropertyNames:names inContext:context];
1914 static JSValueRef Instance_complete_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1915 if (!CYJSValueIsNSObject(context, _this))
1916 return CYObjectMakeArray(context, 0, NULL);
1918 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
1919 id self(internal->value_);
1921 _assert(count == 1 || count == 2);
1923 Class _class(object_getClass(self));
1925 CYUTF8String prefix(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0])));
1927 JSObjectRef array(NULL); {
1928 CYArrayBuilder<1024> values(context, array);
1930 CYForEachProperty(pool, _class, fun([&](objc_method *method, const char *name) {
1931 if (!CYStartsWith(name, prefix))
1933 const char *type(method_getTypeEncoding(method));
1934 if (type == NULL || *type == '\0' || *type == 'v')
1936 if (class_getProperty(_class, name) != NULL)
1938 values(CYCastJSValue(context, CYJSString(pool.strcat(name, "()", NULL))));
1943 static JSObjectRef Constructor_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1944 auto internal(CYPrivate<Constructor>::Get(context, object));
1945 JSObjectRef value(CYMakeInstance(context, [internal->value_ alloc], Instance::Uninitialized));
1949 static const char *CYBlockEncoding(NSBlock *self) {
1950 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
1951 if ((literal->flags & BLOCK_HAS_SIGNATURE) == 0)
1953 uint8_t *descriptor(reinterpret_cast<uint8_t *>(literal->descriptor));
1954 descriptor += sizeof(BlockDescriptor1);
1955 if ((literal->flags & BLOCK_HAS_COPY_DISPOSE) != 0)
1956 descriptor += sizeof(BlockDescriptor2);
1957 BlockDescriptor3 *descriptor3(reinterpret_cast<BlockDescriptor3 *>(descriptor));
1958 return descriptor3->signature;
1961 static bool CYBlockSignature(CYPool &pool, NSBlock *self, sig::Signature &signature) {
1962 const char *encoding(CYBlockEncoding(self));
1963 if (encoding == NULL)
1966 sig::Parse(pool, &signature, encoding, &Structor_);
1967 _assert(signature.count >= 2);
1969 _assert(dynamic_cast<sig::Object *>(signature.elements[1].type) != NULL);
1970 signature.elements[1] = signature.elements[0];
1972 ++signature.elements;
1978 static JSValueRef Block_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1979 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1980 id self(internal->value_);
1982 if (const char *encoding = CYBlockEncoding(self)) {
1988 sig::Signature signature;
1989 sig::Parse(pool, &signature, encoding, &Structor_);
1992 sig::sig_ffi_cif(pool, 0, signature, &cif);
1994 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
1995 void (*function)() = reinterpret_cast<void (*)()>(literal->invoke);
1996 return CYCallFunction(pool, context, 1, setup, count, arguments, false, false, signature, &cif, function);
2000 CYThrow("NSBlock without signature field passed arguments");
2004 } CYPoolCatch(NULL);
2009 static bool Constructor_hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef instance, JSValueRef *exception) { CYTry {
2010 auto internal(CYPrivate<Constructor>::Get(context, constructor));
2011 Class _class(internal->value_);
2013 if (CYJSValueIsNSObject(context, instance)) {
2014 Instance *linternal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) instance)));
2015 // XXX: this isn't always safe
2016 return [linternal->value_ isKindOfClass:_class];
2022 static JSValueRef Instance_box_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2024 throw CYJSError(context, "incorrect number of arguments to Instance");
2026 id value(CYCastNSObject(&pool, context, arguments[0]));
2028 value = [NSNull null];
2029 return CYCastJSValue(context, [value cy$box]);
2032 static bool Interior_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2033 Interior *internal(reinterpret_cast<Interior *>(JSObjectGetPrivate(object)));
2036 id self(internal->value_);
2037 const char *name(CYPoolCString(pool, context, property));
2039 if (object_getInstanceVariable(self, name, NULL) != NULL)
2045 static void CYBitField(CYPool &pool, unsigned &length, unsigned &shift, id self, Ivar ivar, const char *encoding, unsigned offset) {
2046 length = CYCastDouble(encoding + 1);
2050 objc_ivar **ivars(class_copyIvarList(object_getClass(self), &size));
2051 pool.atexit(free, ivars);
2053 for (size_t i(0); i != size; ++i)
2054 if (ivars[i] == ivar)
2056 else if (ivar_getOffset(ivars[i]) == offset) {
2057 const char *encoding(ivar_getTypeEncoding(ivars[i]));
2058 _assert(encoding != NULL);
2059 _assert(encoding[0] == 'b');
2060 shift += CYCastDouble(encoding + 1);
2064 static JSValueRef Interior_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2065 Interior *internal(reinterpret_cast<Interior *>(JSObjectGetPrivate(object)));
2068 id self(internal->value_);
2069 const char *name(CYPoolCString(pool, context, property));
2071 if (objc_ivar *ivar = object_getInstanceVariable(self, name, NULL)) {
2072 ptrdiff_t offset(ivar_getOffset(ivar));
2073 void *data(reinterpret_cast<uint8_t *>(self) + offset);
2075 const char *encoding(ivar_getTypeEncoding(ivar));
2076 _assert(encoding != NULL);
2077 _assert(encoding[0] != '\0');
2078 if (encoding[0] == 'b') {
2079 unsigned length, shift;
2080 CYBitField(pool, length, shift, self, ivar, encoding, offset);
2081 _assert(shift + length <= sizeof(uintptr_t) * 8);
2082 uintptr_t &field(*reinterpret_cast<uintptr_t *>(data));
2083 uintptr_t mask((1 << length) - 1);
2084 return CYCastJSValue(context, (field >> shift) & mask);
2086 #if defined(__APPLE__) && defined(__LP64__)
2087 // XXX: maybe do even more verifications here
2088 if (strcmp(name, "isa") == 0)
2089 return CYCastJSValue(context, object_getClass(self));
2092 auto type(new(pool) Type_privateData(encoding));
2093 return type->type_->FromFFI(context, type->GetFFI(), data);
2100 static bool Interior_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
2101 Interior *internal(reinterpret_cast<Interior *>(JSObjectGetPrivate(object)));
2104 id self(internal->value_);
2105 const char *name(CYPoolCString(pool, context, property));
2107 if (objc_ivar *ivar = object_getInstanceVariable(self, name, NULL)) {
2108 ptrdiff_t offset(ivar_getOffset(ivar));
2109 void *data(reinterpret_cast<uint8_t *>(self) + offset);
2111 const char *encoding(ivar_getTypeEncoding(ivar));
2112 _assert(encoding != NULL);
2113 if (encoding[0] == 'b') {
2114 unsigned length, shift;
2115 CYBitField(pool, length, shift, self, ivar, encoding, offset);
2116 _assert(shift + length <= sizeof(uintptr_t) * 8);
2117 uintptr_t &field(*reinterpret_cast<uintptr_t *>(data));
2118 uintptr_t mask((1 << length) - 1);
2119 field = field & ~(mask << shift) | (uintptr_t(CYCastDouble(context, value)) & mask) << shift;
2121 auto type(new(pool) Type_privateData(ivar_getTypeEncoding(ivar)));
2122 type->type_->PoolFFI(&pool, context, type->GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar), value);
2130 static void Interior_getPropertyNames_(CYPool &pool, Class _class, JSPropertyNameAccumulatorRef names) {
2131 if (Class super = class_getSuperclass(_class))
2132 Interior_getPropertyNames_(pool, super, names);
2135 objc_ivar **data(class_copyIvarList(_class, &size));
2136 pool.atexit(free, data);
2138 for (size_t i(0); i != size; ++i)
2139 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(data[i])));
2142 static void Interior_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2143 Interior *internal(reinterpret_cast<Interior *>(JSObjectGetPrivate(object)));
2146 id self(internal->value_);
2147 Class _class(object_getClass(self));
2149 Interior_getPropertyNames_(pool, _class, names);
2152 static JSValueRef Interior_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2153 Interior *internal(reinterpret_cast<Interior *>(JSObjectGetPrivate(object)));
2154 return internal->owner_;
2157 static bool ObjectiveC_Classes_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
2159 return objc_getClass(CYPoolCString(pool, context, property)) != Nil;
2162 static JSValueRef ObjectiveC_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2164 NSString *name(CYCastNSString(&pool, context, property));
2165 if (Class _class = NSClassFromString(name))
2166 return CYMakeInstance(context, _class, Instance::Permanent);
2170 static Class *CYCopyClassList(size_t &size) {
2171 size = objc_getClassList(NULL, 0);
2172 Class *data(reinterpret_cast<Class *>(malloc(sizeof(Class) * size)));
2175 size_t writ(objc_getClassList(data, size));
2181 Class *copy(reinterpret_cast<Class *>(realloc(data, sizeof(Class) * writ)));
2192 static void ObjectiveC_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2196 if (Class *data = CYCopyClassList(size)) {
2197 pool.atexit(free, data);
2198 for (size_t i(0); i != size; ++i)
2199 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(data[i])));
2204 static JSValueRef ObjectiveC_Image_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2205 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2208 const char *name(CYPoolCString(pool, context, property));
2211 const char **data(objc_copyClassNamesForImage(internal, &size));
2212 pool.atexit(free, data);
2215 for (size_t i(0); i != size; ++i)
2216 if (strcmp(name, data[i]) == 0) {
2217 if (Class _class = objc_getClass(name))
2218 return CYMakeInstance(context, _class, Instance::Permanent);
2226 static void ObjectiveC_Image_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2227 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2231 const char **data(objc_copyClassNamesForImage(internal, &size));
2232 pool.atexit(free, data);
2234 for (size_t i(0); i != size; ++i)
2235 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2238 static JSValueRef ObjectiveC_Images_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2240 CYUTF8String name(CYPoolUTF8String(pool, context, property));
2243 const char **data(objc_copyImageNames(&size));
2244 pool.atexit(free, data);
2246 for (size_t i(0); i != size; ++i)
2247 if (name == data[i]) {
2248 JSObjectRef value(JSObjectMake(context, NULL, NULL));
2249 CYSetProperty(context, value, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Image_Classes_, const_cast<char *>(data[i])));
2256 static void ObjectiveC_Images_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2260 const char **data(objc_copyImageNames(&size));
2261 pool.atexit(free, data);
2263 for (size_t i(0); i != size; ++i)
2264 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2268 static JSValueRef ObjectiveC_Protocols_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2270 const char *name(CYPoolCString(pool, context, property));
2271 if (Protocol *protocol = objc_getProtocol(name))
2272 return CYMakeInstance(context, protocol, Instance::Permanent);
2276 static void ObjectiveC_Protocols_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2280 Protocol **data(objc_copyProtocolList(&size));
2281 pool.atexit(free, data);
2283 for (size_t i(0); i != size; ++i)
2284 JSPropertyNameAccumulatorAddName(names, CYJSString(protocol_getName(data[i])));
2287 static JSValueRef ObjectiveC_Constants_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2289 CYUTF8String name(CYPoolUTF8String(pool, context, property));
2291 return CYJSNull(context);
2295 static void ObjectiveC_Constants_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2296 JSPropertyNameAccumulatorAddName(names, CYJSString("nil"));
2300 static kern_return_t CYReadMemory(task_t task, vm_address_t address, vm_size_t size, void **data) {
2301 *data = reinterpret_cast<void *>(address);
2302 return KERN_SUCCESS;
2306 std::set<Class> query_;
2307 JSContextRef context_;
2308 JSObjectRef results_;
2311 struct CYObjectStruct {
2315 static void choose_(task_t task, void *baton, unsigned type, vm_range_t *ranges, unsigned count) {
2316 CYChoice *choice(reinterpret_cast<CYChoice *>(baton));
2317 JSContextRef context(choice->context_);
2319 for (unsigned i(0); i != count; ++i) {
2320 vm_range_t &range(ranges[i]);
2321 void *data(reinterpret_cast<void *>(range.address));
2322 size_t size(range.size);
2324 if (size < sizeof(CYObjectStruct))
2327 uintptr_t *pointers(reinterpret_cast<uintptr_t *>(data));
2328 #if defined(__APPLE__) && defined(__LP64__)
2329 Class isa(reinterpret_cast<Class>(pointers[0] & 0x1fffffff8));
2331 Class isa(reinterpret_cast<Class>(pointers[0]));
2334 std::set<Class>::const_iterator result(choice->query_.find(isa));
2335 if (result == choice->query_.end())
2338 size_t needed(class_getInstanceSize(*result));
2339 // XXX: if (size < needed)
2341 size_t boundary(496);
2345 if (needed <= boundary && (needed + 15) / 16 * 16 != size || needed > boundary && (needed + 511) / 512 * 512 != size)
2347 CYArrayPush(context, choice->results_, CYCastJSValue(context, reinterpret_cast<id>(data)));
2351 static JSValueRef choose(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2353 throw CYJSError(context, "choose() takes a class argument");
2355 CYGarbageCollect(context);
2358 id _class(CYCastNSObject(&pool, context, arguments[0]));
2360 vm_address_t *zones(NULL);
2362 kern_return_t error(malloc_get_all_zones(0, &CYReadMemory, &zones, &size));
2363 _assert(error == KERN_SUCCESS);
2365 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array")));
2366 JSObjectRef results(_jsccall(JSObjectCallAsConstructor, context, Array, 0, NULL));
2369 choice.context_ = context;
2370 choice.results_ = results;
2373 Class *classes(CYCopyClassList(number));
2374 _assert(classes != NULL);
2375 pool.atexit(free, classes);
2377 for (size_t i(0); i != number; ++i)
2378 for (Class current(classes[i]); current != Nil; current = class_getSuperclass(current))
2379 if (current == _class) {
2380 choice.query_.insert(classes[i]);
2384 for (unsigned i(0); i != size; ++i) {
2385 const malloc_zone_t *zone(reinterpret_cast<const malloc_zone_t *>(zones[i]));
2386 if (zone == NULL || zone->introspect == NULL)
2389 zone->introspect->enumerator(mach_task_self(), &choice, MALLOC_PTR_IN_USE_RANGE_TYPE, zones[i], &CYReadMemory, &choose_);
2397 #if defined(__i386__) || defined(__x86_64__)
2398 #define OBJC_MAX_STRUCT_BY_VALUE 8
2399 static int struct_forward_array[] = {
2400 0, 0, 0, 1, 0, 1, 1, 1, 0 };
2401 #elif defined(__arm__)
2402 #define OBJC_MAX_STRUCT_BY_VALUE 1
2403 static int struct_forward_array[] = {
2405 #elif defined(__arm64__)
2408 #error missing objc-runtime-info
2412 static bool stret(ffi_type *ffi_type) {
2413 return ffi_type->type == FFI_TYPE_STRUCT && (
2414 ffi_type->size > OBJC_MAX_STRUCT_BY_VALUE ||
2415 struct_forward_array[ffi_type->size] != 0
2423 JSValueRef CYSendMessage(CYPool &pool, JSContextRef context, id self, Class _class, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize) {
2427 _class = object_getClass(self);
2431 if (objc_method *method = class_getInstanceMethod(_class, _cmd)) {
2432 imp = method_getImplementation(method);
2433 type = method_getTypeEncoding(method);
2438 if (NSMethodSignature *method = [self methodSignatureForSelector:_cmd])
2439 type = CYPoolCString(pool, context, [method _typeString]);
2445 throw CYJSError(context, "unrecognized selector %s sent to object %p", sel_getName(_cmd), self);
2452 sig::Signature signature;
2453 sig::Parse(pool, &signature, type, &Structor_);
2456 sig::sig_ffi_cif(pool, 0, signature, &cif);
2460 if (stret(cif.rtype))
2461 imp = class_getMethodImplementation_stret(_class, _cmd);
2464 imp = class_getMethodImplementation(_class, _cmd);
2467 void (*function)() = reinterpret_cast<void (*)()>(imp);
2468 return CYCallFunction(pool, context, 2, setup, count, arguments, initialize, true, signature, &cif, function);
2471 static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[]) {
2473 throw CYJSError(context, "too few arguments to objc_msgSend");
2483 if (JSValueIsObjectOfClass(context, arguments[0], CYPrivate<cy::Super>::Class_)) {
2484 cy::Super *internal(reinterpret_cast<cy::Super *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2485 self = internal->value_;
2486 _class = internal->class_;;
2487 uninitialized = false;
2488 } else if (CYJSValueIsNSObject(context, arguments[0])) {
2489 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2490 self = internal->value_;
2492 uninitialized = internal->IsUninitialized();
2493 if (uninitialized && [internal->value_ retainCount] != NSUInteger(-1))
2494 internal->value_ = nil;
2496 self = CYCastNSObject(&pool, context, arguments[0]);
2498 uninitialized = false;
2502 return CYJSNull(context);
2504 _cmd = CYCastSEL(context, arguments[1]);
2506 return CYSendMessage(pool, context, self, _class, _cmd, count - 2, arguments + 2, uninitialized);
2509 static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2510 return $objc_msgSend(context, object, _this, count, arguments);
2513 static JSValueRef Selector_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2514 JSValueRef setup[count + 2];
2517 memcpy(setup + 2, arguments, sizeof(JSValueRef) * count);
2518 return $objc_msgSend(context, NULL, NULL, count + 2, setup);
2521 static JSValueRef Message_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2523 Message_privateData *internal(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate(object)));
2525 // XXX: handle Instance::Uninitialized?
2526 id self(CYCastNSObject(&pool, context, _this));
2530 setup[1] = &internal->sel_;
2532 return CYCallFunction(pool, context, 2, setup, count, arguments, false, true, internal->signature_, &internal->cif_, internal->value_);
2535 CYPropertyName *Message_privateData::GetName(CYPool &pool) const {
2536 return new(pool) CYString(pool.strcat(":", sel_getName(sel_), NULL));
2539 static JSObjectRef Super_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2541 throw CYJSError(context, "incorrect number of arguments to objc_super constructor");
2543 id self(CYCastNSObject(&pool, context, arguments[0]));
2544 Class _class(CYCastClass(pool, context, arguments[1]));
2545 return CYPrivate<cy::Super>::Make(context, self, _class);
2548 static JSObjectRef Selector_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2550 throw CYJSError(context, "incorrect number of arguments to Selector constructor");
2552 const char *name(CYPoolCString(pool, context, arguments[0]));
2553 return CYPrivate<Selector_privateData>::Make(context, sel_registerName(name));
2556 static JSObjectRef Instance_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2558 throw CYJSError(context, "incorrect number of arguments to Instance constructor");
2559 return CYMakeInstance(context, CYCastPointer<id>(context, arguments[0]));
2562 static JSValueRef Selector_getProperty_$cyt(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2563 return CYMakeType(context, sig::Selector());
2566 static JSValueRef Instance_getProperty_$cyt(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2567 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2568 id self(internal->value_);
2569 return CYMakeType(context, sig::Object(class_getName(object_getClass(self))));
2572 static JSValueRef FunctionInstance_getProperty_$cyt(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2573 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2576 if (!CYBlockSignature(pool, internal->value_, type.signature))
2577 return CYJSNull(context);
2578 return CYMakeType(context, type);
2581 static JSValueRef Constructor_getProperty_$cyt(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2582 return CYMakeType(context, sig::Meta());
2585 static JSValueRef Instance_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2586 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2587 return CYMakeInstance(context, object_getClass(internal->value_), Instance::Permanent);
2590 static JSValueRef Constructor_getProperty_prototype(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2591 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2592 id self(internal->value_);
2593 return CYPrivate<Messages>::Cache(context, self);
2596 static JSValueRef Instance_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2597 std::set<void *> *objects(CYCastObjects(context, _this, count, arguments));
2599 if (!CYJSValueIsNSObject(context, _this))
2602 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2603 return CYCastJSValue(context, CYJSString(context, CYCastNSCYON(internal->value_, false, objects)));
2606 static JSValueRef Instance_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2607 if (!CYJSValueIsNSObject(context, _this))
2610 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2611 id value(internal->value_);
2618 key = CYCastNSString(NULL, context, CYJSString(context, arguments[0]));
2620 if (!CYImplements(value, object_getClass(value), @selector(cy$toJSON:inContext:)))
2621 return CYJSUndefined(context);
2622 else if (JSValueRef json = [value cy$toJSON:key inContext:context])
2625 return CYCastJSValue(context, CYJSString(context, [value description]));
2627 } CYCatch(NULL) return /*XXX*/ NULL; }
2629 static JSValueRef Instance_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2630 if (!CYJSValueIsNSObject(context, _this))
2633 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2634 id value(internal->value_);
2635 _assert(value != nil);
2637 if (![value respondsToSelector:@selector(cy$valueOfInContext:)])
2640 if (JSValueRef result = [value cy$valueOfInContext:context])
2644 } CYCatch(NULL) return /*XXX*/ NULL; }
2646 static JSValueRef Instance_callAsFunction_toPointer(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2647 if (!CYJSValueIsNSObject(context, _this))
2649 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2650 // XXX: return CYMakePointer(context, internal->value_, sig::Object(class_getName(object_getClass(internal->value_))), NULL, object);
2651 // XXX: return CYMakePointer(context, internal->value_, sig::Meta(), NULL, object);
2652 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
2653 } CYCatch(NULL) return /*XXX*/ NULL; }
2655 static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2656 if (!CYJSValueIsNSObject(context, _this))
2659 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2660 id value(internal->value_);
2663 // XXX: this seems like a stupid implementation; what if it crashes? why not use the CYONifier backend?
2664 return CYCastJSValue(context, CYJSString(context, [value description]));
2666 } CYCatch(NULL) return /*XXX*/ NULL; }
2668 static JSValueRef Class_callAsFunction_pointerTo(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2669 if (!CYJSValueIsNSObject(context, _this))
2672 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2673 id value(internal->value_);
2675 if (!CYIsClass(value))
2676 CYThrow("non-Class object cannot be used as Type");
2678 sig::Object type(class_getName(value));
2679 return CYMakeType(context, type);
2680 } CYCatch(NULL) return /*XXX*/ NULL; }
2682 static JSValueRef Selector_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2683 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2684 return CYCastJSValue(context, sel_getName(internal->value_));
2687 static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2688 return Selector_callAsFunction_toString(context, object, _this, count, arguments, exception);
2691 static JSValueRef Selector_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2692 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2693 const char *name(sel_getName(internal->value_));
2696 NSString *string([NSString stringWithFormat:@"@selector(%s)", name]);
2697 return CYCastJSValue(context, CYJSString(context, string));
2699 } CYCatch(NULL) return /*XXX*/ NULL; }
2701 static JSValueRef Selector_callAsFunction_type(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2703 throw CYJSError(context, "incorrect number of arguments to Selector.type");
2706 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2707 SEL sel(internal->value_);
2709 Class _class(_require(CYCastClass(pool, context, arguments[0])));
2710 objc_method *method(_require(class_getInstanceMethod(_class, sel)));
2711 const char *encoding(method_getTypeEncoding(method));
2713 sig::Function type(false);
2714 sig::Parse(pool, &type.signature, encoding, &Structor_);
2715 return CYMakeType(context, type);
2718 static JSStaticValue Selector_staticValues[2] = {
2719 {"$cyt", &Selector_getProperty_$cyt, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2720 {NULL, NULL, NULL, 0}
2723 static JSStaticValue Instance_staticValues[3] = {
2724 {"$cyt", &Instance_getProperty_$cyt, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2725 {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2726 {NULL, NULL, NULL, 0}
2729 static JSStaticValue Block_staticValues[3] = {
2730 {"$cyt", &FunctionInstance_getProperty_$cyt, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2731 {NULL, NULL, NULL, 0}
2734 static JSStaticFunction Instance_staticFunctions[7] = {
2735 {"cy$complete", &Instance_complete_callAsFunction, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2739 static JSStaticFunction Prototype_staticFunctions[6] = {
2740 {"toCYON", &Instance_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2741 {"toJSON", &Instance_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2742 {"valueOf", &Instance_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2743 {"toPointer", &Instance_callAsFunction_toPointer, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2744 {"toString", &Instance_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2748 static JSStaticFunction Messages_staticFunctions[2] = {
2749 {"cy$complete", &Messages_complete_callAsFunction, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2753 static JSStaticValue Constructor_staticValues[3] = {
2754 {"$cyt", &Constructor_getProperty_$cyt, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2755 {"prototype", &Constructor_getProperty_prototype, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2756 {NULL, NULL, NULL, 0}
2759 static JSStaticFunction Constructor_staticFunctions[2] = {
2760 {"pointerTo", &Class_callAsFunction_pointerTo, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2764 static JSStaticFunction Interior_staticFunctions[2] = {
2765 {"$cya", &Interior_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2769 static JSStaticFunction Selector_staticFunctions[5] = {
2770 {"toCYON", &Selector_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2771 {"toJSON", &Selector_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2772 {"toString", &Selector_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2773 {"type", &Selector_callAsFunction_type, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2778 JSValueRef NSCFType$cy$toJSON$inContext$(id self, SEL sel, JSValueRef key, JSContextRef context) { CYObjectiveTry_ {
2779 return CYCastJSValue(context, [(NSString *) CFCopyDescription((CFTypeRef) self) autorelease]);
2780 } CYObjectiveCatch }
2783 void CYObjectiveC_Initialize() { /*XXX*/ JSContextRef context(NULL); CYPoolTry {
2784 NSArray_ = objc_getClass("NSArray");
2785 NSBlock_ = objc_getClass("NSBlock");
2786 NSDictionary_ = objc_getClass("NSDictionary");
2787 NSNumber_ = objc_getClass("NSNumber");
2788 NSObject_ = objc_getClass("NSObject");
2789 NSString_ = objc_getClass("NSString");
2790 Object_ = objc_getClass("Object");
2793 __NSMallocBlock__ = objc_getClass("__NSMallocBlock__");
2795 // XXX: apparently, iOS now has both of these
2796 NSCFBoolean_ = objc_getClass("__NSCFBoolean");
2797 if (NSCFBoolean_ == nil)
2798 NSCFBoolean_ = objc_getClass("NSCFBoolean");
2800 NSCFType_ = objc_getClass("NSCFType");
2802 NSZombie_ = objc_getClass("_NSZombie_");
2804 NSBoolNumber_ = objc_getClass("NSBoolNumber");
2805 NSZombie_ = objc_getClass("NSZombie");
2808 JSClassDefinition definition;
2810 definition = kJSClassDefinitionEmpty;
2811 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
2812 definition.className = "Messages";
2813 definition.staticFunctions = Messages_staticFunctions;
2814 definition.hasProperty = &Messages_hasProperty;
2815 definition.getProperty = &Messages_getProperty;
2816 definition.setProperty = &Messages_setProperty;
2817 CYPrivate<Messages>::Class_ = JSClassCreate(&definition);
2819 definition = kJSClassDefinitionEmpty;
2820 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
2821 definition.className = "Instance";
2822 definition.staticValues = Instance_staticValues;
2823 definition.staticFunctions = Instance_staticFunctions;
2824 definition.hasProperty = &Instance_hasProperty;
2825 definition.getProperty = &Instance_getProperty;
2826 definition.setProperty = &Instance_setProperty;
2827 definition.deleteProperty = &Instance_deleteProperty;
2828 definition.getPropertyNames = &Instance_getPropertyNames;
2829 definition.finalize = &CYFinalize;
2830 CYPrivate<Instance>::Class_ = JSClassCreate(&definition);
2832 definition = kJSClassDefinitionEmpty;
2833 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
2834 definition.className = "Block";
2835 definition.parentClass = CYPrivate<Instance>::Class_;
2836 definition.staticValues = Block_staticValues;
2837 definition.callAsFunction = &Block_callAsFunction;
2838 CYPrivate<Block>::Class_ = JSClassCreate(&definition);
2840 definition = kJSClassDefinitionEmpty;
2841 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
2842 definition.className = "Constructor";
2843 definition.parentClass = CYPrivate<Instance>::Class_;
2844 definition.staticValues = Constructor_staticValues;
2845 definition.staticFunctions = Constructor_staticFunctions;
2846 definition.hasInstance = &Constructor_hasInstance;
2847 definition.callAsConstructor = &Constructor_callAsConstructor;
2848 CYPrivate<Constructor>::Class_ = JSClassCreate(&definition);
2850 definition = kJSClassDefinitionEmpty;
2851 definition.className = "Interior";
2852 definition.staticFunctions = Interior_staticFunctions;
2853 definition.hasProperty = &Interior_hasProperty;
2854 definition.getProperty = &Interior_getProperty;
2855 definition.setProperty = &Interior_setProperty;
2856 definition.getPropertyNames = &Interior_getPropertyNames;
2857 definition.finalize = &CYFinalize;
2858 CYPrivate<Interior>::Class_ = JSClassCreate(&definition);
2860 definition = kJSClassDefinitionEmpty;
2861 definition.className = "Message";
2862 definition.parentClass = cy::Functor::Class_;
2863 definition.callAsFunction = &Message_callAsFunction;
2864 definition.finalize = &CYFinalize;
2865 Message_privateData::Class_ = JSClassCreate(&definition);
2867 definition = kJSClassDefinitionEmpty;
2868 definition.attributes = kJSClassAttributeNoAutomaticPrototype;
2869 definition.className = "Prototype";
2870 definition.staticFunctions = Prototype_staticFunctions;
2871 definition.finalize = &CYFinalize;
2872 CYPrivate<Prototype>::Class_ = JSClassCreate(&definition);
2874 definition = kJSClassDefinitionEmpty;
2875 definition.className = "Selector";
2876 definition.staticValues = Selector_staticValues;
2877 definition.staticFunctions = Selector_staticFunctions;
2878 definition.callAsFunction = &Selector_callAsFunction;
2879 definition.finalize = &CYFinalize;
2880 CYPrivate<Selector_privateData>::Class_ = JSClassCreate(&definition);
2882 definition = kJSClassDefinitionEmpty;
2883 definition.className = "Super";
2884 definition.finalize = &CYFinalize;
2885 CYPrivate<cy::Super>::Class_ = JSClassCreate(&definition);
2887 definition = kJSClassDefinitionEmpty;
2888 definition.className = "ObjectiveC::Classes";
2889 definition.hasProperty = &ObjectiveC_Classes_hasProperty;
2890 definition.getProperty = &ObjectiveC_Classes_getProperty;
2891 definition.getPropertyNames = &ObjectiveC_Classes_getPropertyNames;
2892 ObjectiveC_Classes_ = JSClassCreate(&definition);
2894 definition = kJSClassDefinitionEmpty;
2895 definition.className = "ObjectiveC::Constants";
2896 definition.getProperty = &ObjectiveC_Constants_getProperty;
2897 definition.getPropertyNames = &ObjectiveC_Constants_getPropertyNames;
2898 ObjectiveC_Constants_ = JSClassCreate(&definition);
2901 definition = kJSClassDefinitionEmpty;
2902 definition.className = "ObjectiveC::Images";
2903 definition.getProperty = &ObjectiveC_Images_getProperty;
2904 definition.getPropertyNames = &ObjectiveC_Images_getPropertyNames;
2905 ObjectiveC_Images_ = JSClassCreate(&definition);
2907 definition = kJSClassDefinitionEmpty;
2908 definition.className = "ObjectiveC::Image::Classes";
2909 definition.getProperty = &ObjectiveC_Image_Classes_getProperty;
2910 definition.getPropertyNames = &ObjectiveC_Image_Classes_getPropertyNames;
2911 ObjectiveC_Image_Classes_ = JSClassCreate(&definition);
2914 definition = kJSClassDefinitionEmpty;
2915 definition.className = "ObjectiveC::Protocols";
2916 definition.getProperty = &ObjectiveC_Protocols_getProperty;
2917 definition.getPropertyNames = &ObjectiveC_Protocols_getPropertyNames;
2918 ObjectiveC_Protocols_ = JSClassCreate(&definition);
2921 class_addMethod(NSCFType_, @selector(cy$toJSON:inContext:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON$inContext$),
2922 // XXX: this is horrible; there has to be a better way to do this
2924 "^{OpaqueJSValue=}32@0:8@16^{OpaqueJSContext=}24"
2926 "^{OpaqueJSValue=}16@0:4@8^{OpaqueJSContext=}12"
2932 void CYObjectiveC_SetupContext(JSContextRef context) { CYPoolTry {
2933 JSObjectRef global(CYGetGlobalObject(context));
2934 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
2935 JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript"))));
2936 JSObjectRef all(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("all"))));
2937 JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls"))));
2939 JSObjectRef ObjectiveC(JSObjectMake(context, NULL, NULL));
2940 CYSetProperty(context, cycript, CYJSString("ObjectiveC"), ObjectiveC);
2942 JSObjectRef protocols(JSObjectMake(context, ObjectiveC_Protocols_, NULL));
2943 CYSetProperty(context, ObjectiveC, CYJSString("protocols"), protocols);
2944 CYArrayPush(context, alls, protocols);
2946 JSObjectRef classes(JSObjectMake(context, ObjectiveC_Classes_, NULL));
2947 CYSetProperty(context, ObjectiveC, CYJSString("classes"), classes);
2948 CYArrayPush(context, alls, classes);
2950 JSObjectRef constants(JSObjectMake(context, ObjectiveC_Constants_, NULL));
2951 CYSetProperty(context, ObjectiveC, CYJSString("constants"), constants);
2952 CYArrayPush(context, alls, constants);
2955 CYSetProperty(context, ObjectiveC, CYJSString("images"), JSObjectMake(context, ObjectiveC_Images_, NULL));
2958 JSObjectRef Message(JSObjectMakeConstructor(context, Message_privateData::Class_, NULL));
2959 JSObjectRef Selector(JSObjectMakeConstructor(context, CYPrivate<Selector_privateData>::Class_, &Selector_new));
2960 JSObjectRef Super(JSObjectMakeConstructor(context, CYPrivate<cy::Super>::Class_, &Super_new));
2962 JSObjectRef Instance(JSObjectMakeConstructor(context, CYPrivate<::Instance>::Class_, &Instance_new));
2963 JSObjectRef Instance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2964 CYSetProperty(context, cy, CYJSString("Instance_prototype"), Instance_prototype);
2965 CYSetProperty(context, Instance, prototype_s, Instance_prototype);
2967 JSObjectRef ArrayInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2968 CYSetProperty(context, cy, CYJSString("ArrayInstance_prototype"), ArrayInstance_prototype);
2969 JSObjectRef Array_prototype(CYGetCachedObject(context, CYJSString("Array_prototype")));
2970 CYSetPrototype(context, ArrayInstance_prototype, Array_prototype);
2972 JSObjectRef BooleanInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2973 CYSetProperty(context, cy, CYJSString("BooleanInstance_prototype"), BooleanInstance_prototype);
2974 JSObjectRef Boolean_prototype(CYGetCachedObject(context, CYJSString("Boolean_prototype")));
2975 CYSetPrototype(context, BooleanInstance_prototype, Boolean_prototype);
2977 JSObjectRef FunctionInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2978 CYSetProperty(context, cy, CYJSString("FunctionInstance_prototype"), FunctionInstance_prototype);
2979 JSObjectRef Function_prototype(CYGetCachedObject(context, CYJSString("Function_prototype")));
2980 CYSetPrototype(context, FunctionInstance_prototype, Function_prototype);
2982 JSObjectRef NumberInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2983 CYSetProperty(context, cy, CYJSString("NumberInstance_prototype"), NumberInstance_prototype);
2984 JSObjectRef Number_prototype(CYGetCachedObject(context, CYJSString("Number_prototype")));
2985 CYSetPrototype(context, NumberInstance_prototype, Number_prototype);
2987 JSObjectRef ObjectInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2988 CYSetProperty(context, cy, CYJSString("ObjectInstance_prototype"), ObjectInstance_prototype);
2989 JSObjectRef Object_prototype(CYGetCachedObject(context, CYJSString("Object_prototype")));
2990 CYSetPrototype(context, ObjectInstance_prototype, Object_prototype);
2992 JSObjectRef StringInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2993 CYSetProperty(context, cy, CYJSString("StringInstance_prototype"), StringInstance_prototype);
2994 JSObjectRef String_prototype(CYGetCachedObject(context, CYJSString("String_prototype")));
2995 CYSetPrototype(context, StringInstance_prototype, String_prototype);
2997 JSObjectRef TypeInstance_prototype(JSObjectMake(context, CYPrivate<Prototype>::Class_, NULL));
2998 CYSetProperty(context, cy, CYJSString("TypeInstance_prototype"), TypeInstance_prototype);
2999 // XXX: maybe TypeInstance should have Type as its prototype? FWIW, that's why I named it like this ;P
3001 CYSetProperty(context, cycript, CYJSString("Instance"), Instance);
3002 CYSetProperty(context, cycript, CYJSString("Message"), Message);
3003 CYSetProperty(context, cycript, CYJSString("Selector"), Selector);
3004 CYSetProperty(context, cycript, CYJSString("objc_super"), Super);
3006 JSObjectRef box(JSObjectMakeFunctionWithCallback(context, CYJSString("box"), &Instance_box_callAsFunction));
3007 CYSetProperty(context, Instance, CYJSString("box"), box, kJSPropertyAttributeDontEnum);
3010 CYSetProperty(context, all, CYJSString("choose"), &choose, kJSPropertyAttributeDontEnum);
3013 CYSetProperty(context, all, CYJSString("objc_msgSend"), &$objc_msgSend, kJSPropertyAttributeDontEnum);
3015 CYSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Message, prototype_s)), Function_prototype);
3016 CYSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Selector, prototype_s)), Function_prototype);
3018 JSObjectRef cache(CYGetCachedObject(context, CYJSString("cache")));
3019 CYSetProperty(context, cache, CYJSString("YES"), JSValueMakeBoolean(context, true), kJSPropertyAttributeDontEnum);
3020 CYSetProperty(context, cache, CYJSString("NO"), JSValueMakeBoolean(context, false), kJSPropertyAttributeDontEnum);
3021 CYSetProperty(context, cache, CYJSString("id"), CYMakeType(context, sig::Object()), kJSPropertyAttributeDontEnum);
3022 CYSetProperty(context, cache, CYJSString("Class"), CYMakeType(context, sig::Meta()), kJSPropertyAttributeDontEnum);
3023 CYSetProperty(context, cache, CYJSString("SEL"), CYMakeType(context, sig::Selector()), kJSPropertyAttributeDontEnum);
3025 CYSetProperty(context, cy, CYJSString("cydget"), CYCastJSValue(context, false));
3028 static void *CYObjectiveC_CastSymbol(const char *name) {
3030 #ifdef __GNU_LIBOBJC__
3031 else if (strcmp(name, "object_getClass") == 0)
3032 return reinterpret_cast<void *>(&object_getClass);
3037 static CYHook CYObjectiveCHook = {
3038 &CYObjectiveC_ExecuteStart,
3039 &CYObjectiveC_ExecuteEnd,
3040 &CYObjectiveC_CallFunction,
3041 &CYObjectiveC_Initialize,
3042 &CYObjectiveC_SetupContext,
3043 &CYObjectiveC_CastSymbol,
3046 CYRegisterHook CYObjectiveC(&CYObjectiveCHook);
3048 _extern void CydgetSetupContext(JSGlobalContextRef context) { CYObjectiveTry_ {
3049 CYSetupContext(context);
3050 JSObjectRef global(CYGetGlobalObject(context));
3051 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
3052 CYSetProperty(context, cy, CYJSString("cydget"), CYCastJSValue(context, true));
3053 } CYObjectiveCatch }
3055 _extern void CydgetMemoryParse(const uint16_t **data, size_t *size) { try {
3058 CYUTF8String utf8(CYPoolUTF8String(pool, CYUTF16String(*data, *size)));
3059 utf8 = CYPoolCode(pool, utf8);
3061 CYUTF16String utf16(CYPoolUTF16String(pool, CYUTF8String(utf8.data, utf8.size)));
3062 size_t bytes(utf16.size * sizeof(uint16_t));
3063 uint16_t *copy(reinterpret_cast<uint16_t *>(malloc(bytes)));
3064 memcpy(copy, utf16.data, bytes);
3068 } catch (const CYException &exception) {
3070 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"%s", exception.PoolCString(pool)] userInfo:nil];