rspack_core 0.102.0

rspack core
Documentation
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
use std::{
  alloc::{Layout, LayoutError, alloc, handle_alloc_error},
  any::Any,
  fmt::{self, Debug},
  ops::{Deref, DerefMut},
  ptr,
  sync::{Arc, OnceLock, atomic::AtomicUsize},
};

use rspack_cacheable::{
  cacheable_dyn,
  rkyv::{
    Archive, ArchiveUnsized, Deserialize, DeserializeUnsized, Place, Serialize, SerializeUnsized,
    de::{FromMetadata, Metadata, Pooling, PoolingExt, SharedPointer},
    ptr_meta::{Pointee, from_raw_parts_mut},
    rancor::{Fallible, ResultExt, Source},
    rc::{ArchivedRc, Flavor, RcResolver},
    ser::{Sharing, Writer},
    traits::LayoutRaw,
  },
};
use rspack_collections::{IdentifierMap, IdentifierSet};
use rspack_error::Diagnostic;
use rspack_location::DependencyLocation;
use rspack_util::ext::AsAny;
use triomphe::{Arc as TriompheArc, UniqueArc};
use unsize::{CoerceUnsize, Coercion};

use super::{
  DependencyCategory, DependencyId, DependencyRange, DependencyType, ExportsSpec,
  dependency_template::AsDependencyCodeGeneration, module_dependency::*,
};
use crate::{
  AsContextDependency, ConnectionState, Context, ExportsInfoArtifact, ForwardId, ImportAttributes,
  ImportPhase, JavascriptParserUrl, LazyUntil, Module, ModuleGraph, ModuleGraphCacheArtifact,
  ModuleLayer, ReferencedExport, RuntimeSpec, SideEffectsStateArtifact,
  create_exports_object_referenced,
};

#[derive(Debug, Clone, Copy)]
pub enum AffectType {
  True,
  False,
  Transitive,
}

/// Module-scoped state shared while collecting diagnostics from its dependencies.
#[derive(Debug, Default)]
pub struct DependencyDiagnosticsContext {
  module_source: OnceLock<Option<Arc<str>>>,
}

impl DependencyDiagnosticsContext {
  fn get_or_init_module_source(&self, init: impl FnOnce() -> Option<Arc<str>>) -> Option<Arc<str>> {
    self.module_source.get_or_init(init).clone()
  }

  /// Lazily materialize the module source once and share it across its diagnostics.
  pub fn module_source(&self, module: &dyn Module) -> Option<Arc<str>> {
    self.get_or_init_module_source(|| {
      module
        .source()
        .map(|source| source.source().into_string_lossy().into())
    })
  }
}

#[cacheable_dyn]
pub trait Dependency:
  AsDependencyCodeGeneration + AsContextDependency + AsModuleDependency + AsAny + Send + Sync + Debug
{
  fn id(&self) -> &DependencyId;

  fn category(&self) -> &DependencyCategory {
    &DependencyCategory::Unknown
  }

  fn dependency_type(&self) -> &DependencyType {
    &DependencyType::Unknown
  }

  /// Whether this dependency should be excluded when a global entry include is applied to an
  /// async entrypoint.
  fn skip_async_entrypoints(&self) -> bool {
    false
  }

  fn url_mode(&self) -> Option<JavascriptParserUrl> {
    None
  }

  // get issuer context
  fn get_context(&self) -> Option<&Context> {
    None
  }

  // get issuer layer
  fn get_layer(&self) -> Option<&ModuleLayer> {
    None
  }

  fn get_phase(&self) -> ImportPhase {
    ImportPhase::Evaluation
  }

  fn get_attributes(&self) -> Option<&ImportAttributes> {
    None
  }

  fn get_exports(
    &self,
    _mg: &ModuleGraph,
    _module_graph_cache: &ModuleGraphCacheArtifact,
    _exports_info_artifact: &ExportsInfoArtifact,
  ) -> Option<ExportsSpec> {
    None
  }

  fn get_module_evaluation_side_effects_state(
    &self,
    _module_graph: &ModuleGraph,
    _module_graph_cache: &ModuleGraphCacheArtifact,
    _side_effects_state_artifact: &SideEffectsStateArtifact,
    _module_chain: &mut IdentifierSet,
    _connection_state_cache: &mut IdentifierMap<ConnectionState>,
  ) -> ConnectionState {
    ConnectionState::Active(true)
  }

  fn loc(&self) -> Option<DependencyLocation> {
    None
  }

  fn range(&self) -> Option<DependencyRange> {
    None
  }

  fn source_order(&self) -> Option<i32> {
    None
  }

  fn resource_identifier(&self) -> Option<&str> {
    None
  }

  fn get_diagnostics(
    &self,
    _module_graph: &ModuleGraph,
    _module_graph_cache: &ModuleGraphCacheArtifact,
    _exports_info_artifact: &ExportsInfoArtifact,
  ) -> Option<Vec<Diagnostic>> {
    None
  }

  fn get_diagnostics_with_context(
    &self,
    module_graph: &ModuleGraph,
    module_graph_cache: &ModuleGraphCacheArtifact,
    exports_info_artifact: &ExportsInfoArtifact,
    _context: &DependencyDiagnosticsContext,
  ) -> Option<Vec<Diagnostic>> {
    self.get_diagnostics(module_graph, module_graph_cache, exports_info_artifact)
  }

  fn get_referenced_exports(
    &self,
    _module_graph: &ModuleGraph,
    _module_graph_cache: &ModuleGraphCacheArtifact,
    _exports_info_artifact: &ExportsInfoArtifact,
    _runtime: Option<&RuntimeSpec>,
  ) -> Vec<ReferencedExport> {
    create_exports_object_referenced()
  }

  fn could_affect_referencing_module(&self) -> AffectType;

  fn forward_id(&self) -> ForwardId {
    ForwardId::All
  }

  fn lazy(&self) -> Option<LazyUntil> {
    None
  }

  fn set_lazy(&self) {}

  fn unset_lazy(&self) -> bool {
    false
  }
}

impl dyn Dependency + '_ {
  pub fn downcast_ref<D: Any>(&self) -> Option<&D> {
    self.as_any().downcast_ref::<D>()
  }

  pub fn downcast_mut<D: Any>(&mut self) -> Option<&mut D> {
    self.as_any_mut().downcast_mut::<D>()
  }

  pub fn is<D: Any>(&self) -> bool {
    self.downcast_ref::<D>().is_some()
  }
}

/// A dependency with unique ownership while it is being constructed.
///
/// Unlike `Box<dyn Dependency>`, this uses the same allocation layout as [`DependencyRef`], so
/// publishing it into the module graph does not reallocate or move the dependency.
pub struct UniqueDependency(UniqueArc<dyn Dependency>);

impl UniqueDependency {
  pub fn new<D: Dependency + 'static>(dependency: D) -> Self {
    let coercion =
      unsafe { Coercion::<D, dyn Dependency>::new(|ptr: *const D| ptr as *const dyn Dependency) };
    Self(UniqueArc::new(dependency).unsize(coercion))
  }

  pub fn shareable(self) -> DependencyRef {
    DependencyRef(self.0.shareable())
  }
}

impl Debug for UniqueDependency {
  fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
    Debug::fmt(self.as_ref(), f)
  }
}

impl Deref for UniqueDependency {
  type Target = dyn Dependency;

  fn deref(&self) -> &Self::Target {
    &*self.0
  }
}

impl DerefMut for UniqueDependency {
  fn deref_mut(&mut self) -> &mut Self::Target {
    &mut *self.0
  }
}

impl AsRef<dyn Dependency> for UniqueDependency {
  fn as_ref(&self) -> &(dyn Dependency + 'static) {
    &*self.0
  }
}

impl AsMut<dyn Dependency> for UniqueDependency {
  fn as_mut(&mut self) -> &mut (dyn Dependency + 'static) {
    &mut *self.0
  }
}

impl Archive for UniqueDependency {
  type Archived = ArchivedRc<<dyn Dependency as ArchiveUnsized>::Archived, DependencyRefFlavor>;
  type Resolver = RcResolver;

  fn resolve(&self, resolver: Self::Resolver, out: Place<Self::Archived>) {
    ArchivedRc::resolve_from_ref(self.as_ref(), resolver, out);
  }
}

impl<S> Serialize<S> for UniqueDependency
where
  dyn Dependency: SerializeUnsized<S>,
  S: Writer + Sharing + Fallible + ?Sized,
  S::Error: Source,
{
  fn serialize(&self, serializer: &mut S) -> Result<Self::Resolver, S::Error> {
    ArchivedRc::<
      <dyn Dependency as ArchiveUnsized>::Archived,
      DependencyRefFlavor,
    >::serialize_from_ref(self.as_ref(), serializer)
  }
}

impl<D> Deserialize<UniqueDependency, D>
  for ArchivedRc<<dyn Dependency as ArchiveUnsized>::Archived, DependencyRefFlavor>
where
  <dyn Dependency as Pointee>::Metadata: Into<Metadata> + FromMetadata,
  <dyn Dependency as ArchiveUnsized>::Archived: DeserializeUnsized<dyn Dependency, D>,
  D: Fallible + ?Sized,
  D::Error: Source,
{
  fn deserialize(&self, deserializer: &mut D) -> Result<UniqueDependency, D::Error> {
    let metadata = self.get().deserialize_metadata();
    let out = <DependencyRef as SharedPointer<dyn Dependency>>::alloc(metadata).into_error()?;
    unsafe {
      self.get().deserialize_unsized(deserializer, out)?;
    }
    let raw = unsafe { <DependencyRef as SharedPointer<dyn Dependency>>::from_value(out) };
    let arc = unsafe { TriompheArc::from_raw(raw) };
    let unique = UniqueArc::try_from(arc)
      .unwrap_or_else(|_| unreachable!("a freshly deserialized dependency has one owner"));
    Ok(UniqueDependency(unique))
  }
}

/// Compatibility name for dependency construction sites. The backing allocation is a
/// [`UniqueArc`], not a `Box`.
pub type BoxDependency = UniqueDependency;

/// A shared dependency published into the module graph.
///
/// This newtype also supplies rkyv with the dynamically sized allocation support that
/// `triomphe::Arc` does not currently expose for trait objects.
pub struct DependencyRef(TriompheArc<dyn Dependency>);

impl DependencyRef {
  pub fn new<D: Dependency + 'static>(dependency: D) -> Self {
    UniqueDependency::new(dependency).shareable()
  }
}

impl From<UniqueDependency> for DependencyRef {
  fn from(dependency: UniqueDependency) -> Self {
    dependency.shareable()
  }
}

impl Clone for DependencyRef {
  fn clone(&self) -> Self {
    Self(self.0.clone())
  }
}

impl Debug for DependencyRef {
  fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
    Debug::fmt(self.as_ref(), f)
  }
}

impl Deref for DependencyRef {
  type Target = dyn Dependency;

  fn deref(&self) -> &Self::Target {
    &*self.0
  }
}

impl AsRef<dyn Dependency> for DependencyRef {
  fn as_ref(&self) -> &(dyn Dependency + 'static) {
    &*self.0
  }
}

pub struct DependencyRefFlavor;

impl Flavor for DependencyRefFlavor {
  const ALLOW_CYCLES: bool = false;
}

unsafe impl SharedPointer<dyn Dependency> for DependencyRef {
  fn alloc(
    metadata: <dyn Dependency as Pointee>::Metadata,
  ) -> Result<*mut dyn Dependency, LayoutError> {
    let value_layout = <dyn Dependency as LayoutRaw>::layout_raw(metadata)?;
    let (layout, data_offset) = Layout::new::<AtomicUsize>().extend(value_layout)?;
    let layout = layout.pad_to_align();
    let allocation = unsafe { alloc(layout) };
    if allocation.is_null() {
      handle_alloc_error(layout);
    }

    unsafe {
      ptr::write(allocation.cast::<AtomicUsize>(), AtomicUsize::new(1));
      Ok(from_raw_parts_mut(
        allocation.add(data_offset).cast(),
        metadata,
      ))
    }
  }

  unsafe fn from_value(ptr: *mut dyn Dependency) -> *mut dyn Dependency {
    ptr
  }

  unsafe fn drop(ptr: *mut dyn Dependency) {
    drop(unsafe { TriompheArc::from_raw(ptr) });
  }
}

impl Archive for DependencyRef {
  type Archived = ArchivedRc<<dyn Dependency as ArchiveUnsized>::Archived, DependencyRefFlavor>;
  type Resolver = RcResolver;

  fn resolve(&self, resolver: Self::Resolver, out: Place<Self::Archived>) {
    ArchivedRc::resolve_from_ref(self.as_ref(), resolver, out);
  }
}

impl<S> Serialize<S> for DependencyRef
where
  dyn Dependency: SerializeUnsized<S>,
  S: Writer + Sharing + Fallible + ?Sized,
  S::Error: Source,
{
  fn serialize(&self, serializer: &mut S) -> Result<Self::Resolver, S::Error> {
    ArchivedRc::<
      <dyn Dependency as ArchiveUnsized>::Archived,
      DependencyRefFlavor,
    >::serialize_from_ref(self.as_ref(), serializer)
  }
}

impl<D> Deserialize<DependencyRef, D>
  for ArchivedRc<<dyn Dependency as ArchiveUnsized>::Archived, DependencyRefFlavor>
where
  <dyn Dependency as Pointee>::Metadata: Into<Metadata> + FromMetadata,
  <dyn Dependency as ArchiveUnsized>::Archived: DeserializeUnsized<dyn Dependency, D>,
  D: Pooling + Fallible + ?Sized,
  D::Error: Source,
{
  fn deserialize(&self, deserializer: &mut D) -> Result<DependencyRef, D::Error> {
    let raw = deserializer.deserialize_shared::<_, DependencyRef>(self.get())?;
    let arc = unsafe { TriompheArc::from_raw(raw) };
    let _ = TriompheArc::into_raw(arc.clone());
    Ok(DependencyRef(arc))
  }
}