]> git.saurik.com Git - cycript.git/blobdiff - Tweak.mm
This is getting seriously hot.
[cycript.git] / Tweak.mm
index 2dc974a6aff7f6f5c1ac72341bbc6fe3e9e97427..d9a83b568bb0ff2a513ce4d6bd7a07c80a2edb7b 100644 (file)
--- a/Tweak.mm
+++ b/Tweak.mm
 
 #include <substrate.h>
 
+#include "sig/parse.hpp"
+#include "sig/ffi_type.hpp"
+
+#include <apr-1/apr_pools.h>
+#include <apr-1/apr_strings.h>
+
 #include <unistd.h>
 
 #include <CoreFoundation/CoreFoundation.h>
@@ -60,6 +66,9 @@
 #include <sys/socket.h>
 #include <netinet/in.h>
 
+#undef _assert
+#undef _trace
+
 /* XXX: bad _assert */
 #define _assert(test) do { \
     if ((test)) break; \
     CFLog(kCFLogLevelNotice, CFSTR("_trace():%u"), __LINE__); \
 } while (false)
 
-static JSContextRef context_;
+/* Objective-C Handle<> {{{ */
+template <typename Type_>
+class _H {
+    typedef _H<Type_> This_;
+
+  private:
+    Type_ *value_;
+
+    _finline void Retain_() {
+        if (value_ != nil)
+            [value_ retain];
+    }
+
+    _finline void Clear_() {
+        if (value_ != nil)
+            [value_ release];
+    }
+
+  public:
+    _finline _H(const This_ &rhs) :
+        value_(rhs.value_ == nil ? nil : [rhs.value_ retain])
+    {
+    }
+
+    _finline _H(Type_ *value = NULL, bool mended = false) :
+        value_(value)
+    {
+        if (!mended)
+            Retain_();
+    }
+
+    _finline ~_H() {
+        Clear_();
+    }
+
+    _finline operator Type_ *() const {
+        return value_;
+    }
+
+    _finline This_ &operator =(Type_ *value) {
+        if (value_ != value) {
+            Type_ *old(value_);
+            value_ = value;
+            Retain_();
+            if (old != nil)
+                [old release];
+        } return *this;
+    }
+};
+/* }}} */
+
+#define _pooled _H<NSAutoreleasePool> _pool([[NSAutoreleasePool alloc] init], true);
+
+static JSContextRef Context_;
+
+static JSClassRef ffi_;
 static JSClassRef joc_;
+static JSClassRef ptr_;
+static JSClassRef sel_;
+
 static JSObjectRef Array_;
+
 static JSStringRef name_;
 static JSStringRef message_;
 static JSStringRef length_;
+
 static Class NSCFBoolean_;
 
 struct Client {
@@ -84,9 +153,13 @@ struct Client {
     CFSocketRef socket_;
 };
 
+@interface NSMethodSignature (Cyrver)
+- (NSString *) _typeString;
+@end
+
 @interface NSObject (Cyrver)
 - (NSString *) cy$toJSON;
-// XXX: - (JSValueRef) cy$JSValueInContext:(JSContextRef)context;
+- (JSValueRef) cy$JSValueInContext:(JSContextRef)context;
 @end
 
 @implementation NSObject (Cyrver)
@@ -95,6 +168,10 @@ struct Client {
     return [self description];
 }
 
+- (JSValueRef) cy$JSValueInContext:(JSContextRef)context {
+    return JSObjectMake(context, joc_, [self retain]);
+}
+
 @end
 
 @implementation WebUndefined (Cyrver)
@@ -134,7 +211,8 @@ struct Client {
 
 - (NSString *) cy$toJSON {
     NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
-    [json appendString:@"({"];
+    [json appendString:@"("];
+    [json appendString:@"{"];
 
     bool comma(false);
     for (id key in self) {
@@ -213,29 +291,30 @@ struct Client {
 @end
 
 JSContextRef JSGetContext() {
-    return context_;
+    return Context_;
 }
 
-id JSObjectToNSObject(JSContextRef ctx, JSObjectRef object) {
-    if (JSValueIsObjectOfClass(ctx, object, joc_))
+void CYThrow(JSContextRef context, JSValueRef value);
+
+id JSObjectToNSObject(JSContextRef context, JSObjectRef object) {
+    if (JSValueIsObjectOfClass(context, object, joc_))
         return reinterpret_cast<id>(JSObjectGetPrivate(object));
-    // XXX: exception
-    else if (JSValueIsInstanceOfConstructor(ctx, object, Array_, NULL))
-        return [[[CY$JSArray alloc] initWithJSObject:object inContext:ctx] autorelease];
-    else
-        return [[[CY$JSObject alloc] initWithJSObject:object inContext:ctx] autorelease];
+    JSValueRef exception(NULL);
+    bool array(JSValueIsInstanceOfConstructor(context, object, Array_, &exception));
+    CYThrow(context, exception);
+    if (array)
+        return [[[CY$JSArray alloc] initWithJSObject:object inContext:context] autorelease];
+    return [[[CY$JSObject alloc] initWithJSObject:object inContext:context] autorelease];
 }
 
 CFStringRef CYCopyCFString(JSStringRef value) {
     return JSStringCopyCFString(kCFAllocatorDefault, value);
 }
 
-void CYThrow(JSContextRef ctx, JSValueRef value);
-
-CFStringRef CYCopyCFString(JSContextRef ctx, JSValueRef value) {
+CFStringRef CYCopyCFString(JSContextRef context, JSValueRef value) {
     JSValueRef exception(NULL);
-    JSStringRef string(JSValueToStringCopy(ctx, value, &exception));
-    CYThrow(context_, exception);
+    JSStringRef string(JSValueToStringCopy(context, value, &exception));
+    CYThrow(context, exception);
     CFStringRef object(CYCopyCFString(string));
     JSStringRelease(string);
     return object;
@@ -245,8 +324,8 @@ NSString *CYCastNSString(JSStringRef value) {
     return [reinterpret_cast<const NSString *>(CYCopyCFString(value)) autorelease];
 }
 
-CFTypeRef CYCopyCFType(JSContextRef ctx, JSValueRef value) {
-    JSType type(JSValueGetType(ctx, value));
+CFTypeRef CYCopyCFType(JSContextRef context, JSValueRef value) {
+    JSType type(JSValueGetType(context, value));
 
     switch (type) {
         case kJSTypeUndefined:
@@ -258,22 +337,22 @@ CFTypeRef CYCopyCFType(JSContextRef ctx, JSValueRef value) {
         break;
 
         case kJSTypeBoolean:
-            return CFRetain(JSValueToBoolean(ctx, value) ? kCFBooleanTrue : kCFBooleanFalse);
+            return CFRetain(JSValueToBoolean(context, value) ? kCFBooleanTrue : kCFBooleanFalse);
         break;
 
         case kJSTypeNumber: {
             JSValueRef exception(NULL);
-            double number(JSValueToNumber(ctx, value, &exception));
-            CYThrow(context_, exception);
+            double number(JSValueToNumber(context, value, &exception));
+            CYThrow(context, exception);
             return CFNumberCreate(kCFAllocatorDefault, kCFNumberDoubleType, &number);
         } break;
 
         case kJSTypeString:
-            return CYCopyCFString(context_, value);
+            return CYCopyCFString(context, value);
         break;
 
         case kJSTypeObject:
-            return CFRetain((CFTypeRef) JSObjectToNSObject(ctx, (JSObjectRef) value));
+            return CFRetain((CFTypeRef) JSObjectToNSObject(context, (JSObjectRef) value));
         break;
 
         default:
@@ -290,25 +369,57 @@ NSArray *CYCastNSArray(JSPropertyNameArrayRef names) {
     return array;
 }
 
-id CYCastNSObject(JSContextRef ctx, JSValueRef value) {
-    const NSObject *object(reinterpret_cast<const NSObject *>(CYCopyCFType(ctx, value)));
+id CYCastNSObject(JSContextRef context, JSValueRef value) {
+    const NSObject *object(reinterpret_cast<const NSObject *>(CYCopyCFType(context, value)));
     return object == nil ? nil : [object autorelease];
 }
 
-void CYThrow(JSContextRef ctx, JSValueRef value) {
+void CYThrow(JSContextRef context, JSValueRef value) {
     if (value == NULL)
         return;
-    @throw CYCastNSObject(ctx, value);
+    @throw CYCastNSObject(context, value);
 }
 
-JSValueRef CYCastJSValue(JSContextRef ctx, id value) {
-    return [value cy$JSValueInContext:ctx];
+JSValueRef CYCastJSValue(JSContextRef context, id value) {
+    return value == nil ? JSValueMakeNull(context) : [value cy$JSValueInContext:context];
 }
 
-JSStringRef CYCopyJSString(JSContextRef ctx, id value) {
+JSStringRef CYCopyJSString(id value) {
     return JSStringCreateWithCFString(reinterpret_cast<CFStringRef>([value description]));
 }
 
+JSStringRef CYCopyJSString(const char *value) {
+    return JSStringCreateWithUTF8CString(value);
+}
+
+JSStringRef CYCopyJSString(JSStringRef value) {
+    return JSStringRetain(value);
+}
+
+// XXX: this is not a safe handle
+class CYString {
+  private:
+    JSStringRef string_;
+
+  public:
+    template <typename Type_>
+    CYString(Type_ value) {
+        string_ = CYCopyJSString(value);
+    }
+
+    ~CYString() {
+        JSStringRelease(string_);
+    }
+
+    operator JSStringRef() const {
+        return string_;
+    }
+};
+
+void CYThrow(JSContextRef context, id error, JSValueRef *exception) {
+    *exception = CYCastJSValue(context, error);
+}
+
 @implementation CY$JSObject
 
 - (id) initWithJSObject:(JSObjectRef)object inContext:(JSContextRef)context {
@@ -327,9 +438,7 @@ JSStringRef CYCopyJSString(JSContextRef ctx, id value) {
 
 - (id) objectForKey:(id)key {
     JSValueRef exception(NULL);
-    JSStringRef string(CYCopyJSString(context_, key));
-    JSValueRef value(JSObjectGetProperty(context_, object_, string, &exception));
-    JSStringRelease(string);
+    JSValueRef value(JSObjectGetProperty(context_, object_, CYString(key), &exception));
     CYThrow(context_, exception);
     return CYCastNSObject(context_, value);
 }
@@ -343,18 +452,14 @@ JSStringRef CYCopyJSString(JSContextRef ctx, id value) {
 
 - (void) setObject:(id)object forKey:(id)key {
     JSValueRef exception(NULL);
-    JSStringRef string(CYCopyJSString(context_, key));
-    JSObjectSetProperty(context_, object_, string, CYCastJSValue(context_, object), kJSPropertyAttributeNone, &exception);
-    JSStringRelease(string);
+    JSObjectSetProperty(context_, object_, CYString(key), CYCastJSValue(context_, object), kJSPropertyAttributeNone, &exception);
     CYThrow(context_, exception);
 }
 
 - (void) removeObjectForKey:(id)key {
     JSValueRef exception(NULL);
-    JSStringRef string(CYCopyJSString(context_, key));
     // XXX: this returns a bool
-    JSObjectDeleteProperty(context_, object_, string, &exception);
-    JSStringRelease(string);
+    JSObjectDeleteProperty(context_, object_, CYString(key), &exception);
     CYThrow(context_, exception);
 }
 
@@ -388,8 +493,8 @@ JSStringRef CYCopyJSString(JSContextRef ctx, id value) {
 
 @end
 
-CFStringRef JSValueToJSONCopy(JSContextRef ctx, JSValueRef value) {
-    id object(CYCastNSObject(ctx, value));
+CFStringRef JSValueToJSONCopy(JSContextRef context, JSValueRef value) {
+    id object(CYCastNSObject(context, value));
     return reinterpret_cast<CFStringRef>([(object == nil ? @"null" : [object cy$toJSON]) retain]);
 }
 
@@ -466,19 +571,302 @@ static void OnAccept(CFSocketRef socket, CFSocketCallBackType type, CFDataRef ad
     }
 }
 
-static JSValueRef joc_getProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef *exception) {
+static JSValueRef joc_getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef *exception) {
     return NULL;
 }
 
-static JSValueRef obc_getProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef *exception) {
+typedef id jocData;
+
+static void joc_finalize(JSObjectRef object) {
+    id data(reinterpret_cast<jocData>(JSObjectGetPrivate(object)));
+    [data release];
+}
+
+static JSValueRef obc_getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef *exception) {
     NSString *name([(NSString *) JSStringCopyCFString(kCFAllocatorDefault, propertyName) autorelease]);
     if (Class _class = NSClassFromString(name))
-        return JSObjectMake(ctx, joc_, _class);
+        return JSObjectMake(context, joc_, [_class retain]);
     return NULL;
 }
 
-MSInitialize {
-    NSAutoreleasePool *pool([[NSAutoreleasePool alloc] init]);
+void CYSetProperty(JSContextRef context, JSObjectRef object, const char *name, JSValueRef value) {
+    JSValueRef exception(NULL);
+    JSObjectSetProperty(context, object, CYString(name), value, kJSPropertyAttributeNone, &exception);
+    CYThrow(context, exception);
+}
+
+struct ffiData {
+    apr_pool_t *pool_;
+    void (*function_)();
+    const char *type_;
+    sig::Signature signature_;
+    ffi_cif cif_;
+};
+
+char *CYPoolCString(apr_pool_t *pool, JSStringRef value) {
+    size_t size(JSStringGetMaximumUTF8CStringSize(value));
+    char *string(reinterpret_cast<char *>(apr_palloc(pool, size)));
+    JSStringGetUTF8CString(value, string, size);
+    JSStringRelease(value);
+    return string;
+}
+
+SEL CYCastSEL(JSContextRef context, JSValueRef value) {
+    if (JSValueIsNull(context, value))
+        return NULL;
+    else if (JSValueIsObjectOfClass(context, value, sel_))
+        return reinterpret_cast<SEL>(JSObjectGetPrivate((JSObjectRef) value));
+    else {
+        JSValueRef exception(NULL);
+        JSStringRef string(JSValueToStringCopy(context, value, &exception));
+        CYThrow(context, exception);
+        size_t size(JSStringGetMaximumUTF8CStringSize(string));
+        char utf8[size];
+        JSStringGetUTF8CString(string, utf8, size);
+        JSStringRelease(string);
+        return sel_registerName(utf8);
+    }
+}
+
+void CYToFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, void *data, JSValueRef value) {
+    switch (type->primitive) {
+        case sig::boolean_P:
+            *reinterpret_cast<bool *>(data) = JSValueToBoolean(context, value);
+        break;
+
+#define CYToFFI_(primitive, native) \
+        case sig::primitive ## _P: { \
+            JSValueRef exception(NULL); \
+            double number(JSValueToNumber(context, value, &exception)); \
+            CYThrow(context, exception); \
+            *reinterpret_cast<native *>(data) = number; \
+        } break;
+
+        CYToFFI_(uchar, unsigned char)
+        CYToFFI_(char, char)
+        CYToFFI_(ushort, unsigned short)
+        CYToFFI_(short, short)
+        CYToFFI_(ulong, unsigned long)
+        CYToFFI_(long, long)
+        CYToFFI_(uint, unsigned int)
+        CYToFFI_(int, int)
+        CYToFFI_(ulonglong, unsigned long long)
+        CYToFFI_(longlong, long long)
+        CYToFFI_(float, float)
+        CYToFFI_(double, double)
+
+        case sig::object_P:
+        case sig::typename_P:
+            *reinterpret_cast<id *>(data) = CYCastNSObject(context, value);
+        break;
+
+        case sig::selector_P:
+            *reinterpret_cast<SEL *>(data) = CYCastSEL(context, value);
+        break;
+
+        case sig::pointer_P: {
+            void *&pointer(*reinterpret_cast<void **>(data));
+            if (JSValueIsNull(context, value))
+                pointer = NULL;
+            else if (JSValueIsObjectOfClass(context, value, ptr_))
+                pointer = JSObjectGetPrivate((JSObjectRef) value);
+            else {
+                JSValueRef exception(NULL);
+                double number(JSValueToNumber(context, value, &exception));
+                CYThrow(context, exception);
+                pointer = reinterpret_cast<void *>(static_cast<uintptr_t>(number));
+            }
+        } break;
+
+        case sig::string_P: {
+            JSValueRef exception(NULL);
+            JSStringRef string(JSValueToStringCopy(context, value, &exception));
+            CYThrow(context, exception);
+            size_t size(JSStringGetMaximumUTF8CStringSize(string));
+            char *utf8(reinterpret_cast<char *>(apr_palloc(pool, size)));
+            JSStringGetUTF8CString(string, utf8, size);
+            JSStringRelease(string);
+            *reinterpret_cast<char **>(data) = utf8;
+        } break;
+
+        case sig::struct_P:
+            goto fail;
+
+        case sig::void_P:
+        break;
+
+        default: fail:
+            NSLog(@"CYToFFI(%c)\n", type->primitive);
+            _assert(false);
+    }
+}
+
+JSValueRef CYFromFFI(apr_pool_t *pool, JSContextRef context, sig::Type *type, void *data) {
+    JSValueRef value;
+
+    switch (type->primitive) {
+        case sig::boolean_P:
+            value = JSValueMakeBoolean(context, *reinterpret_cast<bool *>(data));
+        break;
+
+#define CYFromFFI_(primitive, native) \
+        case sig::primitive ## _P: \
+            value = JSValueMakeNumber(context, *reinterpret_cast<native *>(data)); \
+        break;
+
+        CYFromFFI_(uchar, unsigned char)
+        CYFromFFI_(char, char)
+        CYFromFFI_(ushort, unsigned short)
+        CYFromFFI_(short, short)
+        CYFromFFI_(ulong, unsigned long)
+        CYFromFFI_(long, long)
+        CYFromFFI_(uint, unsigned int)
+        CYFromFFI_(int, int)
+        CYFromFFI_(ulonglong, unsigned long long)
+        CYFromFFI_(longlong, long long)
+        CYFromFFI_(float, float)
+        CYFromFFI_(double, double)
+
+        case sig::object_P:
+        case sig::typename_P: {
+            value = CYCastJSValue(context, *reinterpret_cast<id *>(data));
+        } break;
+
+        case sig::selector_P: {
+            SEL sel(*reinterpret_cast<SEL *>(data));
+            value = sel == NULL ? JSValueMakeNull(context) : JSObjectMake(context, sel_, sel);
+        } break;
+
+        case sig::pointer_P: {
+            void *pointer(*reinterpret_cast<void **>(data));
+            value = pointer == NULL ? JSValueMakeNull(context) : JSObjectMake(context, ptr_, pointer);
+        } break;
+
+        case sig::string_P: {
+            char *utf8(*reinterpret_cast<char **>(data));
+            value = utf8 == NULL ? JSValueMakeNull(context) : JSValueMakeString(context, CYString(utf8));
+        } break;
+
+        case sig::struct_P:
+            goto fail;
+
+        case sig::void_P:
+            value = NULL;
+        break;
+
+        default: fail:
+            NSLog(@"CYFromFFI(%c)\n", type->primitive);
+            _assert(false);
+    }
+
+    return value;
+}
+
+class CYPool {
+  private:
+    apr_pool_t *pool_;
+
+  public:
+    CYPool() {
+        apr_pool_create(&pool_, NULL);
+    }
+
+    ~CYPool() {
+        apr_pool_destroy(pool_);
+    }
+
+    operator apr_pool_t *() const {
+        return pool_;
+    }
+};
+
+static JSValueRef CYCallFunction(JSContextRef context, size_t count, const JSValueRef *arguments, JSValueRef *exception, sig::Signature *signature, ffi_cif *cif, void (*function)()) {
+    @try {
+        CYPool pool;
+        void *values[count];
+
+        for (unsigned index(0); index != count; ++index) {
+            sig::Element *element(&signature->elements[index + 1]);
+            values[index] = apr_palloc(pool, cif->arg_types[index]->size);
+            CYToFFI(pool, context, element->type, values[index], arguments[index]);
+        }
+
+        uint8_t value[cif->rtype->size];
+        ffi_call(cif, function, value, values);
+
+        return CYFromFFI(pool, context, signature->elements[0].type, value);
+    } @catch (id error) {
+        CYThrow(context, error, exception);
+        return NULL;
+    }
+}
+
+static JSValueRef $objc_msgSend(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { _pooled
+    if (count < 2)
+        _assert(false);
+
+    const char *type;
+
+    @try {
+        id self(CYCastNSObject(context, arguments[0]));
+        if (self == nil)
+            return JSValueMakeNull(context);
+        SEL _cmd(CYCastSEL(context, arguments[1]));
+
+        // XXX: what happens if you pass a NULL SEL?
+        NSMethodSignature *method([self methodSignatureForSelector:_cmd]);
+        // XXX: if the selector doesn't exist, throw an exception
+
+        type = [[method _typeString] UTF8String];
+    } @catch (id error) {
+        CYThrow(context, error, exception);
+        return NULL;
+    }
+
+    CYPool pool;
+
+    sig::Signature signature;
+    sig::Parse(pool, &signature, type);
+
+    void (*function)() = reinterpret_cast<void (*)()>(&objc_msgSend);
+
+    ffi_cif cif;
+    sig::sig_ffi_cif(pool, &sig::sig_objc_ffi_type, &signature, &cif);
+
+    return CYCallFunction(context, count, arguments, exception, &signature, &cif, function);
+}
+
+static JSValueRef ffi_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) {
+    ffiData *data(reinterpret_cast<ffiData *>(JSObjectGetPrivate(object)));
+    if (count != data->signature_.count - 1)
+        _assert(false);
+    return CYCallFunction(context, count, arguments, exception, &data->signature_, &data->cif_, data->function_);
+}
+
+static void ffi_finalize(JSObjectRef object) {
+    ffiData *data(reinterpret_cast<ffiData *>(JSObjectGetPrivate(object)));
+    apr_pool_destroy(data->pool_);
+}
+
+void CYSetFunction(JSContextRef context, JSObjectRef object, const char *name, void (*function)(), const char *type) {
+    apr_pool_t *pool;
+    apr_pool_create(&pool, NULL);
+
+    ffiData *data(reinterpret_cast<ffiData *>(apr_palloc(pool, sizeof(ffiData))));
+
+    data->pool_ = pool;
+    data->function_ = function;
+    data->type_ = apr_pstrdup(pool, type);
+
+    sig::Parse(pool, &data->signature_, type);
+    sig::sig_ffi_cif(pool, &sig::sig_objc_ffi_type, &data->signature_, &data->cif_);
+
+    JSObjectRef value(JSObjectMake(context, ffi_, data));
+    CYSetProperty(context, object, name, value);
+}
+
+MSInitialize { _pooled
+    apr_initialize();
 
     NSCFBoolean_ = objc_getClass("NSCFBoolean");
 
@@ -508,24 +896,74 @@ MSInitialize {
     JSClassRef obc(JSClassCreate(&definition));
 
     definition = kJSClassDefinitionEmpty;
+    definition.className = "ffi";
+    definition.callAsFunction = &ffi_callAsFunction;
+    definition.finalize = &ffi_finalize;
+    ffi_ = JSClassCreate(&definition);
+
+    definition = kJSClassDefinitionEmpty;
+    definition.className = "ptr";
+    ptr_ = JSClassCreate(&definition);
+
+    definition = kJSClassDefinitionEmpty;
+    definition.className = "sel";
+    sel_ = JSClassCreate(&definition);
+
+    definition = kJSClassDefinitionEmpty;
+    definition.className = "joc";
     definition.getProperty = &joc_getProperty;
+    definition.finalize = &joc_finalize;
     joc_ = JSClassCreate(&definition);
 
-    context_ = JSGlobalContextCreate(obc);
-
-    JSObjectRef global(JSContextGetGlobalObject(JSGetContext()));
+    JSContextRef context(JSGlobalContextCreate(obc));
+    Context_ = context;
+
+    JSObjectRef global(JSContextGetGlobalObject(context));
+
+#define CYSetFunction_(name, type) \
+    CYSetFunction(context, global, #name, reinterpret_cast<void (*)()>(&name), type)
+
+    CYSetFunction_(class_createInstance, "@#L");
+    CYSetFunction_(class_getInstanceSize, "L#");
+    CYSetFunction_(class_getIvarLayout, "*#");
+    CYSetFunction_(class_getName, "*#");
+    CYSetFunction_(class_getSuperclass, "##");
+    CYSetFunction_(class_getVersion, "i#");
+    CYSetFunction_(class_isMetaClass, "B#");
+    CYSetFunction_(class_respondsToSelector, "B#:");
+    CYSetFunction_(class_setSuperclass, "###");
+    CYSetFunction_(class_setVersion, "v#i");
+    CYSetFunction_(objc_allocateClassPair, "##*L");
+    CYSetFunction_(objc_getClass, "#*");
+    CYSetFunction_(objc_getFutureClass, "#*");
+    CYSetFunction_(objc_getMetaClass, "@*");
+    CYSetFunction_(objc_getRequiredClass, "@*");
+    CYSetFunction_(objc_lookUpClass, "@*");
+    CYSetFunction_(objc_registerClassPair, "v#");
+    CYSetFunction_(objc_setFutureClass, "v#*");
+    CYSetFunction_(object_copy, "@@L");
+    CYSetFunction_(object_dispose, "@@");
+    CYSetFunction_(object_getClass, "#@");
+    CYSetFunction_(object_getClassName, "*@");
+    CYSetFunction_(object_setClass, "#@#");
+    CYSetFunction_(sel_getName, "*:");
+    CYSetFunction_(sel_getUid, ":*");
+    CYSetFunction_(sel_isEqual, "B::");
+    CYSetFunction_(sel_registerName, ":*");
+
+    CYSetProperty(context, global, "objc_msgSend", JSObjectMakeFunctionWithCallback(context, CYString("objc_msgSend"), &$objc_msgSend));
+
+    CYSetProperty(context, global, "YES", JSValueMakeBoolean(context, true));
+    CYSetProperty(context, global, "NO", JSValueMakeBoolean(context, true));
+    CYSetProperty(context, global, "nil", JSValueMakeNull(context));
 
     name_ = JSStringCreateWithUTF8CString("name");
     message_ = JSStringCreateWithUTF8CString("message");
     length_ = JSStringCreateWithUTF8CString("length");
 
-    JSStringRef name(JSStringCreateWithUTF8CString("Array"));
     JSValueRef exception(NULL);
-    JSValueRef value(JSObjectGetProperty(JSGetContext(), global, name, &exception));
-    CYThrow(context_, exception);
-    JSStringRelease(name);
+    JSValueRef value(JSObjectGetProperty(JSGetContext(), global, CYString("Array"), &exception));
+    CYThrow(context, exception);
     Array_ = JSValueToObject(JSGetContext(), value, &exception);
-    CYThrow(context_, exception);
-
-    [pool release];
+    CYThrow(context, exception);
 }