diff -r 000000000000 -r 4f2f89ce4247 WebCore/generated/JSStorage.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/WebCore/generated/JSStorage.cpp Fri Sep 17 09:02:29 2010 +0300 @@ -0,0 +1,297 @@ +/* + 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(DOM_STORAGE) + +#include "JSStorage.h" + +#include "AtomicString.h" +#include "JSStorageCustom.h" +#include "KURL.h" +#include "Storage.h" +#include +#include +#include + +using namespace JSC; + +namespace WebCore { + +ASSERT_CLASS_FITS_IN_CELL(JSStorage); + +/* Hash table */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSStorageTableValues[3] = +{ + { "length", DontDelete | DontEnum | ReadOnly, (intptr_t)static_cast(jsStorageLength), (intptr_t)0 THUNK_GENERATOR(0) }, + { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsStorageConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSStorageTable = { 5, 3, JSStorageTableValues, 0 }; +/* Hash table for constructor */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSStorageConstructorTableValues[1] = +{ + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSStorageConstructorTable = { 1, 0, JSStorageConstructorTableValues, 0 }; +class JSStorageConstructor : public DOMConstructorObject { +public: + JSStorageConstructor(JSC::ExecState*, JSDOMGlobalObject*); + + virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); + virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); + virtual const JSC::ClassInfo* classInfo() const { return &s_info; } + static const JSC::ClassInfo s_info; + static PassRefPtr createStructure(JSC::JSValue prototype) + { + return JSC::Structure::create(prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount); + } +protected: + static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; +}; + +const ClassInfo JSStorageConstructor::s_info = { "StorageConstructor", 0, &JSStorageConstructorTable, 0 }; + +JSStorageConstructor::JSStorageConstructor(ExecState* exec, JSDOMGlobalObject* globalObject) + : DOMConstructorObject(JSStorageConstructor::createStructure(globalObject->objectPrototype()), globalObject) +{ + putDirect(exec->propertyNames().prototype, JSStoragePrototype::self(exec, globalObject), DontDelete | ReadOnly); +} + +bool JSStorageConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticValueSlot(exec, &JSStorageConstructorTable, this, propertyName, slot); +} + +bool JSStorageConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticValueDescriptor(exec, &JSStorageConstructorTable, this, propertyName, descriptor); +} + +/* Hash table for prototype */ +#if ENABLE(JIT) +#define THUNK_GENERATOR(generator) , generator +#else +#define THUNK_GENERATOR(generator) +#endif + +static const HashTableValue JSStoragePrototypeTableValues[6] = +{ + { "key", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsStoragePrototypeFunctionKey), (intptr_t)1 THUNK_GENERATOR(0) }, + { "getItem", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsStoragePrototypeFunctionGetItem), (intptr_t)1 THUNK_GENERATOR(0) }, + { "setItem", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsStoragePrototypeFunctionSetItem), (intptr_t)2 THUNK_GENERATOR(0) }, + { "removeItem", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsStoragePrototypeFunctionRemoveItem), (intptr_t)1 THUNK_GENERATOR(0) }, + { "clear", DontDelete | DontEnum | Function, (intptr_t)static_cast(jsStoragePrototypeFunctionClear), (intptr_t)0 THUNK_GENERATOR(0) }, + { 0, 0, 0, 0 THUNK_GENERATOR(0) } +}; + +#undef THUNK_GENERATOR +static JSC_CONST_HASHTABLE HashTable JSStoragePrototypeTable = { 17, 15, JSStoragePrototypeTableValues, 0 }; +const ClassInfo JSStoragePrototype::s_info = { "StoragePrototype", 0, &JSStoragePrototypeTable, 0 }; + +JSObject* JSStoragePrototype::self(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMPrototype(exec, globalObject); +} + +bool JSStoragePrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + return getStaticFunctionSlot(exec, &JSStoragePrototypeTable, this, propertyName, slot); +} + +bool JSStoragePrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + return getStaticFunctionDescriptor(exec, &JSStoragePrototypeTable, this, propertyName, descriptor); +} + +const ClassInfo JSStorage::s_info = { "Storage", 0, &JSStorageTable, 0 }; + +JSStorage::JSStorage(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) + : DOMObjectWithGlobalPointer(structure, globalObject) + , m_impl(impl) +{ +} + +JSStorage::~JSStorage() +{ + forgetDOMObject(this, impl()); +} + +JSObject* JSStorage::createPrototype(ExecState* exec, JSGlobalObject* globalObject) +{ + return new (exec) JSStoragePrototype(globalObject, JSStoragePrototype::createStructure(globalObject->objectPrototype())); +} + +bool JSStorage::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) +{ + const HashEntry* entry = JSStorageTable.entry(exec, propertyName); + if (entry) { + slot.setCustom(this, entry->propertyGetter()); + return true; + } + if (canGetItemsForName(exec, static_cast(impl()), propertyName)) { + slot.setCustom(this, nameGetter); + return true; + } + return getStaticValueSlot(exec, &JSStorageTable, this, propertyName, slot); +} + +bool JSStorage::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) +{ + const HashEntry* entry = JSStorageTable.entry(exec, propertyName); + if (entry) { + PropertySlot slot; + slot.setCustom(this, entry->propertyGetter()); + descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes()); + return true; + } + if (canGetItemsForName(exec, static_cast(impl()), propertyName)) { + PropertySlot slot; + slot.setCustom(this, nameGetter); + descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum); + return true; + } + return getStaticValueDescriptor(exec, &JSStorageTable, this, propertyName, descriptor); +} + +JSValue jsStorageLength(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorage* castedThis = static_cast(asObject(slotBase)); + UNUSED_PARAM(exec); + Storage* imp = static_cast(castedThis->impl()); + JSValue result = jsNumber(exec, imp->length()); + return result; +} + +JSValue jsStorageConstructor(ExecState* exec, JSValue slotBase, const Identifier&) +{ + JSStorage* domObject = static_cast(asObject(slotBase)); + return JSStorage::getConstructor(exec, domObject->globalObject()); +} +void JSStorage::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) +{ + if (putDelegate(exec, propertyName, value, slot)) + return; + Base::put(exec, propertyName, value, slot); +} + +JSValue JSStorage::getConstructor(ExecState* exec, JSGlobalObject* globalObject) +{ + return getDOMConstructor(exec, static_cast(globalObject)); +} + +EncodedJSValue JSC_HOST_CALL jsStoragePrototypeFunctionKey(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSStorage::s_info)) + return throwVMTypeError(exec); + JSStorage* castedThis = static_cast(asObject(thisValue)); + Storage* imp = static_cast(castedThis->impl()); + unsigned index = exec->argument(0).toInt32(exec); + + + JSC::JSValue result = jsStringOrNull(exec, imp->key(index)); + return JSValue::encode(result); +} + +EncodedJSValue JSC_HOST_CALL jsStoragePrototypeFunctionGetItem(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSStorage::s_info)) + return throwVMTypeError(exec); + JSStorage* castedThis = static_cast(asObject(thisValue)); + Storage* imp = static_cast(castedThis->impl()); + const String& key = ustringToString(exec->argument(0).toString(exec)); + + + JSC::JSValue result = jsStringOrNull(exec, imp->getItem(key)); + return JSValue::encode(result); +} + +EncodedJSValue JSC_HOST_CALL jsStoragePrototypeFunctionSetItem(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSStorage::s_info)) + return throwVMTypeError(exec); + JSStorage* castedThis = static_cast(asObject(thisValue)); + Storage* imp = static_cast(castedThis->impl()); + ExceptionCode ec = 0; + const String& key = ustringToString(exec->argument(0).toString(exec)); + const String& data = ustringToString(exec->argument(1).toString(exec)); + + imp->setItem(key, data, ec); + setDOMException(exec, ec); + return JSValue::encode(jsUndefined()); +} + +EncodedJSValue JSC_HOST_CALL jsStoragePrototypeFunctionRemoveItem(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSStorage::s_info)) + return throwVMTypeError(exec); + JSStorage* castedThis = static_cast(asObject(thisValue)); + Storage* imp = static_cast(castedThis->impl()); + const String& key = ustringToString(exec->argument(0).toString(exec)); + + imp->removeItem(key); + return JSValue::encode(jsUndefined()); +} + +EncodedJSValue JSC_HOST_CALL jsStoragePrototypeFunctionClear(ExecState* exec) +{ + JSValue thisValue = exec->hostThisValue(); + if (!thisValue.inherits(&JSStorage::s_info)) + return throwVMTypeError(exec); + JSStorage* castedThis = static_cast(asObject(thisValue)); + Storage* imp = static_cast(castedThis->impl()); + + imp->clear(); + return JSValue::encode(jsUndefined()); +} + +JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Storage* object) +{ + return getDOMObjectWrapper(exec, globalObject, object); +} +Storage* toStorage(JSC::JSValue value) +{ + return value.inherits(&JSStorage::s_info) ? static_cast(asObject(value))->impl() : 0; +} + +} + +#endif // ENABLE(DOM_STORAGE)