/* 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(WEB_SOCKETS) #include "JSWebSocket.h" #include "Event.h" #include "EventListener.h" #include "JSEvent.h" #include "JSEventListener.h" #include "KURL.h" #include "RegisteredEventListener.h" #include "WebSocket.h" #include #include #include #include using namespace JSC; namespace WebCore { ASSERT_CLASS_FITS_IN_CELL(JSWebSocket); /* Hash table */ static const HashTableValue JSWebSocketTableValues[8] = { { "URL", DontDelete|ReadOnly, (intptr_t)static_cast(jsWebSocketURL), (intptr_t)0 }, { "readyState", DontDelete|ReadOnly, (intptr_t)static_cast(jsWebSocketReadyState), (intptr_t)0 }, { "bufferedAmount", DontDelete|ReadOnly, (intptr_t)static_cast(jsWebSocketBufferedAmount), (intptr_t)0 }, { "onopen", DontDelete, (intptr_t)static_cast(jsWebSocketOnopen), (intptr_t)setJSWebSocketOnopen }, { "onmessage", DontDelete, (intptr_t)static_cast(jsWebSocketOnmessage), (intptr_t)setJSWebSocketOnmessage }, { "onerror", DontDelete, (intptr_t)static_cast(jsWebSocketOnerror), (intptr_t)setJSWebSocketOnerror }, { "onclose", DontDelete, (intptr_t)static_cast(jsWebSocketOnclose), (intptr_t)setJSWebSocketOnclose }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSWebSocketTable = #if ENABLE(PERFECT_HASH_SIZE) { 127, JSWebSocketTableValues, 0 }; #else { 17, 15, JSWebSocketTableValues, 0 }; #endif /* Hash table for prototype */ static const HashTableValue JSWebSocketPrototypeTableValues[9] = { { "CONNECTING", DontDelete|ReadOnly, (intptr_t)static_cast(jsWebSocketCONNECTING), (intptr_t)0 }, { "OPEN", DontDelete|ReadOnly, (intptr_t)static_cast(jsWebSocketOPEN), (intptr_t)0 }, { "CLOSED", DontDelete|ReadOnly, (intptr_t)static_cast(jsWebSocketCLOSED), (intptr_t)0 }, { "send", DontDelete|Function, (intptr_t)static_cast(jsWebSocketPrototypeFunctionSend), (intptr_t)1 }, { "close", DontDelete|Function, (intptr_t)static_cast(jsWebSocketPrototypeFunctionClose), (intptr_t)0 }, { "addEventListener", DontDelete|Function, (intptr_t)static_cast(jsWebSocketPrototypeFunctionAddEventListener), (intptr_t)3 }, { "removeEventListener", DontDelete|Function, (intptr_t)static_cast(jsWebSocketPrototypeFunctionRemoveEventListener), (intptr_t)3 }, { "dispatchEvent", DontDelete|Function, (intptr_t)static_cast(jsWebSocketPrototypeFunctionDispatchEvent), (intptr_t)1 }, { 0, 0, 0, 0 } }; static JSC_CONST_HASHTABLE HashTable JSWebSocketPrototypeTable = #if ENABLE(PERFECT_HASH_SIZE) { 127, JSWebSocketPrototypeTableValues, 0 }; #else { 17, 15, JSWebSocketPrototypeTableValues, 0 }; #endif static const HashTable* getJSWebSocketPrototypeTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSWebSocketPrototypeTable); } const ClassInfo JSWebSocketPrototype::s_info = { "WebSocketPrototype", 0, 0, getJSWebSocketPrototypeTable }; JSObject* JSWebSocketPrototype::self(ExecState* exec, JSGlobalObject* globalObject) { return getDOMPrototype(exec, globalObject); } bool JSWebSocketPrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticPropertySlot(exec, getJSWebSocketPrototypeTable(exec), this, propertyName, slot); } bool JSWebSocketPrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticPropertyDescriptor(exec, getJSWebSocketPrototypeTable(exec), this, propertyName, descriptor); } static const HashTable* getJSWebSocketTable(ExecState* exec) { return getHashTableForGlobalData(exec->globalData(), &JSWebSocketTable); } const ClassInfo JSWebSocket::s_info = { "WebSocket", 0, 0, getJSWebSocketTable }; JSWebSocket::JSWebSocket(NonNullPassRefPtr structure, JSDOMGlobalObject* globalObject, PassRefPtr impl) : DOMObjectWithGlobalPointer(structure, globalObject) , m_impl(impl) { } JSWebSocket::~JSWebSocket() { impl()->invalidateJSEventListeners(this); forgetDOMObject(this, impl()); } void JSWebSocket::markChildren(MarkStack& markStack) { Base::markChildren(markStack); impl()->markJSEventListeners(markStack); } JSObject* JSWebSocket::createPrototype(ExecState* exec, JSGlobalObject* globalObject) { return new (exec) JSWebSocketPrototype(JSWebSocketPrototype::createStructure(globalObject->objectPrototype())); } bool JSWebSocket::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { return getStaticValueSlot(exec, getJSWebSocketTable(exec), this, propertyName, slot); } bool JSWebSocket::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { return getStaticValueDescriptor(exec, getJSWebSocketTable(exec), this, propertyName, descriptor); } JSValue jsWebSocketURL(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* imp = static_cast(castedThis->impl()); JSValue result = jsString(exec, imp->url()); return result; } JSValue jsWebSocketReadyState(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(exec, imp->readyState()); return result; } JSValue jsWebSocketBufferedAmount(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* imp = static_cast(castedThis->impl()); JSValue result = jsNumber(exec, imp->bufferedAmount()); return result; } JSValue jsWebSocketOnopen(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* 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 jsWebSocketOnmessage(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* 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 jsWebSocketOnerror(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* 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 jsWebSocketOnclose(ExecState* exec, JSValue slotBase, const Identifier&) { JSWebSocket* castedThis = static_cast(asObject(slotBase)); UNUSED_PARAM(exec); WebSocket* imp = static_cast(castedThis->impl()); if (EventListener* listener = imp->onclose()) { if (const JSEventListener* jsListener = JSEventListener::cast(listener)) { if (JSObject* jsFunction = jsListener->jsFunction(imp->scriptExecutionContext())) return jsFunction; } } return jsNull(); } void JSWebSocket::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) { lookupPut(exec, propertyName, value, getJSWebSocketTable(exec), this, slot); } void setJSWebSocketOnopen(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); WebSocket* imp = static_cast(static_cast(thisObject)->impl()); imp->setOnopen(createJSAttributeEventListener(exec, value, thisObject)); } void setJSWebSocketOnmessage(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); WebSocket* imp = static_cast(static_cast(thisObject)->impl()); imp->setOnmessage(createJSAttributeEventListener(exec, value, thisObject)); } void setJSWebSocketOnerror(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); WebSocket* imp = static_cast(static_cast(thisObject)->impl()); imp->setOnerror(createJSAttributeEventListener(exec, value, thisObject)); } void setJSWebSocketOnclose(ExecState* exec, JSObject* thisObject, JSValue value) { UNUSED_PARAM(exec); WebSocket* imp = static_cast(static_cast(thisObject)->impl()); imp->setOnclose(createJSAttributeEventListener(exec, value, thisObject)); } JSValue JSC_HOST_CALL jsWebSocketPrototypeFunctionSend(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSWebSocket::s_info)) return throwError(exec, TypeError); JSWebSocket* castedThisObj = static_cast(asObject(thisValue)); return castedThisObj->send(exec, args); } JSValue JSC_HOST_CALL jsWebSocketPrototypeFunctionClose(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSWebSocket::s_info)) return throwError(exec, TypeError); JSWebSocket* castedThisObj = static_cast(asObject(thisValue)); WebSocket* imp = static_cast(castedThisObj->impl()); imp->close(); return jsUndefined(); } JSValue JSC_HOST_CALL jsWebSocketPrototypeFunctionAddEventListener(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSWebSocket::s_info)) return throwError(exec, TypeError); JSWebSocket* castedThisObj = static_cast(asObject(thisValue)); return castedThisObj->addEventListener(exec, args); } JSValue JSC_HOST_CALL jsWebSocketPrototypeFunctionRemoveEventListener(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSWebSocket::s_info)) return throwError(exec, TypeError); JSWebSocket* castedThisObj = static_cast(asObject(thisValue)); return castedThisObj->removeEventListener(exec, args); } JSValue JSC_HOST_CALL jsWebSocketPrototypeFunctionDispatchEvent(ExecState* exec, JSObject*, JSValue thisValue, const ArgList& args) { UNUSED_PARAM(args); if (!thisValue.inherits(&JSWebSocket::s_info)) return throwError(exec, TypeError); JSWebSocket* castedThisObj = static_cast(asObject(thisValue)); WebSocket* 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 jsWebSocketCONNECTING(ExecState* exec, JSValue, const Identifier&) { return jsNumber(exec, static_cast(0)); } JSValue jsWebSocketOPEN(ExecState* exec, JSValue, const Identifier&) { return jsNumber(exec, static_cast(1)); } JSValue jsWebSocketCLOSED(ExecState* exec, JSValue, const Identifier&) { return jsNumber(exec, static_cast(2)); } JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, WebSocket* object) { return getDOMObjectWrapper(exec, globalObject, object); } WebSocket* toWebSocket(JSC::JSValue value) { return value.inherits(&JSWebSocket::s_info) ? static_cast(asObject(value))->impl() : 0; } } #endif // ENABLE(WEB_SOCKETS)