Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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())
}
/// Returns a completion that changes when any content of any asset in the whole
/// asset graph changes.
#[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())
}
/// Returns a completion that changes when any content of any asset in the whole
/// asset graph changes.
#[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())
}
/// Returns a completion that changes when any content of any asset in the given
/// output asset graphs changes.
#[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())
}
/// Returns a completion that changes when the content of the given asset
/// changes.
#[turbo_tasks::function]
pub async fn content_changed(asset: Vc<Box<dyn Asset>>) -> Result<Vc<Completion>> {
// Reading the file content is enough to add as dependency
asset.content().file_content().await?;
Ok(Completion::new())
}