X-Git-Url: https://git.saurik.com/apple/javascriptcore.git/blobdiff_plain/b37bf2e156556c589aea3e1f58a377f2b1189665..12899fa232562c774004a3a9d7d3149944dec712:/API/JSCallbackFunction.cpp diff --git a/API/JSCallbackFunction.cpp b/API/JSCallbackFunction.cpp index fb3937d..38fdc1c 100644 --- a/API/JSCallbackFunction.cpp +++ b/API/JSCallbackFunction.cpp @@ -1,6 +1,5 @@ -// -*- mode: c++; c-basic-offset: 4 -*- /* - * Copyright (C) 2006 Apple Computer, Inc. All rights reserved. + * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -25,44 +24,50 @@ */ #include "config.h" -#include #include "JSCallbackFunction.h" +#include "APICallbackFunction.h" #include "APICast.h" -#include "function.h" -#include "function_object.h" -#include +#include "APIShims.h" +#include "CodeBlock.h" +#include "Error.h" +#include "ExceptionHelpers.h" +#include "FunctionPrototype.h" +#include "JSFunction.h" +#include "JSGlobalObject.h" +#include "JSLock.h" +#include "Operations.h" #include -namespace KJS { +namespace JSC { -const ClassInfo JSCallbackFunction::info = { "CallbackFunction", &InternalFunctionImp::info, 0}; +ASSERT_HAS_TRIVIAL_DESTRUCTOR(JSCallbackFunction); -JSCallbackFunction::JSCallbackFunction(ExecState* exec, JSObjectCallAsFunctionCallback callback, const Identifier& name) - : InternalFunctionImp(exec->lexicalGlobalObject()->functionPrototype(), name) +const ClassInfo JSCallbackFunction::s_info = { "CallbackFunction", &InternalFunction::s_info, 0, 0, CREATE_METHOD_TABLE(JSCallbackFunction) }; + +JSCallbackFunction::JSCallbackFunction(JSGlobalObject* globalObject, Structure* structure, JSObjectCallAsFunctionCallback callback) + : InternalFunction(globalObject, structure) , m_callback(callback) { } -// InternalFunctionImp mish-mashes constructor and function behavior -- we should -// refactor the code so this override isn't necessary -bool JSCallbackFunction::implementsHasInstance() const { - return false; +void JSCallbackFunction::finishCreation(VM& vm, const String& name) +{ + Base::finishCreation(vm, name); + ASSERT(inherits(&s_info)); } -JSValue* JSCallbackFunction::callAsFunction(ExecState* exec, JSObject* thisObj, const List &args) +JSCallbackFunction* JSCallbackFunction::create(ExecState* exec, JSGlobalObject* globalObject, JSObjectCallAsFunctionCallback callback, const String& name) { - JSContextRef execRef = toRef(exec); - JSObjectRef thisRef = toRef(this); - JSObjectRef thisObjRef = toRef(thisObj); - - int argumentCount = static_cast(args.size()); - Vector arguments(argumentCount); - for (int i = 0; i < argumentCount; i++) - arguments[i] = toRef(args[i]); + JSCallbackFunction* function = new (NotNull, allocateCell(*exec->heap())) JSCallbackFunction(globalObject, globalObject->callbackFunctionStructure(), callback); + function->finishCreation(exec->vm(), name); + return function; +} - JSLock::DropAllLocks dropAllLocks; - return toJS(m_callback(execRef, thisRef, thisObjRef, argumentCount, arguments.data(), toRef(exec->exceptionSlot()))); +CallType JSCallbackFunction::getCallData(JSCell*, CallData& callData) +{ + callData.native.function = APICallbackFunction::call; + return CallTypeHost; } -} // namespace KJS +} // namespace JSC