webengine/osswebengine/DerivedSources/WebCore/JSNamedNodeMap.cpp
changeset 0 dd21522fd290
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/webengine/osswebengine/DerivedSources/WebCore/JSNamedNodeMap.cpp	Mon Mar 30 12:54:55 2009 +0300
@@ -0,0 +1,270 @@
+/*
+    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 "JSNamedNodeMap.h"
+
+#include <wtf/GetPtr.h>
+
+#include "AtomicString.h"
+#include "ExceptionCode.h"
+#include "JSNode.h"
+#include "NamedNodeMap.h"
+#include "Node.h"
+
+using namespace KJS;
+
+namespace WebCore {
+
+/* Hash table */
+
+static const HashEntry JSNamedNodeMapTableEntries[] =
+{
+    { 0, 0, 0, 0, 0 },
+    { "length", JSNamedNodeMap::LengthAttrNum, DontDelete|ReadOnly, 0, &JSNamedNodeMapTableEntries[2] },
+    { "constructor", JSNamedNodeMap::ConstructorAttrNum, DontDelete|DontEnum|ReadOnly, 0, 0 }
+};
+
+static const HashTable JSNamedNodeMapTable = 
+{
+    2, 3, JSNamedNodeMapTableEntries, 2
+};
+
+/* Hash table for constructor */
+
+static const HashEntry JSNamedNodeMapConstructorTableEntries[] =
+{
+    { 0, 0, 0, 0, 0 }
+};
+
+static const HashTable JSNamedNodeMapConstructorTable = 
+{
+    2, 1, JSNamedNodeMapConstructorTableEntries, 1
+};
+
+class JSNamedNodeMapConstructor : public DOMObject {
+public:
+    JSNamedNodeMapConstructor(ExecState* exec)
+    {
+        setPrototype(exec->lexicalInterpreter()->builtinObjectPrototype());
+        putDirect(exec->propertyNames().prototype, JSNamedNodeMapPrototype::self(exec), None);
+    }
+    virtual bool getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&);
+    JSValue* getValueProperty(ExecState*, int token) const;
+    virtual const ClassInfo* classInfo() const { return &info; }
+    static const ClassInfo info;
+
+    virtual bool implementsHasInstance() const { return true; }
+};
+
+const ClassInfo JSNamedNodeMapConstructor::info = { "NamedNodeMapConstructor", 0, &JSNamedNodeMapConstructorTable, 0 };
+
+bool JSNamedNodeMapConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    return getStaticValueSlot<JSNamedNodeMapConstructor, DOMObject>(exec, &JSNamedNodeMapConstructorTable, this, propertyName, slot);
+}
+
+JSValue* JSNamedNodeMapConstructor::getValueProperty(ExecState*, int token) const
+{
+    // The token is the numeric value of its associated constant
+    return jsNumber(token);
+}
+
+/* Hash table for prototype */
+
+static const HashEntry JSNamedNodeMapPrototypeTableEntries[] =
+{
+    { "getNamedItem", JSNamedNodeMap::GetNamedItemFuncNum, DontDelete|Function, 1, &JSNamedNodeMapPrototypeTableEntries[8] },
+    { 0, 0, 0, 0, 0 },
+    { "setNamedItem", JSNamedNodeMap::SetNamedItemFuncNum, DontDelete|Function, 1, &JSNamedNodeMapPrototypeTableEntries[7] },
+    { 0, 0, 0, 0, 0 },
+    { 0, 0, 0, 0, 0 },
+    { 0, 0, 0, 0, 0 },
+    { "getNamedItemNS", JSNamedNodeMap::GetNamedItemNSFuncNum, DontDelete|Function, 2, 0 },
+    { "removeNamedItem", JSNamedNodeMap::RemoveNamedItemFuncNum, DontDelete|Function, 1, 0 },
+    { "item", JSNamedNodeMap::ItemFuncNum, DontDelete|Function, 1, &JSNamedNodeMapPrototypeTableEntries[9] },
+    { "setNamedItemNS", JSNamedNodeMap::SetNamedItemNSFuncNum, DontDelete|Function, 1, &JSNamedNodeMapPrototypeTableEntries[10] },
+    { "removeNamedItemNS", JSNamedNodeMap::RemoveNamedItemNSFuncNum, DontDelete|Function, 2, 0 }
+};
+
+static const HashTable JSNamedNodeMapPrototypeTable = 
+{
+    2, 11, JSNamedNodeMapPrototypeTableEntries, 7
+};
+
+const ClassInfo JSNamedNodeMapPrototype::info = { "NamedNodeMapPrototype", 0, &JSNamedNodeMapPrototypeTable, 0 };
+
+JSObject* JSNamedNodeMapPrototype::self(ExecState* exec)
+{
+    return KJS::cacheGlobalObject<JSNamedNodeMapPrototype>(exec, "[[JSNamedNodeMap.prototype]]");
+}
+
+bool JSNamedNodeMapPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    return getStaticFunctionSlot<JSNamedNodeMapPrototypeFunction, JSObject>(exec, &JSNamedNodeMapPrototypeTable, this, propertyName, slot);
+}
+
+const ClassInfo JSNamedNodeMap::info = { "NamedNodeMap", 0, &JSNamedNodeMapTable, 0 };
+
+JSNamedNodeMap::JSNamedNodeMap(ExecState* exec, NamedNodeMap* impl)
+    : m_impl(impl)
+{
+    setPrototype(JSNamedNodeMapPrototype::self(exec));
+}
+
+JSNamedNodeMap::~JSNamedNodeMap()
+{
+    ScriptInterpreter::forgetDOMObject(m_impl.get());
+}
+
+bool JSNamedNodeMap::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    JSValue* proto = prototype();
+    if (proto->isObject() && static_cast<JSObject*>(proto)->hasProperty(exec, propertyName))
+        return false;
+
+    const HashEntry* entry = Lookup::findEntry(&JSNamedNodeMapTable, propertyName);
+    if (entry) {
+        slot.setStaticEntry(this, entry, staticValueGetter<JSNamedNodeMap>);
+        return true;
+    }
+    bool ok;
+    unsigned index = propertyName.toUInt32(&ok, false);
+    if (ok && index < static_cast<NamedNodeMap*>(impl())->length()) {
+        slot.setCustomIndex(this, index, indexGetter);
+        return true;
+    }
+    if (canGetItemsForName(exec, static_cast<NamedNodeMap*>(impl()), propertyName)) {
+        slot.setCustom(this, nameGetter);
+        return true;
+    }
+    return KJS::DOMObject::getOwnPropertySlot(exec, propertyName, slot);
+}
+
+JSValue* JSNamedNodeMap::getValueProperty(ExecState* exec, int token) const
+{
+    switch (token) {
+    case LengthAttrNum: {
+        NamedNodeMap* imp = static_cast<NamedNodeMap*>(impl());
+
+        return jsNumber(imp->length());
+    }
+    case ConstructorAttrNum:
+        return getConstructor(exec);
+    }
+    return 0;
+}
+
+JSValue* JSNamedNodeMap::getConstructor(ExecState* exec)
+{
+    return KJS::cacheGlobalObject<JSNamedNodeMapConstructor>(exec, "[[NamedNodeMap.constructor]]");
+}
+JSValue* JSNamedNodeMapPrototypeFunction::callAsFunction(ExecState* exec, JSObject* thisObj, const List& args)
+{
+    if (!thisObj->inherits(&JSNamedNodeMap::info))
+      return throwError(exec, TypeError);
+
+    NamedNodeMap* imp = static_cast<NamedNodeMap*>(static_cast<JSNamedNodeMap*>(thisObj)->impl());
+
+    switch (id) {
+    case JSNamedNodeMap::GetNamedItemFuncNum: {
+        String name = args[0]->toString(exec);
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->getNamedItem(name)));
+        return result;
+    }
+    case JSNamedNodeMap::SetNamedItemFuncNum: {
+        ExceptionCode ec = 0;
+        Node* node = toNode(args[0]);
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->setNamedItem(node, ec)));
+        setDOMException(exec, ec);
+        return result;
+    }
+    case JSNamedNodeMap::RemoveNamedItemFuncNum: {
+        ExceptionCode ec = 0;
+        String name = args[0]->toString(exec);
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->removeNamedItem(name, ec)));
+        setDOMException(exec, ec);
+        return result;
+    }
+    case JSNamedNodeMap::ItemFuncNum: {
+        bool indexOk;
+        unsigned index = args[0]->toInt32(exec, indexOk);
+        if (!indexOk) {
+            setDOMException(exec, TYPE_MISMATCH_ERR);
+            return jsUndefined();
+        }
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->item(index)));
+        return result;
+    }
+    case JSNamedNodeMap::GetNamedItemNSFuncNum: {
+        String namespaceURI = valueToStringWithNullCheck(exec, args[0]);
+        String localName = args[1]->toString(exec);
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->getNamedItemNS(namespaceURI, localName)));
+        return result;
+    }
+    case JSNamedNodeMap::SetNamedItemNSFuncNum: {
+        ExceptionCode ec = 0;
+        Node* node = toNode(args[0]);
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->setNamedItemNS(node, ec)));
+        setDOMException(exec, ec);
+        return result;
+    }
+    case JSNamedNodeMap::RemoveNamedItemNSFuncNum: {
+        ExceptionCode ec = 0;
+        String namespaceURI = valueToStringWithNullCheck(exec, args[0]);
+        String localName = args[1]->toString(exec);
+
+
+        KJS::JSValue* result = toJS(exec, WTF::getPtr(imp->removeNamedItemNS(namespaceURI, localName, ec)));
+        setDOMException(exec, ec);
+        return result;
+    }
+    }
+    return 0;
+}
+
+JSValue* JSNamedNodeMap::indexGetter(ExecState* exec, JSObject* originalObject, const Identifier& propertyName, const PropertySlot& slot)
+{
+    JSNamedNodeMap* thisObj = static_cast<JSNamedNodeMap*>(slot.slotBase());
+    return toJS(exec, static_cast<NamedNodeMap*>(thisObj->impl())->item(slot.index()));
+}
+KJS::JSValue* toJS(KJS::ExecState* exec, NamedNodeMap* obj)
+{
+    return KJS::cacheDOMObject<NamedNodeMap, JSNamedNodeMap>(exec, obj);
+}
+NamedNodeMap* toNamedNodeMap(KJS::JSValue* val)
+{
+    return val->isObject(&JSNamedNodeMap::info) ? static_cast<JSNamedNodeMap*>(val)->impl() : 0;
+}
+
+}