]> git.saurik.com Git - cycript.git/blame_incremental - ObjectiveC/Library.mm
Pooling an ostringstream does not pool its .str().
[cycript.git] / ObjectiveC / Library.mm
... / ...
CommitLineData
1/* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
3*/
4
5/* GNU General Public License, Version 3 {{{ */
6/*
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
11 *
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
19**/
20/* }}} */
21
22#include <Foundation/Foundation.h>
23
24#include "ObjectiveC/Internal.hpp"
25
26#include <objc/objc-api.h>
27
28#include "cycript.hpp"
29
30#include "ObjectiveC/Internal.hpp"
31
32#ifdef __APPLE__
33#include <CoreFoundation/CoreFoundation.h>
34#include <JavaScriptCore/JSStringRefCF.h>
35#include <objc/runtime.h>
36#endif
37
38#ifdef __APPLE__
39#include <malloc/malloc.h>
40#include <mach/mach.h>
41#endif
42
43#include "Error.hpp"
44#include "JavaScript.hpp"
45#include "String.hpp"
46#include "Execute.hpp"
47
48#include <cmath>
49#include <map>
50#include <set>
51
52#include <dlfcn.h>
53
54#define CYObjectiveTry_ { \
55 try
56#define CYObjectiveTry { \
57 JSContextRef context(context_); \
58 try
59#define CYObjectiveCatch \
60 catch (const CYException &error) { \
61 @throw CYCastNSObject(NULL, context, error.CastJSValue(context)); \
62 } \
63}
64
65#define CYPoolTry { \
66 id _saved(nil); \
67 NSAutoreleasePool *_pool([[NSAutoreleasePool alloc] init]); \
68 @try
69#define CYPoolCatch(value) \
70 @catch (NSException *error) { \
71 _saved = [error retain]; \
72 throw CYJSError(context, CYCastJSValue(context, error)); \
73 return value; \
74 } @finally { \
75 [_pool release]; \
76 if (_saved != nil) \
77 [_saved autorelease]; \
78 } \
79}
80
81#define CYSadTry { \
82 @try
83#define CYSadCatch(value) \
84 @catch (NSException *error ) { \
85 throw CYJSError(context, CYCastJSValue(context, error)); \
86 } return value; \
87}
88
89#ifndef __APPLE__
90#define class_getSuperclass GSObjCSuper
91#define class_getInstanceVariable GSCGetInstanceVariableDefinition
92#define class_getName GSNameFromClass
93
94#define class_removeMethods(cls, list) GSRemoveMethodList(cls, list, YES)
95
96#define ivar_getName(ivar) ((ivar)->ivar_name)
97#define ivar_getOffset(ivar) ((ivar)->ivar_offset)
98#define ivar_getTypeEncoding(ivar) ((ivar)->ivar_type)
99
100#define method_getName(method) ((method)->method_name)
101#define method_getImplementation(method) ((method)->method_imp)
102#define method_getTypeEncoding(method) ((method)->method_types)
103#define method_setImplementation(method, imp) ((void) ((method)->method_imp = (imp)))
104
105#undef objc_getClass
106#define objc_getClass GSClassFromName
107
108#define objc_getProtocol GSProtocolFromName
109
110#define object_getClass GSObjCClass
111
112#define object_getInstanceVariable(object, name, value) ({ \
113 objc_ivar *ivar(class_getInstanceVariable(object_getClass(object), name)); \
114 _assert(value != NULL); \
115 if (ivar != NULL) \
116 GSObjCGetVariable(object, ivar_getOffset(ivar), sizeof(void *), value); \
117 ivar; \
118})
119
120#define object_setIvar(object, ivar, value) ({ \
121 void *data = (value); \
122 GSObjCSetVariable(object, ivar_getOffset(ivar), sizeof(void *), &data); \
123})
124
125#define protocol_getName(protocol) [(protocol) name]
126#endif
127
128static void (*$objc_setAssociatedObject)(id object, void *key, id value, objc_AssociationPolicy policy);
129static id (*$objc_getAssociatedObject)(id object, void *key);
130static void (*$objc_removeAssociatedObjects)(id object);
131
132struct BlockLiteral {
133 Class isa;
134 int flags;
135 int reserved;
136 void (*invoke)(void *, ...);
137 void *descriptor;
138};
139
140struct BlockDescriptor1 {
141 unsigned long int reserved;
142 unsigned long int size;
143};
144
145struct BlockDescriptor2 {
146 void (*copy_helper)(BlockLiteral *dst, BlockLiteral *src);
147 void (*dispose_helper)(BlockLiteral *src);
148};
149
150struct BlockDescriptor3 {
151 const char *signature;
152 const char *layout;
153};
154
155enum {
156 BLOCK_DEALLOCATING = 0x0001,
157 BLOCK_REFCOUNT_MASK = 0xfffe,
158 BLOCK_NEEDS_FREE = 1 << 24,
159 BLOCK_HAS_COPY_DISPOSE = 1 << 25,
160 BLOCK_HAS_CTOR = 1 << 26,
161 BLOCK_IS_GC = 1 << 27,
162 BLOCK_IS_GLOBAL = 1 << 28,
163 BLOCK_HAS_STRET = 1 << 29,
164 BLOCK_HAS_SIGNATURE = 1 << 30,
165};
166
167JSValueRef CYSendMessage(CYPool &pool, JSContextRef context, id self, Class super, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize);
168
169/* Objective-C Pool Release {{{ */
170void CYPoolRelease_(void *data) {
171 id object(reinterpret_cast<id>(data));
172 [object release];
173}
174
175id CYPoolRelease_(CYPool *pool, id object) {
176 if (object == nil)
177 return nil;
178 else if (pool == NULL)
179 return [object autorelease];
180 else {
181 pool->atexit(CYPoolRelease_);
182 return object;
183 }
184}
185
186template <typename Type_>
187Type_ CYPoolRelease(CYPool *pool, Type_ object) {
188 return (Type_) CYPoolRelease_(pool, (id) object);
189}
190/* }}} */
191/* Objective-C Strings {{{ */
192const char *CYPoolCString(CYPool &pool, JSContextRef context, NSString *value) {
193 size_t size([value maximumLengthOfBytesUsingEncoding:NSUTF8StringEncoding] + 1);
194 char *string(new(pool) char[size]);
195 if (![value getCString:string maxLength:size encoding:NSUTF8StringEncoding])
196 throw CYJSError(context, "[NSString getCString:maxLength:encoding:] == NO");
197 return string;
198}
199
200JSStringRef CYCopyJSString(JSContextRef context, NSString *value) {
201#ifdef __APPLE__
202 return JSStringCreateWithCFString(reinterpret_cast<CFStringRef>(value));
203#else
204 CYPool pool;
205 return CYCopyJSString(CYPoolCString(pool, context, value));
206#endif
207}
208
209JSStringRef CYCopyJSString(JSContextRef context, NSObject *value) {
210 if (value == nil)
211 return NULL;
212 // XXX: this definition scares me; is anyone using this?!
213 NSString *string([value description]);
214 return CYCopyJSString(context, string);
215}
216
217NSString *CYCopyNSString(const CYUTF8String &value) {
218#ifdef __APPLE__
219 return (NSString *) CFStringCreateWithBytes(kCFAllocatorDefault, reinterpret_cast<const UInt8 *>(value.data), value.size, kCFStringEncodingUTF8, true);
220#else
221 return [[NSString alloc] initWithBytes:value.data length:value.size encoding:NSUTF8StringEncoding];
222#endif
223}
224
225NSString *CYCopyNSString(JSContextRef context, JSStringRef value) {
226#ifdef __APPLE__
227 return (NSString *) JSStringCopyCFString(kCFAllocatorDefault, value);
228#else
229 CYPool pool;
230 return CYCopyNSString(CYPoolUTF8String(pool, context, value));
231#endif
232}
233
234NSString *CYCopyNSString(JSContextRef context, JSValueRef value) {
235 return CYCopyNSString(context, CYJSString(context, value));
236}
237
238NSString *CYCastNSString(CYPool *pool, const CYUTF8String &value) {
239 return CYPoolRelease(pool, CYCopyNSString(value));
240}
241
242NSString *CYCastNSString(CYPool *pool, SEL sel) {
243 const char *name(sel_getName(sel));
244 return CYPoolRelease(pool, CYCopyNSString(CYUTF8String(name, strlen(name))));
245}
246
247NSString *CYCastNSString(CYPool *pool, JSContextRef context, JSStringRef value) {
248 return CYPoolRelease(pool, CYCopyNSString(context, value));
249}
250
251CYUTF8String CYCastUTF8String(NSString *value) {
252 NSData *data([value dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:NO]);
253 return CYUTF8String(reinterpret_cast<const char *>([data bytes]), [data length]);
254}
255/* }}} */
256
257JSValueRef CYCastJSValue(JSContextRef context, NSObject *value);
258
259void CYThrow(JSContextRef context, NSException *error, JSValueRef *exception) {
260 if (exception == NULL)
261 throw error;
262 *exception = CYCastJSValue(context, error);
263}
264
265size_t CYGetIndex(NSString *value) {
266 return CYGetIndex(CYCastUTF8String(value));
267}
268
269bool CYGetOffset(CYPool &pool, JSContextRef context, NSString *value, ssize_t &index) {
270 return CYGetOffset(CYPoolCString(pool, context, value), index);
271}
272
273static JSClassRef Instance_;
274
275static JSClassRef ArrayInstance_;
276static JSClassRef FunctionInstance_;
277static JSClassRef ObjectInstance_;
278static JSClassRef StringInstance_;
279
280static JSClassRef Class_;
281static JSClassRef Internal_;
282static JSClassRef Message_;
283static JSClassRef Messages_;
284static JSClassRef Selector_;
285static JSClassRef Super_;
286
287static JSClassRef ObjectiveC_Classes_;
288static JSClassRef ObjectiveC_Constants_;
289static JSClassRef ObjectiveC_Protocols_;
290
291#ifdef __APPLE__
292static JSClassRef ObjectiveC_Image_Classes_;
293static JSClassRef ObjectiveC_Images_;
294#endif
295
296#ifdef __APPLE__
297static Class NSCFBoolean_;
298static Class NSCFType_;
299static Class NSGenericDeallocHandler_;
300static Class NSZombie_;
301
302static std::set<Class> banned_;
303#else
304static Class NSBoolNumber_;
305#endif
306
307static Class NSArray_;
308static Class NSBlock_;
309static Class NSDictionary_;
310static Class NSString_;
311static Class Object_;
312
313static Type_privateData *Object_type;
314static Type_privateData *Selector_type;
315
316Type_privateData *Instance::GetType() const {
317 return Object_type;
318}
319
320Type_privateData *Selector_privateData::GetType() const {
321 return Selector_type;
322}
323
324static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception);
325
326JSValueRef CYGetClassPrototype(JSContextRef context, Class self, bool meta) {
327 if (self == nil)
328 return CYGetCachedObject(context, CYJSString("Instance_prototype"));
329 else if (meta && !class_isMetaClass(self))
330 return CYGetCachedObject(context, CYJSString("Class_prototype"));
331
332 JSObjectRef global(CYGetGlobalObject(context));
333 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
334
335 char label[32];
336 sprintf(label, "i%p", self);
337 CYJSString name(label);
338
339 JSValueRef value(CYGetProperty(context, cy, name));
340 if (!JSValueIsUndefined(context, value))
341 return value;
342
343 JSClassRef _class(NULL);
344 JSValueRef prototype;
345
346 if (self == NSArray_)
347 prototype = CYGetCachedObject(context, CYJSString("ArrayInstance_prototype"));
348 else if (self == NSBlock_)
349 prototype = CYGetCachedObject(context, CYJSString("FunctionInstance_prototype"));
350 else if (self == NSDictionary_)
351 prototype = CYGetCachedObject(context, CYJSString("ObjectInstance_prototype"));
352 else if (self == NSString_)
353 prototype = CYGetCachedObject(context, CYJSString("StringInstance_prototype"));
354 else
355 prototype = CYGetClassPrototype(context, class_getSuperclass(self), meta);
356
357 JSObjectRef object(JSObjectMake(context, _class, NULL));
358 JSObjectSetPrototype(context, object, prototype);
359 CYSetProperty(context, cy, name, object);
360
361 return object;
362}
363
364_finline JSValueRef CYGetClassPrototype(JSContextRef context, Class self) {
365 return CYGetClassPrototype(context, self, class_isMetaClass(self));
366}
367
368JSObjectRef Messages::Make(JSContextRef context, Class _class) {
369 JSObjectRef value(JSObjectMake(context, Messages_, new Messages(_class)));
370 if (Class super = class_getSuperclass(_class))
371 JSObjectSetPrototype(context, value, Messages::Make(context, super));
372 return value;
373}
374
375JSObjectRef Internal::Make(JSContextRef context, id object, JSObjectRef owner) {
376 return JSObjectMake(context, Internal_, new Internal(object, context, owner));
377}
378
379namespace cy {
380JSObjectRef Super::Make(JSContextRef context, id object, Class _class) {
381 JSObjectRef value(JSObjectMake(context, Super_, new Super(object, _class)));
382 return value;
383} }
384
385JSObjectRef Instance::Make(JSContextRef context, id object, Flags flags) {
386 JSObjectRef value(JSObjectMake(context, Instance_, new Instance(object, flags)));
387 JSObjectSetPrototype(context, value, CYGetClassPrototype(context, object_getClass(object)));
388 return value;
389}
390
391Instance::~Instance() {
392 if ((flags_ & Transient) == 0)
393 // XXX: does this handle background threads correctly?
394 // XXX: this simply does not work on the console because I'm stupid
395 [GetValue() performSelector:@selector(release) withObject:nil afterDelay:0];
396}
397
398struct Message_privateData :
399 cy::Functor
400{
401 SEL sel_;
402
403 Message_privateData(SEL sel, const char *type, IMP value = NULL) :
404 cy::Functor(type, reinterpret_cast<void (*)()>(value)),
405 sel_(sel)
406 {
407 }
408};
409
410JSObjectRef CYMakeInstance(JSContextRef context, id object, bool transient) {
411 Instance::Flags flags;
412
413 if (transient)
414 flags = Instance::Transient;
415 else {
416 flags = Instance::None;
417 object = [object retain];
418 }
419
420 return Instance::Make(context, object, flags);
421}
422
423@interface NSMethodSignature (Cycript)
424- (NSString *) _typeString;
425@end
426
427@interface NSObject (Cycript)
428
429- (JSValueRef) cy$valueOfInContext:(JSContextRef)context;
430- (JSType) cy$JSType;
431
432- (JSValueRef) cy$toJSON:(NSString *)key inContext:(JSContextRef)context;
433- (NSString *) cy$toCYON:(bool)objective;
434
435- (bool) cy$hasProperty:(NSString *)name;
436- (NSObject *) cy$getProperty:(NSString *)name;
437- (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context;
438- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value;
439- (bool) cy$deleteProperty:(NSString *)name;
440- (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context;
441
442+ (bool) cy$hasImplicitProperties;
443
444@end
445
446@protocol Cycript
447- (id) cy$box;
448- (JSValueRef) cy$valueOfInContext:(JSContextRef)context;
449@end
450
451NSString *CYCastNSCYON(id value, bool objective) {
452 NSString *string;
453
454 if (value == nil)
455 string = @"nil";
456 else {
457 Class _class(object_getClass(value));
458 SEL sel(@selector(cy$toCYON:));
459
460 if (objc_method *toCYON = class_getInstanceMethod(_class, sel))
461 string = reinterpret_cast<NSString *(*)(id, SEL, bool)>(method_getImplementation(toCYON))(value, sel, objective);
462 else if (objc_method *methodSignatureForSelector = class_getInstanceMethod(_class, @selector(methodSignatureForSelector:))) {
463 if (reinterpret_cast<NSMethodSignature *(*)(id, SEL, SEL)>(method_getImplementation(methodSignatureForSelector))(value, @selector(methodSignatureForSelector:), sel) != nil)
464 string = [value cy$toCYON:objective];
465 else goto fail;
466 } else fail: {
467 if (false);
468#ifdef __APPLE__
469 else if (value == NSZombie_)
470 string = @"_NSZombie_";
471 else if (_class == NSZombie_)
472 string = [NSString stringWithFormat:@"<_NSZombie_: %p>", value];
473 // XXX: frowny /in/ the pants
474 else if (banned_.find(value) != banned_.end())
475 string = nil;
476#endif
477 else
478 string = [NSString stringWithFormat:@"%@", value];
479 }
480
481 // XXX: frowny pants
482 if (string == nil)
483 string = @"undefined";
484 }
485
486 return string;
487}
488
489#ifdef __APPLE__
490struct PropertyAttributes {
491 CYPool pool_;
492
493 const char *name;
494
495 const char *variable;
496
497 const char *getter_;
498 const char *setter_;
499
500 bool readonly;
501 bool copy;
502 bool retain;
503 bool nonatomic;
504 bool dynamic;
505 bool weak;
506 bool garbage;
507
508 PropertyAttributes(objc_property_t property) :
509 variable(NULL),
510 getter_(NULL),
511 setter_(NULL),
512 readonly(false),
513 copy(false),
514 retain(false),
515 nonatomic(false),
516 dynamic(false),
517 weak(false),
518 garbage(false)
519 {
520 name = property_getName(property);
521 const char *attributes(property_getAttributes(property));
522
523 for (char *token(pool_.strdup(attributes)), *next; token != NULL; token = next) {
524 if ((next = strchr(token, ',')) != NULL)
525 *next++ = '\0';
526 switch (*token) {
527 case 'R': readonly = true; break;
528 case 'C': copy = true; break;
529 case '&': retain = true; break;
530 case 'N': nonatomic = true; break;
531 case 'G': getter_ = token + 1; break;
532 case 'S': setter_ = token + 1; break;
533 case 'V': variable = token + 1; break;
534 }
535 }
536
537 /*if (variable == NULL) {
538 variable = property_getName(property);
539 size_t size(strlen(variable));
540 char *name(new(pool_) char[size + 2]);
541 name[0] = '_';
542 memcpy(name + 1, variable, size);
543 name[size + 1] = '\0';
544 variable = name;
545 }*/
546 }
547
548 const char *Getter() {
549 if (getter_ == NULL)
550 getter_ = pool_.strdup(name);
551 return getter_;
552 }
553
554 const char *Setter() {
555 if (setter_ == NULL && !readonly) {
556 size_t length(strlen(name));
557
558 char *temp(new(pool_) char[length + 5]);
559 temp[0] = 's';
560 temp[1] = 'e';
561 temp[2] = 't';
562
563 if (length != 0) {
564 temp[3] = toupper(name[0]);
565 memcpy(temp + 4, name + 1, length - 1);
566 }
567
568 temp[length + 3] = ':';
569 temp[length + 4] = '\0';
570 setter_ = temp;
571 }
572
573 return setter_;
574 }
575
576};
577#endif
578
579@interface CYWebUndefined : NSObject {
580}
581
582+ (CYWebUndefined *) undefined;
583
584@end
585
586@implementation CYWebUndefined
587
588+ (CYWebUndefined *) undefined {
589 static CYWebUndefined *instance_([[CYWebUndefined alloc] init]);
590 return instance_;
591}
592
593@end
594
595#define WebUndefined CYWebUndefined
596
597/* Bridge: CYJSObject {{{ */
598@interface CYJSObject : NSMutableDictionary {
599 JSObjectRef object_;
600 JSGlobalContextRef context_;
601}
602
603- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
604
605- (NSUInteger) count;
606- (id) objectForKey:(id)key;
607- (NSEnumerator *) keyEnumerator;
608- (void) setObject:(id)object forKey:(id)key;
609- (void) removeObjectForKey:(id)key;
610
611@end
612/* }}} */
613/* Bridge: CYJSArray {{{ */
614@interface CYJSArray : NSMutableArray {
615 JSObjectRef object_;
616 JSGlobalContextRef context_;
617}
618
619- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context;
620
621- (NSUInteger) count;
622- (id) objectAtIndex:(NSUInteger)index;
623
624- (void) addObject:(id)anObject;
625- (void) insertObject:(id)anObject atIndex:(NSUInteger)index;
626- (void) removeLastObject;
627- (void) removeObjectAtIndex:(NSUInteger)index;
628- (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject;
629
630@end
631/* }}} */
632
633_finline bool CYJSValueIsNSObject(JSContextRef context, JSValueRef value) {
634 return JSValueIsObjectOfClass(context, value, Instance_);
635}
636
637_finline bool CYJSValueIsInstanceOfCachedConstructor(JSContextRef context, JSValueRef value, JSStringRef cache) {
638 return _jsccall(JSValueIsInstanceOfConstructor, context, value, CYGetCachedObject(context, cache));
639}
640
641struct CYBlockDescriptor {
642 struct {
643 BlockDescriptor1 one_;
644 BlockDescriptor2 two_;
645 BlockDescriptor3 three_;
646 } d_;
647
648 Closure_privateData *internal_;
649};
650
651void CYDisposeBlock(BlockLiteral *literal) {
652 delete reinterpret_cast<CYBlockDescriptor *>(literal->descriptor)->internal_;
653}
654
655static JSValueRef BlockAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) {
656 JSObjectRef _this(CYCastJSObject(context, values[0]));
657 return CYCallAsFunction(context, function, _this, count - 1, values + 1);
658}
659
660static void BlockClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
661 CYExecuteClosure(cif, result, arguments, arg, &BlockAdapter_);
662}
663
664NSObject *CYMakeBlock(JSContextRef context, JSObjectRef function, sig::Signature &signature) {
665 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(malloc(sizeof(BlockLiteral))));
666
667 CYBlockDescriptor *descriptor(new CYBlockDescriptor);
668 memset(&descriptor->d_, 0, sizeof(descriptor->d_));
669
670 descriptor->internal_ = CYMakeFunctor_(context, function, signature, &BlockClosure_);
671 literal->invoke = reinterpret_cast<void (*)(void *, ...)>(descriptor->internal_->GetValue());
672
673 literal->isa = objc_getClass("__NSMallocBlock__");
674 literal->flags = BLOCK_HAS_SIGNATURE | BLOCK_HAS_COPY_DISPOSE | BLOCK_IS_GLOBAL;
675 literal->reserved = 0;
676 literal->descriptor = descriptor;
677
678 descriptor->d_.one_.size = sizeof(descriptor->d_);
679 descriptor->d_.two_.dispose_helper = &CYDisposeBlock;
680 descriptor->d_.three_.signature = sig::Unparse(*descriptor->internal_->pool_, &signature);
681
682 return reinterpret_cast<NSObject *>(literal);
683}
684
685NSObject *CYCastNSObject(CYPool *pool, JSContextRef context, JSObjectRef object) {
686 if (CYJSValueIsNSObject(context, object)) {
687 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
688 return internal->GetValue();
689 }
690
691 bool array(CYJSValueIsInstanceOfCachedConstructor(context, object, Array_s));
692 id value(array ? [CYJSArray alloc] : [CYJSObject alloc]);
693 return CYPoolRelease(pool, [value initWithJSObject:object inContext:context]);
694}
695
696NSNumber *CYCopyNSNumber(JSContextRef context, JSValueRef value) {
697 return [[NSNumber alloc] initWithDouble:CYCastDouble(context, value)];
698}
699
700#ifndef __APPLE__
701@interface NSBoolNumber : NSNumber {
702}
703@end
704#endif
705
706id CYNSObject(CYPool *pool, JSContextRef context, JSValueRef value, bool cast) {
707 id object;
708 bool copy;
709
710 switch (JSType type = JSValueGetType(context, value)) {
711 case kJSTypeUndefined:
712 object = [WebUndefined undefined];
713 copy = false;
714 break;
715
716 case kJSTypeNull:
717 return NULL;
718 break;
719
720 case kJSTypeBoolean:
721#ifdef __APPLE__
722 object = (id) (CYCastBool(context, value) ? kCFBooleanTrue : kCFBooleanFalse);
723 copy = false;
724#else
725 object = [[NSBoolNumber alloc] initWithBool:CYCastBool(context, value)];
726 copy = true;
727#endif
728 break;
729
730 case kJSTypeNumber:
731 object = CYCopyNSNumber(context, value);
732 copy = true;
733 break;
734
735 case kJSTypeString:
736 object = CYCopyNSString(context, value);
737 copy = true;
738 break;
739
740 case kJSTypeObject:
741 // XXX: this might could be more efficient
742 object = CYCastNSObject(pool, context, (JSObjectRef) value);
743 copy = false;
744 break;
745
746 default:
747 throw CYJSError(context, "JSValueGetType() == 0x%x", type);
748 break;
749 }
750
751 if (cast != copy)
752 return object;
753 else if (copy)
754 return CYPoolRelease(pool, object);
755 else
756 return [object retain];
757}
758
759NSObject *CYCastNSObject(CYPool *pool, JSContextRef context, JSValueRef value) {
760 return CYNSObject(pool, context, value, true);
761}
762
763NSObject *CYCopyNSObject(CYPool &pool, JSContextRef context, JSValueRef value) {
764 return CYNSObject(&pool, context, value, false);
765}
766
767/* Bridge: NSArray {{{ */
768@implementation NSArray (Cycript)
769
770- (id) cy$box {
771 return [[self mutableCopy] autorelease];
772}
773
774- (NSString *) cy$toCYON:(bool)objective {
775 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
776 [json appendString:@"@["];
777
778 bool comma(false);
779#ifdef __APPLE__
780 for (id object in self) {
781#else
782 for (size_t index(0), count([self count]); index != count; ++index) {
783 id object([self objectAtIndex:index]);
784#endif
785 if (comma)
786 [json appendString:@","];
787 else
788 comma = true;
789 if (object == nil || [object cy$JSType] != kJSTypeUndefined)
790 [json appendString:CYCastNSCYON(object, true)];
791 else {
792 [json appendString:@","];
793 comma = false;
794 }
795 }
796
797 [json appendString:@"]"];
798 return json;
799}
800
801- (bool) cy$hasProperty:(NSString *)name {
802 if ([name isEqualToString:@"length"])
803 return true;
804
805 size_t index(CYGetIndex(name));
806 if (index == _not(size_t) || index >= [self count])
807 return [super cy$hasProperty:name];
808 else
809 return true;
810}
811
812- (NSObject *) cy$getProperty:(NSString *)name {
813 size_t index(CYGetIndex(name));
814 if (index == _not(size_t) || index >= [self count])
815 return [super cy$getProperty:name];
816 else
817 return [self objectAtIndex:index];
818}
819
820- (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context {
821 CYObjectiveTry_ {
822 if ([name isEqualToString:@"length"])
823 return CYCastJSValue(context, [self count]);
824 } CYObjectiveCatch
825
826 return [super cy$getProperty:name inContext:context];
827}
828
829- (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
830 [super cy$getPropertyNames:names inContext:context];
831
832 for (size_t index(0), count([self count]); index != count; ++index) {
833 id object([self objectAtIndex:index]);
834 if (object == nil || [object cy$JSType] != kJSTypeUndefined) {
835 char name[32];
836 sprintf(name, "%zu", index);
837 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
838 }
839 }
840}
841
842+ (bool) cy$hasImplicitProperties {
843 return false;
844}
845
846@end
847/* }}} */
848/* Bridge: NSBlock {{{ */
849#ifdef __APPLE__
850@interface NSBlock
851- (void) invoke;
852@end
853#endif
854/* }}} */
855/* Bridge: NSBoolNumber {{{ */
856#ifndef __APPLE__
857@implementation NSBoolNumber (Cycript)
858
859- (JSType) cy$JSType {
860 return kJSTypeBoolean;
861}
862
863- (NSString *) cy$toCYON:(bool)objective {
864 NSString *value([self boolValue] ? @"true" : @"false");
865 return objective ? value : [NSString stringWithFormat:@"@%@", value];
866}
867
868- (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
869 return CYCastJSValue(context, (bool) [self boolValue]);
870} CYObjectiveCatch }
871
872@end
873#endif
874/* }}} */
875/* Bridge: NSDictionary {{{ */
876@implementation NSDictionary (Cycript)
877
878- (id) cy$box {
879 return [[self mutableCopy] autorelease];
880}
881
882- (NSString *) cy$toCYON:(bool)objective {
883 NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
884 [json appendString:@"@{"];
885
886 bool comma(false);
887#ifdef __APPLE__
888 for (NSObject *key in self) {
889#else
890 NSEnumerator *keys([self keyEnumerator]);
891 while (NSObject *key = [keys nextObject]) {
892#endif
893 if (comma)
894 [json appendString:@","];
895 else
896 comma = true;
897 [json appendString:CYCastNSCYON(key, true)];
898 [json appendString:@":"];
899 NSObject *object([self objectForKey:key]);
900 [json appendString:CYCastNSCYON(object, true)];
901 }
902
903 [json appendString:@"}"];
904 return json;
905}
906
907- (bool) cy$hasProperty:(NSString *)name {
908 return [self objectForKey:name] != nil;
909}
910
911- (NSObject *) cy$getProperty:(NSString *)name {
912 return [self objectForKey:name];
913}
914
915- (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
916 [super cy$getPropertyNames:names inContext:context];
917
918#ifdef __APPLE__
919 for (NSObject *key in self) {
920#else
921 NSEnumerator *keys([self keyEnumerator]);
922 while (NSObject *key = [keys nextObject]) {
923#endif
924 JSPropertyNameAccumulatorAddName(names, CYJSString(context, key));
925 }
926}
927
928+ (bool) cy$hasImplicitProperties {
929 return false;
930}
931
932@end
933/* }}} */
934/* Bridge: NSMutableArray {{{ */
935@implementation NSMutableArray (Cycript)
936
937- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
938 if ([name isEqualToString:@"length"]) {
939 // XXX: is this not intelligent?
940 NSNumber *number(reinterpret_cast<NSNumber *>(value));
941#ifdef __APPLE__
942 NSUInteger size([number unsignedIntegerValue]);
943#else
944 NSUInteger size([number unsignedIntValue]);
945#endif
946 NSUInteger count([self count]);
947 if (size < count)
948 [self removeObjectsInRange:NSMakeRange(size, count - size)];
949 else if (size != count) {
950 WebUndefined *undefined([WebUndefined undefined]);
951 for (size_t i(count); i != size; ++i)
952 [self addObject:undefined];
953 }
954 return true;
955 }
956
957 size_t index(CYGetIndex(name));
958 if (index == _not(size_t))
959 return [super cy$setProperty:name to:value];
960
961 id object(value ?: [NSNull null]);
962
963 size_t count([self count]);
964 if (index < count)
965 [self replaceObjectAtIndex:index withObject:object];
966 else {
967 if (index != count) {
968 WebUndefined *undefined([WebUndefined undefined]);
969 for (size_t i(count); i != index; ++i)
970 [self addObject:undefined];
971 }
972
973 [self addObject:object];
974 }
975
976 return true;
977}
978
979- (bool) cy$deleteProperty:(NSString *)name {
980 size_t index(CYGetIndex(name));
981 if (index == _not(size_t) || index >= [self count])
982 return [super cy$deleteProperty:name];
983 [self replaceObjectAtIndex:index withObject:[WebUndefined undefined]];
984 return true;
985}
986
987@end
988/* }}} */
989/* Bridge: NSMutableDictionary {{{ */
990@implementation NSMutableDictionary (Cycript)
991
992- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
993 [self setObject:(value ?: [NSNull null]) forKey:name];
994 return true;
995}
996
997- (bool) cy$deleteProperty:(NSString *)name {
998 if ([self objectForKey:name] == nil)
999 return false;
1000 else {
1001 [self removeObjectForKey:name];
1002 return true;
1003 }
1004}
1005
1006@end
1007/* }}} */
1008/* Bridge: NSNumber {{{ */
1009@implementation NSNumber (Cycript)
1010
1011- (JSType) cy$JSType {
1012#ifdef __APPLE__
1013 // XXX: this just seems stupid
1014 if ([self class] == NSCFBoolean_)
1015 return kJSTypeBoolean;
1016#endif
1017 return kJSTypeNumber;
1018}
1019
1020- (NSString *) cy$toCYON:(bool)objective {
1021 NSString *value([self cy$JSType] != kJSTypeBoolean ? [self stringValue] : [self boolValue] ? @"true" : @"false");
1022 return objective ? value : [NSString stringWithFormat:@"@%@", value];
1023}
1024
1025- (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1026 return [self cy$JSType] != kJSTypeBoolean ? CYCastJSValue(context, [self doubleValue]) : CYCastJSValue(context, static_cast<bool>([self boolValue]));
1027} CYObjectiveCatch }
1028
1029@end
1030/* }}} */
1031/* Bridge: NSNull {{{ */
1032@implementation NSNull (Cycript)
1033
1034- (JSType) cy$JSType {
1035 return kJSTypeNull;
1036}
1037
1038- (NSString *) cy$toCYON:(bool)objective {
1039 NSString *value(@"null");
1040 return objective ? value : [NSString stringWithFormat:@"@%@", value];
1041}
1042
1043- (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1044 return CYJSNull(context);
1045} CYObjectiveCatch }
1046
1047@end
1048/* }}} */
1049/* Bridge: NSObject {{{ */
1050@implementation NSObject (Cycript)
1051
1052- (id) cy$box {
1053 return self;
1054}
1055
1056- (JSValueRef) cy$toJSON:(NSString *)key inContext:(JSContextRef)context {
1057 return [self cy$valueOfInContext:context];
1058}
1059
1060- (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1061 return NULL;
1062} CYObjectiveCatch }
1063
1064- (JSType) cy$JSType {
1065 return kJSTypeObject;
1066}
1067
1068- (NSString *) cy$toCYON:(bool)objective {
1069 return [[self description] cy$toCYON:objective];
1070}
1071
1072- (bool) cy$hasProperty:(NSString *)name {
1073 return false;
1074}
1075
1076- (NSObject *) cy$getProperty:(NSString *)name {
1077 return nil;
1078}
1079
1080- (JSValueRef) cy$getProperty:(NSString *)name inContext:(JSContextRef)context { CYObjectiveTry_ {
1081 if (NSObject *value = [self cy$getProperty:name])
1082 return CYCastJSValue(context, value);
1083 return NULL;
1084} CYObjectiveCatch }
1085
1086- (bool) cy$setProperty:(NSString *)name to:(NSObject *)value {
1087 return false;
1088}
1089
1090- (bool) cy$deleteProperty:(NSString *)name {
1091 return false;
1092}
1093
1094- (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
1095}
1096
1097+ (bool) cy$hasImplicitProperties {
1098 return true;
1099}
1100
1101@end
1102/* }}} */
1103/* Bridge: NSProxy {{{ */
1104@implementation NSProxy (Cycript)
1105
1106- (NSString *) cy$toCYON:(bool)objective {
1107 return [[self description] cy$toCYON:objective];
1108}
1109
1110@end
1111/* }}} */
1112/* Bridge: NSString {{{ */
1113@implementation NSString (Cycript)
1114
1115- (id) cy$box {
1116 return [[self copy] autorelease];
1117}
1118
1119- (JSType) cy$JSType {
1120 return kJSTypeString;
1121}
1122
1123- (NSString *) cy$toCYON:(bool)objective {
1124 std::ostringstream str;
1125 if (!objective)
1126 str << '@';
1127 CYUTF8String string(CYCastUTF8String(self));
1128 CYStringify(str, string.data, string.size);
1129 std::string value(str.str());
1130 return CYCastNSString(NULL, CYUTF8String(value.c_str(), value.size()));
1131}
1132
1133- (bool) cy$hasProperty:(NSString *)name {
1134 size_t index(CYGetIndex(name));
1135 if (index == _not(size_t) || index >= [self length])
1136 return [super cy$hasProperty:name];
1137 else
1138 return true;
1139}
1140
1141- (NSObject *) cy$getProperty:(NSString *)name {
1142 size_t index(CYGetIndex(name));
1143 if (index == _not(size_t) || index >= [self length])
1144 return [super cy$getProperty:name];
1145 else
1146 return [self substringWithRange:NSMakeRange(index, 1)];
1147}
1148
1149- (void) cy$getPropertyNames:(JSPropertyNameAccumulatorRef)names inContext:(JSContextRef)context {
1150 [super cy$getPropertyNames:names inContext:context];
1151
1152 for (size_t index(0), length([self length]); index != length; ++index) {
1153 char name[32];
1154 sprintf(name, "%zu", index);
1155 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
1156 }
1157}
1158
1159- (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1160 return CYCastJSValue(context, CYJSString(context, self));
1161} CYObjectiveCatch }
1162
1163@end
1164/* }}} */
1165/* Bridge: WebUndefined {{{ */
1166@implementation WebUndefined (Cycript)
1167
1168- (JSType) cy$JSType {
1169 return kJSTypeUndefined;
1170}
1171
1172- (NSString *) cy$toCYON:(bool)objective {
1173 NSString *value(@"undefined");
1174 return value; // XXX: maybe use the below code, adding @undefined?
1175 //return objective ? value : [NSString stringWithFormat:@"@%@", value];
1176}
1177
1178- (JSValueRef) cy$valueOfInContext:(JSContextRef)context { CYObjectiveTry_ {
1179 return CYJSUndefined(context);
1180} CYObjectiveCatch }
1181
1182@end
1183/* }}} */
1184
1185static bool CYIsClass(id self) {
1186#ifdef __APPLE__
1187 return class_isMetaClass(object_getClass(self));
1188#else
1189 return GSObjCIsClass(self);
1190#endif
1191}
1192
1193Class CYCastClass(CYPool &pool, JSContextRef context, JSValueRef value) {
1194 id self(CYCastNSObject(&pool, context, value));
1195 if (CYIsClass(self))
1196 return (Class) self;
1197 throw CYJSError(context, "got something that is not a Class");
1198 return NULL;
1199}
1200
1201NSArray *CYCastNSArray(JSContextRef context, JSPropertyNameArrayRef names) {
1202 CYPool pool;
1203 size_t size(JSPropertyNameArrayGetCount(names));
1204 NSMutableArray *array([NSMutableArray arrayWithCapacity:size]);
1205 for (size_t index(0); index != size; ++index)
1206 [array addObject:CYCastNSString(&pool, context, JSPropertyNameArrayGetNameAtIndex(names, index))];
1207 return array;
1208}
1209
1210JSValueRef CYCastJSValue(JSContextRef context, NSObject *value) { CYPoolTry {
1211 if (value == nil)
1212 return CYJSNull(context);
1213 else
1214 return CYMakeInstance(context, value, false);
1215} CYPoolCatch(NULL) return /*XXX*/ NULL; }
1216
1217@implementation CYJSObject
1218
1219- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context { CYObjectiveTry_ {
1220 if ((self = [super init]) != nil) {
1221 object_ = object;
1222 context_ = CYGetJSContext(context);
1223 JSGlobalContextRetain(context_);
1224 JSValueProtect(context_, object_);
1225 } return self;
1226} CYObjectiveCatch }
1227
1228- (void) dealloc { CYObjectiveTry {
1229 JSValueUnprotect(context_, object_);
1230 JSGlobalContextRelease(context_);
1231 [super dealloc];
1232} CYObjectiveCatch }
1233
1234- (NSString *) cy$toCYON:(bool)objective { CYObjectiveTry {
1235 CYPool pool;
1236 const char *cyon(CYPoolCCYON(pool, context, object_));
1237 if (cyon == NULL)
1238 return [super cy$toCYON:objective];
1239 else
1240 return [NSString stringWithUTF8String:cyon];
1241} CYObjectiveCatch }
1242
1243- (NSUInteger) count { CYObjectiveTry {
1244 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object_));
1245 size_t size(JSPropertyNameArrayGetCount(names));
1246 JSPropertyNameArrayRelease(names);
1247 return size;
1248} CYObjectiveCatch }
1249
1250- (id) objectForKey:(id)key { CYObjectiveTry {
1251 JSValueRef value(CYGetProperty(context, object_, CYJSString(context, (NSObject *) key)));
1252 if (JSValueIsUndefined(context, value))
1253 return nil;
1254 return CYCastNSObject(NULL, context, value) ?: [NSNull null];
1255} CYObjectiveCatch }
1256
1257- (NSEnumerator *) keyEnumerator { CYObjectiveTry {
1258 JSPropertyNameArrayRef names(JSObjectCopyPropertyNames(context, object_));
1259 NSEnumerator *enumerator([CYCastNSArray(context, names) objectEnumerator]);
1260 JSPropertyNameArrayRelease(names);
1261 return enumerator;
1262} CYObjectiveCatch }
1263
1264- (void) setObject:(id)object forKey:(id)key { CYObjectiveTry {
1265 CYSetProperty(context, object_, CYJSString(context, (NSObject *) key), CYCastJSValue(context, (NSString *) object));
1266} CYObjectiveCatch }
1267
1268- (void) removeObjectForKey:(id)key { CYObjectiveTry {
1269 (void) _jsccall(JSObjectDeleteProperty, context, object_, CYJSString(context, (NSObject *) key));
1270} CYObjectiveCatch }
1271
1272@end
1273
1274@implementation CYJSArray
1275
1276- (NSString *) cy$toCYON:(bool)objective { CYObjectiveTry {
1277 CYPool pool;
1278 return [NSString stringWithUTF8String:CYPoolCCYON(pool, context, object_)];
1279} CYObjectiveCatch }
1280
1281- (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context { CYObjectiveTry_ {
1282 if ((self = [super init]) != nil) {
1283 object_ = object;
1284 context_ = CYGetJSContext(context);
1285 JSGlobalContextRetain(context_);
1286 JSValueProtect(context_, object_);
1287 } return self;
1288} CYObjectiveCatch }
1289
1290- (void) dealloc { CYObjectiveTry {
1291 JSValueUnprotect(context_, object_);
1292 JSGlobalContextRelease(context_);
1293 [super dealloc];
1294} CYObjectiveCatch }
1295
1296- (NSUInteger) count { CYObjectiveTry {
1297 return CYArrayLength(context, object_);
1298} CYObjectiveCatch }
1299
1300- (id) objectAtIndex:(NSUInteger)index { CYObjectiveTry {
1301 size_t bounds([self count]);
1302 if (index >= bounds)
1303 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray objectAtIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1304 JSValueRef value(_jsccall(JSObjectGetPropertyAtIndex, context, object_, index));
1305 return CYCastNSObject(NULL, context, value) ?: [NSNull null];
1306} CYObjectiveCatch }
1307
1308- (void) addObject:(id)object { CYObjectiveTry {
1309 CYArrayPush(context, object_, CYCastJSValue(context, (NSObject *) object));
1310} CYObjectiveCatch }
1311
1312- (void) insertObject:(id)object atIndex:(NSUInteger)index { CYObjectiveTry {
1313 size_t bounds([self count] + 1);
1314 if (index >= bounds)
1315 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray insertObject:atIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1316 JSValueRef arguments[3];
1317 arguments[0] = CYCastJSValue(context, index);
1318 arguments[1] = CYCastJSValue(context, 0);
1319 arguments[2] = CYCastJSValue(context, (NSObject *) object);
1320 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1321 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, splice_s)), object_, 3, arguments);
1322} CYObjectiveCatch }
1323
1324- (void) removeLastObject { CYObjectiveTry {
1325 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1326 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, pop_s)), object_, 0, NULL);
1327} CYObjectiveCatch }
1328
1329- (void) removeObjectAtIndex:(NSUInteger)index { CYObjectiveTry {
1330 size_t bounds([self count]);
1331 if (index >= bounds)
1332 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray removeObjectAtIndex:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1333 JSValueRef arguments[2];
1334 arguments[0] = CYCastJSValue(context, index);
1335 arguments[1] = CYCastJSValue(context, 1);
1336 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array_prototype")));
1337 _jsccall(JSObjectCallAsFunction, context, CYCastJSObject(context, CYGetProperty(context, Array, splice_s)), object_, 2, arguments);
1338} CYObjectiveCatch }
1339
1340- (void) replaceObjectAtIndex:(NSUInteger)index withObject:(id)object { CYObjectiveTry {
1341 size_t bounds([self count]);
1342 if (index >= bounds)
1343 @throw [NSException exceptionWithName:NSRangeException reason:[NSString stringWithFormat:@"*** -[CYJSArray replaceObjectAtIndex:withObject:]: index (%zu) beyond bounds (%zu)", static_cast<size_t>(index), bounds] userInfo:nil];
1344 CYSetProperty(context, object_, index, CYCastJSValue(context, (NSObject *) object));
1345} CYObjectiveCatch }
1346
1347@end
1348
1349// XXX: inherit from or replace with CYJSObject
1350@interface CYInternal : NSObject {
1351 JSGlobalContextRef context_;
1352 JSObjectRef object_;
1353}
1354
1355@end
1356
1357@implementation CYInternal
1358
1359- (void) dealloc { CYObjectiveTry {
1360 JSValueUnprotect(context_, object_);
1361 JSGlobalContextRelease(context_);
1362 [super dealloc];
1363} CYObjectiveCatch }
1364
1365- (id) initInContext:(JSContextRef)context { CYObjectiveTry_ {
1366 if ((self = [super init]) != nil) {
1367 context_ = CYGetJSContext(context);
1368 JSGlobalContextRetain(context_);
1369 } return self;
1370} CYObjectiveCatch }
1371
1372- (bool) hasProperty:(JSStringRef)name inContext:(JSContextRef)context {
1373 if (object_ == NULL)
1374 return false;
1375
1376 return JSObjectHasProperty(context, object_, name);
1377}
1378
1379- (JSValueRef) getProperty:(JSStringRef)name inContext:(JSContextRef)context {
1380 if (object_ == NULL)
1381 return NULL;
1382
1383 return CYGetProperty(context, object_, name);
1384}
1385
1386- (void) setProperty:(JSStringRef)name toValue:(JSValueRef)value inContext:(JSContextRef)context {
1387 @synchronized (self) {
1388 if (object_ == NULL) {
1389 object_ = JSObjectMake(context, NULL, NULL);
1390 JSValueProtect(context, object_);
1391 }
1392 }
1393
1394 CYSetProperty(context, object_, name, value);
1395}
1396
1397+ (CYInternal *) get:(id)object {
1398 if ($objc_getAssociatedObject == NULL)
1399 return nil;
1400
1401 @synchronized (object) {
1402 if (CYInternal *internal = $objc_getAssociatedObject(object, @selector(cy$internal)))
1403 return internal;
1404 }
1405
1406 return nil;
1407}
1408
1409+ (CYInternal *) set:(id)object inContext:(JSContextRef)context {
1410 if ($objc_getAssociatedObject == NULL)
1411 return nil;
1412
1413 @synchronized (object) {
1414 if (CYInternal *internal = $objc_getAssociatedObject(object, @selector(cy$internal)))
1415 return internal;
1416
1417 if ($objc_setAssociatedObject == NULL)
1418 return nil;
1419
1420 CYInternal *internal([[[CYInternal alloc] initInContext:context] autorelease]);
1421 objc_setAssociatedObject(object, @selector(cy$internal), internal, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
1422 return internal;
1423 }
1424
1425 return nil;
1426}
1427
1428@end
1429
1430static JSObjectRef CYMakeSelector(JSContextRef context, SEL sel) {
1431 Selector_privateData *internal(new Selector_privateData(sel));
1432 return JSObjectMake(context, Selector_, internal);
1433}
1434
1435static SEL CYCastSEL(JSContextRef context, JSValueRef value) {
1436 if (JSValueIsObjectOfClass(context, value, Selector_)) {
1437 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1438 return reinterpret_cast<SEL>(internal->value_);
1439 } else
1440 return CYCastPointer<SEL>(context, value);
1441}
1442
1443void *CYObjectiveC_ExecuteStart(JSContextRef context) { CYSadTry {
1444 return (void *) [[NSAutoreleasePool alloc] init];
1445} CYSadCatch(NULL) }
1446
1447void CYObjectiveC_ExecuteEnd(JSContextRef context, void *handle) { CYSadTry {
1448 return [(NSAutoreleasePool *) handle release];
1449} CYSadCatch() }
1450
1451JSValueRef CYObjectiveC_RuntimeProperty(JSContextRef context, CYUTF8String name) { CYPoolTry {
1452 if (name == "nil")
1453 return Instance::Make(context, nil);
1454 if (Class _class = objc_getClass(name.data))
1455 return CYMakeInstance(context, _class, true);
1456 if (Protocol *protocol = objc_getProtocol(name.data))
1457 return CYMakeInstance(context, protocol, true);
1458 return NULL;
1459} CYPoolCatch(NULL) return /*XXX*/ NULL; }
1460
1461static void CYObjectiveC_CallFunction(JSContextRef context, ffi_cif *cif, void (*function)(), uint8_t *value, void **values) { CYSadTry {
1462 ffi_call(cif, function, value, values);
1463} CYSadCatch() }
1464
1465static bool CYObjectiveC_PoolFFI(CYPool *pool, JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, JSValueRef value) { CYSadTry {
1466 // XXX: assigning to an indirect id * works for return values, but not for properties and fields
1467
1468 switch (type->primitive) {
1469 case sig::block_P: {
1470 _assert(type->data.signature.count != 0);
1471 sig::Signature signature;
1472 sig::Copy(*pool, signature, type->data.signature);
1473
1474 sig::Element *elements(new(*pool) sig::Element[++signature.count]);
1475 elements[0] = signature.elements[0];
1476 memcpy(elements + 2, signature.elements + 1, sizeof(sig::Element) * (signature.count - 2));
1477 signature.elements = elements;
1478
1479 elements[1].name = NULL;
1480 elements[1].type = new(*pool) sig::Type();
1481 elements[1].offset = _not(size_t);
1482
1483 memset(elements[1].type, 0, sizeof(sig::Type));
1484 elements[1].type->primitive = sig::object_P;
1485
1486 JSObjectRef function(CYCastJSObject(context, value));
1487 *reinterpret_cast<id *>(data) = CYMakeBlock(context, function, signature);
1488 } break;
1489
1490 case sig::object_P:
1491 case sig::typename_P:
1492 *reinterpret_cast<id *>(data) = CYCastNSObject(pool, context, value);
1493 break;
1494
1495 case sig::selector_P:
1496 *reinterpret_cast<SEL *>(data) = CYCastSEL(context, value);
1497 break;
1498
1499 default:
1500 return false;
1501 }
1502
1503 return true;
1504} CYSadCatch(false) }
1505
1506static JSValueRef CYObjectiveC_FromFFI(JSContextRef context, sig::Type *type, ffi_type *ffi, void *data, bool initialize, JSObjectRef owner) { CYPoolTry {
1507 switch (type->primitive) {
1508 // XXX: do something epic about blocks
1509 case sig::block_P:
1510 case sig::object_P:
1511 if (NSObject *object = *reinterpret_cast<NSObject **>(data)) {
1512 JSValueRef value(CYCastJSValue(context, object));
1513 if (initialize)
1514 [object release];
1515 return value;
1516 } else goto null;
1517
1518 case sig::typename_P:
1519 return CYMakeInstance(context, *reinterpret_cast<Class *>(data), true);
1520
1521 case sig::selector_P:
1522 if (SEL sel = *reinterpret_cast<SEL *>(data))
1523 return CYMakeSelector(context, sel);
1524 else goto null;
1525
1526 null:
1527 return CYJSNull(context);
1528 default:
1529 return NULL;
1530 }
1531} CYPoolCatch(NULL) return /*XXX*/ NULL; }
1532
1533static bool CYImplements(id object, Class _class, SEL selector, bool devoid = false) {
1534 if (objc_method *method = class_getInstanceMethod(_class, selector)) {
1535 if (!devoid)
1536 return true;
1537#if OBJC_API_VERSION >= 2
1538 char type[16];
1539 method_getReturnType(method, type, sizeof(type));
1540#else
1541 const char *type(method_getTypeEncoding(method));
1542#endif
1543 if (type[0] != 'v')
1544 return true;
1545 }
1546
1547 // XXX: possibly use a more "awesome" check?
1548 return false;
1549}
1550
1551static const char *CYPoolTypeEncoding(CYPool &pool, JSContextRef context, SEL sel, objc_method *method) {
1552 if (method != NULL)
1553 return method_getTypeEncoding(method);
1554
1555 const char *name(sel_getName(sel));
1556 size_t length(strlen(name));
1557
1558 char keyed[length + 2];
1559 keyed[0] = '6';
1560 keyed[length + 1] = '\0';
1561 memcpy(keyed + 1, name, length);
1562
1563 if (CYBridgeEntry *entry = CYBridgeHash(keyed, length + 1))
1564 return entry->value_;
1565
1566 return NULL;
1567}
1568
1569static JSValueRef MessageAdapter_(JSContextRef context, size_t count, JSValueRef values[], JSObjectRef function) {
1570 JSObjectRef _this(CYCastJSObject(context, values[0]));
1571 return CYCallAsFunction(context, function, _this, count - 2, values + 2);
1572}
1573
1574static void MessageClosure_(ffi_cif *cif, void *result, void **arguments, void *arg) {
1575 CYExecuteClosure(cif, result, arguments, arg, &MessageAdapter_);
1576}
1577
1578static JSObjectRef CYMakeMessage(JSContextRef context, SEL sel, IMP imp, const char *type) {
1579 Message_privateData *internal(new Message_privateData(sel, type, imp));
1580 return JSObjectMake(context, Message_, internal);
1581}
1582
1583static IMP CYMakeMessage(JSContextRef context, JSValueRef value, const char *encoding) {
1584 JSObjectRef function(CYCastJSObject(context, value));
1585 CYPool pool;
1586 sig::Signature signature;
1587 sig::Parse(pool, &signature, encoding, &Structor_);
1588 Closure_privateData *internal(CYMakeFunctor_(context, function, signature, &MessageClosure_));
1589 // XXX: see notes in Library.cpp about needing to leak
1590 return reinterpret_cast<IMP>(internal->GetValue());
1591}
1592
1593static bool Messages_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1594 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1595 Class _class(internal->GetValue());
1596
1597 CYPool pool;
1598 const char *name(CYPoolCString(pool, context, property));
1599
1600 if (SEL sel = sel_getUid(name))
1601 if (class_getInstanceMethod(_class, sel) != NULL)
1602 return true;
1603
1604 return false;
1605}
1606
1607static JSValueRef Messages_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1608 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1609 Class _class(internal->GetValue());
1610
1611 CYPool pool;
1612 const char *name(CYPoolCString(pool, context, property));
1613
1614 if (SEL sel = sel_getUid(name))
1615 if (objc_method *method = class_getInstanceMethod(_class, sel))
1616 return CYMakeMessage(context, sel, method_getImplementation(method), method_getTypeEncoding(method));
1617
1618 return NULL;
1619} CYCatch(NULL) }
1620
1621static bool Messages_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
1622 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1623 Class _class(internal->GetValue());
1624
1625 CYPool pool;
1626 const char *name(CYPoolCString(pool, context, property));
1627
1628 SEL sel(sel_registerName(name));
1629
1630 objc_method *method(class_getInstanceMethod(_class, sel));
1631
1632 const char *type;
1633 IMP imp;
1634
1635 if (JSValueIsObjectOfClass(context, value, Message_)) {
1636 Message_privateData *message(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate((JSObjectRef) value)));
1637 type = sig::Unparse(pool, &message->signature_);
1638 imp = reinterpret_cast<IMP>(message->GetValue());
1639 } else {
1640 type = CYPoolTypeEncoding(pool, context, sel, method);
1641 imp = CYMakeMessage(context, value, type);
1642 }
1643
1644 if (method != NULL)
1645 method_setImplementation(method, imp);
1646 else {
1647#ifdef GNU_RUNTIME
1648 GSMethodList list(GSAllocMethodList(1));
1649 GSAppendMethodToList(list, sel, type, imp, YES);
1650 GSAddMethodList(_class, list, YES);
1651 GSFlushMethodCacheForClass(_class);
1652#else
1653 class_addMethod(_class, sel, imp, type);
1654#endif
1655 }
1656
1657 return true;
1658} CYCatch(false) }
1659
1660#if 0 && OBJC_API_VERSION < 2
1661static bool Messages_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1662 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1663 Class _class(internal->GetValue());
1664
1665 CYPool pool;
1666 const char *name(CYPoolCString(pool, context, property));
1667
1668 if (SEL sel = sel_getUid(name))
1669 if (objc_method *method = class_getInstanceMethod(_class, sel)) {
1670 objc_method_list list = {NULL, 1, {method}};
1671 class_removeMethods(_class, &list);
1672 return true;
1673 }
1674
1675 return false;
1676} CYCatch(false) }
1677#endif
1678
1679static void Messages_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
1680 Messages *internal(reinterpret_cast<Messages *>(JSObjectGetPrivate(object)));
1681 Class _class(internal->GetValue());
1682
1683#if OBJC_API_VERSION >= 2
1684 unsigned int size;
1685 objc_method **data(class_copyMethodList(_class, &size));
1686 for (size_t i(0); i != size; ++i)
1687 JSPropertyNameAccumulatorAddName(names, CYJSString(sel_getName(method_getName(data[i]))));
1688 free(data);
1689#else
1690 for (objc_method_list *methods(_class->methods); methods != NULL; methods = methods->method_next)
1691 for (int i(0); i != methods->method_count; ++i)
1692 JSPropertyNameAccumulatorAddName(names, CYJSString(sel_getName(method_getName(&methods->method_list[i]))));
1693#endif
1694}
1695
1696static bool CYHasImplicitProperties(Class _class) {
1697 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1698 if (!CYImplements(_class, object_getClass(_class), @selector(cy$hasImplicitProperties)))
1699 return true;
1700 return [_class cy$hasImplicitProperties];
1701}
1702
1703static bool Instance_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1704 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1705 id self(internal->GetValue());
1706
1707 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
1708 return true;
1709
1710 CYPool pool;
1711 NSString *name(CYCastNSString(&pool, context, property));
1712
1713 if (CYInternal *internal = [CYInternal get:self])
1714 if ([internal hasProperty:property inContext:context])
1715 return true;
1716
1717 Class _class(object_getClass(self));
1718
1719 CYPoolTry {
1720 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1721 if (CYImplements(self, _class, @selector(cy$hasProperty:)))
1722 if ([self cy$hasProperty:name])
1723 return true;
1724 } CYPoolCatch(false)
1725
1726 const char *string(CYPoolCString(pool, context, name));
1727
1728#ifdef __APPLE__
1729 if (class_getProperty(_class, string) != NULL)
1730 return true;
1731#endif
1732
1733 if (CYHasImplicitProperties(_class))
1734 if (SEL sel = sel_getUid(string))
1735 if (CYImplements(self, _class, sel, true))
1736 return true;
1737
1738 return false;
1739}
1740
1741static JSValueRef Instance_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1742 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1743 id self(internal->GetValue());
1744
1745 if (JSStringIsEqualToUTF8CString(property, "$cyi"))
1746 return Internal::Make(context, self, object);
1747
1748 CYPool pool;
1749 NSString *name(CYCastNSString(&pool, context, property));
1750
1751 if (CYInternal *internal = [CYInternal get:self])
1752 if (JSValueRef value = [internal getProperty:property inContext:context])
1753 return value;
1754
1755 CYPoolTry {
1756 if (JSValueRef value = [self cy$getProperty:name inContext:context])
1757 return value;
1758 } CYPoolCatch(NULL)
1759
1760 const char *string(CYPoolCString(pool, context, name));
1761 Class _class(object_getClass(self));
1762
1763#ifdef __APPLE__
1764 if (objc_property_t property = class_getProperty(_class, string)) {
1765 PropertyAttributes attributes(property);
1766 SEL sel(sel_registerName(attributes.Getter()));
1767 return CYSendMessage(pool, context, self, NULL, sel, 0, NULL, false);
1768 }
1769#endif
1770
1771 if (CYHasImplicitProperties(_class))
1772 if (SEL sel = sel_getUid(string))
1773 if (CYImplements(self, _class, sel, true))
1774 return CYSendMessage(pool, context, self, NULL, sel, 0, NULL, false);
1775
1776 return NULL;
1777} CYCatch(NULL) }
1778
1779static bool Instance_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
1780 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1781 id self(internal->GetValue());
1782
1783 CYPool pool;
1784
1785 NSString *name(CYCastNSString(&pool, context, property));
1786 NSObject *data(CYCastNSObject(&pool, context, value));
1787
1788 CYPoolTry {
1789 if ([self cy$setProperty:name to:data])
1790 return true;
1791 } CYPoolCatch(false)
1792
1793 const char *string(CYPoolCString(pool, context, name));
1794 Class _class(object_getClass(self));
1795
1796#ifdef __APPLE__
1797 if (objc_property_t property = class_getProperty(_class, string)) {
1798 PropertyAttributes attributes(property);
1799 if (const char *setter = attributes.Setter()) {
1800 SEL sel(sel_registerName(setter));
1801 JSValueRef arguments[1] = {value};
1802 CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false);
1803 return true;
1804 }
1805 }
1806#endif
1807
1808 size_t length(strlen(string));
1809
1810 char set[length + 5];
1811
1812 set[0] = 's';
1813 set[1] = 'e';
1814 set[2] = 't';
1815
1816 if (string[0] != '\0') {
1817 set[3] = toupper(string[0]);
1818 memcpy(set + 4, string + 1, length - 1);
1819 }
1820
1821 set[length + 3] = ':';
1822 set[length + 4] = '\0';
1823
1824 if (SEL sel = sel_getUid(set))
1825 if (CYImplements(self, _class, sel)) {
1826 JSValueRef arguments[1] = {value};
1827 CYSendMessage(pool, context, self, NULL, sel, 1, arguments, false);
1828 return true;
1829 }
1830
1831 if (CYInternal *internal = [CYInternal set:self inContext:context]) {
1832 [internal setProperty:property toValue:value inContext:context];
1833 return true;
1834 }
1835
1836 return false;
1837} CYCatch(false) }
1838
1839static bool Instance_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
1840 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1841 id self(internal->GetValue());
1842
1843 CYPoolTry {
1844 NSString *name(CYCastNSString(NULL, context, property));
1845 return [self cy$deleteProperty:name];
1846 } CYPoolCatch(false)
1847} CYCatch(false) return /*XXX*/ false; }
1848
1849static void Instance_getPropertyNames_message(JSPropertyNameAccumulatorRef names, objc_method *method) {
1850 const char *name(sel_getName(method_getName(method)));
1851 if (strchr(name, ':') != NULL)
1852 return;
1853
1854 const char *type(method_getTypeEncoding(method));
1855 if (type == NULL || *type == '\0' || *type == 'v')
1856 return;
1857
1858 JSPropertyNameAccumulatorAddName(names, CYJSString(name));
1859}
1860
1861static void Instance_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
1862 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1863 id self(internal->GetValue());
1864
1865 CYPool pool;
1866 Class _class(object_getClass(self));
1867
1868#ifdef __APPLE__
1869 {
1870 unsigned int size;
1871 objc_property_t *data(class_copyPropertyList(_class, &size));
1872 for (size_t i(0); i != size; ++i)
1873 JSPropertyNameAccumulatorAddName(names, CYJSString(property_getName(data[i])));
1874 free(data);
1875 }
1876#endif
1877
1878 if (CYHasImplicitProperties(_class))
1879 for (Class current(_class); current != nil; current = class_getSuperclass(current)) {
1880#if OBJC_API_VERSION >= 2
1881 unsigned int size;
1882 objc_method **data(class_copyMethodList(current, &size));
1883 for (size_t i(0); i != size; ++i)
1884 Instance_getPropertyNames_message(names, data[i]);
1885 free(data);
1886#else
1887 for (objc_method_list *methods(current->methods); methods != NULL; methods = methods->method_next)
1888 for (int i(0); i != methods->method_count; ++i)
1889 Instance_getPropertyNames_message(names, &methods->method_list[i]);
1890#endif
1891 }
1892
1893 CYPoolTry {
1894 // XXX: this is an evil hack to deal with NSProxy; fix elsewhere
1895 if (CYImplements(self, _class, @selector(cy$getPropertyNames:inContext:)))
1896 [self cy$getPropertyNames:names inContext:context];
1897 } CYPoolCatch()
1898}
1899
1900static JSObjectRef Instance_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1901 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1902 JSObjectRef value(Instance::Make(context, [internal->GetValue() alloc], Instance::Uninitialized));
1903 return value;
1904} CYCatch(NULL) }
1905
1906static JSValueRef Instance_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1907 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
1908 id self(internal->GetValue());
1909
1910 if (![self isKindOfClass:NSBlock_])
1911 CYThrow("non-NSBlock object is not a function");
1912 // XXX: replace above logic with the following assertion
1913 //_assert([self isKindOfClass:NSBlock_]);
1914 // to do this, make it so FunctionInstance_ is the class of blocks
1915 // to do /that/, generalize the various "is exactly Instance_" checks
1916 // then, move Instance_callAsFunction to only be on FunctionInstance
1917
1918 BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
1919
1920 if ((literal->flags & BLOCK_HAS_SIGNATURE) != 0) {
1921 uint8_t *descriptor(reinterpret_cast<uint8_t *>(literal->descriptor));
1922 descriptor += sizeof(BlockDescriptor1);
1923 if ((literal->flags & BLOCK_HAS_COPY_DISPOSE) != 0)
1924 descriptor += sizeof(BlockDescriptor2);
1925 BlockDescriptor3 *descriptor3(reinterpret_cast<BlockDescriptor3 *>(descriptor));
1926
1927 if (const char *type = descriptor3->signature) {
1928 CYPool pool;
1929
1930 void *setup[1];
1931 setup[0] = &self;
1932
1933 sig::Signature signature;
1934 sig::Parse(pool, &signature, type, &Structor_);
1935
1936 ffi_cif cif;
1937 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
1938
1939 void (*function)() = reinterpret_cast<void (*)()>(literal->invoke);
1940 return CYCallFunction(pool, context, 1, setup, count, arguments, false, &signature, &cif, function);
1941 }
1942 }
1943
1944 if (count != 0)
1945 CYThrow("NSBlock without signature field passed arguments");
1946
1947 CYPoolTry {
1948 [self invoke];
1949 } CYPoolCatch(NULL);
1950
1951 return NULL;
1952} CYCatch(NULL) }
1953
1954static bool Instance_hasInstance(JSContextRef context, JSObjectRef constructor, JSValueRef instance, JSValueRef *exception) { CYTry {
1955 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) constructor)));
1956 Class _class(internal->GetValue());
1957 if (!CYIsClass(_class))
1958 return false;
1959
1960 if (CYJSValueIsNSObject(context, instance)) {
1961 Instance *linternal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) instance)));
1962 // XXX: this isn't always safe
1963 return [linternal->GetValue() isKindOfClass:_class];
1964 }
1965
1966 return false;
1967} CYCatch(false) }
1968
1969static JSValueRef Instance_box_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
1970 if (count == 0)
1971 throw CYJSError(context, "incorrect number of arguments to Instance");
1972 CYPool pool;
1973 id value(CYCastNSObject(&pool, context, arguments[0]));
1974 if (value == nil)
1975 value = [NSNull null];
1976 return CYCastJSValue(context, [value cy$box]);
1977} CYCatch(NULL) }
1978
1979static bool Internal_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef property) {
1980 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
1981 CYPool pool;
1982
1983 id self(internal->GetValue());
1984 const char *name(CYPoolCString(pool, context, property));
1985
1986 if (object_getInstanceVariable(self, name, NULL) != NULL)
1987 return true;
1988
1989 return false;
1990}
1991
1992static void CYBitField(unsigned &length, unsigned &shift, id self, Ivar ivar, const char *encoding, unsigned offset) {
1993 length = CYCastDouble(encoding + 1);
1994 shift = 0;
1995
1996 unsigned int size;
1997 objc_ivar **ivars(class_copyIvarList(object_getClass(self), &size));
1998 for (size_t i(0); i != size; ++i)
1999 if (ivars[i] == ivar)
2000 break;
2001 else if (ivar_getOffset(ivars[i]) == offset) {
2002 const char *encoding(ivar_getTypeEncoding(ivars[i]));
2003 _assert(encoding[0] == 'b');
2004 shift += CYCastDouble(encoding + 1);
2005 }
2006 free(ivars);
2007}
2008
2009static JSValueRef Internal_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2010 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2011 CYPool pool;
2012
2013 id self(internal->GetValue());
2014 const char *name(CYPoolCString(pool, context, property));
2015
2016#ifdef __arm64__
2017 if (strcmp(name, "isa") == 0)
2018 return CYCastJSValue(context, object_getClass(self));
2019#endif
2020
2021 if (objc_ivar *ivar = object_getInstanceVariable(self, name, NULL)) {
2022 ptrdiff_t offset(ivar_getOffset(ivar));
2023 void *data(reinterpret_cast<uint8_t *>(self) + offset);
2024
2025 const char *encoding(ivar_getTypeEncoding(ivar));
2026 if (encoding[0] == 'b') {
2027 unsigned length, shift;
2028 CYBitField(length, shift, self, ivar, encoding, offset);
2029 _assert(shift + length <= sizeof(uintptr_t) * 8);
2030 uintptr_t &field(*reinterpret_cast<uintptr_t *>(data));
2031 uintptr_t mask((1 << length) - 1);
2032 return CYCastJSValue(context, (field >> shift) & mask);
2033 } else {
2034 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2035 return CYFromFFI(context, type.type_, type.GetFFI(), data);
2036 }
2037 }
2038
2039 return NULL;
2040} CYCatch(NULL) }
2041
2042static bool Internal_setProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef value, JSValueRef *exception) { CYTry {
2043 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2044 CYPool pool;
2045
2046 id self(internal->GetValue());
2047 const char *name(CYPoolCString(pool, context, property));
2048
2049 if (objc_ivar *ivar = object_getInstanceVariable(self, name, NULL)) {
2050 ptrdiff_t offset(ivar_getOffset(ivar));
2051 void *data(reinterpret_cast<uint8_t *>(self) + offset);
2052
2053 const char *encoding(ivar_getTypeEncoding(ivar));
2054 if (encoding[0] == 'b') {
2055 unsigned length, shift;
2056 CYBitField(length, shift, self, ivar, encoding, offset);
2057 _assert(shift + length <= sizeof(uintptr_t) * 8);
2058 uintptr_t &field(*reinterpret_cast<uintptr_t *>(data));
2059 uintptr_t mask((1 << length) - 1);
2060 field = field & ~(mask << shift) | (uintptr_t(CYCastDouble(context, value)) & mask) << shift;
2061 } else {
2062 Type_privateData type(pool, ivar_getTypeEncoding(ivar));
2063 CYPoolFFI(&pool, context, type.type_, type.GetFFI(), reinterpret_cast<uint8_t *>(self) + ivar_getOffset(ivar), value);
2064 return true;
2065 }
2066 }
2067
2068 return false;
2069} CYCatch(false) }
2070
2071static void Internal_getPropertyNames_(Class _class, JSPropertyNameAccumulatorRef names) {
2072 if (Class super = class_getSuperclass(_class))
2073 Internal_getPropertyNames_(super, names);
2074
2075#if OBJC_API_VERSION >= 2
2076 unsigned int size;
2077 objc_ivar **data(class_copyIvarList(_class, &size));
2078 for (size_t i(0); i != size; ++i)
2079 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(data[i])));
2080 free(data);
2081#else
2082 if (objc_ivar_list *ivars = _class->ivars)
2083 for (int i(0); i != ivars->ivar_count; ++i)
2084 JSPropertyNameAccumulatorAddName(names, CYJSString(ivar_getName(&ivars->ivar_list[i])));
2085#endif
2086}
2087
2088static void Internal_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2089 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2090 CYPool pool;
2091
2092 id self(internal->GetValue());
2093 Class _class(object_getClass(self));
2094
2095 Internal_getPropertyNames_(_class, names);
2096}
2097
2098static JSValueRef Internal_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2099 Internal *internal(reinterpret_cast<Internal *>(JSObjectGetPrivate(object)));
2100 return internal->GetOwner();
2101} CYCatch(NULL) }
2102
2103static JSValueRef ObjectiveC_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2104 CYPool pool;
2105 NSString *name(CYCastNSString(&pool, context, property));
2106 if (Class _class = NSClassFromString(name))
2107 return CYMakeInstance(context, _class, true);
2108 return NULL;
2109} CYCatch(NULL) }
2110
2111#ifdef __APPLE__
2112static Class *CYCopyClassList(size_t &size) {
2113 size = objc_getClassList(NULL, 0);
2114 Class *data(reinterpret_cast<Class *>(malloc(sizeof(Class) * size)));
2115
2116 for (;;) {
2117 size_t writ(objc_getClassList(data, size));
2118 if (writ <= size) {
2119 size = writ;
2120 return data;
2121 }
2122
2123 Class *copy(reinterpret_cast<Class *>(realloc(data, sizeof(Class) * writ)));
2124 if (copy == NULL) {
2125 free(data);
2126 return NULL;
2127 }
2128
2129 data = copy;
2130 size = writ;
2131 }
2132}
2133#endif
2134
2135static void ObjectiveC_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2136#ifdef __APPLE__
2137 size_t size;
2138 if (Class *data = CYCopyClassList(size)) {
2139 for (size_t i(0); i != size; ++i)
2140 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(data[i])));
2141 free(data);
2142 }
2143#else
2144 void *state(NULL);
2145 while (Class _class = objc_next_class(&state))
2146 JSPropertyNameAccumulatorAddName(names, CYJSString(class_getName(_class)));
2147#endif
2148}
2149
2150#if OBJC_API_VERSION >= 2
2151static JSValueRef ObjectiveC_Image_Classes_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2152 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2153
2154 CYPool pool;
2155 const char *name(CYPoolCString(pool, context, property));
2156 unsigned int size;
2157 const char **data(objc_copyClassNamesForImage(internal, &size));
2158 JSValueRef value;
2159 for (size_t i(0); i != size; ++i)
2160 if (strcmp(name, data[i]) == 0) {
2161 if (Class _class = objc_getClass(name)) {
2162 value = CYMakeInstance(context, _class, true);
2163 goto free;
2164 } else
2165 break;
2166 }
2167 value = NULL;
2168 free:
2169 free(data);
2170 return value;
2171} CYCatch(NULL) }
2172
2173static void ObjectiveC_Image_Classes_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2174 const char *internal(reinterpret_cast<const char *>(JSObjectGetPrivate(object)));
2175 unsigned int size;
2176 const char **data(objc_copyClassNamesForImage(internal, &size));
2177 for (size_t i(0); i != size; ++i)
2178 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2179 free(data);
2180}
2181
2182static JSValueRef ObjectiveC_Images_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2183 CYPool pool;
2184 const char *name(CYPoolCString(pool, context, property));
2185 unsigned int size;
2186 const char **data(objc_copyImageNames(&size));
2187 for (size_t i(0); i != size; ++i)
2188 if (strcmp(name, data[i]) == 0) {
2189 name = data[i];
2190 goto free;
2191 }
2192 name = NULL;
2193 free:
2194 free(data);
2195 if (name == NULL)
2196 return NULL;
2197 JSObjectRef value(JSObjectMake(context, NULL, NULL));
2198 CYSetProperty(context, value, CYJSString("classes"), JSObjectMake(context, ObjectiveC_Image_Classes_, const_cast<char *>(name)));
2199 return value;
2200} CYCatch(NULL) }
2201
2202static void ObjectiveC_Images_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2203 unsigned int size;
2204 const char **data(objc_copyImageNames(&size));
2205 for (size_t i(0); i != size; ++i)
2206 JSPropertyNameAccumulatorAddName(names, CYJSString(data[i]));
2207 free(data);
2208}
2209#endif
2210
2211static JSValueRef ObjectiveC_Protocols_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2212 CYPool pool;
2213 const char *name(CYPoolCString(pool, context, property));
2214 if (Protocol *protocol = objc_getProtocol(name))
2215 return CYMakeInstance(context, protocol, true);
2216 return NULL;
2217} CYCatch(NULL) }
2218
2219static void ObjectiveC_Protocols_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2220#if OBJC_API_VERSION >= 2
2221 unsigned int size;
2222 Protocol **data(objc_copyProtocolList(&size));
2223 for (size_t i(0); i != size; ++i)
2224 JSPropertyNameAccumulatorAddName(names, CYJSString(protocol_getName(data[i])));
2225 free(data);
2226#else
2227 // XXX: fix this!
2228#endif
2229}
2230
2231static JSValueRef ObjectiveC_Constants_getProperty(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2232 CYPool pool;
2233 CYUTF8String name(CYPoolUTF8String(pool, context, property));
2234 if (name == "nil")
2235 return Instance::Make(context, nil);
2236 return NULL;
2237} CYCatch(NULL) }
2238
2239static void ObjectiveC_Constants_getPropertyNames(JSContextRef context, JSObjectRef object, JSPropertyNameAccumulatorRef names) {
2240 JSPropertyNameAccumulatorAddName(names, CYJSString("nil"));
2241}
2242
2243#ifdef __APPLE__
2244static kern_return_t CYReadMemory(task_t task, vm_address_t address, vm_size_t size, void **data) {
2245 *data = reinterpret_cast<void *>(address);
2246 return KERN_SUCCESS;
2247}
2248
2249struct CYChoice {
2250 std::set<Class> query_;
2251 JSContextRef context_;
2252 JSObjectRef results_;
2253};
2254
2255struct CYObjectStruct {
2256 Class isa_;
2257};
2258
2259static void choose_(task_t task, void *baton, unsigned type, vm_range_t *ranges, unsigned count) {
2260 CYChoice *choice(reinterpret_cast<CYChoice *>(baton));
2261 JSContextRef context(choice->context_);
2262
2263 for (unsigned i(0); i != count; ++i) {
2264 vm_range_t &range(ranges[i]);
2265 void *data(reinterpret_cast<void *>(range.address));
2266 size_t size(range.size);
2267
2268 if (size < sizeof(CYObjectStruct))
2269 continue;
2270
2271 uintptr_t *pointers(reinterpret_cast<uintptr_t *>(data));
2272#ifdef __arm64__
2273 Class isa(reinterpret_cast<Class>(pointers[0] & 0x1fffffff8));
2274#else
2275 Class isa(reinterpret_cast<Class>(pointers[0]));
2276#endif
2277
2278 std::set<Class>::const_iterator result(choice->query_.find(isa));
2279 if (result == choice->query_.end())
2280 continue;
2281
2282 // XXX: if (size < class_getInstanceSize(*result))
2283 if ((class_getInstanceSize(*result) + 15) / 16 * 16 != size)
2284 continue;
2285 CYArrayPush(context, choice->results_, CYCastJSValue(context, reinterpret_cast<id>(data)));
2286 }
2287}
2288
2289static JSValueRef choose(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2290 if (count != 1)
2291 throw CYJSError(context, "choose() takes a class argument");
2292
2293 CYPool pool;
2294 Class _class(CYCastNSObject(&pool, context, arguments[0]));
2295
2296 vm_address_t *zones(NULL);
2297 unsigned size(0);
2298 kern_return_t error(malloc_get_all_zones(0, &CYReadMemory, &zones, &size));
2299 _assert(error == KERN_SUCCESS);
2300
2301 JSObjectRef Array(CYGetCachedObject(context, CYJSString("Array")));
2302 JSObjectRef results(_jsccall(JSObjectCallAsConstructor, context, Array, 0, NULL));
2303
2304 CYChoice choice;
2305 choice.context_ = context;
2306 choice.results_ = results;
2307
2308 size_t number;
2309 Class *classes(CYCopyClassList(number));
2310 _assert(classes != NULL);
2311
2312 for (size_t i(0); i != number; ++i)
2313 for (Class current(classes[i]); current != Nil; current = class_getSuperclass(current))
2314 if (current == _class) {
2315 choice.query_.insert(classes[i]);
2316 break;
2317 }
2318
2319 free(classes);
2320
2321 for (unsigned i(0); i != size; ++i) {
2322 const malloc_zone_t *zone(reinterpret_cast<const malloc_zone_t *>(zones[i]));
2323 if (zone == NULL || zone->introspect == NULL)
2324 continue;
2325
2326 zone->introspect->enumerator(mach_task_self(), &choice, MALLOC_PTR_IN_USE_RANGE_TYPE, zones[i], &CYReadMemory, &choose_);
2327 }
2328
2329 return results;
2330} CYCatch(NULL) }
2331#endif
2332
2333#ifdef __APPLE__
2334#if defined(__i386__) || defined(__x86_64__)
2335#define OBJC_MAX_STRUCT_BY_VALUE 8
2336static int struct_forward_array[] = {
2337 0, 0, 0, 1, 0, 1, 1, 1, 0 };
2338#elif defined(__arm__)
2339#define OBJC_MAX_STRUCT_BY_VALUE 1
2340static int struct_forward_array[] = {
2341 0, 0 };
2342#elif defined(__arm64__)
2343#define CY_NO_STRET
2344#else
2345#error missing objc-runtime-info
2346#endif
2347
2348#ifndef CY_NO_STRET
2349static bool stret(ffi_type *ffi_type) {
2350 return ffi_type->type == FFI_TYPE_STRUCT && (
2351 ffi_type->size > OBJC_MAX_STRUCT_BY_VALUE ||
2352 struct_forward_array[ffi_type->size] != 0
2353 );
2354}
2355#endif
2356#endif
2357
2358JSValueRef CYSendMessage(CYPool &pool, JSContextRef context, id self, Class _class, SEL _cmd, size_t count, const JSValueRef arguments[], bool initialize) {
2359 const char *type;
2360
2361 if (_class == NULL)
2362 _class = object_getClass(self);
2363
2364 IMP imp;
2365
2366 if (objc_method *method = class_getInstanceMethod(_class, _cmd)) {
2367 imp = method_getImplementation(method);
2368 type = method_getTypeEncoding(method);
2369 } else {
2370 imp = NULL;
2371
2372 CYPoolTry {
2373 NSMethodSignature *method([self methodSignatureForSelector:_cmd]);
2374 if (method == nil)
2375 throw CYJSError(context, "unrecognized selector %s sent to object %p", sel_getName(_cmd), self);
2376 type = CYPoolCString(pool, context, [method _typeString]);
2377 } CYPoolCatch(NULL)
2378 }
2379
2380 void *setup[2];
2381 setup[0] = &self;
2382 setup[1] = &_cmd;
2383
2384 sig::Signature signature;
2385 sig::Parse(pool, &signature, type, &Structor_);
2386
2387 size_t used(count + 3);
2388 if (used > signature.count) {
2389 sig::Element *elements(new (pool) sig::Element[used]);
2390 memcpy(elements, signature.elements, used * sizeof(sig::Element));
2391
2392 for (size_t index(signature.count); index != used; ++index) {
2393 sig::Element *element(&elements[index]);
2394 element->name = NULL;
2395 element->offset = _not(size_t);
2396
2397 sig::Type *type(new (pool) sig::Type);
2398 memset(type, 0, sizeof(*type));
2399 type->primitive = sig::object_P;
2400 element->type = type;
2401 }
2402
2403 signature.elements = elements;
2404 signature.count = used;
2405 }
2406
2407 ffi_cif cif;
2408 sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
2409
2410 if (imp == NULL) {
2411#ifdef __APPLE__
2412#ifndef CY_NO_STRET
2413 if (stret(cif.rtype))
2414 imp = class_getMethodImplementation_stret(_class, _cmd);
2415 else
2416#endif
2417 imp = class_getMethodImplementation(_class, _cmd);
2418#else
2419 objc_super super = {self, _class};
2420 imp = objc_msg_lookup_super(&super, _cmd);
2421#endif
2422 }
2423
2424 void (*function)() = reinterpret_cast<void (*)()>(imp);
2425 return CYCallFunction(pool, context, 2, setup, count, arguments, initialize, &signature, &cif, function);
2426}
2427
2428static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[]) {
2429 if (count < 2)
2430 throw CYJSError(context, "too few arguments to objc_msgSend");
2431
2432 CYPool pool;
2433
2434 bool uninitialized;
2435
2436 id self;
2437 SEL _cmd;
2438 Class _class;
2439
2440 if (JSValueIsObjectOfClass(context, arguments[0], Super_)) {
2441 cy::Super *internal(reinterpret_cast<cy::Super *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2442 self = internal->GetValue();
2443 _class = internal->class_;;
2444 uninitialized = false;
2445 } else if (CYJSValueIsNSObject(context, arguments[0])) {
2446 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate((JSObjectRef) arguments[0])));
2447 self = internal->GetValue();
2448 _class = nil;
2449 uninitialized = internal->IsUninitialized();
2450 if (uninitialized)
2451 internal->value_ = nil;
2452 } else {
2453 self = CYCastNSObject(&pool, context, arguments[0]);
2454 _class = nil;
2455 uninitialized = false;
2456 }
2457
2458 if (self == nil)
2459 return CYJSNull(context);
2460
2461 _cmd = CYCastSEL(context, arguments[1]);
2462
2463 return CYSendMessage(pool, context, self, _class, _cmd, count - 2, arguments + 2, uninitialized);
2464}
2465
2466static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2467 return $objc_msgSend(context, object, _this, count, arguments);
2468} CYCatch(NULL) }
2469
2470static JSValueRef Selector_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2471 JSValueRef setup[count + 2];
2472 setup[0] = _this;
2473 setup[1] = object;
2474 memcpy(setup + 2, arguments, sizeof(JSValueRef) * count);
2475 return $objc_msgSend(context, NULL, NULL, count + 2, setup);
2476} CYCatch(NULL) }
2477
2478static JSValueRef Message_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2479 CYPool pool;
2480 Message_privateData *internal(reinterpret_cast<Message_privateData *>(JSObjectGetPrivate(object)));
2481
2482 // XXX: handle Instance::Uninitialized?
2483 id self(CYCastNSObject(&pool, context, _this));
2484
2485 void *setup[2];
2486 setup[0] = &self;
2487 setup[1] = &internal->sel_;
2488
2489 return CYCallFunction(pool, context, 2, setup, count, arguments, false, &internal->signature_, &internal->cif_, internal->GetValue());
2490} CYCatch(NULL) }
2491
2492static JSObjectRef Super_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2493 if (count != 2)
2494 throw CYJSError(context, "incorrect number of arguments to Super constructor");
2495 CYPool pool;
2496 id self(CYCastNSObject(&pool, context, arguments[0]));
2497 Class _class(CYCastClass(pool, context, arguments[1]));
2498 return cy::Super::Make(context, self, _class);
2499} CYCatch(NULL) }
2500
2501static JSObjectRef Selector_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2502 if (count != 1)
2503 throw CYJSError(context, "incorrect number of arguments to Selector constructor");
2504 CYPool pool;
2505 const char *name(CYPoolCString(pool, context, arguments[0]));
2506 return CYMakeSelector(context, sel_registerName(name));
2507} CYCatch(NULL) }
2508
2509static JSObjectRef Instance_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2510 if (count > 1)
2511 throw CYJSError(context, "incorrect number of arguments to Instance constructor");
2512 id self(count == 0 ? nil : CYCastPointer<id>(context, arguments[0]));
2513 return CYMakeInstance(context, self, false);
2514} CYCatch(NULL) }
2515
2516static JSValueRef CYValue_getProperty_value(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2517 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(object)));
2518 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->value_));
2519} CYCatch(NULL) }
2520
2521static JSValueRef CYValue_callAsFunction_$cya(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2522 CYValue *internal(reinterpret_cast<CYValue *>(JSObjectGetPrivate(_this)));
2523 Type_privateData *typical(internal->GetType());
2524
2525 sig::Type *type;
2526 ffi_type *ffi;
2527
2528 if (typical == NULL) {
2529 type = NULL;
2530 ffi = NULL;
2531 } else {
2532 type = typical->type_;
2533 ffi = typical->ffi_;
2534 }
2535
2536 return CYMakePointer(context, &internal->value_, _not(size_t), type, ffi, object);
2537} CYCatch(NULL) }
2538
2539static JSValueRef Instance_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2540 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2541 return Instance::Make(context, (id) object_getClass(internal->GetValue()));
2542} CYCatch(NULL) }
2543
2544static JSValueRef Instance_getProperty_prototype(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2545 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2546 id self(internal->GetValue());
2547 if (!CYIsClass(self))
2548 return CYJSUndefined(context);
2549 return CYGetClassPrototype(context, self);
2550} CYCatch(NULL) }
2551
2552static JSValueRef Instance_getProperty_messages(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
2553 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
2554 id self(internal->GetValue());
2555 if (!CYIsClass(self))
2556 return CYJSUndefined(context);
2557 return Messages::Make(context, (Class) self);
2558} CYCatch(NULL) }
2559
2560static JSValueRef Instance_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2561 if (!CYJSValueIsNSObject(context, _this))
2562 return NULL;
2563
2564 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2565 return CYCastJSValue(context, CYJSString(context, CYCastNSCYON(internal->GetValue(), false)));
2566} CYCatch(NULL) }
2567
2568static JSValueRef Instance_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2569 if (!CYJSValueIsNSObject(context, _this))
2570 return NULL;
2571
2572 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2573 id value(internal->GetValue());
2574
2575 CYPoolTry {
2576 NSString *key;
2577 if (count == 0)
2578 key = nil;
2579 else
2580 key = CYCastNSString(NULL, context, CYJSString(context, arguments[0]));
2581
2582 if (!CYImplements(value, object_getClass(value), @selector(cy$toJSON:inContext:)))
2583 return CYJSUndefined(context);
2584 else if (JSValueRef json = [value cy$toJSON:key inContext:context])
2585 return json;
2586 else
2587 return CYCastJSValue(context, CYJSString(context, [value description]));
2588 } CYPoolCatch(NULL)
2589} CYCatch(NULL) return /*XXX*/ NULL; }
2590
2591static JSValueRef Instance_callAsFunction_valueOf(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2592 if (!CYJSValueIsNSObject(context, _this))
2593 return NULL;
2594
2595 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2596 id value(internal->GetValue());
2597
2598 if (![value respondsToSelector:@selector(cy$valueOfInContext:)])
2599 return _this;
2600
2601 if (JSValueRef result = [value cy$valueOfInContext:context])
2602 return result;
2603
2604 return _this;
2605} CYCatch(NULL) return /*XXX*/ NULL; }
2606
2607static JSValueRef Instance_callAsFunction_toPointer(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2608 if (!CYJSValueIsNSObject(context, _this))
2609 return NULL;
2610
2611 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2612 // XXX: but... but... THIS ISN'T A POINTER! :(
2613 return CYCastJSValue(context, reinterpret_cast<uintptr_t>(internal->GetValue()));
2614} CYCatch(NULL) return /*XXX*/ NULL; }
2615
2616static JSValueRef Instance_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2617 if (!CYJSValueIsNSObject(context, _this))
2618 return NULL;
2619
2620 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2621 id value(internal->GetValue());
2622
2623 CYPoolTry {
2624 // XXX: this seems like a stupid implementation; what if it crashes? why not use the CYONifier backend?
2625 return CYCastJSValue(context, CYJSString(context, [value description]));
2626 } CYPoolCatch(NULL)
2627} CYCatch(NULL) return /*XXX*/ NULL; }
2628
2629static JSValueRef Class_callAsFunction_pointerTo(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2630 if (!CYJSValueIsNSObject(context, _this))
2631 return NULL;
2632
2633 Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
2634 id value(internal->GetValue());
2635
2636 if (!CYIsClass(value))
2637 CYThrow("non-Class object cannot be used as Type");
2638
2639 // XXX: this is a very silly implementation
2640
2641 std::ostringstream type;
2642 type << "@\"";
2643 type << class_getName(value);
2644 type << "\"";
2645
2646 CYPoolTry {
2647 return CYMakeType(context, type.str().c_str());
2648 } CYPoolCatch(NULL)
2649} CYCatch(NULL) return /*XXX*/ NULL; }
2650
2651static JSValueRef Selector_callAsFunction_toString(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2652 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2653 return CYCastJSValue(context, sel_getName(internal->GetValue()));
2654} CYCatch(NULL) }
2655
2656static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
2657 return Selector_callAsFunction_toString(context, object, _this, count, arguments, exception);
2658}
2659
2660static JSValueRef Selector_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2661 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2662 const char *name(sel_getName(internal->GetValue()));
2663
2664 CYPoolTry {
2665 NSString *string([NSString stringWithFormat:@"@selector(%s)", name]);
2666 return CYCastJSValue(context, CYJSString(context, string));
2667 } CYPoolCatch(NULL)
2668} CYCatch(NULL) return /*XXX*/ NULL; }
2669
2670static JSValueRef Selector_callAsFunction_type(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
2671 if (count != 1)
2672 throw CYJSError(context, "incorrect number of arguments to Selector.type");
2673
2674 CYPool pool;
2675 Selector_privateData *internal(reinterpret_cast<Selector_privateData *>(JSObjectGetPrivate(_this)));
2676 SEL sel(internal->GetValue());
2677
2678 objc_method *method;
2679 if (Class _class = CYCastClass(pool, context, arguments[0]))
2680 method = class_getInstanceMethod(_class, sel);
2681 else
2682 method = NULL;
2683
2684 const char *encoding(CYPoolTypeEncoding(pool, context, sel, method));
2685 if (encoding == NULL)
2686 return CYJSNull(context);
2687
2688 sig::Signature signature;
2689 sig::Parse(pool, &signature, encoding, &Structor_);
2690 return CYMakeType(context, &signature);
2691} CYCatch(NULL) }
2692
2693static JSStaticValue Selector_staticValues[2] = {
2694 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontDelete},
2695 {NULL, NULL, NULL, 0}
2696};
2697
2698static JSStaticValue Instance_staticValues[5] = {
2699 {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2700 {"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2701 {"prototype", &Instance_getProperty_prototype, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2702 {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2703 {NULL, NULL, NULL, 0}
2704};
2705
2706static JSStaticFunction Instance_staticFunctions[7] = {
2707 {"$cya", &CYValue_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2708 {"toCYON", &Instance_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2709 {"toJSON", &Instance_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2710 {"valueOf", &Instance_callAsFunction_valueOf, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2711 {"toPointer", &Instance_callAsFunction_toPointer, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2712 {"toString", &Instance_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2713 {NULL, NULL, 0}
2714};
2715
2716static JSStaticFunction Class_staticFunctions[2] = {
2717 {"pointerTo", &Class_callAsFunction_pointerTo, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2718 {NULL, NULL, 0}
2719};
2720
2721static JSStaticFunction Internal_staticFunctions[2] = {
2722 {"$cya", &Internal_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2723 {NULL, NULL, 0}
2724};
2725
2726static JSStaticFunction Selector_staticFunctions[5] = {
2727 {"toCYON", &Selector_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2728 {"toJSON", &Selector_callAsFunction_toJSON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2729 {"toString", &Selector_callAsFunction_toString, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2730 {"type", &Selector_callAsFunction_type, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
2731 {NULL, NULL, 0}
2732};
2733
2734#ifdef __APPLE__
2735JSValueRef NSCFType$cy$toJSON$inContext$(id self, SEL sel, JSValueRef key, JSContextRef context) { CYObjectiveTry_ {
2736 return CYCastJSValue(context, [(NSString *) CFCopyDescription((CFTypeRef) self) autorelease]);
2737} CYObjectiveCatch }
2738#endif
2739
2740void CYObjectiveC_Initialize() { /*XXX*/ JSContextRef context(NULL); CYPoolTry {
2741 $objc_setAssociatedObject = reinterpret_cast<void (*)(id, void *, id value, objc_AssociationPolicy)>(dlsym(RTLD_DEFAULT, "objc_setAssociatedObject"));
2742 $objc_getAssociatedObject = reinterpret_cast<id (*)(id, void *)>(dlsym(RTLD_DEFAULT, "objc_getAssociatedObject"));
2743 $objc_removeAssociatedObjects = reinterpret_cast<void (*)(id)>(dlsym(RTLD_DEFAULT, "objc_removeAssociatedObjects"));
2744
2745 CYPool &pool(CYGetGlobalPool());
2746
2747 Object_type = new(pool) Type_privateData("@");
2748 Selector_type = new(pool) Type_privateData(":");
2749
2750 NSArray_ = objc_getClass("NSArray");
2751 NSBlock_ = objc_getClass("NSBlock");
2752 NSDictionary_ = objc_getClass("NSDictionary");
2753 NSString_ = objc_getClass("NSString");
2754 Object_ = objc_getClass("Object");
2755
2756#ifdef __APPLE__
2757 // XXX: apparently, iOS now has both of these
2758 NSCFBoolean_ = objc_getClass("__NSCFBoolean");
2759 if (NSCFBoolean_ == nil)
2760 NSCFBoolean_ = objc_getClass("NSCFBoolean");
2761
2762 NSCFType_ = objc_getClass("NSCFType");
2763
2764 NSZombie_ = objc_getClass("_NSZombie_");
2765
2766 banned_.insert(Object_);
2767 banned_.insert(objc_getClass("__NSAtom"));
2768 banned_.insert(objc_getClass("__NSGenericDeallocHandler"));
2769 banned_.insert(objc_getClass("NSMessageBuilder"));
2770 banned_.insert(objc_getClass("__NSMessageBuilder"));
2771#else
2772 NSBoolNumber_ = objc_getClass("NSBoolNumber");
2773#endif
2774
2775 JSClassDefinition definition;
2776
2777 definition = kJSClassDefinitionEmpty;
2778 definition.className = "Instance";
2779 definition.staticValues = Instance_staticValues;
2780 definition.staticFunctions = Instance_staticFunctions;
2781 definition.hasProperty = &Instance_hasProperty;
2782 definition.getProperty = &Instance_getProperty;
2783 definition.setProperty = &Instance_setProperty;
2784 definition.deleteProperty = &Instance_deleteProperty;
2785 definition.getPropertyNames = &Instance_getPropertyNames;
2786 definition.callAsConstructor = &Instance_callAsConstructor;
2787 definition.callAsFunction = &Instance_callAsFunction;
2788 definition.hasInstance = &Instance_hasInstance;
2789 definition.finalize = &CYFinalize;
2790 Instance_ = JSClassCreate(&definition);
2791
2792 definition.className = "ArrayInstance";
2793 ArrayInstance_ = JSClassCreate(&definition);
2794
2795 definition.className = "FunctionInstance";
2796 FunctionInstance_ = JSClassCreate(&definition);
2797
2798 definition.className = "ObjectInstance";
2799 ObjectInstance_ = JSClassCreate(&definition);
2800
2801 definition.className = "StringInstance";
2802 StringInstance_ = JSClassCreate(&definition);
2803
2804 definition = kJSClassDefinitionEmpty;
2805 definition.className = "Class";
2806 definition.staticFunctions = Class_staticFunctions;
2807 Class_ = JSClassCreate(&definition);
2808
2809 definition = kJSClassDefinitionEmpty;
2810 definition.className = "Internal";
2811 definition.staticFunctions = Internal_staticFunctions;
2812 definition.hasProperty = &Internal_hasProperty;
2813 definition.getProperty = &Internal_getProperty;
2814 definition.setProperty = &Internal_setProperty;
2815 definition.getPropertyNames = &Internal_getPropertyNames;
2816 definition.finalize = &CYFinalize;
2817 Internal_ = JSClassCreate(&definition);
2818
2819 definition = kJSClassDefinitionEmpty;
2820 definition.className = "Message";
2821 definition.staticFunctions = cy::Functor::StaticFunctions;
2822 definition.callAsFunction = &Message_callAsFunction;
2823 definition.finalize = &CYFinalize;
2824 Message_ = JSClassCreate(&definition);
2825
2826 definition = kJSClassDefinitionEmpty;
2827 definition.className = "Messages";
2828 definition.hasProperty = &Messages_hasProperty;
2829 definition.getProperty = &Messages_getProperty;
2830 definition.setProperty = &Messages_setProperty;
2831#if 0 && OBJC_API_VERSION < 2
2832 definition.deleteProperty = &Messages_deleteProperty;
2833#endif
2834 definition.getPropertyNames = &Messages_getPropertyNames;
2835 definition.finalize = &CYFinalize;
2836 Messages_ = JSClassCreate(&definition);
2837
2838 definition = kJSClassDefinitionEmpty;
2839 definition.className = "Selector";
2840 definition.staticValues = Selector_staticValues;
2841 definition.staticFunctions = Selector_staticFunctions;
2842 definition.callAsFunction = &Selector_callAsFunction;
2843 definition.finalize = &CYFinalize;
2844 Selector_ = JSClassCreate(&definition);
2845
2846 definition = kJSClassDefinitionEmpty;
2847 definition.className = "Super";
2848 definition.staticFunctions = Internal_staticFunctions;
2849 definition.finalize = &CYFinalize;
2850 Super_ = JSClassCreate(&definition);
2851
2852 definition = kJSClassDefinitionEmpty;
2853 definition.className = "ObjectiveC::Classes";
2854 definition.getProperty = &ObjectiveC_Classes_getProperty;
2855 definition.getPropertyNames = &ObjectiveC_Classes_getPropertyNames;
2856 ObjectiveC_Classes_ = JSClassCreate(&definition);
2857
2858 definition = kJSClassDefinitionEmpty;
2859 definition.className = "ObjectiveC::Constants";
2860 definition.getProperty = &ObjectiveC_Constants_getProperty;
2861 definition.getPropertyNames = &ObjectiveC_Constants_getPropertyNames;
2862 ObjectiveC_Constants_ = JSClassCreate(&definition);
2863
2864#if OBJC_API_VERSION >= 2
2865 definition = kJSClassDefinitionEmpty;
2866 definition.className = "ObjectiveC::Images";
2867 definition.getProperty = &ObjectiveC_Images_getProperty;
2868 definition.getPropertyNames = &ObjectiveC_Images_getPropertyNames;
2869 ObjectiveC_Images_ = JSClassCreate(&definition);
2870
2871 definition = kJSClassDefinitionEmpty;
2872 definition.className = "ObjectiveC::Image::Classes";
2873 definition.getProperty = &ObjectiveC_Image_Classes_getProperty;
2874 definition.getPropertyNames = &ObjectiveC_Image_Classes_getPropertyNames;
2875 ObjectiveC_Image_Classes_ = JSClassCreate(&definition);
2876#endif
2877
2878 definition = kJSClassDefinitionEmpty;
2879 definition.className = "ObjectiveC::Protocols";
2880 definition.getProperty = &ObjectiveC_Protocols_getProperty;
2881 definition.getPropertyNames = &ObjectiveC_Protocols_getPropertyNames;
2882 ObjectiveC_Protocols_ = JSClassCreate(&definition);
2883
2884#ifdef __APPLE__
2885// XXX: this is horrible; there has to be a better way to do this
2886#ifdef __LP64__
2887 class_addMethod(NSCFType_, @selector(cy$toJSON:inContext:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON$inContext$), "^{OpaqueJSValue=}32@0:8@16^{OpaqueJSContext=}24");
2888#else
2889 class_addMethod(NSCFType_, @selector(cy$toJSON:inContext:), reinterpret_cast<IMP>(&NSCFType$cy$toJSON$inContext$), "^{OpaqueJSValue=}16@0:4@8^{OpaqueJSContext=}12");
2890#endif
2891#endif
2892} CYPoolCatch() }
2893
2894void CYObjectiveC_SetupContext(JSContextRef context) { CYPoolTry {
2895 JSObjectRef global(CYGetGlobalObject(context));
2896 JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
2897 JSObjectRef cycript(CYCastJSObject(context, CYGetProperty(context, global, CYJSString("Cycript"))));
2898 JSObjectRef all(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("all"))));
2899 JSObjectRef alls(CYCastJSObject(context, CYGetProperty(context, cycript, CYJSString("alls"))));
2900
2901 JSObjectRef ObjectiveC(JSObjectMake(context, NULL, NULL));
2902 CYSetProperty(context, cycript, CYJSString("ObjectiveC"), ObjectiveC);
2903
2904 JSObjectRef protocols(JSObjectMake(context, ObjectiveC_Protocols_, NULL));
2905 CYSetProperty(context, ObjectiveC, CYJSString("protocols"), protocols);
2906 CYArrayPush(context, alls, protocols);
2907
2908 JSObjectRef classes(JSObjectMake(context, ObjectiveC_Classes_, NULL));
2909 CYSetProperty(context, ObjectiveC, CYJSString("classes"), classes);
2910 CYArrayPush(context, alls, classes);
2911
2912 JSObjectRef constants(JSObjectMake(context, ObjectiveC_Constants_, NULL));
2913 CYSetProperty(context, ObjectiveC, CYJSString("constants"), constants);
2914 CYArrayPush(context, alls, constants);
2915
2916#if OBJC_API_VERSION >= 2
2917 CYSetProperty(context, ObjectiveC, CYJSString("images"), JSObjectMake(context, ObjectiveC_Images_, NULL));
2918#endif
2919
2920 JSObjectRef Class(JSObjectMakeConstructor(context, Class_, NULL));
2921 JSObjectRef Instance(JSObjectMakeConstructor(context, Instance_, &Instance_new));
2922 JSObjectRef Message(JSObjectMakeConstructor(context, Message_, NULL));
2923 JSObjectRef Selector(JSObjectMakeConstructor(context, Selector_, &Selector_new));
2924 JSObjectRef Super(JSObjectMakeConstructor(context, Super_, &Super_new));
2925
2926 JSObjectRef Instance_prototype(CYCastJSObject(context, CYGetProperty(context, Instance, prototype_s)));
2927 CYSetProperty(context, cy, CYJSString("Instance_prototype"), Instance_prototype);
2928
2929 JSObjectRef ArrayInstance(JSObjectMakeConstructor(context, ArrayInstance_, NULL));
2930 JSObjectRef ArrayInstance_prototype(CYCastJSObject(context, CYGetProperty(context, ArrayInstance, prototype_s)));
2931 CYSetProperty(context, cy, CYJSString("ArrayInstance_prototype"), ArrayInstance_prototype);
2932 JSObjectRef Array_prototype(CYGetCachedObject(context, CYJSString("Array_prototype")));
2933 JSObjectSetPrototype(context, ArrayInstance_prototype, Array_prototype);
2934
2935 JSObjectRef FunctionInstance(JSObjectMakeConstructor(context, FunctionInstance_, NULL));
2936 JSObjectRef FunctionInstance_prototype(CYCastJSObject(context, CYGetProperty(context, FunctionInstance, prototype_s)));
2937 CYSetProperty(context, cy, CYJSString("FunctionInstance_prototype"), FunctionInstance_prototype);
2938 JSObjectRef Function_prototype(CYGetCachedObject(context, CYJSString("Function_prototype")));
2939 JSObjectSetPrototype(context, FunctionInstance_prototype, Function_prototype);
2940
2941 JSObjectRef ObjectInstance(JSObjectMakeConstructor(context, ObjectInstance_, NULL));
2942 JSObjectRef ObjectInstance_prototype(CYCastJSObject(context, CYGetProperty(context, ObjectInstance, prototype_s)));
2943 CYSetProperty(context, cy, CYJSString("ObjectInstance_prototype"), ObjectInstance_prototype);
2944 JSObjectRef Object_prototype(CYGetCachedObject(context, CYJSString("Object_prototype")));
2945 JSObjectSetPrototype(context, ObjectInstance_prototype, Object_prototype);
2946
2947 JSObjectRef StringInstance(JSObjectMakeConstructor(context, StringInstance_, NULL));
2948 JSObjectRef StringInstance_prototype(CYCastJSObject(context, CYGetProperty(context, StringInstance, prototype_s)));
2949 CYSetProperty(context, cy, CYJSString("StringInstance_prototype"), StringInstance_prototype);
2950 JSObjectRef String_prototype(CYGetCachedObject(context, CYJSString("String_prototype")));
2951 JSObjectSetPrototype(context, StringInstance_prototype, String_prototype);
2952
2953 JSObjectRef Class_prototype(CYCastJSObject(context, CYGetProperty(context, Class, prototype_s)));
2954 CYSetProperty(context, cy, CYJSString("Class_prototype"), Class_prototype);
2955 JSObjectSetPrototype(context, Class_prototype, Instance_prototype);
2956
2957 CYSetProperty(context, cycript, CYJSString("Instance"), Instance);
2958 CYSetProperty(context, cycript, CYJSString("Selector"), Selector);
2959 CYSetProperty(context, cycript, CYJSString("Super"), Super);
2960
2961 JSObjectRef box(JSObjectMakeFunctionWithCallback(context, CYJSString("box"), &Instance_box_callAsFunction));
2962 CYSetProperty(context, Instance, CYJSString("box"), box);
2963
2964#ifdef __APPLE__
2965 CYSetProperty(context, all, CYJSString("choose"), &choose, kJSPropertyAttributeDontEnum);
2966#endif
2967
2968 CYSetProperty(context, all, CYJSString("objc_msgSend"), &$objc_msgSend, kJSPropertyAttributeDontEnum);
2969
2970 JSObjectSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Message, prototype_s)), Function_prototype);
2971 JSObjectSetPrototype(context, CYCastJSObject(context, CYGetProperty(context, Selector, prototype_s)), Function_prototype);
2972} CYPoolCatch() }
2973
2974static CYHooks CYObjectiveCHooks = {
2975 &CYObjectiveC_ExecuteStart,
2976 &CYObjectiveC_ExecuteEnd,
2977 &CYObjectiveC_CallFunction,
2978 &CYObjectiveC_Initialize,
2979 &CYObjectiveC_SetupContext,
2980 &CYObjectiveC_PoolFFI,
2981 &CYObjectiveC_FromFFI,
2982};
2983
2984struct CYObjectiveC {
2985 CYObjectiveC() {
2986 hooks_ = &CYObjectiveCHooks;
2987 // XXX: evil magic juju to make this actually take effect on a Mac when compiled with autoconf/libtool doom!
2988 _assert(hooks_ != NULL);
2989 }
2990} CYObjectiveC;