blob: 263973fe05d6f3670a31f23abe94ddafa05f44bc [file] [log] [blame]
/*
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 "JSattribute.h"
#include "URL.h"
#include "attribute.h"
#include <runtime/JSString.h>
#include <wtf/GetPtr.h>
using namespace JSC;
namespace WebCore {
/* Hash table */
static const HashTableValue JSattributeTableValues[] =
{
{ "readonly", DontDelete | ReadOnly, NoIntrinsic, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsattributeReadonly), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(0) },
{ "constructor", DontEnum | ReadOnly, NoIntrinsic, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsattributeConstructor), (intptr_t) static_cast<PutPropertySlot::PutValueFunc>(0) },
{ 0, 0, NoIntrinsic, 0, 0 }
};
static const HashTable JSattributeTable = { 4, 3, true, JSattributeTableValues, 0 };
/* Hash table for constructor */
static const HashTableValue JSattributeConstructorTableValues[] =
{
{ 0, 0, NoIntrinsic, 0, 0 }
};
static const HashTable JSattributeConstructorTable = { 1, 0, false, JSattributeConstructorTableValues, 0 };
const ClassInfo JSattributeConstructor::s_info = { "attributeConstructor", &Base::s_info, &JSattributeConstructorTable, 0, CREATE_METHOD_TABLE(JSattributeConstructor) };
JSattributeConstructor::JSattributeConstructor(Structure* structure, JSDOMGlobalObject* globalObject)
: DOMConstructorObject(structure, globalObject)
{
}
void JSattributeConstructor::finishCreation(VM& vm, JSDOMGlobalObject* globalObject)
{
Base::finishCreation(vm);
ASSERT(inherits(info()));
putDirect(vm, vm.propertyNames->prototype, JSattributePrototype::self(vm, globalObject), DontDelete | ReadOnly);
putDirect(vm, vm.propertyNames->length, jsNumber(0), ReadOnly | DontDelete | DontEnum);
}
bool JSattributeConstructor::getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
{
return getStaticValueSlot<JSattributeConstructor, JSDOMWrapper>(exec, JSattributeConstructorTable, jsCast<JSattributeConstructor*>(object), propertyName, slot);
}
/* Hash table for prototype */
static const HashTableValue JSattributePrototypeTableValues[] =
{
{ 0, 0, NoIntrinsic, 0, 0 }
};
static const HashTable JSattributePrototypeTable = { 1, 0, false, JSattributePrototypeTableValues, 0 };
const ClassInfo JSattributePrototype::s_info = { "attributePrototype", &Base::s_info, &JSattributePrototypeTable, 0, CREATE_METHOD_TABLE(JSattributePrototype) };
JSObject* JSattributePrototype::self(VM& vm, JSGlobalObject* globalObject)
{
return getDOMPrototype<JSattribute>(vm, globalObject);
}
const ClassInfo JSattribute::s_info = { "attribute", &Base::s_info, &JSattributeTable, 0 , CREATE_METHOD_TABLE(JSattribute) };
JSattribute::JSattribute(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr<attribute> impl)
: JSDOMWrapper(structure, globalObject)
, m_impl(impl.leakRef())
{
}
void JSattribute::finishCreation(VM& vm)
{
Base::finishCreation(vm);
ASSERT(inherits(info()));
}
JSObject* JSattribute::createPrototype(VM& vm, JSGlobalObject* globalObject)
{
return JSattributePrototype::create(vm, globalObject, JSattributePrototype::createStructure(vm, globalObject, globalObject->errorPrototype()));
}
void JSattribute::destroy(JSC::JSCell* cell)
{
JSattribute* thisObject = static_cast<JSattribute*>(cell);
thisObject->JSattribute::~JSattribute();
}
JSattribute::~JSattribute()
{
releaseImplIfNotNull();
}
bool JSattribute::getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot)
{
JSattribute* thisObject = jsCast<JSattribute*>(object);
ASSERT_GC_OBJECT_INHERITS(thisObject, info());
return getStaticValueSlot<JSattribute, Base>(exec, JSattributeTable, thisObject, propertyName, slot);
}
EncodedJSValue jsattributeReadonly(ExecState* exec, EncodedJSValue slotBase, EncodedJSValue thisValue, PropertyName)
{
JSattribute* castedThis = jsDynamicCast<JSattribute*>(JSValue::decode(thisValue));
UNUSED_PARAM(slotBase);
if (!castedThis)
return throwVMTypeError(exec);
UNUSED_PARAM(exec);
attribute& impl = castedThis->impl();
JSValue result = jsStringWithCache(exec, impl.readonly());
return JSValue::encode(result);
}
EncodedJSValue jsattributeConstructor(ExecState* exec, EncodedJSValue thisValue, EncodedJSValue, PropertyName)
{
JSattribute* domObject = jsDynamicCast<JSattribute*>(JSValue::decode(thisValue));
if (!domObject)
return throwVMTypeError(exec);
if (!domObject)
return throwVMTypeError(exec);
return JSValue::encode(JSattribute::getConstructor(exec->vm(), domObject->globalObject()));
}
JSValue JSattribute::getConstructor(VM& vm, JSGlobalObject* globalObject)
{
return getDOMConstructor<JSattributeConstructor>(vm, jsCast<JSDOMGlobalObject*>(globalObject));
}
bool JSattributeOwner::isReachableFromOpaqueRoots(JSC::Handle<JSC::Unknown> handle, void*, SlotVisitor& visitor)
{
UNUSED_PARAM(handle);
UNUSED_PARAM(visitor);
return false;
}
void JSattributeOwner::finalize(JSC::Handle<JSC::Unknown> handle, void* context)
{
JSattribute* jsattribute = jsCast<JSattribute*>(handle.get().asCell());
DOMWrapperWorld& world = *static_cast<DOMWrapperWorld*>(context);
uncacheWrapper(world, &jsattribute->impl(), jsattribute);
jsattribute->releaseImpl();
}
#if ENABLE(BINDING_INTEGRITY)
#if PLATFORM(WIN)
#pragma warning(disable: 4483)
extern "C" { extern void (*const __identifier("??_7attribute@WebCore@@6B@")[])(); }
#else
extern "C" { extern void* _ZTVN7WebCore9attributeE[]; }
#endif
#endif
JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, attribute* impl)
{
if (!impl)
return jsNull();
if (JSValue result = getExistingWrapper<JSattribute>(exec, impl))
return result;
#if ENABLE(BINDING_INTEGRITY)
void* actualVTablePointer = *(reinterpret_cast<void**>(impl));
#if PLATFORM(WIN)
void* expectedVTablePointer = reinterpret_cast<void*>(__identifier("??_7attribute@WebCore@@6B@"));
#else
void* expectedVTablePointer = &_ZTVN7WebCore9attributeE[2];
#if COMPILER(CLANG)
// If this fails attribute does not have a vtable, so you need to add the
// ImplementationLacksVTable attribute to the interface definition
COMPILE_ASSERT(__is_polymorphic(attribute), attribute_is_not_polymorphic);
#endif
#endif
// If you hit this assertion you either have a use after free bug, or
// attribute has subclasses. If attribute has subclasses that get passed
// to toJS() we currently require attribute you to opt out of binding hardening
// by adding the SkipVTableValidation attribute to the interface IDL definition
RELEASE_ASSERT(actualVTablePointer == expectedVTablePointer);
#endif
ReportMemoryCost<attribute>::reportMemoryCost(exec, impl);
return createNewWrapper<JSattribute>(exec, globalObject, impl);
}
attribute* toattribute(JSC::JSValue value)
{
return value.inherits(JSattribute::info()) ? &jsCast<JSattribute*>(value)->impl() : 0;
}
}