WebCore/generated/JSDatabase.cpp
changeset 0 4f2f89ce4247
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/generated/JSDatabase.cpp	Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,171 @@
+/*
+    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(DATABASE)
+
+#include "JSDatabase.h"
+
+#include "Database.h"
+#include "KURL.h"
+#include <runtime/Error.h>
+#include <runtime/JSString.h>
+#include <wtf/GetPtr.h>
+
+using namespace JSC;
+
+namespace WebCore {
+
+ASSERT_CLASS_FITS_IN_CELL(JSDatabase);
+
+/* Hash table */
+#if ENABLE(JIT)
+#define THUNK_GENERATOR(generator) , generator
+#else
+#define THUNK_GENERATOR(generator)
+#endif
+
+static const HashTableValue JSDatabaseTableValues[2] =
+{
+    { "version", DontDelete | ReadOnly, (intptr_t)static_cast<PropertySlot::GetValueFunc>(jsDatabaseVersion), (intptr_t)0 THUNK_GENERATOR(0) },
+    { 0, 0, 0, 0 THUNK_GENERATOR(0) }
+};
+
+#undef THUNK_GENERATOR
+static JSC_CONST_HASHTABLE HashTable JSDatabaseTable = { 2, 1, JSDatabaseTableValues, 0 };
+/* Hash table for prototype */
+#if ENABLE(JIT)
+#define THUNK_GENERATOR(generator) , generator
+#else
+#define THUNK_GENERATOR(generator)
+#endif
+
+static const HashTableValue JSDatabasePrototypeTableValues[4] =
+{
+    { "changeVersion", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsDatabasePrototypeFunctionChangeVersion), (intptr_t)5 THUNK_GENERATOR(0) },
+    { "transaction", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsDatabasePrototypeFunctionTransaction), (intptr_t)3 THUNK_GENERATOR(0) },
+    { "readTransaction", DontDelete | Function, (intptr_t)static_cast<NativeFunction>(jsDatabasePrototypeFunctionReadTransaction), (intptr_t)3 THUNK_GENERATOR(0) },
+    { 0, 0, 0, 0 THUNK_GENERATOR(0) }
+};
+
+#undef THUNK_GENERATOR
+static JSC_CONST_HASHTABLE HashTable JSDatabasePrototypeTable = { 8, 7, JSDatabasePrototypeTableValues, 0 };
+static const HashTable* getJSDatabasePrototypeTable(ExecState* exec)
+{
+    return getHashTableForGlobalData(exec->globalData(), &JSDatabasePrototypeTable);
+}
+const ClassInfo JSDatabasePrototype::s_info = { "DatabasePrototype", 0, 0, getJSDatabasePrototypeTable };
+
+JSObject* JSDatabasePrototype::self(ExecState* exec, JSGlobalObject* globalObject)
+{
+    return getDOMPrototype<JSDatabase>(exec, globalObject);
+}
+
+bool JSDatabasePrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    return getStaticFunctionSlot<JSObject>(exec, getJSDatabasePrototypeTable(exec), this, propertyName, slot);
+}
+
+bool JSDatabasePrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
+{
+    return getStaticFunctionDescriptor<JSObject>(exec, getJSDatabasePrototypeTable(exec), this, propertyName, descriptor);
+}
+
+static const HashTable* getJSDatabaseTable(ExecState* exec)
+{
+    return getHashTableForGlobalData(exec->globalData(), &JSDatabaseTable);
+}
+const ClassInfo JSDatabase::s_info = { "Database", 0, 0, getJSDatabaseTable };
+
+JSDatabase::JSDatabase(NonNullPassRefPtr<Structure> structure, JSDOMGlobalObject* globalObject, PassRefPtr<Database> impl)
+    : DOMObjectWithGlobalPointer(structure, globalObject)
+    , m_impl(impl)
+{
+}
+
+JSDatabase::~JSDatabase()
+{
+    forgetDOMObject(this, impl());
+}
+
+JSObject* JSDatabase::createPrototype(ExecState* exec, JSGlobalObject* globalObject)
+{
+    return new (exec) JSDatabasePrototype(globalObject, JSDatabasePrototype::createStructure(globalObject->objectPrototype()));
+}
+
+bool JSDatabase::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
+{
+    return getStaticValueSlot<JSDatabase, Base>(exec, getJSDatabaseTable(exec), this, propertyName, slot);
+}
+
+bool JSDatabase::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
+{
+    return getStaticValueDescriptor<JSDatabase, Base>(exec, getJSDatabaseTable(exec), this, propertyName, descriptor);
+}
+
+JSValue jsDatabaseVersion(ExecState* exec, JSValue slotBase, const Identifier&)
+{
+    JSDatabase* castedThis = static_cast<JSDatabase*>(asObject(slotBase));
+    UNUSED_PARAM(exec);
+    Database* imp = static_cast<Database*>(castedThis->impl());
+    JSValue result = jsString(exec, imp->version());
+    return result;
+}
+
+EncodedJSValue JSC_HOST_CALL jsDatabasePrototypeFunctionChangeVersion(ExecState* exec)
+{
+    JSValue thisValue = exec->hostThisValue();
+    if (!thisValue.inherits(&JSDatabase::s_info))
+        return throwVMTypeError(exec);
+    JSDatabase* castedThis = static_cast<JSDatabase*>(asObject(thisValue));
+    return JSValue::encode(castedThis->changeVersion(exec));
+}
+
+EncodedJSValue JSC_HOST_CALL jsDatabasePrototypeFunctionTransaction(ExecState* exec)
+{
+    JSValue thisValue = exec->hostThisValue();
+    if (!thisValue.inherits(&JSDatabase::s_info))
+        return throwVMTypeError(exec);
+    JSDatabase* castedThis = static_cast<JSDatabase*>(asObject(thisValue));
+    return JSValue::encode(castedThis->transaction(exec));
+}
+
+EncodedJSValue JSC_HOST_CALL jsDatabasePrototypeFunctionReadTransaction(ExecState* exec)
+{
+    JSValue thisValue = exec->hostThisValue();
+    if (!thisValue.inherits(&JSDatabase::s_info))
+        return throwVMTypeError(exec);
+    JSDatabase* castedThis = static_cast<JSDatabase*>(asObject(thisValue));
+    return JSValue::encode(castedThis->readTransaction(exec));
+}
+
+JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Database* object)
+{
+    return getDOMObjectWrapper<JSDatabase>(exec, globalObject, object);
+}
+Database* toDatabase(JSC::JSValue value)
+{
+    return value.inherits(&JSDatabase::s_info) ? static_cast<JSDatabase*>(asObject(value))->impl() : 0;
+}
+
+}
+
+#endif // ENABLE(DATABASE)