/* 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(DATA_TRANSFER_ITEMS) #include "JSDataTransferItem.h" #include "Blob.h" #include "DataTransferItem.h" #include "ExceptionCode.h" #include "JSBlob.h" #include "JSDOMBinding.h" #include "JSStringCallback.h" #include "KURL.h" #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSDataTransferItem); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSDataTransferItemTableValues[4] = { { "kind", DontDelete | ReadOnly, (intptr_t)static_cast(jsDataTransferItemKind), (intptr_t)0 THUNK_GENERATOR(0) }, { "type", DontDelete | ReadOnly, (intptr_t)static_cast(jsDataTransferItemType), (intptr_t)0 THUNK_GENERATOR(0) }, { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsDataTransferItemConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSDataTransferItemTable = { 8, 7, JSDataTransferItemTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSDataTransferItemConstructorTableValues[1] = { { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSDataTransferItemConstructorTable = { 1, 0, JSDataTransferItemConstructorTableValues, 0 }; class JSDataTransferItemConstructor : public DOMConstructorObject { public: JSDataTransferItemConstructor(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 JSDataTransferItemConstructor::s_info = { "DataTransferItemConstructor", &DOMConstructorObject::s_info, &JSDataTransferItemConstructorTable, 0 }; JSDataTransferItemConstructor::JSDataTransferItemConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSDataTransferItemPrototype::self(exec, globalObject), DontDelete | ReadOnly); } bool JSDataTransferItemConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSDataTransferItemConstructorTable, this, propertyName, slot); } bool JSDataTransferItemConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSDataTransferItemConstructorTable, this, propertyName, descriptor); } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSDataTransferItemPrototypeTableValues[3] = { { "getAsString", DontDelete | Function, (intptr_t)static_cast(jsDataTransferItemPrototypeFunctionGetAsString), (intptr_t)1 THUNK_GENERATOR(0) }, { "getAsFile", DontDelete | Function, (intptr_t)static_cast(jsDataTransferItemPrototypeFunctionGetAsFile), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSDataTransferItemPrototypeTable = { 4, 3, JSDataTransferItemPrototypeTableValues, 0 }; const ClassInfo JSDataTransferItemPrototype::s_info = { "DataTransferItemPrototype", &JSC::JSObjectWithGlobalObject::s_info, &JSDataTransferItemPrototypeTable, 0 }; JSObject* JSDataTransferItemPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSDataTransferItemPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticFunctionSlot(exec, &JSDataTransferItemPrototypeTable, this, propertyName, slot); } bool JSDataTransferItemPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticFunctionDescriptor(exec, &JSDataTransferItemPrototypeTable, this, propertyName, descriptor); } const ClassInfo JSDataTransferItem::s_info = { "DataTransferItem", &JSDOMWrapper::s_info, &JSDataTransferItemTable, 0 }; JSDataTransferItem::JSDataTransferItem(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSDOMWrapper(structure, globalObject) , m_impl(impl) { ASSERT(inherits(&s_info)); } JSObject* JSDataTransferItem::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSDataTransferItemPrototype(exec->globalData(), globalObject, JSDataTransferItemPrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype())); } bool JSDataTransferItem::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSDataTransferItemTable, this, propertyName, slot); } bool JSDataTransferItem::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSDataTransferItemTable, this, propertyName, descriptor); } JSValue jsDataTransferItemKind(ExecState* exec, JSValue slotBase, const Identifier&) { JSDataTransferItem* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); DataTransferItem* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->kind()); return result; } JSValue jsDataTransferItemType(ExecState* exec, JSValue slotBase, const Identifier&) { JSDataTransferItem* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); DataTransferItem* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->type()); return result; } JSValue jsDataTransferItemConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSDataTransferItem* domObject = static_cast(asObject(slotBase)); return JSDataTransferItem::getConstructor(exec, domObject->globalObject()); } JSValue JSDataTransferItem::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } EncodedJSValue JSC_HOST_CALL jsDataTransferItemPrototypeFunctionGetAsString(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSDataTransferItem::s_info)) return throwVMTypeError(exec); JSDataTransferItem* castedThis = static_cast(asObject(thisValue)); DataTransferItem* imp = static_cast(castedThis->impl()); if (exec->argumentCount() <= 0 || !exec->argument(0).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return JSValue::encode(jsUndefined()); } RefPtr callback = JSStringCallback::create(asObject(exec->argument(0)), castedThis->globalObject()); imp->getAsString(callback); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsDataTransferItemPrototypeFunctionGetAsFile(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSDataTransferItem::s_info)) return throwVMTypeError(exec); JSDataTransferItem* castedThis = static_cast(asObject(thisValue)); DataTransferItem* imp = static_cast(castedThis->impl()); JSC::JSValue result = toJS(exec, castedThis->globalObject(), WTF::getPtr(imp->getAsFile())); return JSValue::encode(result); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, DataTransferItem* impl) { return wrap(exec, globalObject, impl); } DataTransferItem* toDataTransferItem(JSC::JSValue value) { return value.inherits(&JSDataTransferItem::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(DATA_TRANSFER_ITEMS)