webengine/osswebengine/DerivedSources/WebCore/JSAttr.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Thu, 27 Aug 2009 07:44:59 +0300
changeset 16 a359256acfc6
parent 0 dd21522fd290
permissions -rw-r--r--
Revision: 200929 Kit: 200935

/*
    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 "JSAttr.h"

#include <wtf/GetPtr.h>

#include "Attr.h"
#include "CSSMutableStyleDeclaration.h"
#include "CSSStyleDeclaration.h"
#include "Element.h"
#include "JSCSSStyleDeclaration.h"
#include "JSElement.h"
#include "PlatformString.h"

using namespace KJS;

namespace WebCore {

/* Hash table */

static const HashEntry JSAttrTableEntries[] =
{
    { 0, 0, 0, 0, 0 },
    { "name", JSAttr::NameAttrNum, DontDelete|ReadOnly, 0, &JSAttrTableEntries[6] },
    { "ownerElement", JSAttr::OwnerElementAttrNum, DontDelete|ReadOnly, 0, &JSAttrTableEntries[7] },
    { "constructor", JSAttr::ConstructorAttrNum, DontDelete|DontEnum|ReadOnly, 0, 0 },
    { 0, 0, 0, 0, 0 },
    { "value", JSAttr::ValueAttrNum, DontDelete, 0, 0 },
    { "specified", JSAttr::SpecifiedAttrNum, DontDelete|ReadOnly, 0, 0 },
    { "style", JSAttr::StyleAttrNum, DontDelete|ReadOnly, 0, 0 }
};

static const HashTable JSAttrTable = 
{
    2, 8, JSAttrTableEntries, 6
};

/* Hash table for constructor */

static const HashEntry JSAttrConstructorTableEntries[] =
{
    { 0, 0, 0, 0, 0 }
};

static const HashTable JSAttrConstructorTable = 
{
    2, 1, JSAttrConstructorTableEntries, 1
};

class JSAttrConstructor : public DOMObject {
public:
    JSAttrConstructor(ExecState* exec)
    {
        setPrototype(exec->lexicalInterpreter()->builtinObjectPrototype());
        putDirect(exec->propertyNames().prototype, JSAttrPrototype::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 JSAttrConstructor::info = { "AttrConstructor", 0, &JSAttrConstructorTable, 0 };

bool JSAttrConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getStaticValueSlot<JSAttrConstructor, DOMObject>(exec, &JSAttrConstructorTable, this, propertyName, slot);
}

JSValue* JSAttrConstructor::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 JSAttrPrototypeTableEntries[] =
{
    { 0, 0, 0, 0, 0 }
};

static const HashTable JSAttrPrototypeTable = 
{
    2, 1, JSAttrPrototypeTableEntries, 1
};

const ClassInfo JSAttrPrototype::info = { "AttrPrototype", 0, &JSAttrPrototypeTable, 0 };

JSObject* JSAttrPrototype::self(ExecState* exec)
{
    return KJS::cacheGlobalObject<JSAttrPrototype>(exec, "[[JSAttr.prototype]]");
}

const ClassInfo JSAttr::info = { "Attr", &JSEventTargetNode::info, &JSAttrTable, 0 };

JSAttr::JSAttr(ExecState* exec, Attr* impl)
    : JSEventTargetNode(exec, impl)
{
    setPrototype(JSAttrPrototype::self(exec));
}

bool JSAttr::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
{
    return getStaticValueSlot<JSAttr, JSEventTargetNode>(exec, &JSAttrTable, this, propertyName, slot);
}

JSValue* JSAttr::getValueProperty(ExecState* exec, int token) const
{
    switch (token) {
    case NameAttrNum: {
        Attr* imp = static_cast<Attr*>(impl());

        return jsStringOrNull(imp->name());
    }
    case SpecifiedAttrNum: {
        Attr* imp = static_cast<Attr*>(impl());

        return jsBoolean(imp->specified());
    }
    case ValueAttrNum: {
        Attr* imp = static_cast<Attr*>(impl());

        return jsStringOrNull(imp->value());
    }
    case OwnerElementAttrNum: {
        Attr* imp = static_cast<Attr*>(impl());

        return toJS(exec, WTF::getPtr(imp->ownerElement()));
    }
    case StyleAttrNum: {
        Attr* imp = static_cast<Attr*>(impl());

        return toJS(exec, WTF::getPtr(imp->style()));
    }
    case ConstructorAttrNum:
        return getConstructor(exec);
    }
    return 0;
}

void JSAttr::put(ExecState* exec, const Identifier& propertyName, JSValue* value, int attr)
{
    lookupPut<JSAttr, JSEventTargetNode>(exec, propertyName, value, attr, &JSAttrTable, this);
}

void JSAttr::putValueProperty(ExecState* exec, int token, JSValue* value, int /*attr*/)
{
    switch (token) {
    case ValueAttrNum: {
        setValue(exec, value);
        break;
    }
    }
}

JSValue* JSAttr::getConstructor(ExecState* exec)
{
    return KJS::cacheGlobalObject<JSAttrConstructor>(exec, "[[Attr.constructor]]");
}

}