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