| /* |
| * Copyright (C) 2014 Yoav Weiss ([email protected]) |
| * Copyright (C) 2015 Akamai Technologies Inc. All rights reserved. |
| * Copyright (C) 2023 Apple Inc. All rights reserved. |
| * |
| * 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" |
| #include "Microtasks.h" |
| |
| #include "CommonVM.h" |
| #include "EventLoop.h" |
| #include "JSDOMExceptionHandling.h" |
| #include "JSExecState.h" |
| #include "RejectedPromiseTracker.h" |
| #include "ScriptExecutionContext.h" |
| #include "WorkerGlobalScope.h" |
| #include <JavaScriptCore/CatchScope.h> |
| #include <JavaScriptCore/MicrotaskQueueInlines.h> |
| #include <wtf/MainThread.h> |
| #include <wtf/NeverDestroyed.h> |
| #include <wtf/SetForScope.h> |
| #include <wtf/TZoneMallocInlines.h> |
| |
| namespace WebCore { |
| |
| WTF_MAKE_TZONE_ALLOCATED_IMPL(MicrotaskQueue); |
| WTF_MAKE_TZONE_ALLOCATED_IMPL(WebCoreMicrotaskDispatcher); |
| |
| |
| JSC::QueuedTask::Result WebCoreMicrotaskDispatcher::currentRunnability() const |
| { |
| auto group = m_group.get(); |
| if (!group || group->isStoppedPermanently()) |
| return JSC::QueuedTask::Result::Discard; |
| if (group->isSuspended()) |
| return JSC::QueuedTask::Result::Suspended; |
| return JSC::QueuedTask::Result::Executed; |
| } |
| |
| MicrotaskQueue::MicrotaskQueue(JSC::VM& vm, EventLoop& eventLoop) |
| : m_vm(vm) |
| , m_eventLoop(eventLoop) |
| , m_microtaskQueue(vm) |
| { |
| } |
| |
| MicrotaskQueue::~MicrotaskQueue() = default; |
| |
| void MicrotaskQueue::append(JSC::QueuedTask&& task) |
| { |
| m_microtaskQueue.enqueue(WTFMove(task)); |
| } |
| |
| void MicrotaskQueue::runJSMicrotask(JSC::JSGlobalObject* globalObject, JSC::VM& vm, JSC::QueuedTask& task) |
| { |
| auto scope = DECLARE_CATCH_SCOPE(vm); |
| |
| if (!task.job().isObject()) [[unlikely]] |
| return; |
| |
| auto* job = JSC::asObject(task.job()); |
| |
| if (!scope.clearExceptionExceptTermination()) [[unlikely]] |
| return; |
| |
| auto* lexicalGlobalObject = job->globalObject(); |
| auto callData = JSC::getCallData(job); |
| if (!scope.clearExceptionExceptTermination()) [[unlikely]] |
| return; |
| ASSERT(callData.type != JSC::CallData::Type::None); |
| |
| unsigned count = 0; |
| for (auto argument : task.arguments()) { |
| if (!argument) |
| break; |
| ++count; |
| } |
| |
| if (globalObject->hasDebugger()) [[unlikely]] { |
| JSC::DeferTerminationForAWhile deferTerminationForAWhile(vm); |
| globalObject->debugger()->willRunMicrotask(globalObject, task.identifier()); |
| scope.clearException(); |
| } |
| |
| NakedPtr<JSC::Exception> returnedException = nullptr; |
| if (!vm.hasPendingTerminationException()) [[likely]] { |
| JSC::profiledCall(lexicalGlobalObject, JSC::ProfilingReason::Microtask, job, callData, JSC::jsUndefined(), JSC::ArgList { std::bit_cast<JSC::EncodedJSValue*>(task.arguments().data()), count }, returnedException); |
| if (returnedException) [[unlikely]] |
| reportException(lexicalGlobalObject, returnedException); |
| scope.clearExceptionExceptTermination(); |
| } |
| |
| if (globalObject->hasDebugger()) [[unlikely]] { |
| JSC::DeferTerminationForAWhile deferTerminationForAWhile(vm); |
| globalObject->debugger()->didRunMicrotask(globalObject, task.identifier()); |
| scope.clearException(); |
| } |
| } |
| |
| void MicrotaskQueue::performMicrotaskCheckpoint() |
| { |
| if (m_performingMicrotaskCheckpoint) |
| return; |
| |
| SetForScope change(m_performingMicrotaskCheckpoint, true); |
| Ref vm = this->vm(); |
| JSC::JSLockHolder locker(vm); |
| auto catchScope = DECLARE_CATCH_SCOPE(vm); |
| { |
| SUPPRESS_UNCOUNTED_ARG auto& data = threadGlobalData(); |
| auto* previousState = data.currentState(); |
| m_microtaskQueue.performMicrotaskCheckpoint(vm, |
| [&](JSC::QueuedTask& task) ALWAYS_INLINE_LAMBDA { |
| RefPtr dispatcher = downcast<WebCoreMicrotaskDispatcher>(task.dispatcher()); |
| if (!dispatcher) [[unlikely]] |
| return JSC::QueuedTask::Result::Discard; |
| |
| auto result = dispatcher->currentRunnability(); |
| if (result == JSC::QueuedTask::Result::Executed) { |
| switch (dispatcher->type()) { |
| case WebCoreMicrotaskDispatcher::Type::JavaScript: { |
| auto* globalObject = task.globalObject(); |
| data.setCurrentState(globalObject); |
| runJSMicrotask(globalObject, vm, task); |
| break; |
| } |
| case WebCoreMicrotaskDispatcher::Type::None: |
| case WebCoreMicrotaskDispatcher::Type::UserGestureIndicator: |
| case WebCoreMicrotaskDispatcher::Type::Function: |
| data.setCurrentState(previousState); |
| dispatcher->run(task); |
| break; |
| } |
| } |
| return result; |
| }); |
| data.setCurrentState(previousState); |
| } |
| vm->finalizeSynchronousJSExecution(); |
| |
| if (!vm->executionForbidden()) { |
| auto checkpointTasks = std::exchange(m_checkpointTasks, { }); |
| for (auto& checkpointTask : checkpointTasks) { |
| auto* group = checkpointTask->group(); |
| if (!group || group->isStoppedPermanently()) |
| continue; |
| |
| if (group->isSuspended()) { |
| m_checkpointTasks.append(WTFMove(checkpointTask)); |
| continue; |
| } |
| |
| checkpointTask->execute(); |
| if (!catchScope.clearExceptionExceptTermination()) [[unlikely]] |
| break; // Encountered termination. |
| } |
| } |
| |
| // https://html.spec.whatwg.org/multipage/webappapis.html#perform-a-microtask-checkpoint (step 4). |
| Ref { *m_eventLoop }->forEachAssociatedContext([vm = vm.copyRef()](auto& context) { |
| if (vm->executionForbidden()) [[unlikely]] |
| return; |
| auto catchScope = DECLARE_CATCH_SCOPE(vm); |
| if (CheckedPtr tracker = context.rejectedPromiseTracker()) |
| tracker->processQueueSoon(); |
| catchScope.clearExceptionExceptTermination(); |
| }); |
| |
| // FIXME: We should cleanup Indexed Database transactions as per: |
| // https://html.spec.whatwg.org/multipage/webappapis.html#perform-a-microtask-checkpoint (step 5). |
| } |
| |
| void MicrotaskQueue::addCheckpointTask(std::unique_ptr<EventLoopTask>&& task) |
| { |
| m_checkpointTasks.append(WTFMove(task)); |
| } |
| |
| bool MicrotaskQueue::hasMicrotasksForFullyActiveDocument() const |
| { |
| return m_microtaskQueue.hasMicrotasksForFullyActiveDocument(); |
| } |
| |
| } // namespace WebCore |