Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
use std::cmp::min;
use smallvec::SmallVec;
use turbo_tasks::TaskId;
use crate::{
backend::{
TaskDataCategory, get_many,
operation::{
AggregatedDataUpdate, AggregationUpdateJob, AggregationUpdateQueue, ExecuteContext,
Operation, get_aggregation_number, is_root_node,
},
storage::{get, update_count},
},
data::CollectibleRef,
};
pub struct UpdateCollectibleOperation;
impl UpdateCollectibleOperation {
pub fn run(
task_id: TaskId,
collectible: CollectibleRef,
mut count: i32,
mut ctx: impl ExecuteContext,
) {
if !ctx.should_track_children() {
// Collectibles are not supported without children tracking
return;
}
let mut task = ctx.task(task_id, TaskDataCategory::All);
if count < 0 {
// Ensure it's an root node
loop {
let aggregation_number = get_aggregation_number(&task);
if is_root_node(aggregation_number) {
break;
}
drop(task);
{
let _span = tracing::trace_span!(
"make root node for removing collectible",
%task_id
)
.entered();
AggregationUpdateQueue::run(
AggregationUpdateJob::UpdateAggregationNumber {
task_id,
base_aggregation_number: u32::MAX,
distance: None,
},
&mut ctx,
);
}
task = ctx.task(task_id, TaskDataCategory::All);
}
}
let mut queue = AggregationUpdateQueue::new();
let outdated = get!(task, OutdatedCollectible { collectible }).copied();
if let Some(outdated) = outdated {
if count > 0 && outdated > 0 {
let shared = min(count, outdated);
update_count!(task, OutdatedCollectible { collectible }, -shared);
count -= shared;
} else if count < 0 && outdated < 0 {
let shared = min(-count, -outdated);
update_count!(task, OutdatedCollectible { collectible }, shared);
count += shared;
} else {
// Not reduced from outdated
}
}
if count != 0 {
if update_count!(task, Collectible { collectible }, count) {
let ty = collectible.collectible_type;
let dependent: SmallVec<[TaskId; 4]> = get_many!(
task,
CollectiblesDependent {
collectible_type,
task,
} if collectible_type == ty => {
task
}
);
if !dependent.is_empty() {
queue.push(AggregationUpdateJob::InvalidateDueToCollectiblesChange {
task_ids: dependent,
#[cfg(feature = "trace_task_dirty")]
collectible_type: ty,
})
}
}
queue.extend(AggregationUpdateJob::data_update(
&mut task,
AggregatedDataUpdate::new().collectibles_update(vec![(collectible, count)]),
));
}
drop(task);
queue.execute(&mut ctx);
}
}