use anyhow::Result; use turbo_rcstr::{RcStr, rcstr}; use turbo_tasks::{ResolvedVc, Vc}; use turbopack_core::introspect::{Introspectable, IntrospectableChildren}; use super::{ContentSource, route_tree::RouteTree}; /// A functor to get a [ContentSource]. Will be invoked when needed when using /// [LazyInstantiatedContentSource]. #[turbo_tasks::value_trait] pub trait GetContentSource { /// Returns the [ContentSource] #[turbo_tasks::function] fn content_source(self: Vc) -> Vc>; } /// Wraps the [ContentSource] creation in a way that only creates it when /// actually used. #[turbo_tasks::value(shared)] pub struct LazyInstantiatedContentSource { pub get_source: ResolvedVc>, } #[turbo_tasks::value_impl] impl ContentSource for LazyInstantiatedContentSource { #[turbo_tasks::function] fn get_routes(&self) -> Vc { self.get_source.content_source().get_routes() } } #[turbo_tasks::value_impl] impl Introspectable for LazyInstantiatedContentSource { #[turbo_tasks::function] fn ty(&self) -> Vc { Vc::cell(rcstr!("lazy instantiated content source")) } #[turbo_tasks::function] async fn children(&self) -> Result> { Ok(Vc::cell( [ResolvedVc::try_sidecast::>( self.get_source.content_source().to_resolved().await?, ) .map(|i| (rcstr!("source"), i))] .into_iter() .flatten() .collect(), )) } }