mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Changelog: [internal] Mark methods as noexcept and explicitly delete unwanted constructors. Reviewed By: fkgozali Differential Revision: D29085827 fbshipit-source-id: 872009113e2bd519ab3ae11879a15d15f780198f
99 lines
2.7 KiB
C++
99 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ReactCommon/RuntimeExecutor.h>
|
|
#include <react/renderer/runtimescheduler/RuntimeSchedulerClock.h>
|
|
#include <react/renderer/runtimescheduler/Task.h>
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <queue>
|
|
|
|
namespace facebook::react {
|
|
|
|
class RuntimeScheduler final {
|
|
public:
|
|
RuntimeScheduler(
|
|
RuntimeExecutor const &runtimeExecutor,
|
|
std::function<RuntimeSchedulerTimePoint()> now =
|
|
RuntimeSchedulerClock::now);
|
|
/*
|
|
* Not copyable.
|
|
*/
|
|
RuntimeScheduler(RuntimeScheduler const &) = delete;
|
|
RuntimeScheduler &operator=(RuntimeScheduler const &) = delete;
|
|
|
|
/*
|
|
* Not movable.
|
|
*/
|
|
RuntimeScheduler(RuntimeScheduler &&) = delete;
|
|
RuntimeScheduler &operator=(RuntimeScheduler &&) = delete;
|
|
|
|
void scheduleWork(std::function<void(jsi::Runtime &)> callback) const;
|
|
|
|
/*
|
|
* Grants access to the runtime synchronously on the caller's thread.
|
|
*
|
|
* Shouldn't be called directly. it is expected to be used
|
|
* by dispatching a synchronous event via event emitter in your native
|
|
* component.
|
|
*/
|
|
void executeNowOnTheSameThread(
|
|
std::function<void(jsi::Runtime &runtime)> callback) const;
|
|
|
|
std::shared_ptr<Task> scheduleTask(
|
|
SchedulerPriority priority,
|
|
jsi::Function callback);
|
|
|
|
void cancelTask(std::shared_ptr<Task> const &task) noexcept;
|
|
|
|
bool getShouldYield() const noexcept;
|
|
|
|
SchedulerPriority getCurrentPriorityLevel() const noexcept;
|
|
|
|
RuntimeSchedulerTimePoint now() const noexcept;
|
|
|
|
void setEnableYielding(bool enableYielding);
|
|
|
|
private:
|
|
mutable std::priority_queue<
|
|
std::shared_ptr<Task>,
|
|
std::vector<std::shared_ptr<Task>>,
|
|
TaskPriorityComparer>
|
|
taskQueue_;
|
|
|
|
RuntimeExecutor const runtimeExecutor_;
|
|
mutable SchedulerPriority currentPriority_{SchedulerPriority::NormalPriority};
|
|
mutable std::atomic_bool shouldYield_{false};
|
|
|
|
void startWorkLoop(jsi::Runtime &runtime) const;
|
|
|
|
/*
|
|
* Returns a time point representing the current point in time. May be called
|
|
* from multiple threads.
|
|
*/
|
|
std::function<RuntimeSchedulerTimePoint()> now_;
|
|
|
|
/*
|
|
* Flag indicating if callback on JavaScript queue has been
|
|
* scheduled.
|
|
*/
|
|
std::atomic_bool isCallbackScheduled_{false};
|
|
|
|
/*
|
|
* Flag indicating if yielding is enabled.
|
|
*
|
|
* If set to true and Concurrent Mode is enabled on the surface,
|
|
* React Native will ask React to yield in case any work has been scheduled.
|
|
* Default value is false
|
|
*/
|
|
bool enableYielding_{false};
|
|
};
|
|
|
|
} // namespace facebook::react
|