/* 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" #if ENABLE(XPATH) #include "JSXPathEvaluator.h" #include #include "JSCustomXPathNSResolver.h" #include "JSNode.h" #include "JSXPathExpression.h" #include "JSXPathNSResolver.h" #include "JSXPathResult.h" #include "PlatformString.h" #include "XPathEvaluator.h" #include "XPathExpression.h" #include "XPathNSResolver.h" #include "XPathResult.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSXPathEvaluator) /* Hash table */ static const HashTableValue JSXPathEvaluatorTableValues[2] = { { "constructor", DontEnum|ReadOnly, (intptr_t)jsXPathEvaluatorConstructor, (intptr_t)0 }, { 0, 0, 0, 0 } }; static const HashTable JSXPathEvaluatorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSXPathEvaluatorTableValues, 0 }; #else { 2, 1, JSXPathEvaluatorTableValues, 0 }; #endif /* Hash table for constructor */ static const HashTableValue JSXPathEvaluatorConstructorTableValues[1] = { { 0, 0, 0, 0 } }; static const HashTable JSXPathEvaluatorConstructorTable = #if ENABLE(PERFECT_HASH_SIZE) { 0, JSXPathEvaluatorConstructorTableValues, 0 }; #else { 1, 0, JSXPathEvaluatorConstructorTableValues, 0 }; #endif class JSXPathEvaluatorConstructor : public DOMObject { public: JSXPathEvaluatorConstructor(ExecState* exec) : DOMObject(JSXPathEvaluatorConstructor::createStructure(exec->lexicalGlobalObject()->objectPrototype())) { putDirect(exec->propertyNames().prototype, JSXPathEvaluatorPrototype::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)); } static JSObject* construct(ExecState* exec, JSObject*, const ArgList&) { return asObject(toJS(exec, XPathEvaluator::create())); } virtual ConstructType getConstructData(ConstructData& constructData) { constructData.native.function = construct; return ConstructTypeHost; } }; const ClassInfo JSXPathEvaluatorConstructor::s_info = { "XPathEvaluatorConstructor", 0, &JSXPathEvaluatorConstructorTable, 0 }; bool JSXPathEvaluatorConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSXPathEvaluatorConstructorTable, this, propertyName, slot); } /* Hash table for prototype */ static const HashTableValue JSXPathEvaluatorPrototypeTableValues[4] = { { "createExpression", DontDelete|Function, (intptr_t)jsXPathEvaluatorPrototypeFunctionCreateExpression, (intptr_t)2 }, { "createNSResolver", DontDelete|Function, (intptr_t)jsXPathEvaluatorPrototypeFunctionCreateNSResolver, (intptr_t)1 }, { "evaluate", DontDelete|Function, (intptr_t)jsXPathEvaluatorPrototypeFunctionEvaluate, (intptr_t)5 }, { 0, 0, 0, 0 } }; static const HashTable JSXPathEvaluatorPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 3, JSXPathEvaluatorPrototypeTableValues, 0 }; #else { 8, 7, JSXPathEvaluatorPrototypeTableValues, 0 }; #endif const ClassInfo JSXPathEvaluatorPrototype::s_info = { "XPathEvaluatorPrototype", 0, &JSXPathEvaluatorPrototypeTable, 0 }; JSObject* JSXPathEvaluatorPrototype::self(ExecState* exec) { return getDOMPrototype(exec); } bool JSXPathEvaluatorPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSXPathEvaluatorPrototypeTable, this, propertyName, slot); } const ClassInfo JSXPathEvaluator::s_info = { "XPathEvaluator", 0, &JSXPathEvaluatorTable, 0 }; JSXPathEvaluator::JSXPathEvaluator(PassRefPtr structure, PassRefPtr impl) : DOMObject(structure) , m_impl(impl) { } JSXPathEvaluator::~JSXPathEvaluator() { forgetDOMObject(*Heap::heap(this)->globalData(), m_impl.get()); } JSObject* JSXPathEvaluator::createPrototype(ExecState* exec) { return new (exec) JSXPathEvaluatorPrototype(JSXPathEvaluatorPrototype::createStructure(exec->lexicalGlobalObject()->objectPrototype())); } bool JSXPathEvaluator::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSXPathEvaluatorTable, this, propertyName, slot); } JSValuePtr jsXPathEvaluatorConstructor(ExecState* exec, const Identifier&, const PropertySlot& slot) { return static_cast(asObject(slot.slotBase()))->getConstructor(exec); } JSValuePtr JSXPathEvaluator::getConstructor(ExecState* exec) { return getDOMConstructor(exec); } JSValuePtr jsXPathEvaluatorPrototypeFunctionCreateExpression(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSXPathEvaluator::s_info)) return throwError(exec, TypeError); JSXPathEvaluator* castedThisObj = static_cast(asObject(thisValue)); XPathEvaluator* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& expression = args.at(exec, 0)->toString(exec); RefPtr customResolver; XPathNSResolver* resolver = toXPathNSResolver(args.at(exec, 1)); if (!resolver) { customResolver = JSCustomXPathNSResolver::create(exec, args.at(exec, 1)); if (exec->hadException()) return jsUndefined(); resolver = customResolver.get(); } JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->createExpression(expression, resolver, ec))); setDOMException(exec, ec); return result; } JSValuePtr jsXPathEvaluatorPrototypeFunctionCreateNSResolver(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSXPathEvaluator::s_info)) return throwError(exec, TypeError); JSXPathEvaluator* castedThisObj = static_cast(asObject(thisValue)); XPathEvaluator* imp = static_cast(castedThisObj->impl()); Node* nodeResolver = toNode(args.at(exec, 0)); JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->createNSResolver(nodeResolver))); return result; } JSValuePtr jsXPathEvaluatorPrototypeFunctionEvaluate(ExecState* exec, JSObject*, JSValuePtr thisValue, const ArgList& args) { if (!thisValue->isObject(&JSXPathEvaluator::s_info)) return throwError(exec, TypeError); JSXPathEvaluator* castedThisObj = static_cast(asObject(thisValue)); XPathEvaluator* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; const UString& expression = args.at(exec, 0)->toString(exec); Node* contextNode = toNode(args.at(exec, 1)); RefPtr customResolver; XPathNSResolver* resolver = toXPathNSResolver(args.at(exec, 2)); if (!resolver) { customResolver = JSCustomXPathNSResolver::create(exec, args.at(exec, 2)); if (exec->hadException()) return jsUndefined(); resolver = customResolver.get(); } unsigned short type = args.at(exec, 3)->toInt32(exec); XPathResult* inResult = toXPathResult(args.at(exec, 4)); JSC::JSValuePtr result = toJS(exec, WTF::getPtr(imp->evaluate(expression, contextNode, resolver, type, inResult, ec))); setDOMException(exec, ec); return result; } JSC::JSValuePtr toJS(JSC::ExecState* exec, XPathEvaluator* object) { return getDOMObjectWrapper(exec, object); } XPathEvaluator* toXPathEvaluator(JSC::JSValuePtr value) { return value->isObject(&JSXPathEvaluator::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(XPATH)