File size: 2,175 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 |
use std::future::IntoFuture;
use anyhow::Result;
use either::Either;
use turbo_tasks::{ReadRef, ResolvedVc, TryJoinIterExt, Vc};
use turbopack_core::{
chunk::{ChunkItem, ChunkItems, batch_info},
output::OutputAsset,
};
use crate::chunk::{
CodeAndIds,
batch::{EcmascriptChunkItemBatchGroup, EcmascriptChunkItemOrBatchWithAsyncInfo},
batch_group_code_and_ids, item_code_and_ids,
};
#[turbo_tasks::value(shared)]
pub struct EcmascriptChunkContent {
pub chunk_items: Vec<EcmascriptChunkItemOrBatchWithAsyncInfo>,
pub batch_groups: Vec<ResolvedVc<EcmascriptChunkItemBatchGroup>>,
pub referenced_output_assets: Vec<ResolvedVc<Box<dyn OutputAsset>>>,
}
#[turbo_tasks::value_impl]
impl EcmascriptChunkContent {
#[turbo_tasks::function]
pub async fn included_chunk_items(&self) -> Result<Vc<ChunkItems>> {
Ok(ChunkItems(
self.chunk_items
.iter()
.map(async |item| match item {
EcmascriptChunkItemOrBatchWithAsyncInfo::ChunkItem(item) => {
Ok(Either::Left(item.chunk_item))
}
EcmascriptChunkItemOrBatchWithAsyncInfo::Batch(batch) => {
Ok(Either::Right(batch.await?))
}
})
.try_join()
.await?
.iter()
.flat_map(|item| match item {
Either::Left(item) => Either::Left(std::iter::once(*item)),
Either::Right(batch) => {
Either::Right(batch.chunk_items.iter().map(|item| item.chunk_item))
}
})
.map(ResolvedVc::upcast::<Box<dyn ChunkItem>>)
.collect(),
)
.cell())
}
}
impl EcmascriptChunkContent {
pub async fn chunk_item_code_and_ids(&self) -> Result<Vec<ReadRef<CodeAndIds>>> {
batch_info(
&self.batch_groups,
&self.chunk_items,
|batch| batch_group_code_and_ids(batch).into_future(),
|item| item_code_and_ids(item.clone()).into_future(),
)
.await
}
}
|