File size: 24,595 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 |
use std::{
borrow::Cow,
error::Error,
fmt::{self, Debug, Display},
future::Future,
hash::{BuildHasherDefault, Hash},
pin::Pin,
sync::Arc,
time::Duration,
};
use anyhow::{Result, anyhow};
use auto_hash_map::AutoMap;
use rustc_hash::FxHasher;
use serde::{Deserialize, Serialize};
use tracing::Span;
use turbo_rcstr::RcStr;
pub use crate::id::BackendJobId;
use crate::{
RawVc, ReadCellOptions, ReadRef, SharedReference, TaskId, TaskIdSet, TraitRef, TraitTypeId,
TurboTasksPanic, ValueTypeId, VcRead, VcValueTrait, VcValueType,
event::EventListener,
macro_helpers::NativeFunction,
magic_any::MagicAny,
manager::{ReadConsistency, TurboTasksBackendApi},
raw_vc::CellId,
registry,
task::shared_reference::TypedSharedReference,
task_statistics::TaskStatisticsApi,
triomphe_utils::unchecked_sidecast_triomphe_arc,
};
pub type TransientTaskRoot =
Box<dyn Fn() -> Pin<Box<dyn Future<Output = Result<RawVc>> + Send>> + Send + Sync>;
pub enum TransientTaskType {
/// A root task that will track dependencies and re-execute when
/// dependencies change. Task will eventually settle to the correct
/// execution.
///
/// Always active. Automatically scheduled.
Root(TransientTaskRoot),
// TODO implement these strongly consistency
/// A single root task execution. It won't track dependencies.
///
/// Task will definitely include all invalidations that happened before the
/// start of the task. It may or may not include invalidations that
/// happened after that. It may see these invalidations partially
/// applied.
///
/// Active until done. Automatically scheduled.
Once(Pin<Box<dyn Future<Output = Result<RawVc>> + Send + 'static>>),
}
impl Debug for TransientTaskType {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Root(_) => f.debug_tuple("Root").finish(),
Self::Once(_) => f.debug_tuple("Once").finish(),
}
}
}
/// A normal task execution containing a native (rust) function. This type is passed into the
/// backend either to execute a function or to look up a cached result.
#[derive(Debug, Eq)]
pub struct CachedTaskType {
pub native_fn: &'static NativeFunction,
pub this: Option<RawVc>,
pub arg: Box<dyn MagicAny>,
}
impl CachedTaskType {
/// Get the name of the function from the registry. Equivalent to the
/// [`Display`]/[`ToString::to_string`] implementation, but does not allocate a [`String`].
pub fn get_name(&self) -> &'static str {
self.native_fn.name
}
}
// Manual implementation is needed because of a borrow issue with `Box<dyn Trait>`:
// https://github.com/rust-lang/rust/issues/31740
impl PartialEq for CachedTaskType {
#[expect(clippy::op_ref)]
fn eq(&self, other: &Self) -> bool {
self.native_fn == other.native_fn && self.this == other.this && &self.arg == &other.arg
}
}
// Manual implementation because we have to have a manual `PartialEq` implementation, and clippy
// complains if we have a derived `Hash` impl, but manual `PartialEq` impl.
impl Hash for CachedTaskType {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.native_fn.hash(state);
self.this.hash(state);
self.arg.hash(state);
}
}
impl Display for CachedTaskType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.write_str(self.get_name())
}
}
mod ser {
use std::any::Any;
use serde::{
Deserialize, Deserializer, Serialize, Serializer,
de::{self},
ser::{SerializeSeq, SerializeTuple},
};
use super::*;
impl Serialize for TypedCellContent {
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
S: Serializer,
{
let value_type = registry::get_value_type(self.0);
let serializable = if let Some(value) = &self.1.0 {
value_type.any_as_serializable(&value.0)
} else {
None
};
let mut state = serializer.serialize_tuple(3)?;
state.serialize_element(registry::get_value_type_global_name(self.0))?;
if let Some(serializable) = serializable {
state.serialize_element(&true)?;
state.serialize_element(serializable)?;
} else {
state.serialize_element(&false)?;
state.serialize_element(&())?;
}
state.end()
}
}
impl<'de> Deserialize<'de> for TypedCellContent {
fn deserialize<D>(deserializer: D) -> std::result::Result<Self, D::Error>
where
D: Deserializer<'de>,
{
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = TypedCellContent;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
write!(formatter, "a valid TypedCellContent")
}
fn visit_seq<A>(self, mut seq: A) -> std::result::Result<Self::Value, A::Error>
where
A: de::SeqAccess<'de>,
{
let value_type = seq
.next_element()?
.ok_or_else(|| de::Error::invalid_length(0, &self))?;
let value_type = registry::get_value_type_id_by_global_name(value_type)
.ok_or_else(|| de::Error::custom("Unknown value type"))?;
let has_value: bool = seq
.next_element()?
.ok_or_else(|| de::Error::invalid_length(1, &self))?;
if has_value {
let seed = registry::get_value_type(value_type)
.get_any_deserialize_seed()
.ok_or_else(|| {
de::Error::custom("Value type doesn't support deserialization")
})?;
let value = seq
.next_element_seed(seed)?
.ok_or_else(|| de::Error::invalid_length(2, &self))?;
let arc = triomphe::Arc::<dyn Any + Send + Sync>::from(value);
Ok(TypedCellContent(
value_type,
CellContent(Some(SharedReference(arc))),
))
} else {
let () = seq
.next_element()?
.ok_or_else(|| de::Error::invalid_length(2, &self))?;
Ok(TypedCellContent(value_type, CellContent(None)))
}
}
}
deserializer.deserialize_tuple(2, Visitor)
}
}
enum FunctionAndArg<'a> {
Owned {
native_fn: &'static NativeFunction,
arg: Box<dyn MagicAny>,
},
Borrowed {
native_fn: &'static NativeFunction,
arg: &'a dyn MagicAny,
},
}
impl Serialize for FunctionAndArg<'_> {
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
S: Serializer,
{
let FunctionAndArg::Borrowed { native_fn, arg } = self else {
unreachable!();
};
let mut state = serializer.serialize_seq(Some(2))?;
state.serialize_element(native_fn.global_name())?;
let arg = *arg;
let arg = native_fn.arg_meta.as_serialize(arg);
state.serialize_element(arg)?;
state.end()
}
}
impl<'de> Deserialize<'de> for FunctionAndArg<'de> {
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = FunctionAndArg<'de>;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
write!(formatter, "a valid FunctionAndArg")
}
fn visit_seq<A>(self, mut seq: A) -> std::result::Result<Self::Value, A::Error>
where
A: serde::de::SeqAccess<'de>,
{
let fn_name = seq
.next_element()?
.ok_or_else(|| serde::de::Error::invalid_length(0, &self))?;
let native_fn = registry::get_function_by_global_name(fn_name);
let seed = native_fn.arg_meta.deserialization_seed();
let arg = seq
.next_element_seed(seed)?
.ok_or_else(|| serde::de::Error::invalid_length(1, &self))?;
Ok(FunctionAndArg::Owned { native_fn, arg })
}
}
deserializer.deserialize_seq(Visitor)
}
}
impl Serialize for CachedTaskType {
fn serialize<S>(&self, serializer: S) -> std::result::Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
let CachedTaskType {
native_fn,
this,
arg,
} = self;
let mut s = serializer.serialize_tuple(2)?;
s.serialize_element(&FunctionAndArg::Borrowed {
native_fn,
arg: &**arg,
})?;
s.serialize_element(this)?;
s.end()
}
}
impl<'de> Deserialize<'de> for CachedTaskType {
fn deserialize<D: ser::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
struct Visitor;
impl<'de> serde::de::Visitor<'de> for Visitor {
type Value = CachedTaskType;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
write!(formatter, "a valid PersistentTaskType")
}
fn visit_seq<A>(self, mut seq: A) -> std::result::Result<Self::Value, A::Error>
where
A: serde::de::SeqAccess<'de>,
{
let FunctionAndArg::Owned { native_fn, arg } = seq
.next_element()?
.ok_or_else(|| serde::de::Error::invalid_length(0, &self))?
else {
unreachable!();
};
let this = seq
.next_element()?
.ok_or_else(|| serde::de::Error::invalid_length(1, &self))?;
Ok(CachedTaskType {
native_fn,
this,
arg,
})
}
}
deserializer.deserialize_tuple(2, Visitor)
}
}
}
pub struct TaskExecutionSpec<'a> {
pub future: Pin<Box<dyn Future<Output = Result<RawVc>> + Send + 'a>>,
pub span: Span,
}
#[derive(Clone, Debug, PartialEq, Eq, Hash, Default)]
pub struct CellContent(pub Option<SharedReference>);
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct TypedCellContent(pub ValueTypeId, pub CellContent);
impl Display for CellContent {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match &self.0 {
None => write!(f, "empty"),
Some(content) => Display::fmt(content, f),
}
}
}
impl TypedCellContent {
pub fn cast<T: VcValueType>(self) -> Result<ReadRef<T>> {
let data = self.1.0.ok_or_else(|| anyhow!("Cell is empty"))?;
let data = data
.downcast::<<T::Read as VcRead<T>>::Repr>()
.map_err(|_err| anyhow!("Unexpected type in cell"))?;
// SAFETY: `T` and `T::Read::Repr` must have equivalent memory representations,
// guaranteed by the unsafe implementation of `VcValueType`.
let data = unsafe { unchecked_sidecast_triomphe_arc(data) };
Ok(ReadRef::new_arc(data))
}
/// # Safety
///
/// The caller must ensure that the TypedCellContent contains a vc
/// that implements T.
pub fn cast_trait<T>(self) -> Result<TraitRef<T>>
where
T: VcValueTrait + ?Sized,
{
let shared_reference = self
.1
.0
.ok_or_else(|| anyhow!("Cell is empty"))?
.into_typed(self.0);
Ok(
// Safety: It is a TypedSharedReference
TraitRef::new(shared_reference),
)
}
pub fn into_untyped(self) -> CellContent {
self.1
}
}
impl From<TypedSharedReference> for TypedCellContent {
fn from(value: TypedSharedReference) -> Self {
TypedCellContent(value.type_id, CellContent(Some(value.reference)))
}
}
impl TryFrom<TypedCellContent> for TypedSharedReference {
type Error = TypedCellContent;
fn try_from(content: TypedCellContent) -> Result<Self, TypedCellContent> {
if let TypedCellContent(type_id, CellContent(Some(reference))) = content {
Ok(TypedSharedReference { type_id, reference })
} else {
Err(content)
}
}
}
impl CellContent {
pub fn into_typed(self, type_id: ValueTypeId) -> TypedCellContent {
TypedCellContent(type_id, self)
}
}
impl From<SharedReference> for CellContent {
fn from(value: SharedReference) -> Self {
CellContent(Some(value))
}
}
impl From<Option<SharedReference>> for CellContent {
fn from(value: Option<SharedReference>) -> Self {
CellContent(value)
}
}
impl TryFrom<CellContent> for SharedReference {
type Error = CellContent;
fn try_from(content: CellContent) -> Result<Self, CellContent> {
if let CellContent(Some(shared_reference)) = content {
Ok(shared_reference)
} else {
Err(content)
}
}
}
pub type TaskCollectiblesMap = AutoMap<RawVc, i32, BuildHasherDefault<FxHasher>, 1>;
// Structurally and functionally similar to Cow<&'static, str> but explicitly notes the importance
// of non-static strings potentially containing PII (Personal Identifiable Information).
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
pub enum TurboTasksExecutionErrorMessage {
PIISafe(Cow<'static, str>),
NonPIISafe(String),
}
impl Display for TurboTasksExecutionErrorMessage {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
TurboTasksExecutionErrorMessage::PIISafe(msg) => write!(f, "{msg}"),
TurboTasksExecutionErrorMessage::NonPIISafe(msg) => write!(f, "{msg}"),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct TurboTasksError {
pub message: TurboTasksExecutionErrorMessage,
pub source: Option<TurboTasksExecutionError>,
}
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct TurboTaskContextError {
pub task: RcStr,
pub source: Option<TurboTasksExecutionError>,
}
#[derive(Clone, Debug, Serialize, Deserialize, PartialEq, Eq)]
pub enum TurboTasksExecutionError {
Panic(Arc<TurboTasksPanic>),
Error(Arc<TurboTasksError>),
TaskContext(Arc<TurboTaskContextError>),
}
impl TurboTasksExecutionError {
pub fn with_task_context(&self, task: impl Display) -> Self {
TurboTasksExecutionError::TaskContext(Arc::new(TurboTaskContextError {
task: RcStr::from(task.to_string()),
source: Some(self.clone()),
}))
}
}
impl Error for TurboTasksExecutionError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {
TurboTasksExecutionError::Panic(_panic) => None,
TurboTasksExecutionError::Error(error) => {
error.source.as_ref().map(|s| s as &dyn Error)
}
TurboTasksExecutionError::TaskContext(context_error) => {
context_error.source.as_ref().map(|s| s as &dyn Error)
}
}
}
}
impl Display for TurboTasksExecutionError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
TurboTasksExecutionError::Panic(panic) => write!(f, "{}", &panic),
TurboTasksExecutionError::Error(error) => {
write!(f, "{}", error.message)
}
TurboTasksExecutionError::TaskContext(context_error) => {
write!(f, "Execution of {} failed", context_error.task)
}
}
}
}
impl<'l> From<&'l (dyn std::error::Error + 'static)> for TurboTasksExecutionError {
fn from(err: &'l (dyn std::error::Error + 'static)) -> Self {
if let Some(err) = err.downcast_ref::<TurboTasksExecutionError>() {
return err.clone();
}
let message = err.to_string();
let source = err.source().map(|source| source.into());
TurboTasksExecutionError::Error(Arc::new(TurboTasksError {
message: TurboTasksExecutionErrorMessage::NonPIISafe(message),
source,
}))
}
}
impl From<anyhow::Error> for TurboTasksExecutionError {
fn from(err: anyhow::Error) -> Self {
let current: &(dyn std::error::Error + 'static) = err.as_ref();
current.into()
}
}
pub trait Backend: Sync + Send {
#[allow(unused_variables)]
fn startup(&self, turbo_tasks: &dyn TurboTasksBackendApi<Self>) {}
#[allow(unused_variables)]
fn stop(&self, turbo_tasks: &dyn TurboTasksBackendApi<Self>) {}
#[allow(unused_variables)]
fn stopping(&self, turbo_tasks: &dyn TurboTasksBackendApi<Self>) {}
#[allow(unused_variables)]
fn idle_start(&self, turbo_tasks: &dyn TurboTasksBackendApi<Self>) {}
#[allow(unused_variables)]
fn idle_end(&self, turbo_tasks: &dyn TurboTasksBackendApi<Self>) {}
fn invalidate_task(&self, task: TaskId, turbo_tasks: &dyn TurboTasksBackendApi<Self>);
fn invalidate_tasks(&self, tasks: &[TaskId], turbo_tasks: &dyn TurboTasksBackendApi<Self>);
fn invalidate_tasks_set(&self, tasks: &TaskIdSet, turbo_tasks: &dyn TurboTasksBackendApi<Self>);
fn invalidate_serialization(
&self,
_task: TaskId,
_turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) {
}
fn get_task_description(&self, task: TaskId) -> String;
/// Task-local state that stored inside of [`TurboTasksBackendApi`]. Constructed with
/// [`Self::new_task_state`].
///
/// This value that can later be written to or read from using
/// [`crate::TurboTasksBackendApiExt::write_task_state`] or
/// [`crate::TurboTasksBackendApiExt::read_task_state`]
///
/// This data may be shared across multiple threads (must be `Sync`) in order to support
/// detached futures ([`crate::TurboTasksApi::detached_for_testing`]) and [pseudo-tasks using
/// `local` execution][crate::function]. A [`RwLock`][std::sync::RwLock] is used to provide
/// concurrent access.
type TaskState: Send + Sync + 'static;
/// Constructs a new task-local [`Self::TaskState`] for the given `task_id`.
///
/// If a task is re-executed (e.g. because it is invalidated), this function will be called
/// again with the same [`TaskId`].
///
/// This value can be written to or read from using
/// [`crate::TurboTasksBackendApiExt::write_task_state`] and
/// [`crate::TurboTasksBackendApiExt::read_task_state`]
fn new_task_state(&self, task: TaskId) -> Self::TaskState;
fn try_start_task_execution<'a>(
&'a self,
task: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> Option<TaskExecutionSpec<'a>>;
fn task_execution_canceled(&self, task: TaskId, turbo_tasks: &dyn TurboTasksBackendApi<Self>);
fn task_execution_result(
&self,
task_id: TaskId,
result: Result<RawVc, TurboTasksExecutionError>,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
);
fn task_execution_completed(
&self,
task: TaskId,
duration: Duration,
memory_usage: usize,
cell_counters: &AutoMap<ValueTypeId, u32, BuildHasherDefault<FxHasher>, 8>,
stateful: bool,
has_invalidator: bool,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> bool;
fn run_backend_job<'a>(
&'a self,
id: BackendJobId,
turbo_tasks: &'a dyn TurboTasksBackendApi<Self>,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'a>>;
fn try_read_task_output(
&self,
task: TaskId,
reader: TaskId,
consistency: ReadConsistency,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> Result<Result<RawVc, EventListener>>;
/// INVALIDATION: Be careful with this, it will not track dependencies, so
/// using it could break cache invalidation.
fn try_read_task_output_untracked(
&self,
task: TaskId,
consistency: ReadConsistency,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> Result<Result<RawVc, EventListener>>;
fn try_read_task_cell(
&self,
task: TaskId,
index: CellId,
reader: TaskId,
options: ReadCellOptions,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> Result<Result<TypedCellContent, EventListener>>;
/// INVALIDATION: Be careful with this, it will not track dependencies, so
/// using it could break cache invalidation.
fn try_read_task_cell_untracked(
&self,
task: TaskId,
index: CellId,
options: ReadCellOptions,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> Result<Result<TypedCellContent, EventListener>>;
/// INVALIDATION: Be careful with this, it will not track dependencies, so
/// using it could break cache invalidation.
fn try_read_own_task_cell_untracked(
&self,
current_task: TaskId,
index: CellId,
options: ReadCellOptions,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> Result<TypedCellContent> {
match self.try_read_task_cell_untracked(current_task, index, options, turbo_tasks)? {
Ok(content) => Ok(content),
Err(_) => Ok(TypedCellContent(index.type_id, CellContent(None))),
}
}
fn read_task_collectibles(
&self,
task: TaskId,
trait_id: TraitTypeId,
reader: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> TaskCollectiblesMap;
fn emit_collectible(
&self,
trait_type: TraitTypeId,
collectible: RawVc,
task: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
);
fn unemit_collectible(
&self,
trait_type: TraitTypeId,
collectible: RawVc,
count: u32,
task: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
);
fn update_task_cell(
&self,
task: TaskId,
index: CellId,
content: CellContent,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
);
fn get_or_create_persistent_task(
&self,
task_type: CachedTaskType,
parent_task: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> TaskId;
fn get_or_create_transient_task(
&self,
task_type: CachedTaskType,
parent_task: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> TaskId;
fn connect_task(
&self,
task: TaskId,
parent_task: TaskId,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
);
fn mark_own_task_as_finished(
&self,
_task: TaskId,
_turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) {
// Do nothing by default
}
fn set_own_task_aggregation_number(
&self,
_task: TaskId,
_aggregation_number: u32,
_turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) {
// Do nothing by default
}
fn mark_own_task_as_session_dependent(
&self,
_task: TaskId,
_turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) {
// Do nothing by default
}
fn create_transient_task(
&self,
task_type: TransientTaskType,
turbo_tasks: &dyn TurboTasksBackendApi<Self>,
) -> TaskId;
fn dispose_root_task(&self, task: TaskId, turbo_tasks: &dyn TurboTasksBackendApi<Self>);
fn task_statistics(&self) -> &TaskStatisticsApi;
}
|