File size: 10,863 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 |
use std::io::Write;
use anyhow::{Result, bail};
use either::Either;
use indoc::writedoc;
use serde::Serialize;
use turbo_rcstr::{RcStr, rcstr};
use turbo_tasks::{ReadRef, ResolvedVc, TryJoinIterExt, ValueToString, Vc};
use turbo_tasks_fs::{File, FileSystemPath, rope::RopeBuilder};
use turbopack_core::{
asset::{Asset, AssetContent},
chunk::{
ChunkData, ChunkingContext, ChunksData, EvaluatableAssets, MinifyType,
ModuleChunkItemIdExt, ModuleId,
},
code_builder::{Code, CodeBuilder},
ident::AssetIdent,
module::Module,
module_graph::ModuleGraph,
output::{OutputAsset, OutputAssets},
source_map::{GenerateSourceMap, OptionStringifiedSourceMap, SourceMapAsset},
};
use turbopack_ecmascript::{
chunk::{EcmascriptChunkData, EcmascriptChunkPlaceable},
minify::minify,
utils::StringifyJs,
};
use turbopack_ecmascript_runtime::RuntimeType;
use crate::{
BrowserChunkingContext,
chunking_context::{CURRENT_CHUNK_METHOD_DOCUMENT_CURRENT_SCRIPT_EXPR, CurrentChunkMethod},
};
/// An Ecmascript chunk that:
/// * Contains the Turbopack browser runtime code; and
/// * Evaluates a list of runtime entries.
#[turbo_tasks::value(shared)]
pub(crate) struct EcmascriptBrowserEvaluateChunk {
chunking_context: ResolvedVc<BrowserChunkingContext>,
ident: ResolvedVc<AssetIdent>,
other_chunks: ResolvedVc<OutputAssets>,
evaluatable_assets: ResolvedVc<EvaluatableAssets>,
// TODO(sokra): It's weird to use ModuleGraph here, we should convert evaluatable_assets to a
// list of chunk items before passing it to this struct
module_graph: ResolvedVc<ModuleGraph>,
}
#[turbo_tasks::value_impl]
impl EcmascriptBrowserEvaluateChunk {
/// Creates a new [`Vc<EcmascriptBrowserEvaluateChunk>`].
#[turbo_tasks::function]
pub fn new(
chunking_context: ResolvedVc<BrowserChunkingContext>,
ident: ResolvedVc<AssetIdent>,
other_chunks: ResolvedVc<OutputAssets>,
evaluatable_assets: ResolvedVc<EvaluatableAssets>,
module_graph: ResolvedVc<ModuleGraph>,
) -> Vc<Self> {
EcmascriptBrowserEvaluateChunk {
chunking_context,
ident,
other_chunks,
evaluatable_assets,
module_graph,
}
.cell()
}
#[turbo_tasks::function]
async fn chunks_data(&self) -> Result<Vc<ChunksData>> {
Ok(ChunkData::from_assets(
self.chunking_context.output_root().owned().await?,
*self.other_chunks,
))
}
#[turbo_tasks::function]
async fn code(self: Vc<Self>) -> Result<Vc<Code>> {
let this = self.await?;
let environment = this.chunking_context.environment();
let output_root_to_root_path = this
.chunking_context
.output_root_to_root_path()
.owned()
.await?;
let source_maps = *this
.chunking_context
.reference_chunk_source_maps(Vc::upcast(self))
.await?;
// Lifetime hack to pull out the var into this scope
let chunk_path;
let script_or_path = match *this.chunking_context.current_chunk_method().await? {
CurrentChunkMethod::StringLiteral => {
let output_root = this.chunking_context.output_root().await?;
let chunk_path_vc = self.path();
chunk_path = chunk_path_vc.await?;
let chunk_server_path = if let Some(path) = output_root.get_path_to(&chunk_path) {
path
} else {
bail!(
"chunk path {} is not in output root {}",
chunk_path.to_string(),
output_root.to_string()
);
};
Either::Left(StringifyJs(chunk_server_path))
}
CurrentChunkMethod::DocumentCurrentScript => {
Either::Right(CURRENT_CHUNK_METHOD_DOCUMENT_CURRENT_SCRIPT_EXPR)
}
};
let other_chunks_data = self.chunks_data().await?;
let other_chunks_data = other_chunks_data.iter().try_join().await?;
let other_chunks_data: Vec<_> = other_chunks_data
.iter()
.map(|chunk_data| EcmascriptChunkData::new(chunk_data))
.collect();
let runtime_module_ids = this
.evaluatable_assets
.await?
.iter()
.map({
let chunking_context = this.chunking_context;
move |entry| async move {
if let Some(placeable) =
ResolvedVc::try_sidecast::<Box<dyn EcmascriptChunkPlaceable>>(*entry)
{
Ok(Some(
placeable
.chunk_item_id(Vc::upcast(*chunking_context))
.await?,
))
} else {
Ok(None)
}
}
})
.try_join()
.await?
.into_iter()
.flatten()
.collect();
let params = EcmascriptBrowserChunkRuntimeParams {
other_chunks: &other_chunks_data,
runtime_module_ids,
};
let mut code = CodeBuilder::new(source_maps);
// We still use the `TURBOPACK` global variable to store the chunk here,
// as there may be another runtime already loaded in the page.
// This is the case in integration tests.
writedoc!(
code,
r#"
(globalThis.TURBOPACK = globalThis.TURBOPACK || []).push([
{script_or_path},
{{}},
{}
]);
"#,
StringifyJs(¶ms),
)?;
let runtime_type = *this.chunking_context.runtime_type().await?;
match runtime_type {
RuntimeType::Production | RuntimeType::Development => {
let runtime_code = turbopack_ecmascript_runtime::get_browser_runtime_code(
environment,
this.chunking_context.chunk_base_path(),
this.chunking_context.chunk_suffix_path(),
runtime_type,
output_root_to_root_path,
source_maps,
);
code.push_code(&*runtime_code.await?);
}
#[cfg(feature = "test")]
RuntimeType::Dummy => {
let runtime_code = turbopack_ecmascript_runtime::get_dummy_runtime_code();
code.push_code(&runtime_code);
}
}
let mut code = code.build();
if let MinifyType::Minify { mangle } = *this.chunking_context.minify_type().await? {
code = minify(code, source_maps, mangle)?;
}
Ok(code.cell())
}
#[turbo_tasks::function]
async fn ident_for_path(&self) -> Result<Vc<AssetIdent>> {
let mut ident = self.ident.owned().await?;
ident.add_modifier(rcstr!("ecmascript browser evaluate chunk"));
let evaluatable_assets = self.evaluatable_assets.await?;
ident.modifiers.extend(
evaluatable_assets
.iter()
.map(|entry| entry.ident().to_string().owned())
.try_join()
.await?,
);
ident.modifiers.extend(
self.other_chunks
.await?
.iter()
.map(|chunk| chunk.path().to_string().owned())
.try_join()
.await?,
);
Ok(AssetIdent::new(ident))
}
#[turbo_tasks::function]
async fn source_map(self: Vc<Self>) -> Result<Vc<SourceMapAsset>> {
let this = self.await?;
Ok(SourceMapAsset::new(
Vc::upcast(*this.chunking_context),
self.ident_for_path(),
Vc::upcast(self),
))
}
}
#[turbo_tasks::value_impl]
impl ValueToString for EcmascriptBrowserEvaluateChunk {
#[turbo_tasks::function]
fn to_string(&self) -> Vc<RcStr> {
Vc::cell(rcstr!("Ecmascript Browser Evaluate Chunk"))
}
}
#[turbo_tasks::value_impl]
impl OutputAsset for EcmascriptBrowserEvaluateChunk {
#[turbo_tasks::function]
async fn path(self: Vc<Self>) -> Result<Vc<FileSystemPath>> {
let this = self.await?;
let ident = self.ident_for_path();
Ok(this.chunking_context.chunk_path(
Some(Vc::upcast(self)),
ident,
Some(rcstr!("turbopack")),
rcstr!(".js"),
))
}
#[turbo_tasks::function]
async fn references(self: Vc<Self>) -> Result<Vc<OutputAssets>> {
let this = self.await?;
let mut references = Vec::new();
let include_source_map = *this
.chunking_context
.reference_chunk_source_maps(Vc::upcast(self))
.await?;
if include_source_map {
references.push(ResolvedVc::upcast(self.source_map().to_resolved().await?));
}
for chunk_data in &*self.chunks_data().await? {
references.extend(chunk_data.references().await?.iter().copied());
}
Ok(Vc::cell(references))
}
}
#[turbo_tasks::value_impl]
impl Asset for EcmascriptBrowserEvaluateChunk {
#[turbo_tasks::function]
async fn content(self: Vc<Self>) -> Result<Vc<AssetContent>> {
let code = self.code().await?;
let rope = if code.has_source_map() {
let mut rope_builder = RopeBuilder::default();
rope_builder.concat(code.source_code());
let source_map_path = self.source_map().path().await?;
write!(
rope_builder,
"\n\n//# sourceMappingURL={}",
urlencoding::encode(source_map_path.file_name())
)?;
rope_builder.build()
} else {
code.source_code().clone()
};
Ok(AssetContent::file(File::from(rope).into()))
}
}
#[turbo_tasks::value_impl]
impl GenerateSourceMap for EcmascriptBrowserEvaluateChunk {
#[turbo_tasks::function]
fn generate_source_map(self: Vc<Self>) -> Vc<OptionStringifiedSourceMap> {
self.code().generate_source_map()
}
}
#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
struct EcmascriptBrowserChunkRuntimeParams<'a, T> {
/// Other chunks in the chunk group this chunk belongs to, if any. Does not
/// include the chunk itself.
///
/// These chunks must be loaed before the runtime modules can be
/// instantiated.
other_chunks: &'a [T],
/// List of module IDs that this chunk should instantiate when executed.
runtime_module_ids: Vec<ReadRef<ModuleId>>,
}
|