/* 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 "JSMutationEvent.h" #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "JSNode.h" #include "KURL.h" #include "MutationEvent.h" #include "Node.h" #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSMutationEvent); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSMutationEventTableValues[7] = { { "relatedNode", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventRelatedNode), (intptr_t)0 THUNK_GENERATOR(0) }, { "prevValue", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventPrevValue), (intptr_t)0 THUNK_GENERATOR(0) }, { "newValue", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventNewValue), (intptr_t)0 THUNK_GENERATOR(0) }, { "attrName", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventAttrName), (intptr_t)0 THUNK_GENERATOR(0) }, { "attrChange", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventAttrChange), (intptr_t)0 THUNK_GENERATOR(0) }, { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsMutationEventConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSMutationEventTable = { 17, 15, JSMutationEventTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSMutationEventConstructorTableValues[4] = { { "MODIFICATION", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventMODIFICATION), (intptr_t)0 THUNK_GENERATOR(0) }, { "ADDITION", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventADDITION), (intptr_t)0 THUNK_GENERATOR(0) }, { "REMOVAL", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventREMOVAL), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSMutationEventConstructorTable = { 8, 7, JSMutationEventConstructorTableValues, 0 }; COMPILE_ASSERT(1 == MutationEvent::MODIFICATION, MutationEventEnumMODIFICATIONIsWrongUseDontCheckEnums); COMPILE_ASSERT(2 == MutationEvent::ADDITION, MutationEventEnumADDITIONIsWrongUseDontCheckEnums); COMPILE_ASSERT(3 == MutationEvent::REMOVAL, MutationEventEnumREMOVALIsWrongUseDontCheckEnums); class JSMutationEventConstructor : public DOMConstructorObject { public: JSMutationEventConstructor(JSC::ExecState*, JSC::Structure*, JSDOMGlobalObject*); virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); static const JSC::ClassInfo s_info; static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; const ClassInfo JSMutationEventConstructor::s_info = { "MutationEventConstructor", &DOMConstructorObject::s_info, &JSMutationEventConstructorTable, 0 }; JSMutationEventConstructor::JSMutationEventConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSMutationEventPrototype::self(exec, globalObject), DontDelete | ReadOnly); } bool JSMutationEventConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSMutationEventConstructorTable, this, propertyName, slot); } bool JSMutationEventConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSMutationEventConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSMutationEventPrototypeTableValues[5] = { { "MODIFICATION", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventMODIFICATION), (intptr_t)0 THUNK_GENERATOR(0) }, { "ADDITION", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventADDITION), (intptr_t)0 THUNK_GENERATOR(0) }, { "REMOVAL", DontDelete | ReadOnly, (intptr_t)static_cast(jsMutationEventREMOVAL), (intptr_t)0 THUNK_GENERATOR(0) }, { "initMutationEvent", DontDelete | Function, (intptr_t)static_cast(jsMutationEventPrototypeFunctionInitMutationEvent), (intptr_t)8 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSMutationEventPrototypeTable = { 8, 7, JSMutationEventPrototypeTableValues, 0 }; const ClassInfo JSMutationEventPrototype::s_info = { "MutationEventPrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSMutationEventPrototypeTable, 0 }; JSObject* JSMutationEventPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSMutationEventPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticPropertySlot(exec, &JSMutationEventPrototypeTable, this, propertyName, slot); } bool JSMutationEventPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticPropertyDescriptor(exec, &JSMutationEventPrototypeTable, this, propertyName, descriptor); } const ClassInfo JSMutationEvent::s_info = { "MutationEvent", &JSEvent::s_info, &JSMutationEventTable, 0 }; JSMutationEvent::JSMutationEvent(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSEvent(structure, globalObject, impl) { ASSERT(inherits(&s_info)); } JSObject* JSMutationEvent::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSMutationEventPrototype(exec->globalData(), globalObject, JSMutationEventPrototype::createStructure(exec->globalData(), JSEventPrototype::self(exec, globalObject))); } bool JSMutationEvent::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSMutationEventTable, this, propertyName, slot); } bool JSMutationEvent::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSMutationEventTable, this, propertyName, descriptor); } JSValue jsMutationEventRelatedNode(ExecState* exec, JSValue slotBase, const Identifier&) { JSMutationEvent* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); MutationEvent* imp = static_cast(castedThis->impl()); JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->relatedNode())); return result; } JSValue jsMutationEventPrevValue(ExecState* exec, JSValue slotBase, const Identifier&) { JSMutationEvent* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); MutationEvent* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->prevValue()); return result; } JSValue jsMutationEventNewValue(ExecState* exec, JSValue slotBase, const Identifier&) { JSMutationEvent* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); MutationEvent* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->newValue()); return result; } JSValue jsMutationEventAttrName(ExecState* exec, JSValue slotBase, const Identifier&) { JSMutationEvent* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); MutationEvent* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->attrName()); return result; } JSValue jsMutationEventAttrChange(ExecState* exec, JSValue slotBase, const Identifier&) { JSMutationEvent* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); MutationEvent* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(imp->attrChange()); return result; } JSValue jsMutationEventConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSMutationEvent* domObject = static_cast(asObject(slotBase)); return JSMutationEvent::getConstructor(exec, domObject->globalObject()); } JSValue JSMutationEvent::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } EncodedJSValue JSC_HOST_CALL jsMutationEventPrototypeFunctionInitMutationEvent(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSMutationEvent::s_info)) return throwVMTypeError(exec); JSMutationEvent* castedThis = static_cast(asObject(thisValue)); MutationEvent* imp = static_cast(castedThis->impl()); const String& type(ustringToString(exec->argument(0).toString(exec))); if (exec->hadException()) return JSValue::encode(jsUndefined()); bool canBubble(exec->argument(1).toBoolean(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); bool cancelable(exec->argument(2).toBoolean(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); Node* relatedNode(toNode(exec->argument(3))); if (exec->hadException()) return JSValue::encode(jsUndefined()); const String& prevValue(ustringToString(exec->argument(4).toString(exec))); if (exec->hadException()) return JSValue::encode(jsUndefined()); const String& newValue(ustringToString(exec->argument(5).toString(exec))); if (exec->hadException()) return JSValue::encode(jsUndefined()); const String& attrName(ustringToString(exec->argument(6).toString(exec))); if (exec->hadException()) return JSValue::encode(jsUndefined()); unsigned short attrChange(exec->argument(7).toUInt32(exec)); if (exec->hadException()) return JSValue::encode(jsUndefined()); imp->initMutationEvent(type, canBubble, cancelable, relatedNode, prevValue, newValue, attrName, attrChange); return JSValue::encode(jsUndefined()); } // Constant getters JSValue jsMutationEventMODIFICATION(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(1)); } JSValue jsMutationEventADDITION(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(2)); } JSValue jsMutationEventREMOVAL(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(3)); } }