File size: 14,013 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 |
use std::fmt::Write;
use anyhow::Result;
use once_cell::sync::Lazy;
use regex::Regex;
use serde::{Deserialize, Serialize};
use turbo_rcstr::RcStr;
use turbo_tasks::{NonLocalValue, ResolvedVc, TaskInput, ValueToString, Vc, trace::TraceRawVcs};
use turbo_tasks_fs::FileSystemPath;
use turbo_tasks_hash::{DeterministicHash, Xxh3Hash64Hasher, encode_hex, hash_xxh3_hash64};
use crate::resolve::ModulePart;
/// A layer identifies a distinct part of the module graph.
#[derive(
Clone,
TaskInput,
Hash,
Debug,
DeterministicHash,
Eq,
PartialEq,
TraceRawVcs,
Serialize,
Deserialize,
NonLocalValue,
)]
pub struct Layer {
name: RcStr,
user_friendly_name: Option<RcStr>,
}
impl Layer {
pub fn new(name: RcStr) -> Self {
debug_assert!(!name.is_empty());
Self {
name,
user_friendly_name: None,
}
}
pub fn new_with_user_friendly_name(name: RcStr, user_friendly_name: RcStr) -> Self {
debug_assert!(!name.is_empty());
debug_assert!(!user_friendly_name.is_empty());
Self {
name,
user_friendly_name: Some(user_friendly_name),
}
}
/// Returns a user friendly name for this layer
pub fn user_friendly_name(&self) -> &RcStr {
self.user_friendly_name.as_ref().unwrap_or(&self.name)
}
pub fn name(&self) -> &RcStr {
&self.name
}
}
#[turbo_tasks::value]
#[derive(Clone, Debug, Hash, TaskInput)]
pub struct AssetIdent {
/// The primary path of the asset
pub path: FileSystemPath,
/// The query string of the asset this is either the empty string or a query string that starts
/// with a `?` (e.g. `?foo=bar`)
pub query: RcStr,
/// The fragment of the asset, this is either the empty string or a fragment string that starts
/// with a `#` (e.g. `#foo`)
pub fragment: RcStr,
/// The assets that are nested in this asset
pub assets: Vec<(RcStr, ResolvedVc<AssetIdent>)>,
/// The modifiers of this asset (e.g. `client chunks`)
pub modifiers: Vec<RcStr>,
/// The parts of the asset that are (ECMAScript) modules
pub parts: Vec<ModulePart>,
/// The asset layer the asset was created from.
pub layer: Option<Layer>,
/// The MIME content type, if this asset was created from a data URL.
pub content_type: Option<RcStr>,
}
impl AssetIdent {
pub fn add_modifier(&mut self, modifier: RcStr) {
debug_assert!(!modifier.is_empty(), "modifiers cannot be empty.");
self.modifiers.push(modifier);
}
pub fn add_asset(&mut self, key: RcStr, asset: ResolvedVc<AssetIdent>) {
self.assets.push((key, asset));
}
pub async fn rename_as_ref(&mut self, pattern: &str) -> Result<()> {
let root = self.path.root().await?;
let path = self.path.clone();
self.path = root.join(&pattern.replace('*', &path.path))?;
Ok(())
}
}
#[turbo_tasks::value_impl]
impl ValueToString for AssetIdent {
#[turbo_tasks::function]
async fn to_string(&self) -> Result<Vc<RcStr>> {
let mut s = self.path.value_to_string().owned().await?.into_owned();
// The query string is either empty or non-empty starting with `?` so we can just concat
s.push_str(&self.query);
// ditto for fragment
s.push_str(&self.fragment);
if !self.assets.is_empty() {
s.push_str(" {");
for (i, (key, asset)) in self.assets.iter().enumerate() {
if i > 0 {
s.push(',');
}
let asset_str = asset.to_string().await?;
write!(s, " {key} => {asset_str:?}")?;
}
s.push_str(" }");
}
if let Some(layer) = &self.layer {
write!(s, " [{}]", layer.name)?;
}
if !self.modifiers.is_empty() {
s.push_str(" (");
for (i, modifier) in self.modifiers.iter().enumerate() {
if i > 0 {
s.push_str(", ");
}
s.push_str(modifier);
}
s.push(')');
}
if let Some(content_type) = &self.content_type {
write!(s, " <{content_type}>")?;
}
if !self.parts.is_empty() {
for part in self.parts.iter() {
if !matches!(part, ModulePart::Facade) {
// facade is not included in ident as switching between facade and non-facade
// shouldn't change the ident
write!(s, " <{part}>")?;
}
}
}
Ok(Vc::cell(s.into()))
}
}
#[turbo_tasks::value_impl]
impl AssetIdent {
#[turbo_tasks::function]
pub fn new(ident: AssetIdent) -> Vc<Self> {
debug_assert!(
ident.query.is_empty() || ident.query.starts_with("?"),
"query should be empty or start with a `?`"
);
debug_assert!(
ident.fragment.is_empty() || ident.fragment.starts_with("#"),
"query should be empty or start with a `?`"
);
ident.cell()
}
/// Creates an [AssetIdent] from a [FileSystemPath]
#[turbo_tasks::function]
pub fn from_path(path: FileSystemPath) -> Vc<Self> {
Self::new(AssetIdent {
path,
query: RcStr::default(),
fragment: RcStr::default(),
assets: Vec::new(),
modifiers: Vec::new(),
parts: Vec::new(),
layer: None,
content_type: None,
})
}
#[turbo_tasks::function]
pub fn with_query(&self, query: RcStr) -> Vc<Self> {
let mut this = self.clone();
this.query = query;
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_fragment(&self, fragment: RcStr) -> Vc<Self> {
let mut this = self.clone();
this.fragment = fragment;
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_modifier(&self, modifier: RcStr) -> Vc<Self> {
let mut this = self.clone();
this.add_modifier(modifier);
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_part(&self, part: ModulePart) -> Vc<Self> {
let mut this = self.clone();
this.parts.push(part);
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_path(&self, path: FileSystemPath) -> Vc<Self> {
let mut this = self.clone();
this.path = path;
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_layer(&self, layer: Layer) -> Vc<Self> {
let mut this = self.clone();
this.layer = Some(layer);
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_content_type(&self, content_type: RcStr) -> Vc<Self> {
let mut this = self.clone();
this.content_type = Some(content_type);
Self::new(this)
}
#[turbo_tasks::function]
pub fn with_asset(&self, key: RcStr, asset: ResolvedVc<AssetIdent>) -> Vc<Self> {
let mut this = self.clone();
this.add_asset(key, asset);
Self::new(this)
}
#[turbo_tasks::function]
pub async fn rename_as(&self, pattern: RcStr) -> Result<Vc<Self>> {
let mut this = self.clone();
this.rename_as_ref(&pattern).await?;
Ok(Self::new(this))
}
#[turbo_tasks::function]
pub fn path(&self) -> Vc<FileSystemPath> {
self.path.clone().cell()
}
/// Computes a unique output asset name for the given asset identifier.
/// TODO(alexkirsz) This is `turbopack-browser` specific, as
/// `turbopack-nodejs` would use a content hash instead. But for now
/// both are using the same name generation logic.
#[turbo_tasks::function]
pub async fn output_name(
&self,
context_path: FileSystemPath,
prefix: Option<RcStr>,
expected_extension: RcStr,
) -> Result<Vc<RcStr>> {
debug_assert!(
expected_extension.starts_with("."),
"the extension should include the leading '.', got '{expected_extension}'"
);
// TODO(PACK-2140): restrict character set to A–Za–z0–9-_.~'()
// to be compatible with all operating systems + URLs.
// For clippy -- This explicit deref is necessary
let path = &self.path;
let mut name = if let Some(inner) = context_path.get_path_to(path) {
clean_separators(inner)
} else {
clean_separators(&self.path.value_to_string().await?)
};
let removed_extension = name.ends_with(&*expected_extension);
if removed_extension {
name.truncate(name.len() - expected_extension.len());
}
// This step ensures that leading dots are not preserved in file names. This is
// important as some file servers do not serve files with leading dots (e.g.
// Next.js).
let mut name = clean_additional_extensions(&name);
if let Some(prefix) = prefix {
name = format!("{prefix}-{name}");
}
let default_modifier = match expected_extension.as_str() {
".js" => Some("ecmascript"),
".css" => Some("css"),
_ => None,
};
let mut hasher = Xxh3Hash64Hasher::new();
let mut has_hash = false;
let AssetIdent {
path: _,
query,
fragment,
assets,
modifiers,
parts,
layer,
content_type,
} = self;
if !query.is_empty() {
0_u8.deterministic_hash(&mut hasher);
query.deterministic_hash(&mut hasher);
has_hash = true;
}
if !fragment.is_empty() {
1_u8.deterministic_hash(&mut hasher);
fragment.deterministic_hash(&mut hasher);
has_hash = true;
}
for (key, ident) in assets.iter() {
2_u8.deterministic_hash(&mut hasher);
key.deterministic_hash(&mut hasher);
ident.to_string().await?.deterministic_hash(&mut hasher);
has_hash = true;
}
for modifier in modifiers.iter() {
if let Some(default_modifier) = default_modifier
&& *modifier == default_modifier
{
continue;
}
3_u8.deterministic_hash(&mut hasher);
modifier.deterministic_hash(&mut hasher);
has_hash = true;
}
for part in parts.iter() {
4_u8.deterministic_hash(&mut hasher);
match part {
ModulePart::Evaluation => {
1_u8.deterministic_hash(&mut hasher);
}
ModulePart::Export(export) => {
2_u8.deterministic_hash(&mut hasher);
export.deterministic_hash(&mut hasher);
}
ModulePart::RenamedExport {
original_export,
export,
} => {
3_u8.deterministic_hash(&mut hasher);
original_export.deterministic_hash(&mut hasher);
export.deterministic_hash(&mut hasher);
}
ModulePart::RenamedNamespace { export } => {
4_u8.deterministic_hash(&mut hasher);
export.deterministic_hash(&mut hasher);
}
ModulePart::Internal(id) => {
5_u8.deterministic_hash(&mut hasher);
id.deterministic_hash(&mut hasher);
}
ModulePart::Locals => {
6_u8.deterministic_hash(&mut hasher);
}
ModulePart::Exports => {
7_u8.deterministic_hash(&mut hasher);
}
ModulePart::Facade => {
8_u8.deterministic_hash(&mut hasher);
}
}
has_hash = true;
}
if let Some(layer) = layer {
5_u8.deterministic_hash(&mut hasher);
layer.deterministic_hash(&mut hasher);
has_hash = true;
}
if let Some(content_type) = content_type {
6_u8.deterministic_hash(&mut hasher);
content_type.deterministic_hash(&mut hasher);
has_hash = true;
}
if has_hash {
let hash = encode_hex(hasher.finish());
let truncated_hash = &hash[..8];
write!(name, "_{truncated_hash}")?;
}
// Location in "path" where hashed and named parts are split.
// Everything before i is hashed and after i named.
let mut i = 0;
static NODE_MODULES: &str = "_node_modules_";
if let Some(j) = name.rfind(NODE_MODULES) {
i = j + NODE_MODULES.len();
}
const MAX_FILENAME: usize = 80;
if name.len() - i > MAX_FILENAME {
i = name.len() - MAX_FILENAME;
if let Some(j) = name[i..].find('_')
&& j < 20
{
i += j + 1;
}
}
if i > 0 {
let hash = encode_hex(hash_xxh3_hash64(&name.as_bytes()[..i]));
let truncated_hash = &hash[..5];
name = format!("{}_{}", truncated_hash, &name[i..]);
}
// We need to make sure that `.json` and `.json.js` doesn't end up with the same
// name. So when we add an extra extension when want to mark that with a "._"
// suffix.
if !removed_extension {
name += "._";
}
name += &expected_extension;
Ok(Vc::cell(name.into()))
}
}
fn clean_separators(s: &str) -> String {
static SEPARATOR_REGEX: Lazy<Regex> = Lazy::new(|| Regex::new(r"[/#?]").unwrap());
SEPARATOR_REGEX.replace_all(s, "_").to_string()
}
fn clean_additional_extensions(s: &str) -> String {
s.replace('.', "_")
}
|