/* 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 "Frame.h" #include "JSDOMGlobalObject.h" #include "JSEvent.h" #include "JSEventListener.h" #include "KURL.h" #include "RegisteredEventListener.h" #include #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSEventSource); /* Hash table */ static const HashTableValue JSEventSourceTableValues[6] = { { "URL", DontDelete|ReadOnly, (intptr_t)jsEventSourceURL, (intptr_t)0 }, { "readyState", DontDelete|ReadOnly, (intptr_t)jsEventSourceReadyState, (intptr_t)0 }, { "onopen", DontDelete, (intptr_t)jsEventSourceOnopen, (intptr_t)setJSEventSourceOnopen }, { "onmessage", DontDelete, (intptr_t)jsEventSourceOnmessage, (intptr_t)setJSEventSourceOnmessage }, { "onerror", DontDelete, (intptr_t)jsEventSourceOnerror, (intptr_t)setJSEventSourceOnerror }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSEventSourceTable = #if ENABLE(PERFECT_HASH_SIZE) { 127, JSEventSourceTableValues, 0 }; #else { 17, 15, JSEventSourceTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSEventSourcePrototypeTableValues[8] = { { "CONNECTING", DontDelete|ReadOnly, (intptr_t)jsEventSourceCONNECTING, (intptr_t)0 }, { "OPEN", DontDelete|ReadOnly, (intptr_t)jsEventSourceOPEN, (intptr_t)0 }, { "CLOSED", DontDelete|ReadOnly, (intptr_t)jsEventSourceCLOSED, (intptr_t)0 }, { "close", DontDelete|Function, (intptr_t)jsEventSourcePrototypeFunctionClose, (intptr_t)0 }, { "addEventListener", DontDelete|Function, (intptr_t)jsEventSourcePrototypeFunctionAddEventListener, (intptr_t)3 }, { "removeEventListener", DontDelete|Function, (intptr_t)jsEventSourcePrototypeFunctionRemoveEventListener, (intptr_t)3 }, { "dispatchEvent", DontDelete|Function, (intptr_t)jsEventSourcePrototypeFunctionDispatchEvent, (intptr_t)1 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSEventSourcePrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 127, JSEventSourcePrototypeTableValues, 0 }; #else { 17, 15, JSEventSourcePrototypeTableValues, 0 }; #endif static const HashTable* getJSEventSourcePrototypeTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSEventSourcePrototypeTable); } const ClassInfo JSEventSourcePrototype::s_info = { "EventSourcePrototype", 0, 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", 0, 0, getJSEventSourceTable }; JSEventSource::JSEventSource(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl) { } JSEventSource::~JSEventSource() { impl()->invalidateEventListeners(); forgetDOMObject(this, impl()); } void JSEventSource::markChildren(MarkStack& markStack) { Base::markChildren(markStack); impl()->markEventListeners(markStack); } JSObject* JSEventSource::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSEventSourcePrototype(JSEventSourcePrototype::createStructure(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, const Identifier&, const PropertySlot& slot) { JSEventSource* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); return jsString(exec, imp->url()); } JSValue jsEventSourceReadyState(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSEventSource* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); return jsNumber(exec, imp->readyState()); } JSValue jsEventSourceOnopen(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSEventSource* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onopen()) { if (JSObject* jsFunction = listener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } return jsNull(); } JSValue jsEventSourceOnmessage(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSEventSource* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onmessage()) { if (JSObject* jsFunction = listener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } return jsNull(); } JSValue jsEventSourceOnerror(ExecState* exec, const Identifier&, const PropertySlot& slot) { JSEventSource* castedThis = static_cast(asObject(slot.slotBase())); UNUSED_PARAM(exec); EventSource* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onerror()) { if (JSObject* jsFunction = listener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } return jsNull(); } 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); EventSource* imp = static_cast(static_cast(thisObject)->impl()); JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(imp->scriptExecutionContext(), exec); if (!globalObject) return; imp->setOnopen(globalObject->createJSAttributeEventListener(value)); } void setJSEventSourceOnmessage(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); EventSource* imp = static_cast(static_cast(thisObject)->impl()); JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(imp->scriptExecutionContext(), exec); if (!globalObject) return; imp->setOnmessage(globalObject->createJSAttributeEventListener(value)); } void setJSEventSourceOnerror(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); EventSource* imp = static_cast(static_cast(thisObject)->impl()); JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(imp->scriptExecutionContext(), exec); if (!globalObject) return; imp->setOnerror(globalObject->createJSAttributeEventListener(value)); } JSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionClose(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSEventSource::s_info)) return throwError(exec, TypeError); JSEventSource* castedThisObj = static_cast(asObject(thisValue)); EventSource* imp = static_cast(castedThisObj->impl()); imp->close(); return jsUndefined(); } JSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionAddEventListener(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSEventSource::s_info)) return throwError(exec, TypeError); JSEventSource* castedThisObj = static_cast(asObject(thisValue)); return castedThisObj->addEventListener(exec, args); } JSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionRemoveEventListener(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSEventSource::s_info)) return throwError(exec, TypeError); JSEventSource* castedThisObj = static_cast(asObject(thisValue)); return castedThisObj->removeEventListener(exec, args); } JSValue JSC_HOST_CALL jsEventSourcePrototypeFunctionDispatchEvent(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSEventSource::s_info)) return throwError(exec, TypeError); JSEventSource* castedThisObj = static_cast(asObject(thisValue)); EventSource* imp = static_cast(castedThisObj->impl()); ExceptionCode ec = 0; Event* evt = toEvent(args.at(0)); JSC::JSValue result = jsBoolean(imp->dispatchEvent(evt, ec)); setDOMException(exec, ec); return result; } // Constant getters JSValue jsEventSourceCONNECTING(ExecState* exec, const Identifier&, const PropertySlot&) { return jsNumber(exec, static_cast(0)); } JSValue jsEventSourceOPEN(ExecState* exec, const Identifier&, const PropertySlot&) { return jsNumber(exec, static_cast(1)); } JSValue jsEventSourceCLOSED(ExecState* exec, const Identifier&, const PropertySlot&) { return jsNumber(exec, static_cast(2)); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, EventSource* object) { return getDOMObjectWrapper(exec, globalObject, object); } EventSource* toEventSource(JSC::JSValue value) { return value.inherits(&JSEventSource::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(EVENTSOURCE)