|
|
use std::cmp::Ordering; |
|
|
|
|
|
use rustc_hash::FxHashSet; |
|
|
use serde::{Deserialize, Serialize}; |
|
|
use turbo_tasks::{ |
|
|
CellId, KeyValuePair, SessionId, TaskExecutionReason, TaskId, TraitTypeId, |
|
|
TypedSharedReference, ValueTypeId, |
|
|
backend::TurboTasksExecutionError, |
|
|
event::{Event, EventListener}, |
|
|
registry, |
|
|
}; |
|
|
|
|
|
use crate::{ |
|
|
backend::TaskDataCategory, |
|
|
data_storage::{AutoMapStorage, OptionStorage, Storage}, |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
macro_rules! transient_traits { |
|
|
($name:ident) => { |
|
|
impl Clone for $name { |
|
|
fn clone(&self) -> Self { |
|
|
|
|
|
|
|
|
panic!(concat!(stringify!($name), " cannot be cloned")); |
|
|
} |
|
|
} |
|
|
|
|
|
impl PartialEq for $name { |
|
|
fn eq(&self, _other: &Self) -> bool { |
|
|
panic!(concat!(stringify!($name), " cannot be compared")); |
|
|
} |
|
|
} |
|
|
}; |
|
|
} |
|
|
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)] |
|
|
pub struct CellRef { |
|
|
pub task: TaskId, |
|
|
pub cell: CellId, |
|
|
} |
|
|
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)] |
|
|
pub struct CollectibleRef { |
|
|
pub collectible_type: TraitTypeId, |
|
|
pub cell: CellRef, |
|
|
} |
|
|
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Serialize, Deserialize)] |
|
|
pub struct CollectiblesRef { |
|
|
pub task: TaskId, |
|
|
pub collectible_type: TraitTypeId, |
|
|
} |
|
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)] |
|
|
pub enum OutputValue { |
|
|
Cell(CellRef), |
|
|
Output(TaskId), |
|
|
Error(TurboTasksExecutionError), |
|
|
} |
|
|
impl OutputValue { |
|
|
fn is_transient(&self) -> bool { |
|
|
match self { |
|
|
OutputValue::Cell(cell) => cell.task.is_transient(), |
|
|
OutputValue::Output(task) => task.is_transient(), |
|
|
OutputValue::Error(_) => false, |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
#[derive(Debug)] |
|
|
pub struct ActivenessState { |
|
|
|
|
|
pub active_counter: i32, |
|
|
|
|
|
pub root_ty: Option<RootType>, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub active_until_clean: bool, |
|
|
|
|
|
|
|
|
pub all_clean_event: Event, |
|
|
} |
|
|
|
|
|
impl ActivenessState { |
|
|
pub fn new(id: TaskId) -> Self { |
|
|
Self { |
|
|
active_counter: 0, |
|
|
root_ty: None, |
|
|
active_until_clean: false, |
|
|
all_clean_event: Event::new(move || { |
|
|
move || format!("ActivenessState::all_clean_event {id:?}") |
|
|
}), |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn new_root(root_ty: RootType, id: TaskId) -> Self { |
|
|
let mut this = Self::new(id); |
|
|
this.set_root(root_ty); |
|
|
this |
|
|
} |
|
|
|
|
|
pub fn set_root(&mut self, root_ty: RootType) { |
|
|
self.root_ty = Some(root_ty); |
|
|
} |
|
|
|
|
|
pub fn set_active_until_clean(&mut self) { |
|
|
self.active_until_clean = true; |
|
|
} |
|
|
|
|
|
|
|
|
pub fn increment_active_counter(&mut self) -> bool { |
|
|
self.active_counter += 1; |
|
|
self.active_counter == 1 |
|
|
} |
|
|
|
|
|
|
|
|
pub fn decrement_active_counter(&mut self) -> bool { |
|
|
self.active_counter -= 1; |
|
|
self.active_counter == 0 |
|
|
} |
|
|
|
|
|
pub fn unset_root_type(&mut self) { |
|
|
self.root_ty = None; |
|
|
} |
|
|
|
|
|
pub fn unset_active_until_clean(&mut self) { |
|
|
self.active_until_clean = false; |
|
|
} |
|
|
|
|
|
pub fn is_empty(&self) -> bool { |
|
|
self.root_ty.is_none() && !self.active_until_clean && self.active_counter == 0 |
|
|
} |
|
|
} |
|
|
|
|
|
transient_traits!(ActivenessState); |
|
|
|
|
|
impl Eq for ActivenessState {} |
|
|
|
|
|
#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)] |
|
|
pub struct DirtyState { |
|
|
pub clean_in_session: Option<SessionId>, |
|
|
} |
|
|
|
|
|
impl DirtyState { |
|
|
pub fn get(&self, session: SessionId) -> bool { |
|
|
self.clean_in_session != Some(session) |
|
|
} |
|
|
} |
|
|
|
|
|
fn add_with_diff(v: &mut i32, u: i32) -> i32 { |
|
|
let old = *v; |
|
|
*v += u; |
|
|
if old <= 0 && *v > 0 { |
|
|
1 |
|
|
} else if old > 0 && *v <= 0 { |
|
|
-1 |
|
|
} else { |
|
|
0 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq, Eq)] |
|
|
pub struct DirtyContainerCount { |
|
|
pub count: i32, |
|
|
pub count_in_session: Option<(SessionId, i32)>, |
|
|
} |
|
|
|
|
|
impl DirtyContainerCount { |
|
|
|
|
|
|
|
|
pub fn get(&self, session: SessionId) -> i32 { |
|
|
if let Some((s, count)) = self.count_in_session |
|
|
&& s == session |
|
|
{ |
|
|
return count; |
|
|
} |
|
|
self.count |
|
|
} |
|
|
|
|
|
|
|
|
pub fn update(&mut self, count: i32) -> DirtyContainerCount { |
|
|
self.update_count(&DirtyContainerCount { |
|
|
count, |
|
|
count_in_session: None, |
|
|
}) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pub fn update_session_dependent( |
|
|
&mut self, |
|
|
ignore_session: SessionId, |
|
|
count: i32, |
|
|
) -> DirtyContainerCount { |
|
|
self.update_count(&DirtyContainerCount { |
|
|
count, |
|
|
count_in_session: Some((ignore_session, 0)), |
|
|
}) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub fn update_count(&mut self, count: &DirtyContainerCount) -> DirtyContainerCount { |
|
|
let mut diff = DirtyContainerCount::default(); |
|
|
match ( |
|
|
self.count_in_session.as_mut(), |
|
|
count.count_in_session.as_ref(), |
|
|
) { |
|
|
(None, None) => {} |
|
|
(Some((s, c)), None) => { |
|
|
let d = add_with_diff(c, count.count); |
|
|
diff.count_in_session = Some((*s, d)); |
|
|
} |
|
|
(None, Some((s, c))) => { |
|
|
let mut new = self.count; |
|
|
let d = add_with_diff(&mut new, *c); |
|
|
self.count_in_session = Some((*s, new)); |
|
|
diff.count_in_session = Some((*s, d)); |
|
|
} |
|
|
(Some((s1, c1)), Some((s2, c2))) => match (*s1).cmp(s2) { |
|
|
Ordering::Less => { |
|
|
let mut new = self.count; |
|
|
let d = add_with_diff(&mut new, *c2); |
|
|
self.count_in_session = Some((*s2, new)); |
|
|
diff.count_in_session = Some((*s2, d)); |
|
|
} |
|
|
Ordering::Equal => { |
|
|
let d = add_with_diff(c1, *c2); |
|
|
diff.count_in_session = Some((*s1, d)); |
|
|
} |
|
|
Ordering::Greater => { |
|
|
let d = add_with_diff(c1, count.count); |
|
|
diff.count_in_session = Some((*s1, d)); |
|
|
} |
|
|
}, |
|
|
} |
|
|
let d = add_with_diff(&mut self.count, count.count); |
|
|
diff.count = d; |
|
|
diff |
|
|
} |
|
|
|
|
|
|
|
|
pub fn update_with_dirty_state(&mut self, dirty: &DirtyState) -> DirtyContainerCount { |
|
|
if let Some(clean_in_session) = dirty.clean_in_session { |
|
|
self.update_session_dependent(clean_in_session, 1) |
|
|
} else { |
|
|
self.update(1) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pub fn undo_update_with_dirty_state(&mut self, dirty: &DirtyState) -> DirtyContainerCount { |
|
|
if let Some(clean_in_session) = dirty.clean_in_session { |
|
|
self.update_session_dependent(clean_in_session, -1) |
|
|
} else { |
|
|
self.update(-1) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
pub fn replace_dirty_state( |
|
|
&mut self, |
|
|
old: &DirtyState, |
|
|
new: &DirtyState, |
|
|
) -> DirtyContainerCount { |
|
|
let mut diff = self.undo_update_with_dirty_state(old); |
|
|
diff.update_count(&self.update_with_dirty_state(new)); |
|
|
diff |
|
|
} |
|
|
|
|
|
|
|
|
pub fn is_zero(&self) -> bool { |
|
|
self.count == 0 && self.count_in_session.map(|(_, c)| c == 0).unwrap_or(true) |
|
|
} |
|
|
|
|
|
|
|
|
pub fn negate(&self) -> Self { |
|
|
Self { |
|
|
count: -self.count, |
|
|
count_in_session: self.count_in_session.map(|(s, c)| (s, -c)), |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
#[cfg(test)] |
|
|
mod dirty_container_count_tests { |
|
|
use turbo_tasks::SessionId; |
|
|
|
|
|
use super::*; |
|
|
|
|
|
const SESSION_1: SessionId = unsafe { SessionId::new_unchecked(1) }; |
|
|
const SESSION_2: SessionId = unsafe { SessionId::new_unchecked(2) }; |
|
|
const SESSION_3: SessionId = unsafe { SessionId::new_unchecked(3) }; |
|
|
|
|
|
#[test] |
|
|
fn test_update() { |
|
|
let mut count = DirtyContainerCount::default(); |
|
|
assert!(count.is_zero()); |
|
|
|
|
|
let diff = count.update(1); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 1); |
|
|
assert_eq!(diff.get(SESSION_1), 1); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.update(-1); |
|
|
assert!(count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), -1); |
|
|
assert_eq!(count.get(SESSION_2), 0); |
|
|
assert_eq!(diff.get(SESSION_2), -1); |
|
|
|
|
|
let diff = count.update(2); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 2); |
|
|
assert_eq!(diff.get(SESSION_1), 1); |
|
|
assert_eq!(count.get(SESSION_2), 2); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.update(-1); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 1); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 0); |
|
|
|
|
|
let diff = count.update(-1); |
|
|
assert!(count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), -1); |
|
|
assert_eq!(count.get(SESSION_2), 0); |
|
|
assert_eq!(diff.get(SESSION_2), -1); |
|
|
|
|
|
let diff = count.update(-1); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), -1); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), -1); |
|
|
assert_eq!(diff.get(SESSION_2), 0); |
|
|
|
|
|
let diff = count.update(2); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 1); |
|
|
assert_eq!(diff.get(SESSION_1), 1); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.update(-2); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), -1); |
|
|
assert_eq!(diff.get(SESSION_1), -1); |
|
|
assert_eq!(count.get(SESSION_2), -1); |
|
|
assert_eq!(diff.get(SESSION_2), -1); |
|
|
|
|
|
let diff = count.update(1); |
|
|
assert!(count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 0); |
|
|
assert_eq!(diff.get(SESSION_2), 0); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_session_dependent() { |
|
|
let mut count = DirtyContainerCount::default(); |
|
|
assert!(count.is_zero()); |
|
|
|
|
|
let diff = count.update_session_dependent(SESSION_1, 1); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.update_session_dependent(SESSION_1, -1); |
|
|
assert!(count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 0); |
|
|
assert_eq!(diff.get(SESSION_2), -1); |
|
|
|
|
|
let diff = count.update_session_dependent(SESSION_1, 2); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 2); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.update_session_dependent(SESSION_2, -2); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), -1); |
|
|
assert_eq!(count.get(SESSION_2), 2); |
|
|
assert_eq!(diff.get(SESSION_2), 0); |
|
|
assert_eq!(count.get(SESSION_3), 0); |
|
|
assert_eq!(diff.get(SESSION_3), -1); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_update_with_dirty_state() { |
|
|
let mut count = DirtyContainerCount::default(); |
|
|
let dirty = DirtyState { |
|
|
clean_in_session: None, |
|
|
}; |
|
|
let diff = count.update_with_dirty_state(&dirty); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 1); |
|
|
assert_eq!(diff.get(SESSION_1), 1); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.undo_update_with_dirty_state(&dirty); |
|
|
assert!(count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), -1); |
|
|
assert_eq!(count.get(SESSION_2), 0); |
|
|
assert_eq!(diff.get(SESSION_2), -1); |
|
|
|
|
|
let mut count = DirtyContainerCount::default(); |
|
|
let dirty = DirtyState { |
|
|
clean_in_session: Some(SESSION_1), |
|
|
}; |
|
|
let diff = count.update_with_dirty_state(&dirty); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 1); |
|
|
|
|
|
let diff = count.undo_update_with_dirty_state(&dirty); |
|
|
assert!(count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), 0); |
|
|
assert_eq!(count.get(SESSION_2), 0); |
|
|
assert_eq!(diff.get(SESSION_2), -1); |
|
|
} |
|
|
|
|
|
#[test] |
|
|
fn test_replace_dirty_state() { |
|
|
let mut count = DirtyContainerCount::default(); |
|
|
let old = DirtyState { |
|
|
clean_in_session: None, |
|
|
}; |
|
|
let new = DirtyState { |
|
|
clean_in_session: Some(SESSION_1), |
|
|
}; |
|
|
count.update_with_dirty_state(&old); |
|
|
let diff = count.replace_dirty_state(&old, &new); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 0); |
|
|
assert_eq!(diff.get(SESSION_1), -1); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 0); |
|
|
|
|
|
let mut count = DirtyContainerCount::default(); |
|
|
let old = DirtyState { |
|
|
clean_in_session: Some(SESSION_1), |
|
|
}; |
|
|
let new = DirtyState { |
|
|
clean_in_session: None, |
|
|
}; |
|
|
count.update_with_dirty_state(&old); |
|
|
let diff = count.replace_dirty_state(&old, &new); |
|
|
assert!(!count.is_zero()); |
|
|
assert_eq!(count.get(SESSION_1), 1); |
|
|
assert_eq!(diff.get(SESSION_1), 1); |
|
|
assert_eq!(count.get(SESSION_2), 1); |
|
|
assert_eq!(diff.get(SESSION_2), 0); |
|
|
} |
|
|
} |
|
|
|
|
|
#[derive(Debug, Clone, Copy)] |
|
|
pub enum RootType { |
|
|
RootTask, |
|
|
OnceTask, |
|
|
} |
|
|
|
|
|
#[derive(Debug)] |
|
|
pub struct InProgressStateInner { |
|
|
pub stale: bool, |
|
|
#[allow(dead_code)] |
|
|
pub once_task: bool, |
|
|
pub session_dependent: bool, |
|
|
|
|
|
|
|
|
pub marked_as_completed: bool, |
|
|
|
|
|
pub done: bool, |
|
|
|
|
|
|
|
|
pub done_event: Event, |
|
|
|
|
|
|
|
|
pub new_children: FxHashSet<TaskId>, |
|
|
} |
|
|
|
|
|
#[derive(Debug)] |
|
|
pub enum InProgressState { |
|
|
Scheduled { |
|
|
|
|
|
|
|
|
done_event: Event, |
|
|
|
|
|
reason: TaskExecutionReason, |
|
|
}, |
|
|
InProgress(Box<InProgressStateInner>), |
|
|
Canceled, |
|
|
} |
|
|
|
|
|
transient_traits!(InProgressState); |
|
|
|
|
|
impl Eq for InProgressState {} |
|
|
|
|
|
#[derive(Debug)] |
|
|
pub struct InProgressCellState { |
|
|
pub event: Event, |
|
|
} |
|
|
|
|
|
transient_traits!(InProgressCellState); |
|
|
|
|
|
impl Eq for InProgressCellState {} |
|
|
|
|
|
impl InProgressCellState { |
|
|
pub fn new(task_id: TaskId, cell: CellId) -> Self { |
|
|
InProgressCellState { |
|
|
event: Event::new(move || { |
|
|
move || format!("InProgressCellState::event ({task_id} {cell:?})") |
|
|
}), |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, Serialize, Deserialize)] |
|
|
pub struct AggregationNumber { |
|
|
pub base: u32, |
|
|
pub distance: u32, |
|
|
pub effective: u32, |
|
|
} |
|
|
|
|
|
#[derive(Debug, Clone, KeyValuePair, Serialize, Deserialize)] |
|
|
pub enum CachedDataItem { |
|
|
|
|
|
Output { |
|
|
value: OutputValue, |
|
|
}, |
|
|
Collectible { |
|
|
collectible: CollectibleRef, |
|
|
value: i32, |
|
|
}, |
|
|
|
|
|
|
|
|
Dirty { |
|
|
value: DirtyState, |
|
|
}, |
|
|
|
|
|
|
|
|
Child { |
|
|
task: TaskId, |
|
|
value: (), |
|
|
}, |
|
|
|
|
|
|
|
|
CellData { |
|
|
cell: CellId, |
|
|
value: TypedSharedReference, |
|
|
}, |
|
|
CellTypeMaxIndex { |
|
|
cell_type: ValueTypeId, |
|
|
value: u32, |
|
|
}, |
|
|
|
|
|
|
|
|
OutputDependency { |
|
|
target: TaskId, |
|
|
value: (), |
|
|
}, |
|
|
CellDependency { |
|
|
target: CellRef, |
|
|
value: (), |
|
|
}, |
|
|
CollectiblesDependency { |
|
|
target: CollectiblesRef, |
|
|
value: (), |
|
|
}, |
|
|
|
|
|
|
|
|
OutputDependent { |
|
|
task: TaskId, |
|
|
value: (), |
|
|
}, |
|
|
CellDependent { |
|
|
cell: CellId, |
|
|
task: TaskId, |
|
|
value: (), |
|
|
}, |
|
|
CollectiblesDependent { |
|
|
collectible_type: TraitTypeId, |
|
|
task: TaskId, |
|
|
value: (), |
|
|
}, |
|
|
|
|
|
|
|
|
AggregationNumber { |
|
|
value: AggregationNumber, |
|
|
}, |
|
|
Follower { |
|
|
task: TaskId, |
|
|
value: u32, |
|
|
}, |
|
|
Upper { |
|
|
task: TaskId, |
|
|
value: u32, |
|
|
}, |
|
|
|
|
|
|
|
|
AggregatedDirtyContainer { |
|
|
task: TaskId, |
|
|
value: DirtyContainerCount, |
|
|
}, |
|
|
AggregatedCollectible { |
|
|
collectible: CollectibleRef, |
|
|
value: i32, |
|
|
}, |
|
|
AggregatedDirtyContainerCount { |
|
|
value: DirtyContainerCount, |
|
|
}, |
|
|
|
|
|
|
|
|
Stateful { |
|
|
value: (), |
|
|
}, |
|
|
HasInvalidator { |
|
|
value: (), |
|
|
}, |
|
|
Immutable { |
|
|
value: (), |
|
|
}, |
|
|
|
|
|
|
|
|
#[serde(skip)] |
|
|
Activeness { |
|
|
value: ActivenessState, |
|
|
}, |
|
|
|
|
|
|
|
|
#[serde(skip)] |
|
|
InProgress { |
|
|
value: InProgressState, |
|
|
}, |
|
|
#[serde(skip)] |
|
|
InProgressCell { |
|
|
cell: CellId, |
|
|
value: InProgressCellState, |
|
|
}, |
|
|
#[serde(skip)] |
|
|
OutdatedCollectible { |
|
|
collectible: CollectibleRef, |
|
|
value: i32, |
|
|
}, |
|
|
#[serde(skip)] |
|
|
OutdatedOutputDependency { |
|
|
target: TaskId, |
|
|
value: (), |
|
|
}, |
|
|
#[serde(skip)] |
|
|
OutdatedCellDependency { |
|
|
target: CellRef, |
|
|
value: (), |
|
|
}, |
|
|
#[serde(skip)] |
|
|
OutdatedCollectiblesDependency { |
|
|
target: CollectiblesRef, |
|
|
value: (), |
|
|
}, |
|
|
} |
|
|
|
|
|
impl CachedDataItem { |
|
|
pub fn is_persistent(&self) -> bool { |
|
|
match self { |
|
|
CachedDataItem::Output { value } => value.is_transient(), |
|
|
CachedDataItem::Collectible { collectible, .. } => { |
|
|
!collectible.cell.task.is_transient() |
|
|
} |
|
|
CachedDataItem::Dirty { .. } => true, |
|
|
CachedDataItem::Child { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::CellData { .. } => true, |
|
|
CachedDataItem::CellTypeMaxIndex { .. } => true, |
|
|
CachedDataItem::OutputDependency { target, .. } => !target.is_transient(), |
|
|
CachedDataItem::CellDependency { target, .. } => !target.task.is_transient(), |
|
|
CachedDataItem::CollectiblesDependency { target, .. } => !target.task.is_transient(), |
|
|
CachedDataItem::OutputDependent { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::CellDependent { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::CollectiblesDependent { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::AggregationNumber { .. } => true, |
|
|
CachedDataItem::Follower { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::Upper { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::AggregatedDirtyContainer { task, .. } => !task.is_transient(), |
|
|
CachedDataItem::AggregatedCollectible { collectible, .. } => { |
|
|
!collectible.cell.task.is_transient() |
|
|
} |
|
|
CachedDataItem::AggregatedDirtyContainerCount { .. } => true, |
|
|
CachedDataItem::Stateful { .. } => true, |
|
|
CachedDataItem::HasInvalidator { .. } => true, |
|
|
CachedDataItem::Immutable { .. } => true, |
|
|
CachedDataItem::Activeness { .. } => false, |
|
|
CachedDataItem::InProgress { .. } => false, |
|
|
CachedDataItem::InProgressCell { .. } => false, |
|
|
CachedDataItem::OutdatedCollectible { .. } => false, |
|
|
CachedDataItem::OutdatedOutputDependency { .. } => false, |
|
|
CachedDataItem::OutdatedCellDependency { .. } => false, |
|
|
CachedDataItem::OutdatedCollectiblesDependency { .. } => false, |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn new_scheduled<InnerFnDescription>( |
|
|
reason: TaskExecutionReason, |
|
|
description: impl FnOnce() -> InnerFnDescription, |
|
|
) -> Self |
|
|
where |
|
|
InnerFnDescription: Fn() -> String + Sync + Send + 'static, |
|
|
{ |
|
|
let done_event = Event::new(move || { |
|
|
let inner = description(); |
|
|
move || format!("{} done_event", inner()) |
|
|
}); |
|
|
CachedDataItem::InProgress { |
|
|
value: InProgressState::Scheduled { done_event, reason }, |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn new_scheduled_with_listener<InnerFnDescription, InnerFnNote>( |
|
|
reason: TaskExecutionReason, |
|
|
description: impl FnOnce() -> InnerFnDescription, |
|
|
note: impl FnOnce() -> InnerFnNote, |
|
|
) -> (Self, EventListener) |
|
|
where |
|
|
InnerFnDescription: Fn() -> String + Sync + Send + 'static, |
|
|
InnerFnNote: Fn() -> String + Sync + Send + 'static, |
|
|
{ |
|
|
let done_event = Event::new(move || { |
|
|
let inner = description(); |
|
|
move || format!("{} done_event", inner()) |
|
|
}); |
|
|
let listener = done_event.listen_with_note(note); |
|
|
( |
|
|
CachedDataItem::InProgress { |
|
|
value: InProgressState::Scheduled { done_event, reason }, |
|
|
}, |
|
|
listener, |
|
|
) |
|
|
} |
|
|
|
|
|
pub fn category(&self) -> TaskDataCategory { |
|
|
match self { |
|
|
Self::CellData { .. } |
|
|
| Self::CellTypeMaxIndex { .. } |
|
|
| Self::OutputDependency { .. } |
|
|
| Self::CellDependency { .. } |
|
|
| Self::CollectiblesDependency { .. } |
|
|
| Self::OutputDependent { .. } |
|
|
| Self::CellDependent { .. } => TaskDataCategory::Data, |
|
|
|
|
|
Self::Collectible { .. } |
|
|
| Self::Output { .. } |
|
|
| Self::AggregationNumber { .. } |
|
|
| Self::Dirty { .. } |
|
|
| Self::Follower { .. } |
|
|
| Self::Child { .. } |
|
|
| Self::Upper { .. } |
|
|
| Self::AggregatedDirtyContainer { .. } |
|
|
| Self::AggregatedCollectible { .. } |
|
|
| Self::AggregatedDirtyContainerCount { .. } |
|
|
| Self::Stateful { .. } |
|
|
| Self::HasInvalidator { .. } |
|
|
| Self::Immutable { .. } |
|
|
| Self::CollectiblesDependent { .. } => TaskDataCategory::Meta, |
|
|
|
|
|
Self::OutdatedCollectible { .. } |
|
|
| Self::OutdatedOutputDependency { .. } |
|
|
| Self::OutdatedCellDependency { .. } |
|
|
| Self::OutdatedCollectiblesDependency { .. } |
|
|
| Self::InProgressCell { .. } |
|
|
| Self::InProgress { .. } |
|
|
| Self::Activeness { .. } => TaskDataCategory::All, |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn is_optional(&self) -> bool { |
|
|
matches!(self, CachedDataItem::CellData { .. }) |
|
|
} |
|
|
} |
|
|
|
|
|
impl CachedDataItemKey { |
|
|
pub fn is_persistent(&self) -> bool { |
|
|
match self { |
|
|
CachedDataItemKey::Output { .. } => true, |
|
|
CachedDataItemKey::Collectible { collectible, .. } => { |
|
|
!collectible.cell.task.is_transient() |
|
|
} |
|
|
CachedDataItemKey::Dirty { .. } => true, |
|
|
CachedDataItemKey::Child { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::CellData { .. } => true, |
|
|
CachedDataItemKey::CellTypeMaxIndex { .. } => true, |
|
|
CachedDataItemKey::OutputDependency { target, .. } => !target.is_transient(), |
|
|
CachedDataItemKey::CellDependency { target, .. } => !target.task.is_transient(), |
|
|
CachedDataItemKey::CollectiblesDependency { target, .. } => !target.task.is_transient(), |
|
|
CachedDataItemKey::OutputDependent { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::CellDependent { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::CollectiblesDependent { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::AggregationNumber { .. } => true, |
|
|
CachedDataItemKey::Follower { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::Upper { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::AggregatedDirtyContainer { task, .. } => !task.is_transient(), |
|
|
CachedDataItemKey::AggregatedCollectible { collectible, .. } => { |
|
|
!collectible.cell.task.is_transient() |
|
|
} |
|
|
CachedDataItemKey::AggregatedDirtyContainerCount { .. } => true, |
|
|
CachedDataItemKey::Stateful { .. } => true, |
|
|
CachedDataItemKey::HasInvalidator { .. } => true, |
|
|
CachedDataItemKey::Immutable { .. } => true, |
|
|
CachedDataItemKey::Activeness { .. } => false, |
|
|
CachedDataItemKey::InProgress { .. } => false, |
|
|
CachedDataItemKey::InProgressCell { .. } => false, |
|
|
CachedDataItemKey::OutdatedCollectible { .. } => false, |
|
|
CachedDataItemKey::OutdatedOutputDependency { .. } => false, |
|
|
CachedDataItemKey::OutdatedCellDependency { .. } => false, |
|
|
CachedDataItemKey::OutdatedCollectiblesDependency { .. } => false, |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn category(&self) -> TaskDataCategory { |
|
|
self.ty().category() |
|
|
} |
|
|
} |
|
|
|
|
|
impl CachedDataItemType { |
|
|
pub fn category(&self) -> TaskDataCategory { |
|
|
match self { |
|
|
Self::CellData { .. } |
|
|
| Self::CellTypeMaxIndex { .. } |
|
|
| Self::OutputDependency { .. } |
|
|
| Self::CellDependency { .. } |
|
|
| Self::CollectiblesDependency { .. } |
|
|
| Self::OutputDependent { .. } |
|
|
| Self::CellDependent { .. } => TaskDataCategory::Data, |
|
|
|
|
|
Self::Collectible { .. } |
|
|
| Self::Output { .. } |
|
|
| Self::AggregationNumber { .. } |
|
|
| Self::Dirty { .. } |
|
|
| Self::Follower { .. } |
|
|
| Self::Child { .. } |
|
|
| Self::Upper { .. } |
|
|
| Self::AggregatedDirtyContainer { .. } |
|
|
| Self::AggregatedCollectible { .. } |
|
|
| Self::AggregatedDirtyContainerCount { .. } |
|
|
| Self::Stateful { .. } |
|
|
| Self::HasInvalidator { .. } |
|
|
| Self::Immutable { .. } |
|
|
| Self::CollectiblesDependent { .. } => TaskDataCategory::Meta, |
|
|
|
|
|
Self::OutdatedCollectible { .. } |
|
|
| Self::OutdatedOutputDependency { .. } |
|
|
| Self::OutdatedCellDependency { .. } |
|
|
| Self::OutdatedCollectiblesDependency { .. } |
|
|
| Self::InProgressCell { .. } |
|
|
| Self::InProgress { .. } |
|
|
| Self::Activeness { .. } => TaskDataCategory::All, |
|
|
} |
|
|
} |
|
|
|
|
|
pub fn is_persistent(&self) -> bool { |
|
|
match self { |
|
|
Self::Output |
|
|
| Self::Collectible |
|
|
| Self::Dirty |
|
|
| Self::Child |
|
|
| Self::CellData |
|
|
| Self::CellTypeMaxIndex |
|
|
| Self::OutputDependency |
|
|
| Self::CellDependency |
|
|
| Self::CollectiblesDependency |
|
|
| Self::OutputDependent |
|
|
| Self::CellDependent |
|
|
| Self::CollectiblesDependent |
|
|
| Self::AggregationNumber |
|
|
| Self::Follower |
|
|
| Self::Upper |
|
|
| Self::AggregatedDirtyContainer |
|
|
| Self::AggregatedCollectible |
|
|
| Self::AggregatedDirtyContainerCount |
|
|
| Self::Stateful |
|
|
| Self::HasInvalidator |
|
|
| Self::Immutable => true, |
|
|
|
|
|
Self::Activeness |
|
|
| Self::InProgress |
|
|
| Self::InProgressCell |
|
|
| Self::OutdatedCollectible |
|
|
| Self::OutdatedOutputDependency |
|
|
| Self::OutdatedCellDependency |
|
|
| Self::OutdatedCollectiblesDependency => false, |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[allow(non_upper_case_globals, dead_code)] |
|
|
pub mod allow_mut_access { |
|
|
pub const InProgress: () = (); |
|
|
pub const Activeness: () = (); |
|
|
} |
|
|
|
|
|
impl CachedDataItemValueRef<'_> { |
|
|
pub fn is_persistent(&self) -> bool { |
|
|
match self { |
|
|
CachedDataItemValueRef::Output { value } => !value.is_transient(), |
|
|
CachedDataItemValueRef::CellData { value } => { |
|
|
registry::get_value_type(value.type_id).is_serializable() |
|
|
} |
|
|
_ => true, |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
#[cfg(test)] |
|
|
mod tests { |
|
|
|
|
|
#[test] |
|
|
fn test_sizes() { |
|
|
assert_eq!(std::mem::size_of::<super::CachedDataItem>(), 40); |
|
|
assert_eq!(std::mem::size_of::<super::CachedDataItemKey>(), 20); |
|
|
assert_eq!(std::mem::size_of::<super::CachedDataItemValue>(), 32); |
|
|
assert_eq!(std::mem::size_of::<super::CachedDataItemStorage>(), 48); |
|
|
} |
|
|
} |
|
|
|