/* * Copyright (C) 2008, 2009 Apple Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "config.h" #if ENABLE(WORKERS) #include "JSWorkerContext.h" #if ENABLE(DATABASE) #include "Database.h" #include "JSDatabase.h" #include "JSDatabaseCallback.h" #include "JSDatabaseSync.h" #endif #include "ExceptionCode.h" #include "JSDOMBinding.h" #include "JSDOMGlobalObject.h" #include "JSEventListener.h" #include "JSEventSourceConstructor.h" #include "JSMessageChannelConstructor.h" #include "JSMessagePort.h" #include "JSWebSocketConstructor.h" #include "JSWorkerLocation.h" #include "JSWorkerNavigator.h" #include "JSXMLHttpRequest.h" #include "ScheduledAction.h" #include "WorkerContext.h" #include "WorkerLocation.h" #include "WorkerNavigator.h" #include using namespace JSC; namespace WebCore { void JSWorkerContext::markChildren(MarkStack& markStack) { Base::markChildren(markStack); JSGlobalData& globalData = *this->globalData(); markActiveObjectsForContext(markStack, globalData, scriptExecutionContext()); markDOMObjectWrapper(markStack, globalData, impl()->optionalLocation()); markDOMObjectWrapper(markStack, globalData, impl()->optionalNavigator()); impl()->markJSEventListeners(markStack); } bool JSWorkerContext::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) { // Look for overrides before looking at any of our own properties. if (JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot)) return true; return false; } bool JSWorkerContext::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) { // Look for overrides before looking at any of our own properties. if (JSGlobalObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)) return true; return false; } #if ENABLE(EVENTSOURCE) JSValue JSWorkerContext::eventSource(ExecState* exec) const { return getDOMConstructor(exec, this); } #endif JSValue JSWorkerContext::xmlHttpRequest(ExecState* exec) const { return getDOMConstructor(exec, this); } #if ENABLE(WEB_SOCKETS) JSValue JSWorkerContext::webSocket(ExecState* exec) const { return getDOMConstructor(exec, this); } #endif JSValue JSWorkerContext::importScripts(ExecState* exec) { if (!exec->argumentCount()) return jsUndefined(); Vector urls; for (unsigned i = 0; i < exec->argumentCount(); i++) { urls.append(ustringToString(exec->argument(i).toString(exec))); if (exec->hadException()) return jsUndefined(); } ExceptionCode ec = 0; impl()->importScripts(urls, ec); setDOMException(exec, ec); return jsUndefined(); } JSValue JSWorkerContext::setTimeout(ExecState* exec) { OwnPtr action = ScheduledAction::create(exec, currentWorld(exec)); if (exec->hadException()) return jsUndefined(); int delay = exec->argument(1).toInt32(exec); return jsNumber(exec, impl()->setTimeout(action.release(), delay)); } JSValue JSWorkerContext::setInterval(ExecState* exec) { OwnPtr action = ScheduledAction::create(exec, currentWorld(exec)); if (exec->hadException()) return jsUndefined(); int delay = exec->argument(1).toInt32(exec); return jsNumber(exec, impl()->setInterval(action.release(), delay)); } #if ENABLE(CHANNEL_MESSAGING) JSValue JSWorkerContext::messageChannel(ExecState* exec) const { return getDOMConstructor(exec, this); } #endif #if ENABLE(DATABASE) JSValue JSWorkerContext::openDatabase(ExecState* exec) { if (exec->argumentCount() < 4) { setDOMException(exec, SYNTAX_ERR); return jsUndefined(); } String name = ustringToString(exec->argument(0).toString(exec)); if (exec->hadException()) return jsUndefined(); String version = ustringToString(exec->argument(1).toString(exec)); if (exec->hadException()) return jsUndefined(); String displayName = ustringToString(exec->argument(2).toString(exec)); if (exec->hadException()) return jsUndefined(); // exec->argument(3) = estimated size unsigned long estimatedSize = exec->argument(3).toUInt32(exec); if (exec->hadException()) return jsUndefined(); RefPtr creationCallback; if (exec->argumentCount() >= 5) { if (!exec->argument(4).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return jsUndefined(); } creationCallback = JSDatabaseCallback::create(asObject(exec->argument(4)), globalObject()); } ExceptionCode ec = 0; JSValue result = toJS(exec, globalObject(), WTF::getPtr(impl()->openDatabase(name, version, displayName, estimatedSize, creationCallback.release(), ec))); setDOMException(exec, ec); return result; } JSValue JSWorkerContext::openDatabaseSync(ExecState* exec) { if (exec->argumentCount() < 4) { setDOMException(exec, SYNTAX_ERR); return jsUndefined(); } String name = ustringToString(exec->argument(0).toString(exec)); if (exec->hadException()) return jsUndefined(); String version = ustringToString(exec->argument(1).toString(exec)); if (exec->hadException()) return jsUndefined(); String displayName = ustringToString(exec->argument(2).toString(exec)); if (exec->hadException()) return jsUndefined(); // exec->argument(3) = estimated size unsigned long estimatedSize = exec->argument(3).toUInt32(exec); if (exec->hadException()) return jsUndefined(); RefPtr creationCallback; if (exec->argumentCount() >= 5) { if (!exec->argument(4).isObject()) { setDOMException(exec, TYPE_MISMATCH_ERR); return jsUndefined(); } creationCallback = JSDatabaseCallback::create(asObject(exec->argument(4)), globalObject()); } ExceptionCode ec = 0; JSValue result = toJS(exec, globalObject(), WTF::getPtr(impl()->openDatabaseSync(name, version, displayName, estimatedSize, creationCallback.release(), ec))); setDOMException(exec, ec); return result; } #endif } // namespace WebCore #endif // ENABLE(WORKERS)