/* 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 "JSMediaList.h" #include "KURL.h" #include "MediaList.h" #include #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSMediaList); /* Hash table */ static const HashTableValue JSMediaListTableValues[4] = { { "mediaText", DontDelete, (intptr_t)jsMediaListMediaText, (intptr_t)setJSMediaListMediaText }, { "length", DontDelete|ReadOnly, (intptr_t)jsMediaListLength, (intptr_t)0 }, { "constructor", DontEnum|ReadOnly, (intptr_t)jsMediaListConstructor, (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSMediaListTable = #if ENABLE(PERFECT_HASH_SIZE) { 15, JSMediaListTableValues, 0 }; #else { 9, 7, JSMediaListTableValues, 0 }; #endif /* Hash table for constructor */ static const HashTableValue JSMediaListConstructorTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSMediaListConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSMediaListConstructorTableValues, 0 }; #else { 1, 0, JSMediaListConstructorTableValues, 0 }; #endif class JSMediaListConstructor : public DOMConstructorObject { public: JSMediaListConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) : DOMConstructorObject(JSMediaListConstructor::createStructure(globalObject->objectPrototype()), globalObject) { putDirect(exec->propertyNames().prototype, JSMediaListPrototype::self(exec, globalObject), None); } virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); virtual const ClassInfo* classInfo() const { return &s_info; } static const ClassInfo s_info; static PassRefPtr createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, ImplementsHasInstance)); } }; const ClassInfo JSMediaListConstructor::s_info = { "MediaListConstructor", 0, &JSMediaListConstructorTable, 0 }; bool JSMediaListConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSMediaListConstructorTable, this, propertyName, slot); } /* Hash table for prototype */ static const HashTableValue JSMediaListPrototypeTableValues[4] = { { "item", DontDelete|Function, (intptr_t)jsMediaListPrototypeFunctionItem, (intptr_t)1 }, { "deleteMedium", DontDelete|Function, (intptr_t)jsMediaListPrototypeFunctionDeleteMedium, (intptr_t)1 }, { "appendMedium", DontDelete|Function, (intptr_t)jsMediaListPrototypeFunctionAppendMedium, (intptr_t)1 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSMediaListPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 7, JSMediaListPrototypeTableValues, 0 }; #else { 8, 7, JSMediaListPrototypeTableValues, 0 }; #endif const ClassInfo JSMediaListPrototype::s_info = { "MediaListPrototype", 0, &JSMediaListPrototypeTable, 0 }; JSObject* JSMediaListPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSMediaListPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSMediaListPrototypeTable, this, propertyName, slot); } const ClassInfo JSMediaList::s_info = { "MediaList", 0, &JSMediaListTable, 0 }; JSMediaList::JSMediaList(PassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl) { } JSMediaList::~JSMediaList() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSMediaList::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSMediaListPrototype(JSMediaListPrototype::createStructure(globalObject->objectPrototype())); } bool JSMediaList::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { const HashEntry* entry = JSMediaListTable.entry(exec, propertyName); if (entry) { slot.setCustom(this, entry->propertyGetter()); return true; } bool ok; unsigned index = propertyName.toUInt32(&ok, false); if (ok && index < static_cast(impl())->length()) { slot.setCustomIndex(this, index, indexGetter); return true; } return getStaticValueSlot(exec, &JSMediaListTable, this, propertyName, slot); } bool JSMediaList::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) { if (propertyName < static_cast(impl())->length()) { slot.setCustomIndex(this, propertyName, indexGetter); return true; } return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot); } JSValue jsMediaListMediaText(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSMediaList* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); MediaList* imp = static_cast(castedThis->impl()); return jsStringOrNull(exec, imp->mediaText()); } JSValue jsMediaListLength(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSMediaList* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); MediaList* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->length()); } JSValue jsMediaListConstructor(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSMediaList* domObject = static_cast(asObject(slot.slotBase())); return JSMediaList::getConstructor(exec, domObject->globalObject()); } void JSMediaList::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, &JSMediaListTable, this, slot); } void setJSMediaListMediaText(ExecState* exec, JSObject* thisObject, JSValue value) { MediaList* imp = static_cast(static_cast(thisObject)->impl()); ExceptionCode ec = 0; imp->setMediaText(valueToStringWithNullCheck(exec, value), ec); setDOMException(exec, ec); } void JSMediaList::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames) { for (unsigned i = 0; i < static_cast(impl())->length(); ++i) propertyNames.add(Identifier::from(exec, i)); Base::getPropertyNames(exec, propertyNames); } JSValue JSMediaList::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } JSValue JSC_HOST_CALL jsMediaListPrototypeFunctionItem(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.isObject(&JSMediaList::s_info)) return throwError(exec, TypeError); JSMediaList* castedThisObj = static_cast(asObject(thisValue)); MediaList* imp = static_cast(castedThisObj->impl()); unsigned index = args.at(0).toInt32(exec); JSC::JSValue result = jsStringOrNull(exec, imp->item(index)); return result; } JSValue JSC_HOST_CALL jsMediaListPrototypeFunctionDeleteMedium(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.isObject(&JSMediaList::s_info)) return throwError(exec, TypeError); JSMediaList* castedThisObj = static_cast(asObject(thisValue)); MediaList* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& oldMedium = args.at(0).toString(exec); imp->deleteMedium(oldMedium, ec); setDOMException(exec, ec); return jsUndefined(); } JSValue JSC_HOST_CALL jsMediaListPrototypeFunctionAppendMedium(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.isObject(&JSMediaList::s_info)) return throwError(exec, TypeError); JSMediaList* castedThisObj = static_cast(asObject(thisValue)); MediaList* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& newMedium = args.at(0).toString(exec); imp->appendMedium(newMedium, ec); setDOMException(exec, ec); return jsUndefined(); } JSValue JSMediaList::indexGetter(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSMediaList* thisObj = static_cast(asObject(slot.slotBase())); return jsStringOrNull(exec, thisObj->impl()->item(slot.index())); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, MediaList* object) { return getDOMObjectWrapper(exec, globalObject, object); } MediaList* toMediaList(JSC::JSValue value) { return value.isObject(&JSMediaList::s_info) ? static_cast(asObject(value))->impl() : 0; } }