mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
9bf533e6b8
Summary: Changelog: [internal] Add comments and avoid using shared_ptr unnecessarily. Why note shared_ptr? Using shared_ptr suggests we are transferring ownership of object, which we are not. Reviewed By: javache Differential Revision: D33741836 fbshipit-source-id: 56ebb098e6185793f05e2bb587005bb0f093c0c9
159 lines
4.6 KiB
C++
159 lines
4.6 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "RuntimeScheduler.h"
|
|
|
|
#include <utility>
|
|
#include "ErrorUtils.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
#pragma mark - Public
|
|
|
|
RuntimeScheduler::RuntimeScheduler(
|
|
RuntimeExecutor runtimeExecutor,
|
|
std::function<RuntimeSchedulerTimePoint()> now)
|
|
: runtimeExecutor_(std::move(runtimeExecutor)), now_(std::move(now)) {}
|
|
|
|
void RuntimeScheduler::scheduleWork(
|
|
std::function<void(jsi::Runtime &)> callback) const {
|
|
shouldYield_ = true;
|
|
runtimeExecutor_(
|
|
[this, callback = std::move(callback)](jsi::Runtime &runtime) {
|
|
shouldYield_ = false;
|
|
callback(runtime);
|
|
startWorkLoop(runtime);
|
|
});
|
|
}
|
|
|
|
std::shared_ptr<Task> RuntimeScheduler::scheduleTask(
|
|
SchedulerPriority priority,
|
|
jsi::Function callback) {
|
|
auto expirationTime = now() + timeoutForSchedulerPriority(priority);
|
|
auto task =
|
|
std::make_shared<Task>(priority, std::move(callback), expirationTime);
|
|
taskQueue_.push(task);
|
|
|
|
scheduleWorkLoopIfNecessary();
|
|
|
|
return task;
|
|
}
|
|
|
|
bool RuntimeScheduler::getShouldYield() const noexcept {
|
|
return shouldYield_;
|
|
}
|
|
|
|
bool RuntimeScheduler::getIsSynchronous() const noexcept {
|
|
return isSynchronous_;
|
|
}
|
|
|
|
void RuntimeScheduler::cancelTask(Task &task) noexcept {
|
|
task.callback.reset();
|
|
}
|
|
|
|
SchedulerPriority RuntimeScheduler::getCurrentPriorityLevel() const noexcept {
|
|
return currentPriority_;
|
|
}
|
|
|
|
RuntimeSchedulerTimePoint RuntimeScheduler::now() const noexcept {
|
|
return now_();
|
|
}
|
|
|
|
void RuntimeScheduler::executeNowOnTheSameThread(
|
|
std::function<void(jsi::Runtime &runtime)> callback) {
|
|
shouldYield_ = true;
|
|
executeSynchronouslyOnSameThread_CAN_DEADLOCK(
|
|
runtimeExecutor_,
|
|
[this, callback = std::move(callback)](jsi::Runtime &runtime) {
|
|
shouldYield_ = false;
|
|
auto task = jsi::Function::createFromHostFunction(
|
|
runtime,
|
|
jsi::PropNameID::forUtf8(runtime, ""),
|
|
3,
|
|
[callback = std::move(callback)](
|
|
jsi::Runtime &runtime,
|
|
jsi::Value const &,
|
|
jsi::Value const *arguments,
|
|
size_t) -> jsi::Value {
|
|
callback(runtime);
|
|
return jsi::Value::undefined();
|
|
});
|
|
|
|
// We are about to trigger work loop. Setting `isCallbackScheduled_` to
|
|
// true prevents unnecessary call to `runtimeExecutor`.
|
|
isWorkLoopScheduled_ = true;
|
|
this->scheduleTask(
|
|
SchedulerPriority::ImmediatePriority, std::move(task));
|
|
isWorkLoopScheduled_ = false;
|
|
|
|
isSynchronous_ = true;
|
|
startWorkLoop(runtime);
|
|
isSynchronous_ = false;
|
|
});
|
|
|
|
// Resume work loop if needed. In synchronous mode
|
|
// only expired tasks are executed. Tasks with lower priority
|
|
// might be still in the queue.
|
|
scheduleWorkLoopIfNecessary();
|
|
}
|
|
|
|
#pragma mark - Private
|
|
|
|
void RuntimeScheduler::scheduleWorkLoopIfNecessary() const {
|
|
if (!isWorkLoopScheduled_ && !isPerformingWork_) {
|
|
isWorkLoopScheduled_ = true;
|
|
runtimeExecutor_([this](jsi::Runtime &runtime) {
|
|
isWorkLoopScheduled_ = false;
|
|
startWorkLoop(runtime);
|
|
});
|
|
}
|
|
}
|
|
|
|
void RuntimeScheduler::startWorkLoop(jsi::Runtime &runtime) const {
|
|
auto previousPriority = currentPriority_;
|
|
isPerformingWork_ = true;
|
|
try {
|
|
while (!taskQueue_.empty()) {
|
|
auto topPriorityTask = taskQueue_.top();
|
|
auto now = now_();
|
|
auto didUserCallbackTimeout = topPriorityTask->expirationTime <= now;
|
|
|
|
// This task hasn't expired and we need to yield.
|
|
auto shouldBreakBecauseYield = !didUserCallbackTimeout && shouldYield_;
|
|
|
|
// This task hasn't expired but we are in synchronous mode and need to
|
|
// only execute the necessary minimum.
|
|
auto shouldBreakBecauseSynchronous =
|
|
!didUserCallbackTimeout && isSynchronous_;
|
|
|
|
if (shouldBreakBecauseYield || shouldBreakBecauseSynchronous) {
|
|
break;
|
|
}
|
|
currentPriority_ = topPriorityTask->priority;
|
|
auto result = topPriorityTask->execute(runtime);
|
|
|
|
if (result.isObject() && result.getObject(runtime).isFunction(runtime)) {
|
|
topPriorityTask->callback =
|
|
result.getObject(runtime).getFunction(runtime);
|
|
} else {
|
|
if (taskQueue_.top() == topPriorityTask) {
|
|
taskQueue_.pop();
|
|
}
|
|
}
|
|
}
|
|
} catch (jsi::JSError &error) {
|
|
handleFatalError(runtime, error);
|
|
}
|
|
|
|
currentPriority_ = previousPriority;
|
|
isPerformingWork_ = false;
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|