File size: 25,509 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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 |
use anyhow::{Context, Result, bail};
use serde::{Deserialize, Serialize};
use tracing::Instrument;
use turbo_rcstr::{RcStr, rcstr};
use turbo_tasks::{
NonLocalValue, ResolvedVc, TaskInput, TryJoinIterExt, Upcast, ValueToString, Vc,
trace::TraceRawVcs,
};
use turbo_tasks_fs::FileSystemPath;
use turbo_tasks_hash::{DeterministicHash, hash_xxh3_hash64};
use turbopack_core::{
asset::{Asset, AssetContent},
chunk::{
Chunk, ChunkGroupResult, ChunkItem, ChunkType, ChunkableModule, ChunkingConfig,
ChunkingConfigs, ChunkingContext, EntryChunkGroupResult, EvaluatableAsset,
EvaluatableAssets, MinifyType, ModuleId, SourceMapsType,
availability_info::AvailabilityInfo,
chunk_group::{MakeChunkGroupResult, make_chunk_group},
module_id_strategies::{DevModuleIdStrategy, ModuleIdStrategy},
},
environment::Environment,
ident::AssetIdent,
module::Module,
module_graph::{
ModuleGraph,
chunk_group_info::ChunkGroup,
export_usage::{ExportUsageInfo, ModuleExportUsageInfo},
},
output::{OutputAsset, OutputAssets},
};
use turbopack_ecmascript::{
async_chunk::module::AsyncLoaderModule,
chunk::EcmascriptChunk,
manifest::{chunk_asset::ManifestAsyncModule, loader_item::ManifestLoaderChunkItem},
};
use turbopack_ecmascript_runtime::RuntimeType;
use crate::ecmascript::{
chunk::EcmascriptBrowserChunk,
evaluate::chunk::EcmascriptBrowserEvaluateChunk,
list::asset::{EcmascriptDevChunkList, EcmascriptDevChunkListSource},
};
#[turbo_tasks::value]
#[derive(Debug, Clone, Copy, Hash, TaskInput)]
pub enum CurrentChunkMethod {
StringLiteral,
DocumentCurrentScript,
}
pub const CURRENT_CHUNK_METHOD_DOCUMENT_CURRENT_SCRIPT_EXPR: &str =
"typeof document === \"object\" ? document.currentScript : undefined";
#[derive(
Debug,
TaskInput,
Clone,
Copy,
PartialEq,
Eq,
Hash,
Serialize,
Deserialize,
TraceRawVcs,
DeterministicHash,
NonLocalValue,
)]
pub enum ContentHashing {
/// Direct content hashing: Embeds the chunk content hash directly into the referencing chunk.
/// Benefit: No hash manifest needed.
/// Downside: Causes cascading hash invalidation.
Direct {
/// The length of the content hash in hex chars. Anything lower than 8 is not recommended
/// due to the high risk of collisions.
length: u8,
},
}
pub struct BrowserChunkingContextBuilder {
chunking_context: BrowserChunkingContext,
}
impl BrowserChunkingContextBuilder {
pub fn name(mut self, name: RcStr) -> Self {
self.chunking_context.name = Some(name);
self
}
pub fn hot_module_replacement(mut self) -> Self {
self.chunking_context.enable_hot_module_replacement = true;
self
}
pub fn use_file_source_map_uris(mut self) -> Self {
self.chunking_context.should_use_file_source_map_uris = true;
self
}
pub fn tracing(mut self, enable_tracing: bool) -> Self {
self.chunking_context.enable_tracing = enable_tracing;
self
}
pub fn module_merging(mut self, enable_module_merging: bool) -> Self {
self.chunking_context.enable_module_merging = enable_module_merging;
self
}
pub fn dynamic_chunk_content_loading(
mut self,
enable_dynamic_chunk_content_loading: bool,
) -> Self {
self.chunking_context.enable_dynamic_chunk_content_loading =
enable_dynamic_chunk_content_loading;
self
}
pub fn asset_base_path(mut self, asset_base_path: Option<RcStr>) -> Self {
self.chunking_context.asset_base_path = asset_base_path;
self
}
pub fn chunk_base_path(mut self, chunk_base_path: Option<RcStr>) -> Self {
self.chunking_context.chunk_base_path = chunk_base_path;
self
}
pub fn chunk_suffix_path(mut self, chunk_suffix_path: Option<RcStr>) -> Self {
self.chunking_context.chunk_suffix_path = chunk_suffix_path;
self
}
pub fn runtime_type(mut self, runtime_type: RuntimeType) -> Self {
self.chunking_context.runtime_type = runtime_type;
self
}
pub fn manifest_chunks(mut self, manifest_chunks: bool) -> Self {
self.chunking_context.manifest_chunks = manifest_chunks;
self
}
pub fn minify_type(mut self, minify_type: MinifyType) -> Self {
self.chunking_context.minify_type = minify_type;
self
}
pub fn source_maps(mut self, source_maps: SourceMapsType) -> Self {
self.chunking_context.source_maps_type = source_maps;
self
}
pub fn current_chunk_method(mut self, method: CurrentChunkMethod) -> Self {
self.chunking_context.current_chunk_method = method;
self
}
pub fn module_id_strategy(
mut self,
module_id_strategy: ResolvedVc<Box<dyn ModuleIdStrategy>>,
) -> Self {
self.chunking_context.module_id_strategy = module_id_strategy;
self
}
pub fn export_usage(mut self, export_usage: Option<ResolvedVc<ExportUsageInfo>>) -> Self {
self.chunking_context.export_usage = export_usage;
self
}
pub fn chunking_config<T>(mut self, ty: ResolvedVc<T>, chunking_config: ChunkingConfig) -> Self
where
T: Upcast<Box<dyn ChunkType>>,
{
self.chunking_context
.chunking_configs
.push((ResolvedVc::upcast(ty), chunking_config));
self
}
pub fn use_content_hashing(mut self, content_hashing: ContentHashing) -> Self {
self.chunking_context.content_hashing = Some(content_hashing);
self
}
pub fn build(self) -> Vc<BrowserChunkingContext> {
BrowserChunkingContext::cell(self.chunking_context)
}
}
/// A chunking context for development mode.
///
/// It uses readable filenames and module ids to improve development.
/// It also uses a chunking heuristic that is incremental and cacheable.
/// It splits "node_modules" separately as these are less likely to change
/// during development
#[turbo_tasks::value]
#[derive(Debug, Clone, Hash, TaskInput)]
pub struct BrowserChunkingContext {
name: Option<RcStr>,
/// The root path of the project
root_path: FileSystemPath,
/// Whether to write file sources as file:// paths in source maps
should_use_file_source_map_uris: bool,
/// This path is used to compute the url to request chunks from
output_root: FileSystemPath,
/// The relative path from the output_root to the root_path.
output_root_to_root_path: RcStr,
/// This path is used to compute the url to request assets from
client_root: FileSystemPath,
/// Chunks are placed at this path
chunk_root_path: FileSystemPath,
/// Static assets are placed at this path
asset_root_path: FileSystemPath,
/// Base path that will be prepended to all chunk URLs when loading them.
/// This path will not appear in chunk paths or chunk data.
chunk_base_path: Option<RcStr>,
/// Suffix path that will be appended to all chunk URLs when loading them.
/// This path will not appear in chunk paths or chunk data.
chunk_suffix_path: Option<RcStr>,
/// URL prefix that will be prepended to all static asset URLs when loading
/// them.
asset_base_path: Option<RcStr>,
/// Enable HMR for this chunking
enable_hot_module_replacement: bool,
/// Enable tracing for this chunking
enable_tracing: bool,
/// Enable module merging
enable_module_merging: bool,
/// Enable dynamic chunk content loading.
enable_dynamic_chunk_content_loading: bool,
/// The environment chunks will be evaluated in.
environment: ResolvedVc<Environment>,
/// The kind of runtime to include in the output.
runtime_type: RuntimeType,
/// Whether to minify resulting chunks
minify_type: MinifyType,
/// Whether content hashing is enabled.
content_hashing: Option<ContentHashing>,
/// Whether to generate source maps
source_maps_type: SourceMapsType,
/// Method to use when figuring out the current chunk src
current_chunk_method: CurrentChunkMethod,
/// Whether to use manifest chunks for lazy compilation
manifest_chunks: bool,
/// The module id strategy to use
module_id_strategy: ResolvedVc<Box<dyn ModuleIdStrategy>>,
/// The module export usage info, if available.
export_usage: Option<ResolvedVc<ExportUsageInfo>>,
/// The chunking configs
chunking_configs: Vec<(ResolvedVc<Box<dyn ChunkType>>, ChunkingConfig)>,
}
impl BrowserChunkingContext {
pub fn builder(
root_path: FileSystemPath,
output_root: FileSystemPath,
output_root_to_root_path: RcStr,
client_root: FileSystemPath,
chunk_root_path: FileSystemPath,
asset_root_path: FileSystemPath,
environment: ResolvedVc<Environment>,
runtime_type: RuntimeType,
) -> BrowserChunkingContextBuilder {
BrowserChunkingContextBuilder {
chunking_context: BrowserChunkingContext {
name: None,
root_path,
output_root,
output_root_to_root_path,
client_root,
chunk_root_path,
should_use_file_source_map_uris: false,
asset_root_path,
chunk_base_path: None,
chunk_suffix_path: None,
asset_base_path: None,
enable_hot_module_replacement: false,
enable_tracing: false,
enable_module_merging: false,
enable_dynamic_chunk_content_loading: false,
environment,
runtime_type,
minify_type: MinifyType::NoMinify,
content_hashing: None,
source_maps_type: SourceMapsType::Full,
current_chunk_method: CurrentChunkMethod::StringLiteral,
manifest_chunks: false,
module_id_strategy: ResolvedVc::upcast(DevModuleIdStrategy::new_resolved()),
export_usage: None,
chunking_configs: Default::default(),
},
}
}
}
#[turbo_tasks::value_impl]
impl BrowserChunkingContext {
#[turbo_tasks::function]
fn generate_evaluate_chunk(
self: Vc<Self>,
ident: Vc<AssetIdent>,
other_chunks: Vc<OutputAssets>,
evaluatable_assets: Vc<EvaluatableAssets>,
// TODO(sokra) remove this argument and pass chunk items instead
module_graph: Vc<ModuleGraph>,
) -> Vc<Box<dyn OutputAsset>> {
Vc::upcast(EcmascriptBrowserEvaluateChunk::new(
self,
ident,
other_chunks,
evaluatable_assets,
module_graph,
))
}
#[turbo_tasks::function]
fn generate_chunk_list_register_chunk(
self: Vc<Self>,
ident: Vc<AssetIdent>,
evaluatable_assets: Vc<EvaluatableAssets>,
other_chunks: Vc<OutputAssets>,
source: EcmascriptDevChunkListSource,
) -> Vc<Box<dyn OutputAsset>> {
Vc::upcast(EcmascriptDevChunkList::new(
self,
ident,
evaluatable_assets,
other_chunks,
source,
))
}
#[turbo_tasks::function]
async fn generate_chunk(
self: Vc<Self>,
chunk: Vc<Box<dyn Chunk>>,
) -> Result<Vc<Box<dyn OutputAsset>>> {
Ok(
if let Some(ecmascript_chunk) =
Vc::try_resolve_downcast_type::<EcmascriptChunk>(chunk).await?
{
Vc::upcast(EcmascriptBrowserChunk::new(self, ecmascript_chunk))
} else if let Some(output_asset) =
Vc::try_resolve_sidecast::<Box<dyn OutputAsset>>(chunk).await?
{
output_asset
} else {
bail!("Unable to generate output asset for chunk");
},
)
}
#[turbo_tasks::function]
pub fn current_chunk_method(&self) -> Vc<CurrentChunkMethod> {
self.current_chunk_method.cell()
}
/// Returns the kind of runtime to include in output chunks.
///
/// This is defined directly on `BrowserChunkingContext` so it is zero-cost
/// when `RuntimeType` has a single variant.
#[turbo_tasks::function]
pub fn runtime_type(&self) -> Vc<RuntimeType> {
self.runtime_type.cell()
}
/// Returns the asset base path.
#[turbo_tasks::function]
pub fn chunk_base_path(&self) -> Vc<Option<RcStr>> {
Vc::cell(self.chunk_base_path.clone())
}
/// Returns the asset suffix path.
#[turbo_tasks::function]
pub fn chunk_suffix_path(&self) -> Vc<Option<RcStr>> {
Vc::cell(self.chunk_suffix_path.clone())
}
/// Returns the source map type.
#[turbo_tasks::function]
pub fn source_maps_type(&self) -> Vc<SourceMapsType> {
self.source_maps_type.cell()
}
/// Returns the minify type.
#[turbo_tasks::function]
pub fn minify_type(&self) -> Vc<MinifyType> {
self.minify_type.cell()
}
}
#[turbo_tasks::value_impl]
impl ChunkingContext for BrowserChunkingContext {
#[turbo_tasks::function]
fn name(&self) -> Vc<RcStr> {
if let Some(name) = &self.name {
Vc::cell(name.clone())
} else {
Vc::cell(rcstr!("unknown"))
}
}
#[turbo_tasks::function]
fn root_path(&self) -> Vc<FileSystemPath> {
self.root_path.clone().cell()
}
#[turbo_tasks::function]
fn output_root(&self) -> Vc<FileSystemPath> {
self.output_root.clone().cell()
}
#[turbo_tasks::function]
fn output_root_to_root_path(&self) -> Vc<RcStr> {
Vc::cell(self.output_root_to_root_path.clone())
}
#[turbo_tasks::function]
fn environment(&self) -> Vc<Environment> {
*self.environment
}
#[turbo_tasks::function]
fn chunk_root_path(&self) -> Vc<FileSystemPath> {
self.chunk_root_path.clone().cell()
}
#[turbo_tasks::function]
async fn chunk_path(
&self,
asset: Option<Vc<Box<dyn Asset>>>,
ident: Vc<AssetIdent>,
prefix: Option<RcStr>,
extension: RcStr,
) -> Result<Vc<FileSystemPath>> {
debug_assert!(
extension.starts_with("."),
"`extension` should include the leading '.', got '{extension}'"
);
let root_path = self.chunk_root_path.clone();
let name = match self.content_hashing {
None => {
ident
.output_name(self.root_path.clone(), prefix, extension)
.owned()
.await?
}
Some(ContentHashing::Direct { length }) => {
let Some(asset) = asset else {
bail!("chunk_path requires an asset when content hashing is enabled");
};
let content = asset.content().await?;
if let AssetContent::File(file) = &*content {
let hash = hash_xxh3_hash64(&file.await?);
let length = length as usize;
if let Some(prefix) = prefix {
format!("{prefix}-{hash:0length$x}{extension}").into()
} else {
format!("{hash:0length$x}{extension}").into()
}
} else {
bail!(
"chunk_path requires an asset with file content when content hashing is \
enabled"
);
}
}
};
Ok(root_path.join(&name)?.cell())
}
#[turbo_tasks::function]
async fn asset_url(&self, ident: FileSystemPath) -> Result<Vc<RcStr>> {
let asset_path = ident.to_string();
let asset_path = asset_path
.strip_prefix(&format!("{}/", self.client_root.path))
.context("expected asset_path to contain client_root")?;
Ok(Vc::cell(
format!(
"{}{}",
self.asset_base_path
.as_ref()
.map(|s| s.as_str())
.unwrap_or("/"),
asset_path
)
.into(),
))
}
#[turbo_tasks::function]
fn reference_chunk_source_maps(&self, _chunk: Vc<Box<dyn OutputAsset>>) -> Vc<bool> {
Vc::cell(match self.source_maps_type {
SourceMapsType::Full => true,
SourceMapsType::None => false,
})
}
#[turbo_tasks::function]
fn reference_module_source_maps(&self, _module: Vc<Box<dyn Module>>) -> Vc<bool> {
Vc::cell(match self.source_maps_type {
SourceMapsType::Full => true,
SourceMapsType::None => false,
})
}
#[turbo_tasks::function]
async fn asset_path(
&self,
content_hash: RcStr,
original_asset_ident: Vc<AssetIdent>,
) -> Result<Vc<FileSystemPath>> {
let source_path = original_asset_ident.path().await?;
let basename = source_path.file_name();
let asset_path = match source_path.extension_ref() {
Some(ext) => format!(
"{basename}.{content_hash}.{ext}",
basename = &basename[..basename.len() - ext.len() - 1],
content_hash = &content_hash[..8]
),
None => format!(
"{basename}.{content_hash}",
content_hash = &content_hash[..8]
),
};
Ok(self.asset_root_path.join(&asset_path)?.cell())
}
#[turbo_tasks::function]
fn is_hot_module_replacement_enabled(&self) -> Vc<bool> {
Vc::cell(self.enable_hot_module_replacement)
}
#[turbo_tasks::function]
fn chunking_configs(&self) -> Result<Vc<ChunkingConfigs>> {
Ok(Vc::cell(self.chunking_configs.iter().cloned().collect()))
}
#[turbo_tasks::function]
fn should_use_file_source_map_uris(&self) -> Vc<bool> {
Vc::cell(self.should_use_file_source_map_uris)
}
#[turbo_tasks::function]
fn is_tracing_enabled(&self) -> Vc<bool> {
Vc::cell(self.enable_tracing)
}
#[turbo_tasks::function]
fn is_module_merging_enabled(&self) -> Vc<bool> {
Vc::cell(self.enable_module_merging)
}
#[turbo_tasks::function]
fn is_dynamic_chunk_content_loading_enabled(&self) -> Vc<bool> {
Vc::cell(self.enable_dynamic_chunk_content_loading)
}
#[turbo_tasks::function]
pub fn minify_type(&self) -> Vc<MinifyType> {
self.minify_type.cell()
}
#[turbo_tasks::function]
async fn chunk_group(
self: ResolvedVc<Self>,
ident: Vc<AssetIdent>,
chunk_group: ChunkGroup,
module_graph: Vc<ModuleGraph>,
availability_info: AvailabilityInfo,
) -> Result<Vc<ChunkGroupResult>> {
let span = tracing::info_span!("chunking", name = ident.to_string().await?.to_string());
async move {
let this = self.await?;
let modules = chunk_group.entries();
let input_availability_info = availability_info;
let MakeChunkGroupResult {
chunks,
availability_info,
} = make_chunk_group(
modules,
module_graph,
ResolvedVc::upcast(self),
input_availability_info,
)
.await?;
let mut assets = chunks
.iter()
.map(|chunk| self.generate_chunk(**chunk).to_resolved())
.try_join()
.await?;
if this.enable_hot_module_replacement {
let mut ident = ident;
match input_availability_info {
AvailabilityInfo::Root => {}
AvailabilityInfo::Untracked => {
ident = ident.with_modifier(rcstr!("untracked"));
}
AvailabilityInfo::Complete { available_modules } => {
ident =
ident.with_modifier(available_modules.hash().await?.to_string().into());
}
}
assets.push(
self.generate_chunk_list_register_chunk(
ident,
EvaluatableAssets::empty(),
Vc::cell(assets.clone()),
EcmascriptDevChunkListSource::Dynamic,
)
.to_resolved()
.await?,
);
}
Ok(ChunkGroupResult {
assets: ResolvedVc::cell(assets),
availability_info,
}
.cell())
}
.instrument(span)
.await
}
#[turbo_tasks::function]
async fn evaluated_chunk_group(
self: ResolvedVc<Self>,
ident: Vc<AssetIdent>,
chunk_group: ChunkGroup,
module_graph: Vc<ModuleGraph>,
availability_info: AvailabilityInfo,
) -> Result<Vc<ChunkGroupResult>> {
let span = {
let ident = ident.to_string().await?.to_string();
tracing::info_span!("chunking", chunking_type = "evaluated", ident = ident)
};
async move {
let this = self.await?;
let entries = chunk_group.entries();
let MakeChunkGroupResult {
chunks,
availability_info,
} = make_chunk_group(
entries,
module_graph,
ResolvedVc::upcast(self),
availability_info,
)
.await?;
let mut assets: Vec<ResolvedVc<Box<dyn OutputAsset>>> = chunks
.iter()
.map(|chunk| self.generate_chunk(**chunk).to_resolved())
.try_join()
.await?;
let other_assets = Vc::cell(assets.clone());
let entries = Vc::cell(
chunk_group
.entries()
.map(|m| {
ResolvedVc::try_downcast::<Box<dyn EvaluatableAsset>>(m)
.context("evaluated_chunk_group entries must be evaluatable assets")
})
.collect::<Result<Vec<_>>>()?,
);
if this.enable_hot_module_replacement {
assets.push(
self.generate_chunk_list_register_chunk(
ident,
entries,
other_assets,
EcmascriptDevChunkListSource::Entry,
)
.to_resolved()
.await?,
);
}
assets.push(
self.generate_evaluate_chunk(ident, other_assets, entries, module_graph)
.to_resolved()
.await?,
);
Ok(ChunkGroupResult {
assets: ResolvedVc::cell(assets),
availability_info,
}
.cell())
}
.instrument(span)
.await
}
#[turbo_tasks::function]
fn entry_chunk_group(
self: Vc<Self>,
_path: FileSystemPath,
_evaluatable_assets: Vc<EvaluatableAssets>,
_module_graph: Vc<ModuleGraph>,
_extra_chunks: Vc<OutputAssets>,
_availability_info: AvailabilityInfo,
) -> Result<Vc<EntryChunkGroupResult>> {
bail!("Browser chunking context does not support entry chunk groups")
}
#[turbo_tasks::function]
fn chunk_item_id_from_ident(&self, ident: Vc<AssetIdent>) -> Vc<ModuleId> {
self.module_id_strategy.get_module_id(ident)
}
#[turbo_tasks::function]
async fn async_loader_chunk_item(
self: Vc<Self>,
module: Vc<Box<dyn ChunkableModule>>,
module_graph: Vc<ModuleGraph>,
availability_info: AvailabilityInfo,
) -> Result<Vc<Box<dyn ChunkItem>>> {
Ok(if self.await?.manifest_chunks {
let manifest_asset =
ManifestAsyncModule::new(module, module_graph, Vc::upcast(self), availability_info);
Vc::upcast(ManifestLoaderChunkItem::new(
manifest_asset,
module_graph,
Vc::upcast(self),
))
} else {
let module = AsyncLoaderModule::new(module, Vc::upcast(self), availability_info);
Vc::upcast(module.as_chunk_item(module_graph, Vc::upcast(self)))
})
}
#[turbo_tasks::function]
async fn async_loader_chunk_item_id(
self: Vc<Self>,
module: Vc<Box<dyn ChunkableModule>>,
) -> Result<Vc<ModuleId>> {
Ok(if self.await?.manifest_chunks {
self.chunk_item_id_from_ident(ManifestLoaderChunkItem::asset_ident_for(module))
} else {
self.chunk_item_id_from_ident(AsyncLoaderModule::asset_ident_for(module))
})
}
#[turbo_tasks::function]
async fn module_export_usage(
self: Vc<Self>,
module: ResolvedVc<Box<dyn Module>>,
) -> Result<Vc<ModuleExportUsageInfo>> {
if let Some(export_usage) = self.await?.export_usage {
Ok(export_usage.await?.used_exports(module))
} else {
Ok(ModuleExportUsageInfo::all())
}
}
}
|