Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: change method on ExportsInfoId align to webpack #4209

Merged
merged 3 commits into from
Sep 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
158 changes: 52 additions & 106 deletions crates/rspack_core/src/exports_info.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use std::collections::VecDeque;
use std::hash::Hasher;
use std::sync::atomic::AtomicU32;
use std::sync::atomic::Ordering::Relaxed;
Expand Down Expand Up @@ -42,45 +41,27 @@ impl ExportsInfoId {
/// it will panic if you provide a export info that does not exists in the module graph
pub fn set_has_provide_info(&self, mg: &mut ModuleGraph) {
let exports_info = mg.get_exports_info_by_id(self);
let mut cur = exports_info;
// get redirect chain, because you can't pass a mut ref into a recursive call
let mut chain = VecDeque::new();
chain.push_back(cur.id);
while let Some(id) = cur.redirect_to {
chain.push_back(id);
cur = mg.get_exports_info_by_id(&id);
}
let len = chain.len();
for (i, id) in chain.into_iter().enumerate() {
let is_last = i == len - 1;

let exports_info = mg.get_exports_info_by_id(&id);

let export_id_list = exports_info.exports.values().cloned().collect::<Vec<_>>();
let other_export_info = exports_info.other_exports_info;
for id in export_id_list {
let export_info = mg
.export_info_map
.get_mut(&id)
.expect("should have export info");
if export_info.provided.is_none() {
export_info.provided = Some(ExportInfoProvided::False);
}
if export_info.can_mangle_provide.is_none() {
export_info.can_mangle_provide = Some(true);
}
let redirect_id = exports_info.redirect_to;
let other_exports_info_id = exports_info.other_exports_info;
let export_id_list = exports_info.exports.values().cloned().collect::<Vec<_>>();
for export_info_id in export_id_list {
let export_info = mg.get_export_info_mut_by_id(&export_info_id);
if export_info.provided.is_none() {
export_info.provided = Some(ExportInfoProvided::False);
}
if is_last {
let other_export_info = mg
.export_info_map
.get_mut(&other_export_info)
.expect("should have export info");
if other_export_info.provided.is_none() {
other_export_info.provided = Some(ExportInfoProvided::False);
}
if other_export_info.can_mangle_provide.is_none() {
other_export_info.can_mangle_provide = Some(true);
}
if export_info.can_mangle_provide.is_none() {
export_info.can_mangle_provide = Some(true);
}
}
if let Some(redirect) = redirect_id {
redirect.set_has_provide_info(mg);
} else {
let other_exports_info = mg.get_export_info_mut_by_id(&other_exports_info_id);
if other_exports_info.provided.is_none() {
other_exports_info.provided = Some(ExportInfoProvided::False);
}
if other_exports_info.can_mangle_provide.is_none() {
other_exports_info.can_mangle_provide = Some(true);
}
}
}
Expand Down Expand Up @@ -190,78 +171,44 @@ impl ExportsInfoId {
mg: &'a ModuleGraph,
) -> &'a ExportInfo {
let exports_info = mg.get_exports_info_by_id(self);
let mut cur = exports_info;
// get redirect chain, because you can't pass a mut ref into a recursive call
let mut chain = VecDeque::new();
chain.push_back(cur.id);
while let Some(id) = cur.redirect_to {
chain.push_back(id);
cur = mg.get_exports_info_by_id(&id);
}

let len = chain.len();
for (i, id) in chain.into_iter().enumerate() {
let exports_info = mg.get_exports_info_by_id(&id);
let is_last = i == len - 1;

if let Some(info) = exports_info.exports.get(name) {
let info = mg
.export_info_map
.get(info)
.expect("should have export info");
return info;
}
if is_last {
let info = mg
.export_info_map
.get(&exports_info.other_exports_info)
.expect("should have export info");
return info;
}
let redirect_id = exports_info.redirect_to;
let other_exports_info_id = exports_info.other_exports_info;
let export_info_id = exports_info.exports.get(name);
if let Some(export_info_id) = export_info_id {
let export_info = mg.get_export_info_by_id(export_info_id);
return export_info;
}
unreachable!()
if let Some(redirect_id) = redirect_id {
return redirect_id.get_read_only_export_info(name, mg);
}
mg.get_export_info_by_id(&other_exports_info_id)
}

pub fn get_export_info(&self, name: &JsWord, mg: &mut ModuleGraph) -> ExportInfoId {
let exports_info = mg.get_exports_info_by_id(self);
let mut cur = exports_info;
// get redirect chain, because you can't pass a mut ref into a recursive call
let mut chain = VecDeque::new();
chain.push_back(cur.id);
while let Some(id) = cur.redirect_to {
chain.push_back(id);
cur = mg.get_exports_info_by_id(&id);
}

let len = chain.len();

for (i, id) in chain.into_iter().enumerate() {
let is_last = i == len - 1;
let exports_info = mg.get_exports_info_by_id(&id);
let other_exports_info = exports_info.other_exports_info;
if let Some(export_info_id) = exports_info.exports.get(name) {
return *export_info_id;
}
if is_last {
let other_export_info = mg
.export_info_map
.get(&other_exports_info)
.expect("should have export_info");
let new_info = ExportInfo::new(
Some(name.clone()),
UsageState::Unknown,
Some(other_export_info),
);
let new_info_id = new_info.id;
mg.export_info_map.insert(new_info_id, new_info);

let exports_info = mg.get_exports_info_mut_by_id(&id);
exports_info._exports_are_ordered = false;
exports_info.exports.insert(name.clone(), new_info_id);
return new_info_id;
}
let redirect_id = exports_info.redirect_to;
let other_exports_info_id = exports_info.other_exports_info;
let export_info_id = exports_info.exports.get(name);
if let Some(export_info_id) = export_info_id {
return *export_info_id;
}
unreachable!()
if let Some(redirect_id) = redirect_id {
return redirect_id.get_export_info(name, mg);
}

let other_export_info = mg.get_export_info_by_id(&other_exports_info_id);
let new_info = ExportInfo::new(
Some(name.clone()),
UsageState::Unknown,
Some(other_export_info),
);
let new_info_id = new_info.id;
mg.export_info_map.insert(new_info_id, new_info);

let exports_info = mg.get_exports_info_mut_by_id(self);
exports_info._exports_are_ordered = false;
exports_info.exports.insert(name.clone(), new_info_id);
new_info_id
}

pub fn get_nested_exports_info(
Expand Down Expand Up @@ -1051,7 +998,6 @@ impl ExportInfo {
}
}

// TODO: change connection to option
pub fn set_target(
&mut self,
key: &DependencyId,
Expand Down