/* 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(FILE_SYSTEM) #include "JSFileEntry.h" #include "ExceptionCode.h" #include "FileEntry.h" #include "JSDOMBinding.h" #include "JSErrorCallback.h" #include "JSFileCallback.h" #include "JSFileWriterCallback.h" #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSFileEntry); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSFileEntryTableValues[2] = { { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsFileEntryConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSFileEntryTable = { 2, 1, JSFileEntryTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSFileEntryConstructorTableValues[1] = { { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSFileEntryConstructorTable = { 1, 0, JSFileEntryConstructorTableValues, 0 }; class JSFileEntryConstructor : public DOMConstructorObject { public: JSFileEntryConstructor(JSC::ExecState*, JSC::Structure*, JSDOMGlobalObject*); virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier&, JSC::PropertySlot&); virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier&, JSC::PropertyDescriptor&); static const JSC::ClassInfo s_info; static JSC::Structure* createStructure(JSC::JSGlobalData& globalData, JSC::JSValue prototype) { return JSC::Structure::create(globalData, prototype, JSC::TypeInfo(JSC::ObjectType, StructureFlags), AnonymousSlotCount, &s_info); } protected: static const unsigned StructureFlags = JSC::OverridesGetOwnPropertySlot | JSC::ImplementsHasInstance | DOMConstructorObject::StructureFlags; }; const ClassInfo JSFileEntryConstructor::s_info = { "FileEntryConstructor", &DOMConstructorObject::s_info, &JSFileEntryConstructorTable, 0 }; JSFileEntryConstructor::JSFileEntryConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSFileEntryPrototype::self(exec, globalObject), DontDelete | ReadOnly); } bool JSFileEntryConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSFileEntryConstructorTable, this, propertyName, slot); } bool JSFileEntryConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSFileEntryConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSFileEntryPrototypeTableValues[3] = { { "createWriter", DontDelete | Function, (intptr_t)static_cast(jsFileEntryPrototypeFunctionCreateWriter), (intptr_t)2 THUNK_GENERATOR(0) }, { "file", DontDelete | Function, (intptr_t)static_cast(jsFileEntryPrototypeFunctionFile), (intptr_t)2 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSFileEntryPrototypeTable = { 5, 3, JSFileEntryPrototypeTableValues, 0 }; static const HashTable* getJSFileEntryPrototypeTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSFileEntryPrototypeTable); } const ClassInfo JSFileEntryPrototype::s_info = { "FileEntryPrototype", &JSC::JSObjectWithGlobalObject::s_info, 0, getJSFileEntryPrototypeTable }; JSObject* JSFileEntryPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSFileEntryPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, getJSFileEntryPrototypeTable(exec), this, propertyName, slot); } bool JSFileEntryPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticFunctionDescriptor(exec, getJSFileEntryPrototypeTable(exec), this, propertyName, descriptor); } static const HashTable* getJSFileEntryTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSFileEntryTable); } const ClassInfo JSFileEntry::s_info = { "FileEntry", &JSEntry::s_info, 0, getJSFileEntryTable }; JSFileEntry::JSFileEntry(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSEntry(structure, globalObject, impl) { ASSERT(inherits(&s_info)); } JSObject* JSFileEntry::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSFileEntryPrototype(exec->globalData(), globalObject, JSFileEntryPrototype::createStructure(exec->globalData(), JSEntryPrototype::self(exec, globalObject))); } bool JSFileEntry::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, getJSFileEntryTable(exec), this, propertyName, slot); } bool JSFileEntry::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, getJSFileEntryTable(exec), this, propertyName, descriptor); } JSValue jsFileEntryConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSFileEntry* domObject = static_cast(asObject(slotBase)); return JSFileEntry::getConstructor(exec, domObject->globalObject()); } JSValue JSFileEntry::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } EncodedJSValue JSC_HOST_CALL jsFileEntryPrototypeFunctionCreateWriter(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSFileEntry::s_info)) return throwVMTypeError(exec); JSFileEntry* castedThis = static_cast(asObject(thisValue)); FileEntry* imp = static_cast(castedThis->impl()); if (exec->argumentCount() <= 0 || !exec->argument(0).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return JSValue::encode(jsUndefined()); } RefPtr successCallback = JSFileWriterCallback::create(asObject(exec->argument(0)), castedThis->globalObject()); RefPtr errorCallback; if (exec->argumentCount() > 1 && !exec->argument(1).isNull() && !exec->argument(1).isUndefined()) { if (!exec->argument(1).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return JSValue::encode(jsUndefined()); } errorCallback = JSErrorCallback::create(asObject(exec->argument(1)), castedThis->globalObject()); } imp->createWriter(successCallback, errorCallback); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsFileEntryPrototypeFunctionFile(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSFileEntry::s_info)) return throwVMTypeError(exec); JSFileEntry* castedThis = static_cast(asObject(thisValue)); FileEntry* imp = static_cast(castedThis->impl()); if (exec->argumentCount() <= 0 || !exec->argument(0).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return JSValue::encode(jsUndefined()); } RefPtr successCallback = JSFileCallback::create(asObject(exec->argument(0)), castedThis->globalObject()); RefPtr errorCallback; if (exec->argumentCount() > 1 && !exec->argument(1).isNull() && !exec->argument(1).isUndefined()) { if (!exec->argument(1).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return JSValue::encode(jsUndefined()); } errorCallback = JSErrorCallback::create(asObject(exec->argument(1)), castedThis->globalObject()); } imp->file(successCallback, errorCallback); return JSValue::encode(jsUndefined()); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, FileEntry* impl) { return wrap(exec, globalObject, impl); } FileEntry* toFileEntry(JSC::JSValue value) { return value.inherits(&JSFileEntry::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(FILE_SYSTEM)