/* 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(EVENTSOURCE) #include "JSEventSource.h" #include "Event.h" #include "EventListener.h" #include "EventSource.h" #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "JSEvent.h" #include "JSEventListener.h" #include "KURL.h" #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSEventSource); /* Hash table */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSEventSourceTableValues[7] = { { "URL", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceURL), (intptr_t)0 THUNK_GENERATOR(0) }, { "readyState", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceReadyState), (intptr_t)0 THUNK_GENERATOR(0) }, { "onopen", DontDelete, (intptr_t)static_cast(jsEventSourceOnopen), (intptr_t)setJSEventSourceOnopen THUNK_GENERATOR(0) }, { "onmessage", DontDelete, (intptr_t)static_cast(jsEventSourceOnmessage), (intptr_t)setJSEventSourceOnmessage THUNK_GENERATOR(0) }, { "onerror", DontDelete, (intptr_t)static_cast(jsEventSourceOnerror), (intptr_t)setJSEventSourceOnerror THUNK_GENERATOR(0) }, { "constructor", DontEnum | ReadOnly, (intptr_t)static_cast(jsEventSourceConstructor), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSEventSourceTable = { 17, 15, JSEventSourceTableValues, 0 }; /* Hash table for constructor */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSEventSourceConstructorTableValues[4] = { { "CONNECTING", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceCONNECTING), (intptr_t)0 THUNK_GENERATOR(0) }, { "OPEN", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceOPEN), (intptr_t)0 THUNK_GENERATOR(0) }, { "CLOSED", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceCLOSED), (intptr_t)0 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSEventSourceConstructorTable = { 8, 7, JSEventSourceConstructorTableValues, 0 }; COMPILE_ASSERT(0 == EventSource::CONNECTING, EventSourceEnumCONNECTINGIsWrongUseDontCheckEnums); COMPILE_ASSERT(1 == EventSource::OPEN, EventSourceEnumOPENIsWrongUseDontCheckEnums); COMPILE_ASSERT(2 == EventSource::CLOSED, EventSourceEnumCLOSEDIsWrongUseDontCheckEnums); const ClassInfo JSEventSourceConstructor::s_info = { "EventSourceConstructor", &DOMConstructorObject::s_info, &JSEventSourceConstructorTable, 0 }; JSEventSourceConstructor::JSEventSourceConstructor(ExecState* exec, Structure* structure, JSDOMGlobalObject* globalObject) : DOMConstructorObject(structure, globalObject) { ASSERT(inherits(&s_info)); putDirect(exec->globalData(), exec->propertyNames().prototype, JSEventSourcePrototype::self(exec, globalObject), DontDelete | ReadOnly); putDirect(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontDelete | DontEnum); } bool JSEventSourceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, &JSEventSourceConstructorTable, this, propertyName, slot); } bool JSEventSourceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, &JSEventSourceConstructorTable, this, propertyName, descriptor); } ConstructType JSEventSourceConstructor::getConstructData(ConstructData& constructData) { constructData.native.function = constructJSEventSource; return ConstructTypeHost; } /* Hash table for prototype */ #if ENABLE(JIT) #define THUNK_GENERATOR(generator) , generator #else #define THUNK_GENERATOR(generator) #endif static const HashTableValue JSEventSourcePrototypeTableValues[8] = { { "CONNECTING", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceCONNECTING), (intptr_t)0 THUNK_GENERATOR(0) }, { "OPEN", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceOPEN), (intptr_t)0 THUNK_GENERATOR(0) }, { "CLOSED", DontDelete | ReadOnly, (intptr_t)static_cast(jsEventSourceCLOSED), (intptr_t)0 THUNK_GENERATOR(0) }, { "close", DontDelete | Function, (intptr_t)static_cast(jsEventSourcePrototypeFunctionClose), (intptr_t)0 THUNK_GENERATOR(0) }, { "addEventListener", DontDelete | Function, (intptr_t)static_cast(jsEventSourcePrototypeFunctionAddEventListener), (intptr_t)3 THUNK_GENERATOR(0) }, { "removeEventListener", DontDelete | Function, (intptr_t)static_cast(jsEventSourcePrototypeFunctionRemoveEventListener), (intptr_t)3 THUNK_GENERATOR(0) }, { "dispatchEvent", DontDelete | Function, (intptr_t)static_cast(jsEventSourcePrototypeFunctionDispatchEvent), (intptr_t)1 THUNK_GENERATOR(0) }, { 0, 0, 0, 0 THUNK_GENERATOR(0) } }; #undef THUNK_GENERATOR static JSC_CONST_HASHTABLE HashTable JSEventSourcePrototypeTable = { 17, 15, JSEventSourcePrototypeTableValues, 0 }; static const HashTable* getJSEventSourcePrototypeTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSEventSourcePrototypeTable); } const ClassInfo JSEventSourcePrototype::s_info = { "EventSourcePrototype", &JSC::JSObjectWithGlobalObject::s_info, 0, getJSEventSourcePrototypeTable }; JSObject* JSEventSourcePrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSEventSourcePrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticPropertySlot(exec, getJSEventSourcePrototypeTable(exec), this, propertyName, slot); } bool JSEventSourcePrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticPropertyDescriptor(exec, getJSEventSourcePrototypeTable(exec), this, propertyName, descriptor); } static const HashTable* getJSEventSourceTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSEventSourceTable); } const ClassInfo JSEventSource::s_info = { "EventSource", &JSDOMWrapper::s_info, 0, getJSEventSourceTable }; JSEventSource::JSEventSource(Structure* structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : JSDOMWrapper(structure, globalObject) , m_impl(impl) { ASSERT(inherits(&s_info)); } void JSEventSource::visitChildren(SlotVisitor& visitor) { Base::visitChildren(visitor); impl()->visitJSEventListeners(visitor); } JSObject* JSEventSource::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSEventSourcePrototype(exec->globalData(), globalObject, JSEventSourcePrototype::createStructure(globalObject->globalData(), globalObject->objectPrototype())); } bool JSEventSource::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, getJSEventSourceTable(exec), this, propertyName, slot); } bool JSEventSource::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, getJSEventSourceTable(exec), this, propertyName, descriptor); } JSValue jsEventSourceURL(ExecState* exec, JSValue slotBase, const Identifier&) { JSEventSource* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->url()); return result; } JSValue jsEventSourceReadyState(ExecState* exec, JSValue slotBase, const Identifier&) { JSEventSource* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(imp->readyState()); return result; } JSValue jsEventSourceOnopen(ExecState* exec, JSValue slotBase, const Identifier&) { JSEventSource* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onopen()) { if (const JSEventListener* jsListener = JSEventListener::cast(listener)) { if (JSObject* jsFunction = jsListener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } } return jsNull(); } JSValue jsEventSourceOnmessage(ExecState* exec, JSValue slotBase, const Identifier&) { JSEventSource* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onmessage()) { if (const JSEventListener* jsListener = JSEventListener::cast(listener)) { if (JSObject* jsFunction = jsListener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } } return jsNull(); } JSValue jsEventSourceOnerror(ExecState* exec, JSValue slotBase, const Identifier&) { JSEventSource* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onerror()) { if (const JSEventListener* jsListener = JSEventListener::cast(listener)) { if (JSObject* jsFunction = jsListener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } } return jsNull(); } JSValue jsEventSourceConstructor(ExecState* exec, JSValue slotBase, const Identifier&) { JSEventSource* domObject = static_cast(asObject(slotBase)); return JSEventSource::getConstructor(exec, domObject->globalObject()); } void JSEventSource::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, getJSEventSourceTable(exec), this, slot); } void setJSEventSourceOnopen(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); JSEventSource* castedThis = static_cast(thisObject); EventSource* imp = static_cast(castedThis->impl()); imp->setOnopen(createJSAttributeEventListener(exec, value, thisObject)); } void setJSEventSourceOnmessage(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); JSEventSource* castedThis = static_cast(thisObject); EventSource* imp = static_cast(castedThis->impl()); imp->setOnmessage(createJSAttributeEventListener(exec, value, thisObject)); } void setJSEventSourceOnerror(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); JSEventSource* castedThis = static_cast(thisObject); EventSource* imp = static_cast(castedThis->impl()); imp->setOnerror(createJSAttributeEventListener(exec, value, thisObject)); } JSValue JSEventSource::getConstructor(ExecState* exec, JSGlobalObject* globalObject) { return getDOMConstructor(exec, static_cast(globalObject)); } EncodedJSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionClose(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSEventSource::s_info)) return throwVMTypeError(exec); JSEventSource* castedThis = static_cast(asObject(thisValue)); EventSource* imp = static_cast(castedThis->impl()); imp->close(); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionAddEventListener(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSEventSource::s_info)) return throwVMTypeError(exec); JSEventSource* castedThis = static_cast(asObject(thisValue)); EventSource* imp = static_cast(castedThis->impl()); JSValue listener = exec->argument(1); if (!listener.isObject()) return JSValue::encode(jsUndefined()); imp->addEventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), castedThis, false, currentWorld(exec)), exec->argument(2).toBoolean(exec)); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionRemoveEventListener(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSEventSource::s_info)) return throwVMTypeError(exec); JSEventSource* castedThis = static_cast(asObject(thisValue)); EventSource* imp = static_cast(castedThis->impl()); JSValue listener = exec->argument(1); if (!listener.isObject()) return JSValue::encode(jsUndefined()); imp->removeEventListener(ustringToAtomicString(exec->argument(0).toString(exec)), JSEventListener::create(asObject(listener), castedThis, false, currentWorld(exec)).get(), exec->argument(2).toBoolean(exec)); return JSValue::encode(jsUndefined()); } EncodedJSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionDispatchEvent(ExecState* exec) { JSValue thisValue = exec->hostThisValue(); if (!thisValue.inherits(&JSEventSource::s_info)) return throwVMTypeError(exec); JSEventSource* castedThis = static_cast(asObject(thisValue)); EventSource* imp = static_cast(castedThis->impl()); ExceptionCode ec = 0; Event* evt(toEvent(exec->argument(0))); if (exec->hadException()) return JSValue::encode(jsUndefined()); JSC::JSValue result = jsBoolean(imp->dispatchEvent(evt, ec)); setDOMException(exec, ec); return JSValue::encode(result); } // Constant getters JSValue jsEventSourceCONNECTING(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(0)); } JSValue jsEventSourceOPEN(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(1)); } JSValue jsEventSourceCLOSED(ExecState* exec, JSValue, const Identifier&) { UNUSED_PARAM(exec); return jsNumber(static_cast(2)); } static inline bool isObservable(JSEventSource* jsEventSource) { if (jsEventSource->hasCustomProperties()) return true; if (jsEventSource->impl()->hasEventListeners()) return true; return false; } bool JSEventSourceOwner::isReachableFromOpaqueRoots(JSC::Handle handle, void*, SlotVisitor& visitor) { JSEventSource* jsEventSource = static_cast(handle.get().asCell()); if (jsEventSource->impl()->hasPendingActivity()) return true; if (!isObservable(jsEventSource)) return false; UNUSED_PARAM(visitor); return false; } void JSEventSourceOwner::finalize(JSC::Handle handle, void* context) { JSEventSource* jsEventSource = static_cast(handle.get().asCell()); DOMWrapperWorld* world = static_cast(context); uncacheWrapper(world, jsEventSource->impl(), jsEventSource); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, EventSource* impl) { return wrap(exec, globalObject, impl); } EventSource* toEventSource(JSC::JSValue value) { return value.inherits(&JSEventSource::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(EVENTSOURCE)