Struct farmfe_core::module::module_graph::ModuleGraph
source · pub struct ModuleGraph {
pub entries: HashMap<ModuleId, String>,
/* private fields */
}Fields§
§entries: HashMap<ModuleId, String>entry modules of this module graph. (Entry Module Id, Entry Name)
Implementations§
source§impl ModuleGraph
impl ModuleGraph
pub fn new() -> Self
sourcepub fn get_dep_by_source_optional(
&self,
module_id: &ModuleId,
source: &str,
kind: Option<ResolveKind>,
) -> Option<ModuleId>
pub fn get_dep_by_source_optional( &self, module_id: &ModuleId, source: &str, kind: Option<ResolveKind>, ) -> Option<ModuleId>
Get the dep module of the specified module which imports the dep module using the specified source.
Used to get module by (module, source) pair, for example, for module a:
import b from './b';
we can get module b by (module a, "./b").
Panic if the dep does not exist or the source is not correct
pub fn get_edges_of_module( &self, module_id: &ModuleId, ) -> Vec<&ModuleGraphEdgeDataItem>
pub fn get_dep_by_source( &self, module_id: &ModuleId, source: &str, kind: Option<ResolveKind>, ) -> ModuleId
pub fn update_edge( &mut self, from: &ModuleId, to: &ModuleId, edge_info: ModuleGraphEdge, ) -> Result<()>
pub fn module(&self, module_id: &ModuleId) -> Option<&Module>
pub fn module_mut(&mut self, module_id: &ModuleId) -> Option<&mut Module>
pub fn modules(&self) -> Vec<&Module>
pub fn modules_mut(&mut self) -> Vec<&mut Module>
pub fn has_module(&self, module_id: &ModuleId) -> bool
pub fn update_module(&mut self, module: Module)
pub fn module_ids_by_file(&self, module_id: &ModuleId) -> Vec<ModuleId>
pub fn add_module(&mut self, module: Module)
pub fn remove_module(&mut self, module_id: &ModuleId) -> Module
pub fn add_edge_item( &mut self, from: &ModuleId, to: &ModuleId, edge_info: ModuleGraphEdgeDataItem, ) -> Result<()>
pub fn add_edge( &mut self, from: &ModuleId, to: &ModuleId, edge_info: ModuleGraphEdge, ) -> Result<()>
pub fn remove_edge(&mut self, from: &ModuleId, to: &ModuleId) -> Result<()>
pub fn has_edge(&self, from: &ModuleId, to: &ModuleId) -> bool
pub fn edge_info( &self, from: &ModuleId, to: &ModuleId, ) -> Option<&ModuleGraphEdge>
pub fn edge_count(&self) -> usize
sourcepub fn dependencies(
&self,
module_id: &ModuleId,
) -> Vec<(ModuleId, &ModuleGraphEdge)>
pub fn dependencies( &self, module_id: &ModuleId, ) -> Vec<(ModuleId, &ModuleGraphEdge)>
get dependencies of the specific module, sorted by the order of the edge.
for example, for module a:
import c from './c';
import b from './b';
return ['module c', 'module b'], ensure the order of original imports.
sourcepub fn dependencies_ids(&self, module_id: &ModuleId) -> Vec<ModuleId>
pub fn dependencies_ids(&self, module_id: &ModuleId) -> Vec<ModuleId>
Same as dependencies, but only return the module id.
sourcepub fn dependents(
&self,
module_id: &ModuleId,
) -> Vec<(ModuleId, &ModuleGraphEdge)>
pub fn dependents( &self, module_id: &ModuleId, ) -> Vec<(ModuleId, &ModuleGraphEdge)>
get dependent of the specific module. don’t ensure the result’s order.
// a.js
import c from './c.js';
// b.js
import c from './c.js';
dependents(“./c.js”) return ['module a', 'module b'], ensure the order of original imports.
pub fn dependents_ids(&self, module_id: &ModuleId) -> Vec<ModuleId>
sourcepub fn toposort(&self) -> (Vec<ModuleId>, Vec<Vec<ModuleId>>)
pub fn toposort(&self) -> (Vec<ModuleId>, Vec<Vec<ModuleId>>)
sort the module graph topologically using post order dfs, note this topo sort also keeps the original import order. return (topologically sorted modules, cyclic modules stack)
Unsupported Situation: if the two entries shares the same dependencies but the import order is not the same, may cause one entry don’t keep original import order, this may bring problems in css as css depends on the order.
pub fn update_execution_order_for_modules(&mut self)
pub fn internal_graph(&self) -> &StableDiGraph<Module, ModuleGraphEdge>
pub fn dfs(&self, entry: &ModuleId, op: &mut dyn FnMut(&ModuleId))
pub fn dfs_breakable( &self, entries: Vec<ModuleId>, op: &mut dyn FnMut(Option<&ModuleId>, &ModuleId) -> bool, )
pub fn bfs(&self, entry: &ModuleId, op: &mut dyn FnMut(&ModuleId))
pub fn take_edge_and_module( &mut self, from: &ModuleId, to: &ModuleId, ) -> (ModuleGraphEdge, Module)
pub fn take_module(&mut self, module_id: &ModuleId) -> Module
pub fn replace_module(&mut self, module: Module)
pub fn is_dynamic(&self, module_id: &ModuleId) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModuleGraph
impl !RefUnwindSafe for ModuleGraph
impl Send for ModuleGraph
impl Sync for ModuleGraph
impl Unpin for ModuleGraph
impl !UnwindSafe for ModuleGraph
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§impl<T> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.