/* 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 #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)jsDOMImplementationConstructor, (intptr_t)0 }, { 0, 0, 0, 0 } }; static const 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 const HashTable JSDOMImplementationConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSDOMImplementationConstructorTableValues, 0 }; #else { 1, 0, JSDOMImplementationConstructorTableValues, 0 }; #endif class JSDOMImplementationConstructor : public DOMObject { public: JSDOMImplementationConstructor(ExecState* exec) : DOMObject(JSDOMImplementationConstructor::createStructure(exec->lexicalGlobalObject()->objectPrototype())) { putDirect(exec->propertyNames().prototype, JSDOMImplementationPrototype::self(exec), None); } virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&); virtual const ClassInfo* classInfo() const { return &s_info; } static const ClassInfo s_info; static PassRefPtr createStructure(JSValuePtr proto) { return Structure::create(proto, TypeInfo(ObjectType, ImplementsHasInstance)); } }; 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); } /* Hash table for prototype */ static const HashTableValue JSDOMImplementationPrototypeTableValues[6] = { { "hasFeature", DontDelete|Function, (intptr_t)jsDOMImplementationPrototypeFunctionHasFeature, (intptr_t)2 }, { "createDocumentType", DontDelete|Function, (intptr_t)jsDOMImplementationPrototypeFunctionCreateDocumentType, (intptr_t)3 }, { "createDocument", DontDelete|Function, (intptr_t)jsDOMImplementationPrototypeFunctionCreateDocument, (intptr_t)3 }, { "createCSSStyleSheet", DontDelete|Function, (intptr_t)jsDOMImplementationPrototypeFunctionCreateCSSStyleSheet, (intptr_t)2 }, { "createHTMLDocument", DontDelete|Function, (intptr_t)jsDOMImplementationPrototypeFunctionCreateHTMLDocument, (intptr_t)1 }, { 0, 0, 0, 0 } }; static const 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) { return getDOMPrototype(exec); } bool JSDOMImplementationPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSDOMImplementationPrototypeTable, this, propertyName, slot); } const ClassInfo JSDOMImplementation::s_info = { "DOMImplementation", 0, &JSDOMImplementationTable, 0 }; JSDOMImplementation::JSDOMImplementation(PassRefPtr structure, PassRefPtr impl) : DOMObject(structure) , m_impl(impl) { } JSDOMImplementation::~JSDOMImplementation() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSDOMImplementation::createPrototype(ExecState* exec) { return new (exec) JSDOMImplementationPrototype(JSDOMImplementationPrototype::createStructure(exec->lexicalGlobalObject()->objectPrototype())); } bool JSDOMImplementation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSDOMImplementationTable, this, propertyName, slot); } JSValuePtr jsDOMImplementationConstructor(ExecState* exec, const Identifier&, const PropertySlot& slot) { return static_cast(asObject(slot.slotBase()))->getConstructor(exec); } JSValuePtr JSDOMImplementation::getConstructor(ExecState* exec) { return getDOMConstructor(exec); } JSValuePtr jsDOMImplementationPrototypeFunctionHasFeature(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); const UString& feature = args.at(exec, 0)->toString(exec); const UString& version = valueToStringWithNullCheck(exec, args.at(exec, 1)); JSC::JSValuePtr result = jsBoolean(imp->hasFeature(feature, version)); return result; } JSValuePtr jsDOMImplementationPrototypeFunctionCreateDocumentType(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&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(exec, 0)); const UString& publicId = valueToStringWithUndefinedOrNullCheck(exec, args.at(exec, 1)); const UString& systemId = valueToStringWithUndefinedOrNullCheck(exec, args.at(exec, 2)); JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->createDocumentType(qualifiedName, publicId, systemId, ec))); setDOMException(exec, ec); return result; } JSValuePtr jsDOMImplementationPrototypeFunctionCreateDocument(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&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(exec, 0)); const UString& qualifiedName = valueToStringWithNullCheck(exec, args.at(exec, 1)); DocumentType* doctype = toDocumentType(args.at(exec, 2)); JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->createDocument(namespaceURI, qualifiedName, doctype, ec))); setDOMException(exec, ec); return result; } JSValuePtr jsDOMImplementationPrototypeFunctionCreateCSSStyleSheet(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&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(exec, 0)->toString(exec); const UString& media = args.at(exec, 1)->toString(exec); JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->createCSSStyleSheet(title, media, ec))); setDOMException(exec, ec); return result; } JSValuePtr jsDOMImplementationPrototypeFunctionCreateHTMLDocument(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSDOMImplementation::s_info)) return throwError(exec, TypeError); JSDOMImplementation* castedThisObj = static_cast(asObject(thisValue)); DOMImplementation* imp = static_cast(castedThisObj->impl()); const UString& title = args.at(exec, 0)->toString(exec); JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->createHTMLDocument(title))); return result; } JSC::JSValuePtr toJS(JSC::ExecState* exec, DOMImplementation* object) { return getDOMObjectWrapper(exec, object); } DOMImplementation* toDOMImplementation(JSC::JSValuePtr value) { return value->isObject(&JSDOMImplementation::s_info) ? static_cast(asObject(value))->impl() : 0; } }