File size: 31,892 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 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 |
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},
};
// this traits are needed for the transient variants of `CachedDataItem`
// transient variants are never cloned or compared
macro_rules! transient_traits {
($name:ident) => {
impl Clone for $name {
fn clone(&self) -> Self {
// this impl is needed for the transient variants of `CachedDataItem`
// transient variants are never cloned
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 {
/// When this counter is > 0, the task is active.
pub active_counter: i32,
/// The task is a root or once task and is active due to that.
pub root_ty: Option<RootType>,
/// The subgraph is active as long it's dirty. Once it become clean, it will unset this flag.
///
/// This happens primarily when a dirty subgraph wants to be scheduled. It will set this flag
/// to "cache" the activeness.
///
/// It also happens when a task is strongly consistently read. We need the `all_clean_event` in
/// that case and want to keep the task active to not stale the task.
pub active_until_clean: bool,
/// An event which is notifies when the subgraph is no longer dirty. It must be combined with
/// `active_until_clean` to avoid staling the task.
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;
}
/// Increment the active counter and return true if the counter was 0 before.
pub fn increment_active_counter(&mut self) -> bool {
self.active_counter += 1;
self.active_counter == 1
}
/// Decrement the active counter and return true if the counter is 0 after.
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
}
}
/// Represents a count of dirty containers. Since dirtiness can be session dependent, there might be
/// a different count for a specific session. It only need to store the highest session count, since
/// old sessions can't be visited again, so we can ignore their counts.
#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq, Eq)]
pub struct DirtyContainerCount {
pub count: i32,
pub count_in_session: Option<(SessionId, i32)>,
}
impl DirtyContainerCount {
/// Get the count for a specific session. It's only expected to be asked for the current
/// session, since old session counts might be dropped.
pub fn get(&self, session: SessionId) -> i32 {
if let Some((s, count)) = self.count_in_session
&& s == session
{
return count;
}
self.count
}
/// Increase/decrease the count by the given value.
pub fn update(&mut self, count: i32) -> DirtyContainerCount {
self.update_count(&DirtyContainerCount {
count,
count_in_session: None,
})
}
/// Increase/decrease the count by the given value, but does not update the count for a specific
/// session. This matches the "dirty, but clean in one session" behavior.
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)),
})
}
/// Adds the `count` to the current count. This correctly handles session dependent counts.
/// Returns a new count object that represents the aggregated count. The aggregated count will
/// be +1 when the self count changes from <= 0 to > 0 and -1 when the self count changes from >
/// 0 to <= 0. The same for the session dependent count.
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
}
/// Applies a dirty state to the count. Returns an aggregated count that represents the change.
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)
}
}
/// Undoes the effect of a dirty state on the count. Returns an aggregated count that represents
/// the change.
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)
}
}
/// Replaces the old dirty state with the new one. Returns an aggregated count that represents
/// the change.
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
}
/// Returns true if the count is zero and applying it would have no effect
pub fn is_zero(&self) -> bool {
self.count == 0 && self.count_in_session.map(|(_, c)| c == 0).unwrap_or(true)
}
/// Negates the counts.
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,
/// Early marking as completed. This is set before the output is available and will ignore full
/// task completion of the task for strongly consistent reads.
pub marked_as_completed: bool,
/// Task execution has completed and the output is available.
pub done: bool,
/// Event that is triggered when the task output is available (completed flag set).
/// This is used to wait for completion when reading the task output before it's available.
pub done_event: Event,
/// Children that should be connected to the task and have their active_count decremented
/// once the task completes.
pub new_children: FxHashSet<TaskId>,
}
#[derive(Debug)]
pub enum InProgressState {
Scheduled {
/// Event that is triggered when the task output is available (completed flag set).
/// This is used to wait for completion when reading the task output before it's available.
done_event: Event,
/// Reason for scheduling the task.
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
Output {
value: OutputValue,
},
Collectible {
collectible: CollectibleRef,
value: i32,
},
// State
Dirty {
value: DirtyState,
},
// Children
Child {
task: TaskId,
value: (),
},
// Cells
CellData {
cell: CellId,
value: TypedSharedReference,
},
CellTypeMaxIndex {
cell_type: ValueTypeId,
value: u32,
},
// Dependencies
OutputDependency {
target: TaskId,
value: (),
},
CellDependency {
target: CellRef,
value: (),
},
CollectiblesDependency {
target: CollectiblesRef,
value: (),
},
// Dependent
OutputDependent {
task: TaskId,
value: (),
},
CellDependent {
cell: CellId,
task: TaskId,
value: (),
},
CollectiblesDependent {
collectible_type: TraitTypeId,
task: TaskId,
value: (),
},
// Aggregation Graph
AggregationNumber {
value: AggregationNumber,
},
Follower {
task: TaskId,
value: u32,
},
Upper {
task: TaskId,
value: u32,
},
// Aggregated Data
AggregatedDirtyContainer {
task: TaskId,
value: DirtyContainerCount,
},
AggregatedCollectible {
collectible: CollectibleRef,
value: i32,
},
AggregatedDirtyContainerCount {
value: DirtyContainerCount,
},
// Flags
Stateful {
value: (),
},
HasInvalidator {
value: (),
},
Immutable {
value: (),
},
// Transient Root Type
#[serde(skip)]
Activeness {
value: ActivenessState,
},
// Transient In Progress state
#[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,
}
}
}
/// Used by the [`get_mut`][crate::backend::storage::get_mut] macro to restrict mutable access to a
/// subset of types. No mutable access should be allowed for persisted data, since that would break
/// persisting.
#[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);
}
}
|