/* * Copyright (C) 2008 Apple Inc. All Rights Reserved. * Copyright (C) 2009 Google 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 COMPUTER, 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 COMPUTER, 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 "WorkerMessagingProxy.h" #include "ContentSecurityPolicy.h" #include "CrossThreadTask.h" #include "DedicatedWorkerContext.h" #include "DedicatedWorkerThread.h" #include "DOMWindow.h" #include "Document.h" #include "ErrorEvent.h" #include "ExceptionCode.h" #include "InspectorInstrumentation.h" #include "MessageEvent.h" #include "NotImplemented.h" #include "ScriptCallStack.h" #include "ScriptExecutionContext.h" #include "Worker.h" #include "WorkerDebuggerAgent.h" #include "WorkerInspectorController.h" #include namespace WebCore { class MessageWorkerContextTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(PassRefPtr message, PassOwnPtr channels) { return adoptPtr(new MessageWorkerContextTask(message, channels)); } private: MessageWorkerContextTask(PassRefPtr message, PassOwnPtr channels) : m_message(message) , m_channels(channels) { } virtual void performTask(ScriptExecutionContext* scriptContext) { ASSERT(scriptContext->isWorkerContext()); DedicatedWorkerContext* context = static_cast(scriptContext); OwnPtr ports = MessagePort::entanglePorts(*scriptContext, m_channels.release()); context->dispatchEvent(MessageEvent::create(ports.release(), m_message)); context->thread()->workerObjectProxy().confirmMessageFromWorkerObject(context->hasPendingActivity()); } private: RefPtr m_message; OwnPtr m_channels; }; class MessageWorkerTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(PassRefPtr message, PassOwnPtr channels, WorkerMessagingProxy* messagingProxy) { return adoptPtr(new MessageWorkerTask(message, channels, messagingProxy)); } private: MessageWorkerTask(PassRefPtr message, PassOwnPtr channels, WorkerMessagingProxy* messagingProxy) : m_message(message) , m_channels(channels) , m_messagingProxy(messagingProxy) { } virtual void performTask(ScriptExecutionContext* scriptContext) { Worker* workerObject = m_messagingProxy->workerObject(); if (!workerObject || m_messagingProxy->askedToTerminate()) return; OwnPtr ports = MessagePort::entanglePorts(*scriptContext, m_channels.release()); workerObject->dispatchEvent(MessageEvent::create(ports.release(), m_message)); } private: RefPtr m_message; OwnPtr m_channels; WorkerMessagingProxy* m_messagingProxy; }; class WorkerExceptionTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) { return adoptPtr(new WorkerExceptionTask(errorMessage, lineNumber, sourceURL, messagingProxy)); } private: WorkerExceptionTask(const String& errorMessage, int lineNumber, const String& sourceURL, WorkerMessagingProxy* messagingProxy) : m_errorMessage(errorMessage.isolatedCopy()) , m_lineNumber(lineNumber) , m_sourceURL(sourceURL.isolatedCopy()) , m_messagingProxy(messagingProxy) { } virtual void performTask(ScriptExecutionContext* context) { Worker* workerObject = m_messagingProxy->workerObject(); if (!workerObject) return; // We don't bother checking the askedToTerminate() flag here, because exceptions should *always* be reported even if the thread is terminated. // This is intentionally different than the behavior in MessageWorkerTask, because terminated workers no longer deliver messages (section 4.6 of the WebWorker spec), but they do report exceptions. bool errorHandled = !workerObject->dispatchEvent(ErrorEvent::create(m_errorMessage, m_sourceURL, m_lineNumber)); if (!errorHandled) context->reportException(m_errorMessage, m_lineNumber, m_sourceURL, 0); } String m_errorMessage; int m_lineNumber; String m_sourceURL; WorkerMessagingProxy* m_messagingProxy; }; class WorkerContextDestroyedTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(WorkerMessagingProxy* messagingProxy) { return adoptPtr(new WorkerContextDestroyedTask(messagingProxy)); } private: WorkerContextDestroyedTask(WorkerMessagingProxy* messagingProxy) : m_messagingProxy(messagingProxy) { } virtual void performTask(ScriptExecutionContext*) { m_messagingProxy->workerContextDestroyedInternal(); } WorkerMessagingProxy* m_messagingProxy; }; class WorkerTerminateTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(WorkerMessagingProxy* messagingProxy) { return adoptPtr(new WorkerTerminateTask(messagingProxy)); } private: WorkerTerminateTask(WorkerMessagingProxy* messagingProxy) : m_messagingProxy(messagingProxy) { } virtual void performTask(ScriptExecutionContext*) { m_messagingProxy->terminateWorkerContext(); } WorkerMessagingProxy* m_messagingProxy; }; class WorkerThreadActivityReportTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) { return adoptPtr(new WorkerThreadActivityReportTask(messagingProxy, confirmingMessage, hasPendingActivity)); } private: WorkerThreadActivityReportTask(WorkerMessagingProxy* messagingProxy, bool confirmingMessage, bool hasPendingActivity) : m_messagingProxy(messagingProxy) , m_confirmingMessage(confirmingMessage) , m_hasPendingActivity(hasPendingActivity) { } virtual void performTask(ScriptExecutionContext*) { m_messagingProxy->reportPendingActivityInternal(m_confirmingMessage, m_hasPendingActivity); } WorkerMessagingProxy* m_messagingProxy; bool m_confirmingMessage; bool m_hasPendingActivity; }; class PostMessageToPageInspectorTask : public ScriptExecutionContext::Task { public: static PassOwnPtr create(WorkerMessagingProxy* messagingProxy, const String& message) { return adoptPtr(new PostMessageToPageInspectorTask(messagingProxy, message)); } private: PostMessageToPageInspectorTask(WorkerMessagingProxy* messagingProxy, const String& message) : m_messagingProxy(messagingProxy) , m_message(message.isolatedCopy()) { } virtual void performTask(ScriptExecutionContext*) { #if ENABLE(INSPECTOR) if (WorkerContextProxy::PageInspector* pageInspector = m_messagingProxy->m_pageInspector) pageInspector->dispatchMessageFromWorker(m_message); #endif } WorkerMessagingProxy* m_messagingProxy; String m_message; }; #if !PLATFORM(CHROMIUM) WorkerContextProxy* WorkerContextProxy::create(Worker* worker) { return new WorkerMessagingProxy(worker); } #endif WorkerMessagingProxy::WorkerMessagingProxy(Worker* workerObject) : m_scriptExecutionContext(workerObject->scriptExecutionContext()) , m_workerObject(workerObject) , m_mayBeDestroyed(false) , m_unconfirmedMessageCount(0) , m_workerThreadHadPendingActivity(false) , m_askedToTerminate(false) #if ENABLE(INSPECTOR) , m_pageInspector(0) #endif { ASSERT(m_workerObject); ASSERT((m_scriptExecutionContext->isDocument() && isMainThread()) || (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast(m_scriptExecutionContext.get())->thread()->threadID())); } WorkerMessagingProxy::~WorkerMessagingProxy() { ASSERT(!m_workerObject); ASSERT((m_scriptExecutionContext->isDocument() && isMainThread()) || (m_scriptExecutionContext->isWorkerContext() && currentThread() == static_cast(m_scriptExecutionContext.get())->thread()->threadID())); } void WorkerMessagingProxy::startWorkerContext(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerThreadStartMode startMode) { RefPtr thread = DedicatedWorkerThread::create(scriptURL, userAgent, sourceCode, *this, *this, startMode, m_scriptExecutionContext->contentSecurityPolicy()->header(), m_scriptExecutionContext->contentSecurityPolicy()->headerType()); workerThreadCreated(thread); thread->start(); InspectorInstrumentation::didStartWorkerContext(m_scriptExecutionContext.get(), this, scriptURL); } void WorkerMessagingProxy::postMessageToWorkerObject(PassRefPtr message, PassOwnPtr channels) { m_scriptExecutionContext->postTask(MessageWorkerTask::create(message, channels, this)); } void WorkerMessagingProxy::postMessageToWorkerContext(PassRefPtr message, PassOwnPtr channels) { if (m_askedToTerminate) return; if (m_workerThread) { ++m_unconfirmedMessageCount; m_workerThread->runLoop().postTask(MessageWorkerContextTask::create(message, channels)); } else m_queuedEarlyTasks.append(MessageWorkerContextTask::create(message, channels)); } bool WorkerMessagingProxy::postTaskForModeToWorkerContext(PassOwnPtr task, const String& mode) { if (m_askedToTerminate) return false; ASSERT(m_workerThread); m_workerThread->runLoop().postTaskForMode(task, mode); return true; } void WorkerMessagingProxy::postTaskToLoader(PassOwnPtr task) { // FIXME: In case of nested workers, this should go directly to the root Document context. ASSERT(m_scriptExecutionContext->isDocument()); m_scriptExecutionContext->postTask(task); } void WorkerMessagingProxy::postExceptionToWorkerObject(const String& errorMessage, int lineNumber, const String& sourceURL) { m_scriptExecutionContext->postTask(WorkerExceptionTask::create(errorMessage, lineNumber, sourceURL, this)); } static void postConsoleMessageTask(ScriptExecutionContext* context, WorkerMessagingProxy* messagingProxy, MessageSource source, MessageType type, MessageLevel level, const String& message, unsigned lineNumber, const String& sourceURL) { if (messagingProxy->askedToTerminate()) return; context->addConsoleMessage(source, type, level, message, sourceURL, lineNumber); } void WorkerMessagingProxy::postConsoleMessageToWorkerObject(MessageSource source, MessageType type, MessageLevel level, const String& message, int lineNumber, const String& sourceURL) { m_scriptExecutionContext->postTask( createCallbackTask(&postConsoleMessageTask, AllowCrossThreadAccess(this), source, type, level, message, lineNumber, sourceURL)); } void WorkerMessagingProxy::workerThreadCreated(PassRefPtr workerThread) { m_workerThread = workerThread; if (m_askedToTerminate) { // Worker.terminate() could be called from JS before the thread was created. m_workerThread->stop(); } else { unsigned taskCount = m_queuedEarlyTasks.size(); ASSERT(!m_unconfirmedMessageCount); m_unconfirmedMessageCount = taskCount; m_workerThreadHadPendingActivity = true; // Worker initialization means a pending activity. for (unsigned i = 0; i < taskCount; ++i) m_workerThread->runLoop().postTask(m_queuedEarlyTasks[i].release()); m_queuedEarlyTasks.clear(); } } void WorkerMessagingProxy::workerObjectDestroyed() { m_workerObject = 0; m_scriptExecutionContext->postTask(createCallbackTask(&workerObjectDestroyedInternal, AllowCrossThreadAccess(this))); } void WorkerMessagingProxy::workerObjectDestroyedInternal(ScriptExecutionContext*, WorkerMessagingProxy* proxy) { proxy->m_mayBeDestroyed = true; if (proxy->m_workerThread) proxy->terminateWorkerContext(); else proxy->workerContextDestroyedInternal(); } #if ENABLE(INSPECTOR) #if ENABLE(JAVASCRIPT_DEBUGGER) static void connectToWorkerContextInspectorTask(ScriptExecutionContext* context, bool) { ASSERT(context->isWorkerContext()); static_cast(context)->workerInspectorController()->connectFrontend(); } #endif void WorkerMessagingProxy::connectToInspector(WorkerContextProxy::PageInspector* pageInspector) { if (m_askedToTerminate) return; ASSERT(!m_pageInspector); m_pageInspector = pageInspector; #if ENABLE(JAVASCRIPT_DEBUGGER) m_workerThread->runLoop().postTaskForMode(createCallbackTask(connectToWorkerContextInspectorTask, true), WorkerDebuggerAgent::debuggerTaskMode); #endif } #if ENABLE(JAVASCRIPT_DEBUGGER) static void disconnectFromWorkerContextInspectorTask(ScriptExecutionContext* context, bool) { ASSERT(context->isWorkerContext()); static_cast(context)->workerInspectorController()->disconnectFrontend(); } #endif void WorkerMessagingProxy::disconnectFromInspector() { m_pageInspector = 0; if (m_askedToTerminate) return; #if ENABLE(JAVASCRIPT_DEBUGGER) m_workerThread->runLoop().postTaskForMode(createCallbackTask(disconnectFromWorkerContextInspectorTask, true), WorkerDebuggerAgent::debuggerTaskMode); #endif } #if ENABLE(JAVASCRIPT_DEBUGGER) static void dispatchOnInspectorBackendTask(ScriptExecutionContext* context, const String& message) { ASSERT(context->isWorkerContext()); static_cast(context)->workerInspectorController()->dispatchMessageFromFrontend(message); } #endif void WorkerMessagingProxy::sendMessageToInspector(const String& message) { if (m_askedToTerminate) return; #if ENABLE(JAVASCRIPT_DEBUGGER) m_workerThread->runLoop().postTaskForMode(createCallbackTask(dispatchOnInspectorBackendTask, String(message)), WorkerDebuggerAgent::debuggerTaskMode); WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(m_workerThread.get()); #endif } #endif void WorkerMessagingProxy::workerContextDestroyed() { m_scriptExecutionContext->postTask(WorkerContextDestroyedTask::create(this)); // Will execute workerContextDestroyedInternal() on context's thread. } void WorkerMessagingProxy::workerContextClosed() { // Executes terminateWorkerContext() on parent context's thread. m_scriptExecutionContext->postTask(WorkerTerminateTask::create(this)); } void WorkerMessagingProxy::workerContextDestroyedInternal() { // WorkerContextDestroyedTask is always the last to be performed, so the proxy is not needed for communication // in either side any more. However, the Worker object may still exist, and it assumes that the proxy exists, too. m_askedToTerminate = true; m_workerThread = 0; InspectorInstrumentation::workerContextTerminated(m_scriptExecutionContext.get(), this); if (m_mayBeDestroyed) delete this; } void WorkerMessagingProxy::terminateWorkerContext() { if (m_askedToTerminate) return; m_askedToTerminate = true; if (m_workerThread) m_workerThread->stop(); InspectorInstrumentation::workerContextTerminated(m_scriptExecutionContext.get(), this); } #if ENABLE(INSPECTOR) void WorkerMessagingProxy::postMessageToPageInspector(const String& message) { m_scriptExecutionContext->postTask(PostMessageToPageInspectorTask::create(this, message)); } void WorkerMessagingProxy::updateInspectorStateCookie(const String&) { notImplemented(); } #endif void WorkerMessagingProxy::confirmMessageFromWorkerObject(bool hasPendingActivity) { m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, true, hasPendingActivity)); // Will execute reportPendingActivityInternal() on context's thread. } void WorkerMessagingProxy::reportPendingActivity(bool hasPendingActivity) { m_scriptExecutionContext->postTask(WorkerThreadActivityReportTask::create(this, false, hasPendingActivity)); // Will execute reportPendingActivityInternal() on context's thread. } void WorkerMessagingProxy::reportPendingActivityInternal(bool confirmingMessage, bool hasPendingActivity) { if (confirmingMessage && !m_askedToTerminate) { ASSERT(m_unconfirmedMessageCount); --m_unconfirmedMessageCount; } m_workerThreadHadPendingActivity = hasPendingActivity; } bool WorkerMessagingProxy::hasPendingActivity() const { return (m_unconfirmedMessageCount || m_workerThreadHadPendingActivity) && !m_askedToTerminate; } } // namespace WebCore #endif // ENABLE(WORKERS)