/* This file is part of the WebKit open source project. This file has been generated by generate-bindings.pl. DO NOT MODIFY! This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include "JSTestNamedConstructor.h" #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "TestNamedConstructor.h" #include #include using namespace JSC; namespace WebCore { /* Hash table for constructor */ static const HashTableValue JSTestNamedConstructorTableValues[] = { { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsTestNamedConstructorConstructor), (intptr_t)0, NoIntrinsic }, { 0, 0, 0, 0, NoIntrinsic } }; static const HashTable JSTestNamedConstructorTable = { 2, 1, JSTestNamedConstructorTableValues, 0 }; /* Hash table for constructor */ static const HashTableValue JSTestNamedConstructorConstructorTableValues[] = { { 0, 0, 0, 0, NoIntrinsic } }; static const HashTable JSTestNamedConstructorConstructorTable = { 1, 0, JSTestNamedConstructorConstructorTableValues, 0 }; const ClassInfo JSTestNamedConstructorConstructor::s_info = { "TestNamedConstructorConstructor", &Base::s_info, &JSTestNamedConstructorConstructorTable, 0, CREATE_METHOD_TABLE(JSTestNamedConstructorConstructor) }; JSTestNamedConstructorConstructor::JSTestNamedConstructorConstructor(Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { } void JSTestNamedConstructorConstructor::finishCreation(ExecState* exec, JSDOMGlobalObject* globalObject) { Base::finishCreation(exec->vm()); ASSERT(inherits(&s_info)); putDirect(exec->vm(), exec->propertyNames().prototype, JSTestNamedConstructorPrototype::self(exec, globalObject), DontDelete | ReadOnly); putDirect(exec->vm(), exec->propertyNames().length, jsNumber(0), ReadOnly | DontDelete | DontEnum); } bool JSTestNamedConstructorConstructor::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSTestNamedConstructorConstructorTable, jsCast(cell), propertyName, slot); } bool JSTestNamedConstructorConstructor::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSTestNamedConstructorConstructorTable, jsCast(object), propertyName, descriptor); } EncodedJSValue JSC_HOST_CALL JSTestNamedConstructorNamedConstructor::constructJSTestNamedConstructor(ExecState* exec) { JSTestNamedConstructorNamedConstructor* castedThis = jsCast(exec->callee()); if (exec->argumentCount() < 1) return throwVMError(exec, createNotEnoughArgumentsError(exec)); ExceptionCode ec = 0; const String& str1(exec->argument(0).isEmpty() ? String() : exec->argument(0).toString(exec)->value(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); const String& str2(exec->argument(1).isEmpty() ? String() : exec->argument(1).toString(exec)->value(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); const String& str3(argumentOrNull(exec, 2).isEmpty() ? String() : argumentOrNull(exec, 2).toString(exec)->value(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); RefPtr object = TestNamedConstructor::createForJSConstructor(castedThis->document(), str1, str2, str3, ec); if (ec) { setDOMException(exec, ec); return JSValue::encode(JSValue()); } return JSValue::encode(asObject(toJS(exec, castedThis->globalObject(), object.get()))); } const ClassInfo JSTestNamedConstructorNamedConstructor::s_info = { "AudioConstructor", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(JSTestNamedConstructorNamedConstructor) }; JSTestNamedConstructorNamedConstructor::JSTestNamedConstructorNamedConstructor(Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorWithDocument(structure, globalObject) { } void JSTestNamedConstructorNamedConstructor::finishCreation(ExecState* exec, JSDOMGlobalObject* globalObject) { Base::finishCreation(globalObject); ASSERT(inherits(&s_info)); putDirect(exec->vm(), exec->propertyNames().prototype, JSTestNamedConstructorPrototype::self(exec, globalObject), None); putDirect(exec->vm(), exec->propertyNames().length, jsNumber(0), ReadOnly | DontDelete | DontEnum); } ConstructType JSTestNamedConstructorNamedConstructor::getConstructData(JSCell*, ConstructData& constructData) { constructData.native.function = constructJSTestNamedConstructor; return ConstructTypeHost; } /* Hash table for prototype */ static const HashTableValue JSTestNamedConstructorPrototypeTableValues[] = { { 0, 0, 0, 0, NoIntrinsic } }; static const HashTable JSTestNamedConstructorPrototypeTable = { 1, 0, JSTestNamedConstructorPrototypeTableValues, 0 }; const ClassInfo JSTestNamedConstructorPrototype::s_info = { "TestNamedConstructorPrototype", &Base::s_info, &JSTestNamedConstructorPrototypeTable, 0, CREATE_METHOD_TABLE(JSTestNamedConstructorPrototype) }; JSObject* JSTestNamedConstructorPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } const ClassInfo JSTestNamedConstructor::s_info = { "TestNamedConstructor", &Base::s_info, &JSTestNamedConstructorTable, 0 , CREATE_METHOD_TABLE(JSTestNamedConstructor) }; JSTestNamedConstructor::JSTestNamedConstructor(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSDOMWrapper(structure, globalObject) , m_impl(impl.leakRef()) { } void JSTestNamedConstructor::finishCreation(VM& vm) { Base::finishCreation(vm); ASSERT(inherits(&s_info)); } JSObject* JSTestNamedConstructor::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return JSTestNamedConstructorPrototype::create(exec->vm(), globalObject, JSTestNamedConstructorPrototype::createStructure(globalObject->vm(), globalObject, globalObject->objectPrototype())); } void JSTestNamedConstructor::destroy(JSC::JSCell* cell) { JSTestNamedConstructor* thisObject = static_cast(cell); thisObject->JSTestNamedConstructor::~JSTestNamedConstructor(); } JSTestNamedConstructor::~JSTestNamedConstructor() { releaseImplIfNotNull(); } bool JSTestNamedConstructor::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot) { JSTestNamedConstructor* thisObject = jsCast(cell); ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info); return getStaticValueSlot(exec, &JSTestNamedConstructorTable, thisObject, propertyName, slot); } bool JSTestNamedConstructor::getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) { JSTestNamedConstructor* thisObject = jsCast(object); ASSERT_GC_OBJECT_INHERITS(thisObject, &s_info); return getStaticValueDescriptor(exec, &JSTestNamedConstructorTable, thisObject, propertyName, descriptor); } JSValue jsTestNamedConstructorConstructor(ExecState* exec, JSValue slotBase, PropertyName) { JSTestNamedConstructor* domObject = jsCast(asObject(slotBase)); return JSTestNamedConstructor::getConstructor(exec, domObject->globalObject()); } JSValue JSTestNamedConstructor::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, jsCast(globalObject)); } JSValue JSTestNamedConstructor::getNamedConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, jsCast(globalObject)); } static inline bool isObservable(JSTestNamedConstructor* jsTestNamedConstructor) { if (jsTestNamedConstructor->hasCustomProperties()) return true; return false; } bool JSTestNamedConstructorOwner::isReachableFromOpaqueRoots(JSC::Handle handle, void*, SlotVisitor& visitor) { JSTestNamedConstructor* jsTestNamedConstructor = jsCast(handle.get().asCell()); if (jsTestNamedConstructor->impl()->hasPendingActivity()) return true; if (!isObservable(jsTestNamedConstructor)) return false; UNUSED_PARAM(visitor); return false; } void JSTestNamedConstructorOwner::finalize(JSC::Handle handle, void* context) { JSTestNamedConstructor* jsTestNamedConstructor = jsCast(handle.get().asCell()); DOMWrapperWorld* world = static_cast(context); uncacheWrapper(world, jsTestNamedConstructor->impl(), jsTestNamedConstructor); jsTestNamedConstructor->releaseImpl(); } #if ENABLE(BINDING_INTEGRITY) #if PLATFORM(WIN) #pragma warning(disable: 4483) extern "C" { extern void (*const __identifier("??_7TestNamedConstructor@WebCore@@6B@")[])(); } #else extern "C" { extern void* _ZTVN7WebCore20TestNamedConstructorE[]; } #endif #endif JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, TestNamedConstructor* impl) { if (!impl) return jsNull(); if (JSValue result = getExistingWrapper(exec, impl)) return result; #if ENABLE(BINDING_INTEGRITY) void* actualVTablePointer = *(reinterpret_cast(impl)); #if PLATFORM(WIN) void* expectedVTablePointer = reinterpret_cast(__identifier("??_7TestNamedConstructor@WebCore@@6B@")); #else void* expectedVTablePointer = &_ZTVN7WebCore20TestNamedConstructorE[2]; #if COMPILER(CLANG) // If this fails TestNamedConstructor does not have a vtable, so you need to add the // ImplementationLacksVTable attribute to the interface definition COMPILE_ASSERT(__is_polymorphic(TestNamedConstructor), TestNamedConstructor_is_not_polymorphic); #endif #endif // If you hit this assertion you either have a use after free bug, or // TestNamedConstructor has subclasses. If TestNamedConstructor has subclasses that get passed // to toJS() we currently require TestNamedConstructor you to opt out of binding hardening // by adding the SkipVTableValidation attribute to the interface IDL definition RELEASE_ASSERT(actualVTablePointer == expectedVTablePointer); #endif ReportMemoryCost::reportMemoryCost(exec, impl); return createNewWrapper(exec, globalObject, impl); } TestNamedConstructor* toTestNamedConstructor(JSC::JSValue value) { return value.inherits(&JSTestNamedConstructor::s_info) ? jsCast(asObject(value))->impl() : 0; } }