static JSClassRef Instance_;
static JSClassRef ArrayInstance_;
+static JSClassRef BooleanInstance_;
static JSClassRef FunctionInstance_;
+static JSClassRef NumberInstance_;
static JSClassRef ObjectInstance_;
static JSClassRef StringInstance_;
static Class NSArray_;
static Class NSBlock_;
static Class NSDictionary_;
+static Class NSNumber_;
static Class NSString_;
static Class Object_;
JSClassRef _class(NULL);
JSValueRef prototype;
- if (self == NSArray_)
+#ifdef __APPLE__
+ if (self == NSCFBoolean_)
+#else
+ if (self == NSBoolNumber_)
+#endif
+ prototype = CYGetCachedObject(context, CYJSString("BooleanInstance_prototype"));
+ else if (self == NSArray_)
prototype = CYGetCachedObject(context, CYJSString("ArrayInstance_prototype"));
else if (self == NSBlock_)
prototype = CYGetCachedObject(context, CYJSString("FunctionInstance_prototype"));
+ else if (self == NSNumber_)
+ prototype = CYGetCachedObject(context, CYJSString("NumberInstance_prototype"));
else if (self == NSDictionary_)
prototype = CYGetCachedObject(context, CYJSString("ObjectInstance_prototype"));
else if (self == NSString_)
} }
JSObjectRef Instance::Make(JSContextRef context, id object, Flags flags) {
- JSObjectRef value(JSObjectMake(context, Instance_, new Instance(object, flags)));
+ JSObjectRef value(JSObjectMake(context, [object isKindOfClass:NSBlock_] ? FunctionInstance_ : Instance_, new Instance(object, flags)));
JSObjectSetPrototype(context, value, CYGetClassPrototype(context, object_getClass(object)));
return value;
}
Instance::~Instance() {
if ((flags_ & Transient) == 0)
- // XXX: does this handle background threads correctly?
- // XXX: this simply does not work on the console because I'm stupid
- [GetValue() performSelector:@selector(release) withObject:nil afterDelay:0];
+ [GetValue() release];
}
struct Message_privateData :
/* }}} */
_finline bool CYJSValueIsNSObject(JSContextRef context, JSValueRef value) {
- return JSValueIsObjectOfClass(context, value, Instance_);
+ return JSValueIsObjectOfClass(context, value, Instance_) || JSValueIsObjectOfClass(context, value, FunctionInstance_);
}
_finline bool CYJSValueIsInstanceOfCachedConstructor(JSContextRef context, JSValueRef value, JSStringRef cache) {
CYPool pool;
const char *name(CYPoolCString(pool, context, property));
-
SEL sel(sel_registerName(name));
- objc_method *method(class_getInstanceMethod(_class, sel));
-
const char *type;
IMP imp;
type = sig::Unparse(pool, &message->signature_);
imp = reinterpret_cast<IMP>(message->GetValue());
} else {
+ objc_method *method(class_getInstanceMethod(_class, sel));
type = CYPoolTypeEncoding(pool, context, sel, method);
imp = CYMakeMessage(context, value, type);
}
+ objc_method *method(NULL);
+#if OBJC_API_VERSION >= 2
+ unsigned int size;
+ objc_method **methods(class_copyMethodList(_class, &size));
+ for (size_t i(0); i != size; ++i)
+ if (sel_isEqual(method_getName(methods[i]), sel)) {
+ method = methods[i];
+ break;
+ }
+ free(methods);
+#else
+ for (objc_method_list *methods(_class->methods); methods != NULL; methods = methods->method_next)
+ for (int i(0); i != methods->method_count; ++i)
+ if (sel_isEqual(method_getName(&methods->method_list[i]), sel)) {
+ method = &methods->method_list[i];
+ break;
+ }
+#endif
+
if (method != NULL)
method_setImplementation(method, imp);
else {
return value;
} CYCatch(NULL) }
-static JSValueRef Instance_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
- Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
- id self(internal->GetValue());
-
- if (![self isKindOfClass:NSBlock_])
- CYThrow("non-NSBlock object is not a function");
- // XXX: replace above logic with the following assertion
- //_assert([self isKindOfClass:NSBlock_]);
- // to do this, make it so FunctionInstance_ is the class of blocks
- // to do /that/, generalize the various "is exactly Instance_" checks
- // then, move Instance_callAsFunction to only be on FunctionInstance
-
+static const char *CYBlockEncoding(NSBlock *self) {
BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
+ if ((literal->flags & BLOCK_HAS_SIGNATURE) == 0)
+ return NULL;
+ uint8_t *descriptor(reinterpret_cast<uint8_t *>(literal->descriptor));
+ descriptor += sizeof(BlockDescriptor1);
+ if ((literal->flags & BLOCK_HAS_COPY_DISPOSE) != 0)
+ descriptor += sizeof(BlockDescriptor2);
+ BlockDescriptor3 *descriptor3(reinterpret_cast<BlockDescriptor3 *>(descriptor));
+ return descriptor3->signature;
+}
- if ((literal->flags & BLOCK_HAS_SIGNATURE) != 0) {
- uint8_t *descriptor(reinterpret_cast<uint8_t *>(literal->descriptor));
- descriptor += sizeof(BlockDescriptor1);
- if ((literal->flags & BLOCK_HAS_COPY_DISPOSE) != 0)
- descriptor += sizeof(BlockDescriptor2);
- BlockDescriptor3 *descriptor3(reinterpret_cast<BlockDescriptor3 *>(descriptor));
+static JSValueRef FunctionInstance_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+ Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
+ id self(internal->GetValue());
- if (const char *type = descriptor3->signature) {
- CYPool pool;
+ if (const char *encoding = CYBlockEncoding(self)) {
+ CYPool pool;
- void *setup[1];
- setup[0] = &self;
+ void *setup[1];
+ setup[0] = &self;
- sig::Signature signature;
- sig::Parse(pool, &signature, type, &Structor_);
+ sig::Signature signature;
+ sig::Parse(pool, &signature, encoding, &Structor_);
- ffi_cif cif;
- sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
+ ffi_cif cif;
+ sig::sig_ffi_cif(pool, &sig::ObjectiveC, &signature, &cif);
- void (*function)() = reinterpret_cast<void (*)()>(literal->invoke);
- return CYCallFunction(pool, context, 1, setup, count, arguments, false, &signature, &cif, function);
- }
+ BlockLiteral *literal(reinterpret_cast<BlockLiteral *>(self));
+ void (*function)() = reinterpret_cast<void (*)()>(literal->invoke);
+ return CYCallFunction(pool, context, 1, setup, count, arguments, false, &signature, &cif, function);
}
if (count != 0)
if (result == choice->query_.end())
continue;
- // XXX: if (size < class_getInstanceSize(*result))
- if ((class_getInstanceSize(*result) + 15) / 16 * 16 != size)
+ size_t needed(class_getInstanceSize(*result));
+ // XXX: if (size < needed)
+ if (needed <= 496 && (needed + 15) / 16 * 16 != size || needed > 496 && (needed + 511) / 512 * 512 != size)
continue;
CYArrayPush(context, choice->results_, CYCastJSValue(context, reinterpret_cast<id>(data)));
}
if (count != 1)
throw CYJSError(context, "choose() takes a class argument");
+ CYGarbageCollect(context);
+
CYPool pool;
Class _class(CYCastNSObject(&pool, context, arguments[0]));
return CYMakePointer(context, &internal->value_, _not(size_t), type, ffi, object);
} CYCatch(NULL) }
+static JSValueRef FunctionInstance_getProperty_type(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
+ Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
+ const char *encoding(CYBlockEncoding(internal->GetValue()));
+ if (encoding == NULL)
+ return CYJSNull(context);
+ // XXX: this should be stored on a FunctionInstance private value subclass
+ CYPool pool;
+ sig::Signature signature;
+ sig::Parse(pool, &signature, encoding, &Structor_);
+ return CYMakeType(context, &signature);
+} CYCatch(NULL) }
+
static JSValueRef Instance_getProperty_constructor(JSContextRef context, JSObjectRef object, JSStringRef property, JSValueRef *exception) { CYTry {
Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
return Instance::Make(context, (id) object_getClass(internal->GetValue()));
{NULL, NULL, NULL, 0}
};
+// XXX: this is sadly duplicated in FunctionInstance_staticValues
static JSStaticValue Instance_staticValues[5] = {
{"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
{"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
{NULL, NULL, NULL, 0}
};
+static JSStaticValue FunctionInstance_staticValues[6] = {
+ {"type", &FunctionInstance_getProperty_type, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
+ // XXX: this is sadly a duplicate of Instance_staticValues
+ {"constructor", &Instance_getProperty_constructor, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
+ {"messages", &Instance_getProperty_messages, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
+ {"prototype", &Instance_getProperty_prototype, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
+ {"value", &CYValue_getProperty_value, NULL, kJSPropertyAttributeReadOnly | kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
+ {NULL, NULL, NULL, 0}
+};
+
static JSStaticFunction Instance_staticFunctions[7] = {
{"$cya", &CYValue_callAsFunction_$cya, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
{"toCYON", &Instance_callAsFunction_toCYON, kJSPropertyAttributeDontEnum | kJSPropertyAttributeDontDelete},
NSArray_ = objc_getClass("NSArray");
NSBlock_ = objc_getClass("NSBlock");
NSDictionary_ = objc_getClass("NSDictionary");
+ NSNumber_ = objc_getClass("NSNumber");
NSString_ = objc_getClass("NSString");
Object_ = objc_getClass("Object");
definition.deleteProperty = &Instance_deleteProperty;
definition.getPropertyNames = &Instance_getPropertyNames;
definition.callAsConstructor = &Instance_callAsConstructor;
- definition.callAsFunction = &Instance_callAsFunction;
definition.hasInstance = &Instance_hasInstance;
definition.finalize = &CYFinalize;
Instance_ = JSClassCreate(&definition);
definition.className = "ArrayInstance";
ArrayInstance_ = JSClassCreate(&definition);
- definition.className = "FunctionInstance";
- FunctionInstance_ = JSClassCreate(&definition);
+ definition.className = "BooleanInstance";
+ BooleanInstance_ = JSClassCreate(&definition);
+
+ definition.className = "NumberInstance";
+ NumberInstance_ = JSClassCreate(&definition);
definition.className = "ObjectInstance";
ObjectInstance_ = JSClassCreate(&definition);
definition.className = "StringInstance";
StringInstance_ = JSClassCreate(&definition);
+ definition.className = "FunctionInstance";
+ definition.staticValues = FunctionInstance_staticValues;
+ definition.callAsFunction = &FunctionInstance_callAsFunction;
+ FunctionInstance_ = JSClassCreate(&definition);
+
definition = kJSClassDefinitionEmpty;
definition.className = "Class";
definition.staticFunctions = Class_staticFunctions;
definition = kJSClassDefinitionEmpty;
definition.className = "Message";
definition.staticFunctions = cy::Functor::StaticFunctions;
+ definition.staticValues = cy::Functor::StaticValues;
definition.callAsFunction = &Message_callAsFunction;
definition.finalize = &CYFinalize;
Message_ = JSClassCreate(&definition);
JSObjectRef Array_prototype(CYGetCachedObject(context, CYJSString("Array_prototype")));
JSObjectSetPrototype(context, ArrayInstance_prototype, Array_prototype);
+ JSObjectRef BooleanInstance(JSObjectMakeConstructor(context, BooleanInstance_, NULL));
+ JSObjectRef BooleanInstance_prototype(CYCastJSObject(context, CYGetProperty(context, BooleanInstance, prototype_s)));
+ CYSetProperty(context, cy, CYJSString("BooleanInstance_prototype"), BooleanInstance_prototype);
+ JSObjectRef Boolean_prototype(CYGetCachedObject(context, CYJSString("Boolean_prototype")));
+ JSObjectSetPrototype(context, BooleanInstance_prototype, Boolean_prototype);
+
JSObjectRef FunctionInstance(JSObjectMakeConstructor(context, FunctionInstance_, NULL));
JSObjectRef FunctionInstance_prototype(CYCastJSObject(context, CYGetProperty(context, FunctionInstance, prototype_s)));
CYSetProperty(context, cy, CYJSString("FunctionInstance_prototype"), FunctionInstance_prototype);
JSObjectRef Function_prototype(CYGetCachedObject(context, CYJSString("Function_prototype")));
JSObjectSetPrototype(context, FunctionInstance_prototype, Function_prototype);
+ JSObjectRef NumberInstance(JSObjectMakeConstructor(context, NumberInstance_, NULL));
+ JSObjectRef NumberInstance_prototype(CYCastJSObject(context, CYGetProperty(context, NumberInstance, prototype_s)));
+ CYSetProperty(context, cy, CYJSString("NumberInstance_prototype"), NumberInstance_prototype);
+ JSObjectRef Number_prototype(CYGetCachedObject(context, CYJSString("Number_prototype")));
+ JSObjectSetPrototype(context, NumberInstance_prototype, Number_prototype);
+
JSObjectRef ObjectInstance(JSObjectMakeConstructor(context, ObjectInstance_, NULL));
JSObjectRef ObjectInstance_prototype(CYCastJSObject(context, CYGetProperty(context, ObjectInstance, prototype_s)));
CYSetProperty(context, cy, CYJSString("ObjectInstance_prototype"), ObjectInstance_prototype);
CYSetProperty(context, cycript, CYJSString("objc_super"), Super);
JSObjectRef box(JSObjectMakeFunctionWithCallback(context, CYJSString("box"), &Instance_box_callAsFunction));
- CYSetProperty(context, Instance, CYJSString("box"), box);
+ CYSetProperty(context, Instance, CYJSString("box"), box, kJSPropertyAttributeDontEnum);
#ifdef __APPLE__
CYSetProperty(context, all, CYJSString("choose"), &choose, kJSPropertyAttributeDontEnum);