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