2020-11-13 10:38:26 -06:00
//! Handles lowering of build-system specific workspace information (`cargo
//! metadata` or `rust-project.json`) into representation stored in the salsa
//! database -- `CrateGraph`.
2021-10-21 10:49:28 -05:00
use std ::{ collections ::VecDeque , fmt , fs , process ::Command } ;
2020-11-13 09:44:48 -06:00
2021-05-23 12:56:54 -05:00
use anyhow ::{ format_err , Context , Result } ;
2021-09-28 14:23:46 -05:00
use base_db ::{
2021-11-22 11:44:46 -06:00
CrateDisplayName , CrateGraph , CrateId , CrateName , CrateOrigin , Dependency , Edition , Env ,
2022-03-26 15:22:35 -05:00
FileId , LangCrateOrigin , ProcMacro ,
2021-09-28 14:23:46 -05:00
} ;
2021-06-13 23:41:46 -05:00
use cfg ::{ CfgDiff , CfgOptions } ;
2020-11-13 09:44:48 -06:00
use paths ::{ AbsPath , AbsPathBuf } ;
use rustc_hash ::{ FxHashMap , FxHashSet } ;
2021-07-18 05:13:03 -05:00
use stdx ::always ;
2020-11-13 09:44:48 -06:00
use crate ::{
2021-07-18 03:29:22 -05:00
build_scripts ::BuildScriptOutput ,
cargo_workspace ::{ DepKind , PackageData , RustcSource } ,
2021-01-28 09:33:02 -06:00
cfg_flag ::CfgFlag ,
rustc_cfg ,
sysroot ::SysrootCrate ,
2021-07-19 13:20:10 -05:00
utf8_stdout , CargoConfig , CargoWorkspace , ManifestPath , ProjectJson , ProjectManifest , Sysroot ,
TargetKind , WorkspaceBuildScripts ,
2020-11-13 09:44:48 -06:00
} ;
2021-08-23 12:18:11 -05:00
/// A set of cfg-overrides per crate.
///
/// `Wildcard(..)` is useful e.g. disabling `#[cfg(test)]` on all crates,
/// without having to first obtain a list of all crates.
#[ derive(Debug, Clone, Eq, PartialEq) ]
pub enum CfgOverrides {
/// A single global set of overrides matching all crates.
Wildcard ( CfgDiff ) ,
/// A set of overrides matching specific crates.
Selective ( FxHashMap < String , CfgDiff > ) ,
}
impl Default for CfgOverrides {
fn default ( ) -> Self {
Self ::Selective ( FxHashMap ::default ( ) )
}
}
impl CfgOverrides {
pub fn len ( & self ) -> usize {
match self {
CfgOverrides ::Wildcard ( _ ) = > 1 ,
CfgOverrides ::Selective ( hash_map ) = > hash_map . len ( ) ,
}
}
}
2021-06-13 23:41:46 -05:00
2020-11-13 09:44:48 -06:00
/// `PackageRoot` describes a package root folder.
/// Which may be an external dependency, or a member of
/// the current workspace.
#[ derive(Debug, Clone, Eq, PartialEq, Hash) ]
pub struct PackageRoot {
2021-09-07 10:29:58 -05:00
/// Is from the local filesystem and may be edited
pub is_local : bool ,
2020-11-13 09:44:48 -06:00
pub include : Vec < AbsPathBuf > ,
pub exclude : Vec < AbsPathBuf > ,
}
#[ derive(Clone, Eq, PartialEq) ]
pub enum ProjectWorkspace {
/// Project workspace was discovered by running `cargo metadata` and `rustc --print sysroot`.
2021-01-18 05:52:12 -06:00
Cargo {
cargo : CargoWorkspace ,
2021-07-18 05:13:03 -05:00
build_scripts : WorkspaceBuildScripts ,
2021-08-20 08:56:02 -05:00
sysroot : Option < Sysroot > ,
2021-01-18 05:52:12 -06:00
rustc : Option < CargoWorkspace > ,
/// Holds cfg flags for the current target. We get those by running
/// `rustc --print cfg`.
///
/// FIXME: make this a per-crate map, as, eg, build.rs might have a
/// different target.
rustc_cfg : Vec < CfgFlag > ,
2021-06-13 23:41:46 -05:00
cfg_overrides : CfgOverrides ,
2021-01-18 05:52:12 -06:00
} ,
2020-11-13 09:44:48 -06:00
/// Project workspace was manually specified using a `rust-project.json` file.
2021-01-18 05:52:12 -06:00
Json { project : ProjectJson , sysroot : Option < Sysroot > , rustc_cfg : Vec < CfgFlag > } ,
2021-05-24 06:52:57 -05:00
// FIXME: The primary limitation of this approach is that the set of detached files needs to be fixed at the beginning.
// That's not the end user experience we should strive for.
// Ideally, you should be able to just open a random detached file in existing cargo projects, and get the basic features working.
// That needs some changes on the salsa-level though.
// In particular, we should split the unified CrateGraph (which currently has maximal durability) into proper crate graph, and a set of ad hoc roots (with minimal durability).
// Then, we need to hide the graph behind the queries such that most queries look only at the proper crate graph, and fall back to ad hoc roots only if there's no results.
// After this, we should be able to tweak the logic in reload.rs to add newly opened files, which don't belong to any existing crates, to the set of the detached files.
// //
2021-05-23 15:29:26 -05:00
/// Project with a set of disjoint files, not belonging to any particular workspace.
/// Backed by basic sysroot crates for basic completion and highlighting.
2021-05-23 12:56:54 -05:00
DetachedFiles { files : Vec < AbsPathBuf > , sysroot : Sysroot , rustc_cfg : Vec < CfgFlag > } ,
2020-11-13 09:44:48 -06:00
}
impl fmt ::Debug for ProjectWorkspace {
fn fmt ( & self , f : & mut fmt ::Formatter < '_ > ) -> fmt ::Result {
2021-01-28 08:04:44 -06:00
// Make sure this isn't too verbose.
2020-11-13 09:44:48 -06:00
match self {
2021-07-18 05:13:03 -05:00
ProjectWorkspace ::Cargo {
cargo ,
build_scripts : _ ,
sysroot ,
rustc ,
rustc_cfg ,
cfg_overrides ,
} = > f
2020-11-13 09:44:48 -06:00
. debug_struct ( " Cargo " )
2021-03-08 10:41:40 -06:00
. field ( " root " , & cargo . workspace_root ( ) . file_name ( ) )
2020-11-13 09:44:48 -06:00
. field ( " n_packages " , & cargo . packages ( ) . len ( ) )
2021-08-20 08:56:02 -05:00
. field ( " sysroot " , & sysroot . is_some ( ) )
2020-11-13 09:44:48 -06:00
. field (
" n_rustc_compiler_crates " ,
& rustc . as_ref ( ) . map_or ( 0 , | rc | rc . packages ( ) . len ( ) ) ,
)
2021-01-28 08:04:44 -06:00
. field ( " n_rustc_cfg " , & rustc_cfg . len ( ) )
2021-06-13 23:41:46 -05:00
. field ( " n_cfg_overrides " , & cfg_overrides . len ( ) )
2020-11-13 09:44:48 -06:00
. finish ( ) ,
2021-01-18 05:52:12 -06:00
ProjectWorkspace ::Json { project , sysroot , rustc_cfg } = > {
2020-11-13 09:44:48 -06:00
let mut debug_struct = f . debug_struct ( " Json " ) ;
debug_struct . field ( " n_crates " , & project . n_crates ( ) ) ;
if let Some ( sysroot ) = sysroot {
debug_struct . field ( " n_sysroot_crates " , & sysroot . crates ( ) . len ( ) ) ;
}
2021-01-28 08:04:44 -06:00
debug_struct . field ( " n_rustc_cfg " , & rustc_cfg . len ( ) ) ;
2020-11-13 09:44:48 -06:00
debug_struct . finish ( )
}
2021-05-23 12:56:54 -05:00
ProjectWorkspace ::DetachedFiles { files , sysroot , rustc_cfg } = > f
. debug_struct ( " DetachedFiles " )
. field ( " n_files " , & files . len ( ) )
. field ( " n_sysroot_crates " , & sysroot . crates ( ) . len ( ) )
. field ( " n_rustc_cfg " , & rustc_cfg . len ( ) )
. finish ( ) ,
2020-11-13 09:44:48 -06:00
}
}
}
impl ProjectWorkspace {
2021-01-07 11:08:46 -06:00
pub fn load (
manifest : ProjectManifest ,
config : & CargoConfig ,
progress : & dyn Fn ( String ) ,
) -> Result < ProjectWorkspace > {
2020-11-13 09:44:48 -06:00
let res = match manifest {
ProjectManifest ::ProjectJson ( project_json ) = > {
let file = fs ::read_to_string ( & project_json ) . with_context ( | | {
format! ( " Failed to read json file {} " , project_json . display ( ) )
} ) ? ;
let data = serde_json ::from_str ( & file ) . with_context ( | | {
format! ( " Failed to deserialize json file {} " , project_json . display ( ) )
} ) ? ;
2021-07-19 13:20:10 -05:00
let project_location = project_json . parent ( ) . to_path_buf ( ) ;
2020-11-17 04:31:40 -06:00
let project_json = ProjectJson ::new ( & project_location , data ) ;
2021-01-18 05:52:12 -06:00
ProjectWorkspace ::load_inline ( project_json , config . target . as_deref ( ) ) ?
2020-11-13 09:44:48 -06:00
}
ProjectManifest ::CargoToml ( cargo_toml ) = > {
let cargo_version = utf8_stdout ( {
let mut cmd = Command ::new ( toolchain ::cargo ( ) ) ;
cmd . arg ( " --version " ) ;
cmd
} ) ? ;
2021-10-14 09:40:57 -05:00
let meta = CargoWorkspace ::fetch_metadata (
& cargo_toml ,
cargo_toml . parent ( ) ,
config ,
progress ,
)
. with_context ( | | {
format! (
" Failed to read Cargo metadata from Cargo.toml file {}, {} " ,
cargo_toml . display ( ) ,
cargo_version
)
} ) ? ;
2021-07-18 03:29:22 -05:00
let cargo = CargoWorkspace ::new ( meta ) ;
2021-02-11 10:34:56 -06:00
2020-11-13 10:38:26 -06:00
let sysroot = if config . no_sysroot {
2021-08-20 08:56:02 -05:00
None
2020-11-13 10:38:26 -06:00
} else {
2021-08-20 08:56:02 -05:00
Some ( Sysroot ::discover ( cargo_toml . parent ( ) ) . with_context ( | | {
2020-11-13 09:44:48 -06:00
format! (
" Failed to find sysroot for Cargo.toml file {}. Is rust-src installed? " ,
cargo_toml . display ( )
)
2021-08-20 08:56:02 -05:00
} ) ? )
2020-11-13 09:44:48 -06:00
} ;
2021-07-19 13:20:10 -05:00
let rustc_dir = match & config . rustc_source {
Some ( RustcSource ::Path ( path ) ) = > ManifestPath ::try_from ( path . clone ( ) ) . ok ( ) ,
Some ( RustcSource ::Discover ) = > Sysroot ::discover_rustc ( & cargo_toml ) ,
None = > None ,
2021-02-11 10:34:56 -06:00
} ;
2021-07-17 15:43:54 -05:00
let rustc = match rustc_dir {
Some ( rustc_dir ) = > Some ( {
2021-10-14 09:40:57 -05:00
let meta = CargoWorkspace ::fetch_metadata (
& rustc_dir ,
cargo_toml . parent ( ) ,
config ,
progress ,
)
. with_context ( | | {
" Failed to read Cargo metadata for Rust sources " . to_string ( )
} ) ? ;
2021-07-18 03:29:22 -05:00
CargoWorkspace ::new ( meta )
2021-07-17 15:43:54 -05:00
} ) ,
None = > None ,
2020-11-13 09:44:48 -06:00
} ;
2021-05-08 11:17:18 -05:00
let rustc_cfg = rustc_cfg ::get ( Some ( & cargo_toml ) , config . target . as_deref ( ) ) ;
2021-06-13 23:41:46 -05:00
let cfg_overrides = config . cfg_overrides ( ) ;
2021-07-18 05:13:03 -05:00
ProjectWorkspace ::Cargo {
cargo ,
build_scripts : WorkspaceBuildScripts ::default ( ) ,
sysroot ,
rustc ,
rustc_cfg ,
cfg_overrides ,
}
2020-11-13 09:44:48 -06:00
}
} ;
Ok ( res )
}
2021-01-18 05:52:12 -06:00
pub fn load_inline (
project_json : ProjectJson ,
target : Option < & str > ,
) -> Result < ProjectWorkspace > {
2020-11-13 09:44:48 -06:00
let sysroot = match & project_json . sysroot_src {
2021-08-20 08:56:02 -05:00
Some ( path ) = > Some ( Sysroot ::load ( path . clone ( ) ) ? ) ,
2020-11-13 09:44:48 -06:00
None = > None ,
} ;
2021-05-08 11:17:18 -05:00
let rustc_cfg = rustc_cfg ::get ( None , target ) ;
2021-01-18 05:52:12 -06:00
Ok ( ProjectWorkspace ::Json { project : project_json , sysroot , rustc_cfg } )
2020-11-13 09:44:48 -06:00
}
2021-05-23 12:56:54 -05:00
pub fn load_detached_files ( detached_files : Vec < AbsPathBuf > ) -> Result < ProjectWorkspace > {
let sysroot = Sysroot ::discover (
2021-07-19 13:20:10 -05:00
detached_files
. first ( )
. and_then ( | it | it . parent ( ) )
. ok_or_else ( | | format_err! ( " No detached files to load " ) ) ? ,
2021-05-23 12:56:54 -05:00
) ? ;
let rustc_cfg = rustc_cfg ::get ( None , None ) ;
Ok ( ProjectWorkspace ::DetachedFiles { files : detached_files , sysroot , rustc_cfg } )
}
2021-07-18 05:13:03 -05:00
pub fn run_build_scripts (
& self ,
config : & CargoConfig ,
progress : & dyn Fn ( String ) ,
) -> Result < WorkspaceBuildScripts > {
match self {
ProjectWorkspace ::Cargo { cargo , .. } = > {
WorkspaceBuildScripts ::run ( config , cargo , progress )
}
ProjectWorkspace ::Json { .. } | ProjectWorkspace ::DetachedFiles { .. } = > {
Ok ( WorkspaceBuildScripts ::default ( ) )
}
}
}
pub fn set_build_scripts ( & mut self , bs : WorkspaceBuildScripts ) {
match self {
ProjectWorkspace ::Cargo { build_scripts , .. } = > * build_scripts = bs ,
_ = > {
always! ( bs = = WorkspaceBuildScripts ::default ( ) ) ;
}
}
}
2020-11-13 09:44:48 -06:00
/// Returns the roots for the current `ProjectWorkspace`
/// The return type contains the path and whether or not
/// the root is a member of the current workspace
2021-07-18 05:13:03 -05:00
pub fn to_roots ( & self ) -> Vec < PackageRoot > {
2020-11-13 09:44:48 -06:00
match self {
2021-01-18 05:52:12 -06:00
ProjectWorkspace ::Json { project , sysroot , rustc_cfg : _ } = > project
2020-11-13 09:44:48 -06:00
. crates ( )
. map ( | ( _ , krate ) | PackageRoot {
2021-09-07 10:29:58 -05:00
is_local : krate . is_workspace_member ,
2020-11-13 09:44:48 -06:00
include : krate . include . clone ( ) ,
exclude : krate . exclude . clone ( ) ,
} )
. collect ::< FxHashSet < _ > > ( )
. into_iter ( )
. chain ( sysroot . as_ref ( ) . into_iter ( ) . flat_map ( | sysroot | {
sysroot . crates ( ) . map ( move | krate | PackageRoot {
2021-09-07 10:29:58 -05:00
is_local : false ,
2021-07-19 13:20:10 -05:00
include : vec ! [ sysroot [ krate ] . root . parent ( ) . to_path_buf ( ) ] ,
2020-11-13 09:44:48 -06:00
exclude : Vec ::new ( ) ,
} )
} ) )
. collect ::< Vec < _ > > ( ) ,
2021-07-18 05:13:03 -05:00
ProjectWorkspace ::Cargo {
cargo ,
sysroot ,
rustc ,
rustc_cfg : _ ,
cfg_overrides : _ ,
build_scripts ,
} = > {
2021-06-13 23:41:46 -05:00
cargo
. packages ( )
. map ( | pkg | {
2021-09-07 10:29:58 -05:00
let is_local = cargo [ pkg ] . is_local ;
2021-07-19 13:20:10 -05:00
let pkg_root = cargo [ pkg ] . manifest . parent ( ) . to_path_buf ( ) ;
2021-06-13 23:41:46 -05:00
let mut include = vec! [ pkg_root . clone ( ) ] ;
include . extend (
2021-07-18 03:29:22 -05:00
build_scripts . outputs . get ( pkg ) . and_then ( | it | it . out_dir . clone ( ) ) ,
2021-06-13 23:41:46 -05:00
) ;
2021-06-21 17:59:57 -05:00
// In case target's path is manually set in Cargo.toml to be
// outside the package root, add its parent as an extra include.
// An example of this situation would look like this:
//
// ```toml
// [lib]
// path = "../../src/lib.rs"
// ```
let extra_targets = cargo [ pkg ]
. targets
. iter ( )
. filter ( | & & tgt | cargo [ tgt ] . kind = = TargetKind ::Lib )
. filter_map ( | & tgt | cargo [ tgt ] . root . parent ( ) )
. map ( | tgt | tgt . normalize ( ) . to_path_buf ( ) )
2021-06-28 01:28:31 -05:00
. filter ( | path | ! path . starts_with ( & pkg_root ) ) ;
2021-06-21 17:59:57 -05:00
include . extend ( extra_targets ) ;
2021-06-13 23:41:46 -05:00
let mut exclude = vec! [ pkg_root . join ( " .git " ) ] ;
2021-09-07 10:29:58 -05:00
if is_local {
2021-06-13 23:41:46 -05:00
exclude . push ( pkg_root . join ( " target " ) ) ;
} else {
exclude . push ( pkg_root . join ( " tests " ) ) ;
exclude . push ( pkg_root . join ( " examples " ) ) ;
exclude . push ( pkg_root . join ( " benches " ) ) ;
}
2021-09-07 10:29:58 -05:00
PackageRoot { is_local , include , exclude }
2021-06-13 23:41:46 -05:00
} )
2021-09-19 12:00:06 -05:00
. chain ( sysroot . iter ( ) . map ( | sysroot | PackageRoot {
2021-09-07 10:29:58 -05:00
is_local : false ,
2021-08-20 08:56:02 -05:00
include : vec ! [ sysroot . root ( ) . to_path_buf ( ) ] ,
2020-11-13 09:44:48 -06:00
exclude : Vec ::new ( ) ,
2021-06-13 23:41:46 -05:00
} ) )
2021-09-19 12:00:06 -05:00
. chain ( rustc . iter ( ) . flat_map ( | rustc | {
2021-06-13 23:41:46 -05:00
rustc . packages ( ) . map ( move | krate | PackageRoot {
2021-09-07 10:29:58 -05:00
is_local : false ,
2021-07-19 13:20:10 -05:00
include : vec ! [ rustc [ krate ] . manifest . parent ( ) . to_path_buf ( ) ] ,
2021-06-13 23:41:46 -05:00
exclude : Vec ::new ( ) ,
} )
} ) )
. collect ( )
}
2021-05-23 12:56:54 -05:00
ProjectWorkspace ::DetachedFiles { files , sysroot , .. } = > files
2021-09-19 12:00:06 -05:00
. iter ( )
2021-05-23 12:56:54 -05:00
. map ( | detached_file | PackageRoot {
2021-09-07 10:29:58 -05:00
is_local : true ,
2021-05-23 12:56:54 -05:00
include : vec ! [ detached_file . clone ( ) ] ,
exclude : Vec ::new ( ) ,
} )
. chain ( sysroot . crates ( ) . map ( | krate | PackageRoot {
2021-09-07 10:29:58 -05:00
is_local : false ,
2021-07-19 13:20:10 -05:00
include : vec ! [ sysroot [ krate ] . root . parent ( ) . to_path_buf ( ) ] ,
2021-05-23 12:56:54 -05:00
exclude : Vec ::new ( ) ,
} ) )
. collect ( ) ,
2020-11-13 09:44:48 -06:00
}
}
pub fn n_packages ( & self ) -> usize {
match self {
ProjectWorkspace ::Json { project , .. } = > project . n_crates ( ) ,
2021-01-18 05:52:12 -06:00
ProjectWorkspace ::Cargo { cargo , sysroot , rustc , .. } = > {
2021-08-20 08:56:02 -05:00
let rustc_package_len = rustc . as_ref ( ) . map_or ( 0 , | it | it . packages ( ) . len ( ) ) ;
let sysroot_package_len = sysroot . as_ref ( ) . map_or ( 0 , | it | it . crates ( ) . len ( ) ) ;
cargo . packages ( ) . len ( ) + sysroot_package_len + rustc_package_len
2020-11-13 09:44:48 -06:00
}
2021-05-23 12:56:54 -05:00
ProjectWorkspace ::DetachedFiles { sysroot , files , .. } = > {
sysroot . crates ( ) . len ( ) + files . len ( )
}
2020-11-13 09:44:48 -06:00
}
}
pub fn to_crate_graph (
& self ,
2022-01-04 13:40:16 -06:00
dummy_replace : & FxHashMap < Box < str > , Box < [ Box < str > ] > > ,
load_proc_macro : & mut dyn FnMut ( & AbsPath , & [ Box < str > ] ) -> Vec < ProcMacro > ,
2020-11-13 09:44:48 -06:00
load : & mut dyn FnMut ( & AbsPath ) -> Option < FileId > ,
) -> CrateGraph {
2021-01-18 04:25:57 -06:00
let _p = profile ::span ( " ProjectWorkspace::to_crate_graph " ) ;
2022-01-04 13:40:16 -06:00
let load_proc_macro = & mut | crate_name : & _ , path : & _ | {
load_proc_macro ( path , dummy_replace . get ( crate_name ) . map ( | it | & * * it ) . unwrap_or_default ( ) )
} ;
2020-12-07 10:16:50 -06:00
2020-11-17 06:35:25 -06:00
let mut crate_graph = match self {
2021-01-18 05:52:12 -06:00
ProjectWorkspace ::Json { project , sysroot , rustc_cfg } = > project_json_to_crate_graph (
rustc_cfg . clone ( ) ,
2021-08-22 05:32:00 -05:00
load_proc_macro ,
2021-01-18 05:52:12 -06:00
load ,
project ,
sysroot ,
) ,
2021-07-18 05:13:03 -05:00
ProjectWorkspace ::Cargo {
cargo ,
sysroot ,
rustc ,
rustc_cfg ,
cfg_overrides ,
build_scripts ,
} = > cargo_to_crate_graph (
rustc_cfg . clone ( ) ,
cfg_overrides ,
2021-08-22 05:32:00 -05:00
load_proc_macro ,
2021-07-18 05:13:03 -05:00
load ,
cargo ,
build_scripts ,
2021-08-20 08:56:02 -05:00
sysroot . as_ref ( ) ,
2021-07-18 05:13:03 -05:00
rustc ,
) ,
2021-05-23 12:56:54 -05:00
ProjectWorkspace ::DetachedFiles { files , sysroot , rustc_cfg } = > {
detached_files_to_crate_graph ( rustc_cfg . clone ( ) , load , files , sysroot )
}
2020-11-17 06:35:25 -06:00
} ;
if crate_graph . patch_cfg_if ( ) {
2021-08-15 07:46:13 -05:00
tracing ::debug! ( " Patched std to depend on cfg-if " )
2020-11-17 06:35:25 -06:00
} else {
2021-08-15 07:46:13 -05:00
tracing ::debug! ( " Did not patch std to depend on cfg-if " )
2020-11-17 06:35:25 -06:00
}
crate_graph
}
}
2020-11-13 09:44:48 -06:00
2020-11-17 06:35:25 -06:00
fn project_json_to_crate_graph (
2021-01-18 05:52:12 -06:00
rustc_cfg : Vec < CfgFlag > ,
2022-01-04 13:40:16 -06:00
load_proc_macro : & mut dyn FnMut ( & str , & AbsPath ) -> Vec < ProcMacro > ,
2020-11-17 06:35:25 -06:00
load : & mut dyn FnMut ( & AbsPath ) -> Option < FileId > ,
project : & ProjectJson ,
sysroot : & Option < Sysroot > ,
) -> CrateGraph {
let mut crate_graph = CrateGraph ::default ( ) ;
let sysroot_deps = sysroot
. as_ref ( )
2021-01-18 05:52:12 -06:00
. map ( | sysroot | sysroot_to_crate_graph ( & mut crate_graph , sysroot , rustc_cfg . clone ( ) , load ) ) ;
2020-11-17 06:35:25 -06:00
2021-01-18 05:52:12 -06:00
let mut cfg_cache : FxHashMap < & str , Vec < CfgFlag > > = FxHashMap ::default ( ) ;
2020-11-17 06:35:25 -06:00
let crates : FxHashMap < CrateId , CrateId > = project
. crates ( )
. filter_map ( | ( crate_id , krate ) | {
let file_path = & krate . root_module ;
2021-06-12 22:54:16 -05:00
let file_id = load ( file_path ) ? ;
2020-11-17 06:35:25 -06:00
Some ( ( crate_id , krate , file_id ) )
} )
. map ( | ( crate_id , krate , file_id ) | {
let env = krate . env . clone ( ) . into_iter ( ) . collect ( ) ;
2022-01-04 13:40:16 -06:00
let proc_macro = krate . proc_macro_dylib_path . clone ( ) . map ( | it | {
load_proc_macro (
krate . display_name . as_ref ( ) . map ( | it | it . canonical_name ( ) ) . unwrap_or ( " " ) ,
& it ,
)
} ) ;
2020-11-17 06:35:25 -06:00
2021-01-18 05:52:12 -06:00
let target_cfgs = match krate . target . as_deref ( ) {
Some ( target ) = > {
2021-05-08 11:17:18 -05:00
cfg_cache . entry ( target ) . or_insert_with ( | | rustc_cfg ::get ( None , Some ( target ) ) )
2021-01-18 05:52:12 -06:00
}
None = > & rustc_cfg ,
} ;
2020-11-17 06:35:25 -06:00
let mut cfg_options = CfgOptions ::default ( ) ;
cfg_options . extend ( target_cfgs . iter ( ) . chain ( krate . cfg . iter ( ) ) . cloned ( ) ) ;
(
crate_id ,
crate_graph . add_crate_root (
file_id ,
krate . edition ,
krate . display_name . clone ( ) ,
2021-10-30 09:17:04 -05:00
krate . version . clone ( ) ,
2021-05-31 14:45:01 -05:00
cfg_options . clone ( ) ,
2020-11-17 06:35:25 -06:00
cfg_options ,
env ,
proc_macro . unwrap_or_default ( ) ,
2022-03-09 07:33:39 -06:00
krate . is_proc_macro ,
2021-11-29 01:40:39 -06:00
if krate . display_name . is_some ( ) {
CrateOrigin ::CratesIo { repo : krate . repository . clone ( ) }
2021-11-22 11:44:46 -06:00
} else {
2022-03-26 15:22:35 -05:00
CrateOrigin ::CratesIo { repo : None }
2021-11-22 11:44:46 -06:00
} ,
2020-11-17 06:35:25 -06:00
) ,
)
} )
. collect ( ) ;
for ( from , krate ) in project . crates ( ) {
if let Some ( & from ) = crates . get ( & from ) {
2021-07-31 17:26:59 -05:00
if let Some ( ( public_deps , libproc_macro ) ) = & sysroot_deps {
2021-09-28 14:39:41 -05:00
public_deps . add ( from , & mut crate_graph ) ;
2021-07-31 17:26:59 -05:00
if krate . is_proc_macro {
if let Some ( proc_macro ) = libproc_macro {
add_dep (
& mut crate_graph ,
from ,
CrateName ::new ( " proc_macro " ) . unwrap ( ) ,
* proc_macro ,
) ;
}
}
2020-11-17 06:35:25 -06:00
}
2020-11-13 09:44:48 -06:00
2020-11-17 06:35:25 -06:00
for dep in & krate . deps {
if let Some ( & to ) = crates . get ( & dep . crate_id ) {
add_dep ( & mut crate_graph , from , dep . name . clone ( ) , to )
}
}
}
}
crate_graph
}
2020-11-13 09:44:48 -06:00
2020-11-17 06:35:25 -06:00
fn cargo_to_crate_graph (
2021-01-18 05:52:12 -06:00
rustc_cfg : Vec < CfgFlag > ,
2021-06-13 23:41:46 -05:00
override_cfg : & CfgOverrides ,
2022-01-04 13:40:16 -06:00
load_proc_macro : & mut dyn FnMut ( & str , & AbsPath ) -> Vec < ProcMacro > ,
2020-11-17 06:35:25 -06:00
load : & mut dyn FnMut ( & AbsPath ) -> Option < FileId > ,
cargo : & CargoWorkspace ,
2021-07-18 03:29:22 -05:00
build_scripts : & WorkspaceBuildScripts ,
2021-08-20 08:56:02 -05:00
sysroot : Option < & Sysroot > ,
2020-11-17 06:35:25 -06:00
rustc : & Option < CargoWorkspace > ,
) -> CrateGraph {
2021-01-18 04:25:57 -06:00
let _p = profile ::span ( " cargo_to_crate_graph " ) ;
2020-11-17 06:35:25 -06:00
let mut crate_graph = CrateGraph ::default ( ) ;
2021-08-20 08:56:02 -05:00
let ( public_deps , libproc_macro ) = match sysroot {
Some ( sysroot ) = > sysroot_to_crate_graph ( & mut crate_graph , sysroot , rustc_cfg . clone ( ) , load ) ,
2021-09-28 14:39:41 -05:00
None = > ( SysrootPublicDeps ::default ( ) , None ) ,
2021-08-20 08:56:02 -05:00
} ;
2020-11-17 06:35:25 -06:00
let mut cfg_options = CfgOptions ::default ( ) ;
2021-01-18 05:52:12 -06:00
cfg_options . extend ( rustc_cfg ) ;
2020-11-17 06:35:25 -06:00
let mut pkg_to_lib_crate = FxHashMap ::default ( ) ;
// Add test cfg for non-sysroot crates
cfg_options . insert_atom ( " test " . into ( ) ) ;
cfg_options . insert_atom ( " debug_assertions " . into ( ) ) ;
let mut pkg_crates = FxHashMap ::default ( ) ;
2021-03-07 06:59:15 -06:00
// Does any crate signal to rust-analyzer that they need the rustc_private crates?
2021-03-07 06:24:20 -06:00
let mut has_private = false ;
2020-11-17 06:35:25 -06:00
// Next, create crates for each package, target pair
for pkg in cargo . packages ( ) {
2021-06-12 07:16:22 -05:00
let mut cfg_options = & cfg_options ;
let mut replaced_cfg_options ;
2021-08-23 12:18:11 -05:00
let overrides = match override_cfg {
CfgOverrides ::Wildcard ( cfg_diff ) = > Some ( cfg_diff ) ,
CfgOverrides ::Selective ( cfg_overrides ) = > cfg_overrides . get ( & cargo [ pkg ] . name ) ,
} ;
if let Some ( overrides ) = overrides {
2021-06-13 23:41:46 -05:00
// FIXME: this is sort of a hack to deal with #![cfg(not(test))] vanishing such as seen
// in ed25519_dalek (#7243), and libcore (#9203) (although you only hit that one while
// working on rust-lang/rust as that's the only time it appears outside sysroot).
//
// A more ideal solution might be to reanalyze crates based on where the cursor is and
// figure out the set of cfgs that would have to apply to make it active.
2021-06-12 07:16:22 -05:00
replaced_cfg_options = cfg_options . clone ( ) ;
2021-06-13 23:41:46 -05:00
replaced_cfg_options . apply_diff ( overrides . clone ( ) ) ;
2021-06-12 07:16:22 -05:00
cfg_options = & replaced_cfg_options ;
} ;
2021-03-07 06:24:20 -06:00
has_private | = cargo [ pkg ] . metadata . rustc_private ;
2020-11-17 06:35:25 -06:00
let mut lib_tgt = None ;
for & tgt in cargo [ pkg ] . targets . iter ( ) {
2022-01-18 11:17:43 -06:00
if cargo [ tgt ] . kind ! = TargetKind ::Lib & & ! cargo [ pkg ] . is_member {
// For non-workspace-members, Cargo does not resolve dev-dependencies, so we don't
// add any targets except the library target, since those will not work correctly if
// they use dev-dependencies.
// In fact, they can break quite badly if multiple client workspaces get merged:
// https://github.com/rust-analyzer/rust-analyzer/issues/11300
continue ;
}
2020-11-17 08:25:46 -06:00
if let Some ( file_id ) = load ( & cargo [ tgt ] . root ) {
let crate_id = add_target_crate_root (
& mut crate_graph ,
& cargo [ pkg ] ,
2021-07-18 03:29:22 -05:00
build_scripts . outputs . get ( pkg ) ,
2021-09-19 12:00:06 -05:00
cfg_options ,
2022-01-04 13:40:16 -06:00
& mut | path | load_proc_macro ( & cargo [ tgt ] . name , path ) ,
2020-11-17 08:25:46 -06:00
file_id ,
2021-05-11 16:34:56 -05:00
& cargo [ tgt ] . name ,
2022-03-09 07:33:39 -06:00
cargo [ tgt ] . is_proc_macro ,
2020-11-17 08:25:46 -06:00
) ;
2020-11-17 06:35:25 -06:00
if cargo [ tgt ] . kind = = TargetKind ::Lib {
lib_tgt = Some ( ( crate_id , cargo [ tgt ] . name . clone ( ) ) ) ;
pkg_to_lib_crate . insert ( pkg , crate_id ) ;
}
2021-08-12 14:42:14 -05:00
if let Some ( proc_macro ) = libproc_macro {
2021-10-04 11:22:39 -05:00
add_dep_with_prelude (
2021-08-12 14:42:14 -05:00
& mut crate_graph ,
crate_id ,
CrateName ::new ( " proc_macro " ) . unwrap ( ) ,
proc_macro ,
2021-10-04 11:22:39 -05:00
cargo [ tgt ] . is_proc_macro ,
2021-08-12 14:42:14 -05:00
) ;
2020-11-17 06:35:25 -06:00
}
2020-11-13 09:44:48 -06:00
2021-05-12 07:16:51 -05:00
pkg_crates . entry ( pkg ) . or_insert_with ( Vec ::new ) . push ( ( crate_id , cargo [ tgt ] . kind ) ) ;
2020-11-17 06:35:25 -06:00
}
}
// Set deps to the core, std and to the lib target of the current package
2021-05-12 07:16:51 -05:00
for ( from , kind ) in pkg_crates . get ( & pkg ) . into_iter ( ) . flatten ( ) {
2021-12-08 10:05:00 -06:00
// Add sysroot deps first so that a lib target named `core` etc. can overwrite them.
public_deps . add ( * from , & mut crate_graph ) ;
2020-11-17 06:35:25 -06:00
if let Some ( ( to , name ) ) = lib_tgt . clone ( ) {
2021-05-12 07:16:51 -05:00
if to ! = * from & & * kind ! = TargetKind ::BuildScript {
// (build script can not depend on its library target)
2020-11-17 06:35:25 -06:00
// For root projects with dashes in their name,
// cargo metadata does not do any normalization,
// so we do it ourselves currently
let name = CrateName ::normalize_dashes ( & name ) ;
2021-05-12 07:16:51 -05:00
add_dep ( & mut crate_graph , * from , name , to ) ;
2020-11-13 09:44:48 -06:00
}
2020-11-17 06:35:25 -06:00
}
}
}
2020-11-13 09:44:48 -06:00
2020-11-17 06:35:25 -06:00
// Now add a dep edge from all targets of upstream to the lib
// target of downstream.
for pkg in cargo . packages ( ) {
for dep in cargo [ pkg ] . dependencies . iter ( ) {
let name = CrateName ::new ( & dep . name ) . unwrap ( ) ;
if let Some ( & to ) = pkg_to_lib_crate . get ( & dep . pkg ) {
2021-05-12 07:16:51 -05:00
for ( from , kind ) in pkg_crates . get ( & pkg ) . into_iter ( ) . flatten ( ) {
if dep . kind = = DepKind ::Build & & * kind ! = TargetKind ::BuildScript {
// Only build scripts may depend on build dependencies.
continue ;
}
if dep . kind ! = DepKind ::Build & & * kind = = TargetKind ::BuildScript {
// Build scripts may only depend on build dependencies.
continue ;
}
add_dep ( & mut crate_graph , * from , name . clone ( ) , to )
2020-11-17 06:35:25 -06:00
}
}
}
}
2021-03-07 06:24:20 -06:00
if has_private {
// If the user provided a path to rustc sources, we add all the rustc_private crates
// and create dependencies on them for the crates which opt-in to that
if let Some ( rustc_workspace ) = rustc {
2021-03-07 06:59:15 -06:00
handle_rustc_crates (
rustc_workspace ,
load ,
& mut crate_graph ,
& cfg_options ,
2021-08-22 05:32:00 -05:00
load_proc_macro ,
2021-03-07 06:59:15 -06:00
& mut pkg_to_lib_crate ,
& public_deps ,
cargo ,
& pkg_crates ,
) ;
}
}
crate_graph
}
2021-05-23 12:56:54 -05:00
fn detached_files_to_crate_graph (
rustc_cfg : Vec < CfgFlag > ,
load : & mut dyn FnMut ( & AbsPath ) -> Option < FileId > ,
detached_files : & [ AbsPathBuf ] ,
sysroot : & Sysroot ,
) -> CrateGraph {
let _p = profile ::span ( " detached_files_to_crate_graph " ) ;
let mut crate_graph = CrateGraph ::default ( ) ;
let ( public_deps , _libproc_macro ) =
sysroot_to_crate_graph ( & mut crate_graph , sysroot , rustc_cfg . clone ( ) , load ) ;
let mut cfg_options = CfgOptions ::default ( ) ;
cfg_options . extend ( rustc_cfg ) ;
for detached_file in detached_files {
2021-06-12 22:54:16 -05:00
let file_id = match load ( detached_file ) {
2021-05-23 15:29:26 -05:00
Some ( file_id ) = > file_id ,
None = > {
2021-08-15 07:46:13 -05:00
tracing ::error! ( " Failed to load detached file {:?} " , detached_file ) ;
2021-05-23 15:29:26 -05:00
continue ;
}
} ;
let display_name = detached_file
. file_stem ( )
. and_then ( | os_str | os_str . to_str ( ) )
. map ( | file_stem | CrateDisplayName ::from_canonical_name ( file_stem . to_string ( ) ) ) ;
2021-05-23 12:56:54 -05:00
let detached_file_crate = crate_graph . add_crate_root (
file_id ,
2021-07-17 15:43:54 -05:00
Edition ::CURRENT ,
2021-05-23 15:29:26 -05:00
display_name ,
2021-10-30 09:17:04 -05:00
None ,
2021-05-23 12:56:54 -05:00
cfg_options . clone ( ) ,
2021-05-31 14:45:01 -05:00
cfg_options . clone ( ) ,
2021-05-23 12:56:54 -05:00
Env ::default ( ) ,
Vec ::new ( ) ,
2022-03-09 07:33:39 -06:00
false ,
2022-03-26 15:22:35 -05:00
CrateOrigin ::CratesIo { repo : None } ,
2021-05-23 12:56:54 -05:00
) ;
2021-09-28 14:39:41 -05:00
public_deps . add ( detached_file_crate , & mut crate_graph ) ;
2021-05-23 12:56:54 -05:00
}
crate_graph
}
2021-03-07 06:59:15 -06:00
fn handle_rustc_crates (
rustc_workspace : & CargoWorkspace ,
load : & mut dyn FnMut ( & AbsPath ) -> Option < FileId > ,
crate_graph : & mut CrateGraph ,
cfg_options : & CfgOptions ,
2022-01-04 13:40:16 -06:00
load_proc_macro : & mut dyn FnMut ( & str , & AbsPath ) -> Vec < ProcMacro > ,
2021-03-07 06:59:15 -06:00
pkg_to_lib_crate : & mut FxHashMap < la_arena ::Idx < crate ::PackageData > , CrateId > ,
2021-09-28 14:39:41 -05:00
public_deps : & SysrootPublicDeps ,
2021-03-07 06:59:15 -06:00
cargo : & CargoWorkspace ,
2021-05-12 07:16:51 -05:00
pkg_crates : & FxHashMap < la_arena ::Idx < crate ::PackageData > , Vec < ( CrateId , TargetKind ) > > ,
2021-03-07 06:59:15 -06:00
) {
let mut rustc_pkg_crates = FxHashMap ::default ( ) ;
// The root package of the rustc-dev component is rustc_driver, so we match that
let root_pkg =
rustc_workspace . packages ( ) . find ( | package | rustc_workspace [ * package ] . name = = " rustc_driver " ) ;
2021-03-07 07:13:54 -06:00
// The rustc workspace might be incomplete (such as if rustc-dev is not
// installed for the current toolchain) and `rustcSource` is set to discover.
2021-03-07 06:59:15 -06:00
if let Some ( root_pkg ) = root_pkg {
// Iterate through every crate in the dependency subtree of rustc_driver using BFS
let mut queue = VecDeque ::new ( ) ;
queue . push_back ( root_pkg ) ;
while let Some ( pkg ) = queue . pop_front ( ) {
// Don't duplicate packages if they are dependended on a diamond pattern
2021-03-07 07:13:54 -06:00
// N.B. if this line is ommitted, we try to analyse over 4_800_000 crates
// which is not ideal
2021-03-07 06:59:15 -06:00
if rustc_pkg_crates . contains_key ( & pkg ) {
continue ;
}
for dep in & rustc_workspace [ pkg ] . dependencies {
queue . push_back ( dep . pkg ) ;
}
for & tgt in rustc_workspace [ pkg ] . targets . iter ( ) {
if rustc_workspace [ tgt ] . kind ! = TargetKind ::Lib {
continue ;
}
if let Some ( file_id ) = load ( & rustc_workspace [ tgt ] . root ) {
let crate_id = add_target_crate_root (
crate_graph ,
& rustc_workspace [ pkg ] ,
2021-07-18 03:29:22 -05:00
None ,
2021-06-12 22:54:16 -05:00
cfg_options ,
2022-01-04 13:40:16 -06:00
& mut | path | load_proc_macro ( & rustc_workspace [ tgt ] . name , path ) ,
2021-03-07 06:59:15 -06:00
file_id ,
2021-05-11 16:34:56 -05:00
& rustc_workspace [ tgt ] . name ,
2022-03-09 07:33:39 -06:00
rustc_workspace [ tgt ] . is_proc_macro ,
2021-03-07 06:59:15 -06:00
) ;
pkg_to_lib_crate . insert ( pkg , crate_id ) ;
// Add dependencies on core / std / alloc for this crate
2021-09-28 14:39:41 -05:00
public_deps . add ( crate_id , crate_graph ) ;
2021-03-07 06:59:15 -06:00
rustc_pkg_crates . entry ( pkg ) . or_insert_with ( Vec ::new ) . push ( crate_id ) ;
2020-11-17 06:35:25 -06:00
}
}
2021-03-07 06:59:15 -06:00
}
}
// Now add a dep edge from all targets of upstream to the lib
// target of downstream.
for pkg in rustc_pkg_crates . keys ( ) . copied ( ) {
for dep in rustc_workspace [ pkg ] . dependencies . iter ( ) {
let name = CrateName ::new ( & dep . name ) . unwrap ( ) ;
if let Some ( & to ) = pkg_to_lib_crate . get ( & dep . pkg ) {
for & from in rustc_pkg_crates . get ( & pkg ) . into_iter ( ) . flatten ( ) {
add_dep ( crate_graph , from , name . clone ( ) , to ) ;
2020-11-17 06:35:25 -06:00
}
}
2021-03-07 06:59:15 -06:00
}
}
// Add a dependency on the rustc_private crates for all targets of each package
// which opts in
for dep in rustc_workspace . packages ( ) {
let name = CrateName ::normalize_dashes ( & rustc_workspace [ dep ] . name ) ;
if let Some ( & to ) = pkg_to_lib_crate . get ( & dep ) {
for pkg in cargo . packages ( ) {
let package = & cargo [ pkg ] ;
if ! package . metadata . rustc_private {
continue ;
}
2021-05-12 07:16:51 -05:00
for ( from , _ ) in pkg_crates . get ( & pkg ) . into_iter ( ) . flatten ( ) {
2021-03-07 06:59:15 -06:00
// Avoid creating duplicate dependencies
// This avoids the situation where `from` depends on e.g. `arrayvec`, but
// `rust_analyzer` thinks that it should use the one from the `rustcSource`
// instead of the one from `crates.io`
2021-05-12 07:16:51 -05:00
if ! crate_graph [ * from ] . dependencies . iter ( ) . any ( | d | d . name = = name ) {
add_dep ( crate_graph , * from , name . clone ( ) , to ) ;
2020-11-13 09:44:48 -06:00
}
}
}
}
}
}
fn add_target_crate_root (
crate_graph : & mut CrateGraph ,
2021-07-18 03:29:22 -05:00
pkg : & PackageData ,
build_data : Option < & BuildScriptOutput > ,
2020-11-13 09:44:48 -06:00
cfg_options : & CfgOptions ,
2021-08-22 05:32:00 -05:00
load_proc_macro : & mut dyn FnMut ( & AbsPath ) -> Vec < ProcMacro > ,
2020-11-17 08:25:46 -06:00
file_id : FileId ,
2021-05-11 16:34:56 -05:00
cargo_name : & str ,
2022-03-09 07:33:39 -06:00
is_proc_macro : bool ,
2020-11-17 08:25:46 -06:00
) -> CrateId {
let edition = pkg . edition ;
let cfg_options = {
let mut opts = cfg_options . clone ( ) ;
2021-01-21 05:12:19 -06:00
for feature in pkg . active_features . iter ( ) {
2020-11-17 08:25:46 -06:00
opts . insert_key_value ( " feature " . into ( ) , feature . into ( ) ) ;
}
2021-01-28 09:33:02 -06:00
if let Some ( cfgs ) = build_data . as_ref ( ) . map ( | it | & it . cfgs ) {
opts . extend ( cfgs . iter ( ) . cloned ( ) ) ;
}
2020-11-17 08:25:46 -06:00
opts
} ;
2020-12-07 13:52:31 -06:00
2020-11-17 08:25:46 -06:00
let mut env = Env ::default ( ) ;
2021-07-18 03:29:22 -05:00
inject_cargo_env ( pkg , & mut env ) ;
2021-01-28 09:33:02 -06:00
if let Some ( envs ) = build_data . map ( | it | & it . envs ) {
for ( k , v ) in envs {
env . set ( k , v . clone ( ) ) ;
}
2020-12-07 13:52:31 -06:00
}
2021-01-28 09:33:02 -06:00
let proc_macro = build_data
2021-01-22 05:11:01 -06:00
. as_ref ( )
2021-01-28 09:33:02 -06:00
. and_then ( | it | it . proc_macro_dylib_path . as_ref ( ) )
2021-08-22 05:32:00 -05:00
. map ( | it | load_proc_macro ( it ) )
2021-01-22 05:11:01 -06:00
. unwrap_or_default ( ) ;
2020-11-17 08:25:46 -06:00
2021-05-11 16:34:56 -05:00
let display_name = CrateDisplayName ::from_canonical_name ( cargo_name . to_string ( ) ) ;
2021-05-31 14:45:01 -05:00
let mut potential_cfg_options = cfg_options . clone ( ) ;
potential_cfg_options . extend (
pkg . features
. iter ( )
. map ( | feat | CfgFlag ::KeyValue { key : " feature " . into ( ) , value : feat . 0. into ( ) } ) ,
) ;
2021-09-19 12:00:06 -05:00
crate_graph . add_crate_root (
2020-11-17 08:25:46 -06:00
file_id ,
edition ,
Some ( display_name ) ,
2021-10-30 09:17:04 -05:00
Some ( pkg . version . to_string ( ) ) ,
2020-11-17 08:25:46 -06:00
cfg_options ,
2021-05-31 14:45:01 -05:00
potential_cfg_options ,
2020-11-17 08:25:46 -06:00
env ,
2020-12-12 11:27:09 -06:00
proc_macro ,
2022-03-09 07:33:39 -06:00
is_proc_macro ,
2021-11-29 01:40:39 -06:00
CrateOrigin ::CratesIo { repo : pkg . repository . clone ( ) } ,
2021-09-19 12:00:06 -05:00
)
2020-11-13 09:44:48 -06:00
}
2020-11-17 08:25:46 -06:00
2021-09-28 14:39:41 -05:00
#[ derive(Default) ]
struct SysrootPublicDeps {
deps : Vec < ( CrateName , CrateId , bool ) > ,
}
impl SysrootPublicDeps {
/// Makes `from` depend on the public sysroot crates.
fn add ( & self , from : CrateId , crate_graph : & mut CrateGraph ) {
for ( name , krate , prelude ) in & self . deps {
add_dep_with_prelude ( crate_graph , from , name . clone ( ) , * krate , * prelude ) ;
}
}
}
2020-11-13 09:44:48 -06:00
fn sysroot_to_crate_graph (
crate_graph : & mut CrateGraph ,
sysroot : & Sysroot ,
2021-01-18 05:52:12 -06:00
rustc_cfg : Vec < CfgFlag > ,
2020-11-13 09:44:48 -06:00
load : & mut dyn FnMut ( & AbsPath ) -> Option < FileId > ,
2021-09-28 14:39:41 -05:00
) -> ( SysrootPublicDeps , Option < CrateId > ) {
2021-01-18 04:25:57 -06:00
let _p = profile ::span ( " sysroot_to_crate_graph " ) ;
2020-11-13 09:44:48 -06:00
let mut cfg_options = CfgOptions ::default ( ) ;
2021-01-18 05:52:12 -06:00
cfg_options . extend ( rustc_cfg ) ;
2020-11-17 04:50:54 -06:00
let sysroot_crates : FxHashMap < SysrootCrate , CrateId > = sysroot
2020-11-13 09:44:48 -06:00
. crates ( )
. filter_map ( | krate | {
let file_id = load ( & sysroot [ krate ] . root ) ? ;
let env = Env ::default ( ) ;
let proc_macro = vec! [ ] ;
2020-11-17 04:50:54 -06:00
let display_name = CrateDisplayName ::from_canonical_name ( sysroot [ krate ] . name . clone ( ) ) ;
2020-11-13 09:44:48 -06:00
let crate_id = crate_graph . add_crate_root (
file_id ,
2021-07-17 15:43:54 -05:00
Edition ::CURRENT ,
2020-11-17 04:50:54 -06:00
Some ( display_name ) ,
2021-10-30 09:17:04 -05:00
None ,
2020-11-13 09:44:48 -06:00
cfg_options . clone ( ) ,
2021-05-31 14:45:01 -05:00
cfg_options . clone ( ) ,
2020-11-13 09:44:48 -06:00
env ,
proc_macro ,
2022-03-09 07:33:39 -06:00
false ,
2022-03-26 15:22:35 -05:00
CrateOrigin ::Lang ( match & * sysroot [ krate ] . name {
" alloc " = > LangCrateOrigin ::Alloc ,
" core " = > LangCrateOrigin ::Core ,
" proc_macro " = > LangCrateOrigin ::ProcMacro ,
" std " = > LangCrateOrigin ::Std ,
" test " = > LangCrateOrigin ::Test ,
_ = > LangCrateOrigin ::Other ,
} ) ,
2020-11-13 09:44:48 -06:00
) ;
Some ( ( krate , crate_id ) )
} )
. collect ( ) ;
for from in sysroot . crates ( ) {
for & to in sysroot [ from ] . deps . iter ( ) {
let name = CrateName ::new ( & sysroot [ to ] . name ) . unwrap ( ) ;
if let ( Some ( & from ) , Some ( & to ) ) = ( sysroot_crates . get ( & from ) , sysroot_crates . get ( & to ) ) {
2020-11-17 04:50:54 -06:00
add_dep ( crate_graph , from , name , to ) ;
2020-11-13 09:44:48 -06:00
}
}
}
2021-09-28 14:39:41 -05:00
let public_deps = SysrootPublicDeps {
deps : sysroot
. public_deps ( )
. map ( | ( name , idx , prelude ) | {
( CrateName ::new ( name ) . unwrap ( ) , sysroot_crates [ & idx ] , prelude )
} )
. collect ::< Vec < _ > > ( ) ,
} ;
2020-11-13 09:44:48 -06:00
let libproc_macro = sysroot . proc_macro ( ) . and_then ( | it | sysroot_crates . get ( & it ) . copied ( ) ) ;
( public_deps , libproc_macro )
}
2020-11-17 04:50:54 -06:00
fn add_dep ( graph : & mut CrateGraph , from : CrateId , name : CrateName , to : CrateId ) {
2021-09-28 14:39:41 -05:00
add_dep_inner ( graph , from , Dependency ::new ( name , to ) )
}
fn add_dep_with_prelude (
graph : & mut CrateGraph ,
from : CrateId ,
name : CrateName ,
to : CrateId ,
prelude : bool ,
) {
add_dep_inner ( graph , from , Dependency ::with_prelude ( name , to , prelude ) )
}
fn add_dep_inner ( graph : & mut CrateGraph , from : CrateId , dep : Dependency ) {
if let Err ( err ) = graph . add_dep ( from , dep ) {
2021-08-15 07:46:13 -05:00
tracing ::error! ( " {} " , err )
2020-11-17 04:50:54 -06:00
}
}
2021-07-18 03:29:22 -05:00
/// Recreates the compile-time environment variables that Cargo sets.
///
/// Should be synced with
/// <https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates>
///
/// FIXME: ask Cargo to provide this data instead of re-deriving.
fn inject_cargo_env ( package : & PackageData , env : & mut Env ) {
// FIXME: Missing variables:
// CARGO_BIN_NAME, CARGO_BIN_EXE_<name>
2021-07-19 13:20:10 -05:00
let manifest_dir = package . manifest . parent ( ) ;
2021-09-19 12:00:06 -05:00
env . set ( " CARGO_MANIFEST_DIR " , manifest_dir . as_os_str ( ) . to_string_lossy ( ) . into_owned ( ) ) ;
2021-07-18 03:29:22 -05:00
// Not always right, but works for common cases.
2021-09-19 12:00:06 -05:00
env . set ( " CARGO " , " cargo " . into ( ) ) ;
2021-07-18 03:29:22 -05:00
2021-09-19 12:00:06 -05:00
env . set ( " CARGO_PKG_VERSION " , package . version . to_string ( ) ) ;
env . set ( " CARGO_PKG_VERSION_MAJOR " , package . version . major . to_string ( ) ) ;
env . set ( " CARGO_PKG_VERSION_MINOR " , package . version . minor . to_string ( ) ) ;
env . set ( " CARGO_PKG_VERSION_PATCH " , package . version . patch . to_string ( ) ) ;
env . set ( " CARGO_PKG_VERSION_PRE " , package . version . pre . to_string ( ) ) ;
2021-07-18 03:29:22 -05:00
2021-09-19 12:00:06 -05:00
env . set ( " CARGO_PKG_AUTHORS " , String ::new ( ) ) ;
2021-07-18 03:29:22 -05:00
2021-09-19 12:00:06 -05:00
env . set ( " CARGO_PKG_NAME " , package . name . clone ( ) ) ;
2021-07-18 03:29:22 -05:00
// FIXME: This isn't really correct (a package can have many crates with different names), but
// it's better than leaving the variable unset.
2021-09-19 12:00:06 -05:00
env . set ( " CARGO_CRATE_NAME " , CrateName ::normalize_dashes ( & package . name ) . to_string ( ) ) ;
env . set ( " CARGO_PKG_DESCRIPTION " , String ::new ( ) ) ;
env . set ( " CARGO_PKG_HOMEPAGE " , String ::new ( ) ) ;
env . set ( " CARGO_PKG_REPOSITORY " , String ::new ( ) ) ;
env . set ( " CARGO_PKG_LICENSE " , String ::new ( ) ) ;
2021-07-18 03:29:22 -05:00
2021-09-19 12:00:06 -05:00
env . set ( " CARGO_PKG_LICENSE_FILE " , String ::new ( ) ) ;
2021-07-18 03:29:22 -05:00
}