|
|
use anyhow::Result; |
|
|
use turbo_tasks::{ |
|
|
Completion, Completions, ResolvedVc, TryJoinIterExt, Vc, |
|
|
graph::{GraphTraversal, NonDeterministic}, |
|
|
}; |
|
|
|
|
|
use crate::{ |
|
|
asset::Asset, |
|
|
module::Module, |
|
|
output::{OutputAsset, OutputAssets}, |
|
|
reference::primary_referenced_modules, |
|
|
}; |
|
|
|
|
|
async fn get_referenced_output_assets( |
|
|
parent: ResolvedVc<Box<dyn OutputAsset>>, |
|
|
) -> Result<impl Iterator<Item = ResolvedVc<Box<dyn OutputAsset>>> + Send> { |
|
|
Ok(parent.references().owned().await?.into_iter()) |
|
|
} |
|
|
|
|
|
pub async fn get_referenced_modules( |
|
|
parent: ResolvedVc<Box<dyn Module>>, |
|
|
) -> Result<impl Iterator<Item = ResolvedVc<Box<dyn Module>>> + Send> { |
|
|
Ok(primary_referenced_modules(*parent) |
|
|
.owned() |
|
|
.await? |
|
|
.into_iter()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn any_content_changed_of_module( |
|
|
root: ResolvedVc<Box<dyn Module>>, |
|
|
) -> Result<Vc<Completion>> { |
|
|
let completions = NonDeterministic::new() |
|
|
.skip_duplicates() |
|
|
.visit([root], get_referenced_modules) |
|
|
.await |
|
|
.completed()? |
|
|
.into_inner() |
|
|
.into_iter() |
|
|
.map(|m| content_changed(*ResolvedVc::upcast(m))) |
|
|
.map(|v| v.to_resolved()) |
|
|
.try_join() |
|
|
.await?; |
|
|
|
|
|
Ok(Vc::<Completions>::cell(completions).completed()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn any_content_changed_of_output_asset( |
|
|
root: ResolvedVc<Box<dyn OutputAsset>>, |
|
|
) -> Result<Vc<Completion>> { |
|
|
let completions = NonDeterministic::new() |
|
|
.skip_duplicates() |
|
|
.visit([root], get_referenced_output_assets) |
|
|
.await |
|
|
.completed()? |
|
|
.into_inner() |
|
|
.into_iter() |
|
|
.map(|m| content_changed(*ResolvedVc::upcast(m))) |
|
|
.map(|v| v.to_resolved()) |
|
|
.try_join() |
|
|
.await?; |
|
|
|
|
|
Ok(Vc::<Completions>::cell(completions).completed()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn any_content_changed_of_output_assets( |
|
|
roots: Vc<OutputAssets>, |
|
|
) -> Result<Vc<Completion>> { |
|
|
Ok(Vc::<Completions>::cell( |
|
|
roots |
|
|
.await? |
|
|
.iter() |
|
|
.map(|&a| any_content_changed_of_output_asset(*a)) |
|
|
.map(|v| v.to_resolved()) |
|
|
.try_join() |
|
|
.await?, |
|
|
) |
|
|
.completed()) |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#[turbo_tasks::function] |
|
|
pub async fn content_changed(asset: Vc<Box<dyn Asset>>) -> Result<Vc<Completion>> { |
|
|
|
|
|
asset.content().file_content().await?; |
|
|
Ok(Completion::new()) |
|
|
} |
|
|
|