/* 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 "JSDOMImplementation.h" #include "CSSStyleSheet.h" #include "DOMImplementation.h" #include "Document.h" #include "DocumentType.h" #include "HTMLDocument.h" #include "JSCSSStyleSheet.h" #include "JSDocument.h" #include "JSDocumentType.h" #include "JSHTMLDocument.h" #include "NodeFilter.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSDOMImplementation); /* Hash table */ static const HashTableValue JSDOMImplementationTableValues[2] = { { "constructor", DontEnum|ReadOnly, (intptr_t)static_cast(jsDOMImplementationConstructor), (intptr_t)0 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSDOMImplementationTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSDOMImplementationTableValues, 0 }; #else { 2, 1, JSDOMImplementationTableValues, 0 }; #endif /* Hash table for constructor */ static const HashTableValue JSDOMImplementationConstructorTableValues[1] = { { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSDOMImplementationConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSDOMImplementationConstructorTableValues, 0 }; #else { 1, 0, JSDOMImplementationConstructorTableValues, 0 }; #endif class JSDOMImplementationConstructor : public DOMConstructorObject { public: JSDOMImplementationConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) : DOMConstructorObject(JSDOMImplementationConstructor::createStructure(globalObject->objectPrototype()), globalObject) { putDirect(exec->propertyNames().prototype, JSDOMImplementationPrototype::self(exec, globalObject), None); } virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); virtual bool getOwnPropertyDescriptor(ExecState*, const Identifier&, PropertyDescriptor&); virtual const ClassInfo* classInfo() const { return &s_info; } static const ClassInfo s_info; static PassRefPtr createStructure(JSValue proto) { return Structure::create(proto, TypeInfo(ObjectType, StructureFlags), AnonymousSlotCount); } protected: static const unsigned StructureFlags = OverridesGetOwnPropertySlot | ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; const ClassInfo JSDOMImplementationConstructor::s_info = { "DOMImplementationConstructor", 0, &JSDOMImplementationConstructorTable, 0 }; bool JSDOMImplementationConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSDOMImplementationConstructorTable, this, propertyName, slot); } bool JSDOMImplementationConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSDOMImplementationConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ static const HashTableValue JSDOMImplementationPrototypeTableValues[6] = { { "hasFeature", DontDelete|Function, (intptr_t)static_cast(jsDOMImplementationPrototypeFunctionHasFeature), (intptr_t)2 }, { "createDocumentType", DontDelete|Function, (intptr_t)static_cast(jsDOMImplementationPrototypeFunctionCreateDocumentType), (intptr_t)3 }, { "createDocument", DontDelete|Function, (intptr_t)static_cast(jsDOMImplementationPrototypeFunctionCreateDocument), (intptr_t)3 }, { "createCSSStyleSheet", DontDelete|Function, (intptr_t)static_cast(jsDOMImplementationPrototypeFunctionCreateCSSStyleSheet), (intptr_t)2 }, { "createHTMLDocument", DontDelete|Function, (intptr_t)static_cast(jsDOMImplementationPrototypeFunctionCreateHTMLDocument), (intptr_t)1 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSDOMImplementationPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 127, JSDOMImplementationPrototypeTableValues, 0 }; #else { 17, 15, JSDOMImplementationPrototypeTableValues, 0 }; #endif const ClassInfo JSDOMImplementationPrototype::s_info = { "DOMImplementationPrototype", 0, &JSDOMImplementationPrototypeTable, 0 }; JSObject* JSDOMImplementationPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSDOMImplementationPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSDOMImplementationPrototypeTable, this, propertyName, slot); } bool JSDOMImplementationPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticFunctionDescriptor(exec, &JSDOMImplementationPrototypeTable, this, propertyName, descriptor); } const ClassInfo JSDOMImplementation::s_info = { "DOMImplementation", 0, &JSDOMImplementationTable, 0 }; JSDOMImplementation::JSDOMImplementation(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl) { } JSDOMImplementation::~JSDOMImplementation() { forgetDOMObject(this, impl()); } JSObject* JSDOMImplementation::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSDOMImplementationPrototype(JSDOMImplementationPrototype::createStructure(globalObject->objectPrototype())); } bool JSDOMImplementation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSDOMImplementationTable, this, propertyName, slot); } bool JSDOMImplementation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSDOMImplementationTable, this, propertyName, descriptor); } JSValue jsDOMImplementationConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSDOMImplementation* domObject = static_cast(asObject(slotBase)); return JSDOMImplementation::getConstructor(exec, domObject->globalObject()); } JSValue JSDOMImplementation::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } JSValue JSC_HOST_CALL jsDOMImplementationPrototypeFunctionHasFeature(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); const UString& feature = args.at(0).toString(exec); const UString& version = valueToStringWithNullCheck(exec, args.at(1)); JSC::JSValue result = jsBoolean(imp->hasFeature(feature, version)); return result; } JSValue JSC_HOST_CALL jsDOMImplementationPrototypeFunctionCreateDocumentType(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& qualifiedName = valueToStringWithUndefinedOrNullCheck(exec, args.at(0)); const UString& publicId = valueToStringWithUndefinedOrNullCheck(exec, args.at(1)); const UString& systemId = valueToStringWithUndefinedOrNullCheck(exec, args.at(2)); JSC::JSValue result = toJS(exec, castedThisObj->globalObject(), WTF::getPtr(imp->createDocumentType(qualifiedName, publicId, systemId, ec))); setDOMException(exec, ec); return result; } JSValue JSC_HOST_CALL jsDOMImplementationPrototypeFunctionCreateDocument(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& namespaceURI = valueToStringWithNullCheck(exec, args.at(0)); const UString& qualifiedName = valueToStringWithNullCheck(exec, args.at(1)); DocumentType* doctype = toDocumentType(args.at(2)); JSC::JSValue result = toJS(exec, castedThisObj->globalObject(), WTF::getPtr(imp->createDocument(namespaceURI, qualifiedName, doctype, ec))); setDOMException(exec, ec); return result; } JSValue JSC_HOST_CALL jsDOMImplementationPrototypeFunctionCreateCSSStyleSheet(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& title = args.at(0).toString(exec); const UString& media = args.at(1).toString(exec); JSC::JSValue result = toJS(exec, castedThisObj->globalObject(), WTF::getPtr(imp->createCSSStyleSheet(title, media, ec))); setDOMException(exec, ec); return result; } JSValue JSC_HOST_CALL jsDOMImplementationPrototypeFunctionCreateHTMLDocument(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); const UString& title = args.at(0).toString(exec); JSC::JSValue result = toJS(exec, castedThisObj->globalObject(), WTF::getPtr(imp->createHTMLDocument(title))); return result; } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, DOMImplementation* object) { return getDOMObjectWrapper(exec, globalObject, object); } DOMImplementation* toDOMImplementation(JSC::JSValue value) { return value.inherits(&JSDOMImplementation::s_info) ? static_cast(asObject(value))->impl() : 0; } }