2019-09-30 08:58:53 +00:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2019-02-05 22:10:49 +00:00
|
|
|
mod cargo_workspace;
|
2019-03-05 21:29:23 +00:00
|
|
|
mod json_project;
|
2019-02-05 22:10:49 +00:00
|
|
|
mod sysroot;
|
|
|
|
|
2019-03-05 21:29:23 +00:00
|
|
|
use std::{
|
2020-02-27 21:52:10 +00:00
|
|
|
fs::{read_dir, File, ReadDir},
|
2020-04-16 20:19:38 +00:00
|
|
|
io::{self, BufReader},
|
2019-03-05 21:29:23 +00:00
|
|
|
path::{Path, PathBuf},
|
2020-05-08 12:54:29 +00:00
|
|
|
process::{Command, Output},
|
2019-03-05 21:29:23 +00:00
|
|
|
};
|
2019-02-05 22:10:49 +00:00
|
|
|
|
2020-02-13 10:10:50 +00:00
|
|
|
use anyhow::{bail, Context, Result};
|
2019-09-29 23:38:16 +00:00
|
|
|
use ra_cfg::CfgOptions;
|
2020-03-11 03:04:02 +00:00
|
|
|
use ra_db::{CrateGraph, CrateName, Edition, Env, ExternSource, ExternSourceId, FileId};
|
2019-08-06 08:55:59 +00:00
|
|
|
use rustc_hash::FxHashMap;
|
|
|
|
use serde_json::from_reader;
|
2019-03-21 08:43:47 +00:00
|
|
|
|
2019-02-05 22:10:49 +00:00
|
|
|
pub use crate::{
|
2020-04-01 16:51:16 +00:00
|
|
|
cargo_workspace::{CargoConfig, CargoWorkspace, Package, Target, TargetKind},
|
2019-03-05 21:29:23 +00:00
|
|
|
json_project::JsonProject,
|
2019-02-05 22:10:49 +00:00
|
|
|
sysroot::Sysroot,
|
|
|
|
};
|
2020-03-18 12:56:46 +00:00
|
|
|
pub use ra_proc_macro::ProcMacroClient;
|
2019-02-05 22:10:49 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2019-03-05 21:29:23 +00:00
|
|
|
pub enum ProjectWorkspace {
|
|
|
|
/// Project workspace was discovered by running `cargo metadata` and `rustc --print sysroot`.
|
|
|
|
Cargo { cargo: CargoWorkspace, sysroot: Sysroot },
|
|
|
|
/// Project workspace was manually specified using a `rust-project.json` file.
|
|
|
|
Json { project: JsonProject },
|
2019-02-05 22:10:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-06 08:50:32 +00:00
|
|
|
/// `PackageRoot` describes a package root folder.
|
2019-03-19 13:14:16 +00:00
|
|
|
/// Which may be an external dependency, or a member of
|
|
|
|
/// the current workspace.
|
2019-06-16 16:19:38 +00:00
|
|
|
#[derive(Clone)]
|
2019-08-06 08:50:32 +00:00
|
|
|
pub struct PackageRoot {
|
2019-03-19 13:14:16 +00:00
|
|
|
/// Path to the root folder
|
2020-04-01 10:40:40 +00:00
|
|
|
path: PathBuf,
|
2019-03-19 13:14:16 +00:00
|
|
|
/// Is a member of the current workspace
|
2020-04-01 10:40:40 +00:00
|
|
|
is_member: bool,
|
2019-03-19 13:14:16 +00:00
|
|
|
}
|
2019-08-06 08:50:32 +00:00
|
|
|
impl PackageRoot {
|
2020-03-31 23:15:20 +00:00
|
|
|
pub fn new_member(path: PathBuf) -> PackageRoot {
|
|
|
|
Self { path, is_member: true }
|
2019-03-19 13:14:16 +00:00
|
|
|
}
|
2020-03-31 23:15:20 +00:00
|
|
|
pub fn new_non_member(path: PathBuf) -> PackageRoot {
|
|
|
|
Self { path, is_member: false }
|
2019-03-19 13:14:16 +00:00
|
|
|
}
|
2020-04-01 10:40:40 +00:00
|
|
|
pub fn path(&self) -> &Path {
|
|
|
|
&self.path
|
|
|
|
}
|
|
|
|
pub fn is_member(&self) -> bool {
|
|
|
|
self.is_member
|
|
|
|
}
|
2019-03-19 13:14:16 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 20:02:10 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum ProjectRoot {
|
|
|
|
ProjectJson(PathBuf),
|
|
|
|
CargoToml(PathBuf),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ProjectRoot {
|
|
|
|
pub fn from_manifest_file(path: PathBuf) -> Result<ProjectRoot> {
|
|
|
|
if path.ends_with("rust-project.json") {
|
|
|
|
return Ok(ProjectRoot::ProjectJson(path));
|
|
|
|
}
|
|
|
|
if path.ends_with("Cargo.toml") {
|
|
|
|
return Ok(ProjectRoot::CargoToml(path));
|
|
|
|
}
|
|
|
|
bail!("project root must point to Cargo.toml or rust-project.json: {}", path.display())
|
2019-08-19 12:41:18 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 20:19:38 +00:00
|
|
|
pub fn discover_single(path: &Path) -> Result<ProjectRoot> {
|
|
|
|
let mut candidates = ProjectRoot::discover(path)?;
|
|
|
|
let res = match candidates.pop() {
|
|
|
|
None => bail!("no projects"),
|
|
|
|
Some(it) => it,
|
|
|
|
};
|
|
|
|
|
|
|
|
if !candidates.is_empty() {
|
|
|
|
bail!("more than one project")
|
|
|
|
}
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn discover(path: &Path) -> io::Result<Vec<ProjectRoot>> {
|
2020-04-16 20:02:10 +00:00
|
|
|
if let Some(project_json) = find_rust_project_json(path) {
|
2020-04-16 20:19:38 +00:00
|
|
|
return Ok(vec![ProjectRoot::ProjectJson(project_json)]);
|
2020-04-16 20:02:10 +00:00
|
|
|
}
|
2020-04-16 20:19:38 +00:00
|
|
|
return find_cargo_toml(path)
|
|
|
|
.map(|paths| paths.into_iter().map(ProjectRoot::CargoToml).collect());
|
2020-04-16 20:02:10 +00:00
|
|
|
|
|
|
|
fn find_rust_project_json(path: &Path) -> Option<PathBuf> {
|
|
|
|
if path.ends_with("rust-project.json") {
|
|
|
|
return Some(path.to_path_buf());
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut curr = Some(path);
|
|
|
|
while let Some(path) = curr {
|
|
|
|
let candidate = path.join("rust-project.json");
|
|
|
|
if candidate.exists() {
|
|
|
|
return Some(candidate);
|
|
|
|
}
|
|
|
|
curr = path.parent();
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-04-16 20:19:38 +00:00
|
|
|
fn find_cargo_toml(path: &Path) -> io::Result<Vec<PathBuf>> {
|
2020-04-16 20:02:10 +00:00
|
|
|
if path.ends_with("Cargo.toml") {
|
2020-04-16 20:19:38 +00:00
|
|
|
return Ok(vec![path.to_path_buf()]);
|
2020-04-16 20:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(p) = find_cargo_toml_in_parent_dir(path) {
|
2020-04-16 20:19:38 +00:00
|
|
|
return Ok(vec![p]);
|
2020-04-16 20:02:10 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 20:19:38 +00:00
|
|
|
let entities = read_dir(path)?;
|
|
|
|
Ok(find_cargo_toml_in_child_dir(entities))
|
2020-04-16 20:02:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn find_cargo_toml_in_parent_dir(path: &Path) -> Option<PathBuf> {
|
|
|
|
let mut curr = Some(path);
|
|
|
|
while let Some(path) = curr {
|
|
|
|
let candidate = path.join("Cargo.toml");
|
|
|
|
if candidate.exists() {
|
|
|
|
return Some(candidate);
|
|
|
|
}
|
|
|
|
curr = path.parent();
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find_cargo_toml_in_child_dir(entities: ReadDir) -> Vec<PathBuf> {
|
|
|
|
// Only one level down to avoid cycles the easy way and stop a runaway scan with large projects
|
|
|
|
let mut valid_canditates = vec![];
|
|
|
|
for entity in entities.filter_map(Result::ok) {
|
|
|
|
let candidate = entity.path().join("Cargo.toml");
|
|
|
|
if candidate.exists() {
|
|
|
|
valid_canditates.push(candidate)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
valid_canditates
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ProjectWorkspace {
|
|
|
|
pub fn load(
|
|
|
|
root: ProjectRoot,
|
2020-04-01 16:51:16 +00:00
|
|
|
cargo_features: &CargoConfig,
|
2020-04-16 20:02:10 +00:00
|
|
|
with_sysroot: bool,
|
2020-01-08 13:04:47 +00:00
|
|
|
) -> Result<ProjectWorkspace> {
|
2020-04-16 20:02:10 +00:00
|
|
|
let res = match root {
|
|
|
|
ProjectRoot::ProjectJson(project_json) => {
|
|
|
|
let file = File::open(&project_json).with_context(|| {
|
|
|
|
format!("Failed to open json file {}", project_json.display())
|
|
|
|
})?;
|
2019-03-05 21:29:23 +00:00
|
|
|
let reader = BufReader::new(file);
|
2020-04-16 20:02:10 +00:00
|
|
|
ProjectWorkspace::Json {
|
2020-02-13 10:10:50 +00:00
|
|
|
project: from_reader(reader).with_context(|| {
|
2020-04-16 20:02:10 +00:00
|
|
|
format!("Failed to deserialize json file {}", project_json.display())
|
2020-02-13 10:10:50 +00:00
|
|
|
})?,
|
2020-04-16 20:02:10 +00:00
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
2020-04-16 20:02:10 +00:00
|
|
|
ProjectRoot::CargoToml(cargo_toml) => {
|
2020-02-13 10:10:50 +00:00
|
|
|
let cargo = CargoWorkspace::from_cargo_metadata(&cargo_toml, cargo_features)
|
|
|
|
.with_context(|| {
|
|
|
|
format!(
|
|
|
|
"Failed to read Cargo metadata from Cargo.toml file {}",
|
|
|
|
cargo_toml.display()
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
let sysroot = if with_sysroot {
|
|
|
|
Sysroot::discover(&cargo_toml).with_context(|| {
|
|
|
|
format!(
|
2020-02-23 14:51:32 +00:00
|
|
|
"Failed to find sysroot for Cargo.toml file {}. Is rust-src installed?",
|
2020-02-13 10:10:50 +00:00
|
|
|
cargo_toml.display()
|
|
|
|
)
|
|
|
|
})?
|
|
|
|
} else {
|
|
|
|
Sysroot::default()
|
|
|
|
};
|
2020-04-16 20:02:10 +00:00
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot }
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
2020-04-16 20:02:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Ok(res)
|
2019-02-05 22:10:49 +00:00
|
|
|
}
|
2019-02-06 21:54:33 +00:00
|
|
|
|
2019-08-06 08:50:32 +00:00
|
|
|
/// Returns the roots for the current `ProjectWorkspace`
|
2019-03-19 13:14:16 +00:00
|
|
|
/// The return type contains the path and whether or not
|
|
|
|
/// the root is a member of the current workspace
|
2019-08-06 08:50:32 +00:00
|
|
|
pub fn to_roots(&self) -> Vec<PackageRoot> {
|
2019-03-05 21:29:23 +00:00
|
|
|
match self {
|
|
|
|
ProjectWorkspace::Json { project } => {
|
2020-03-31 23:15:20 +00:00
|
|
|
project.roots.iter().map(|r| PackageRoot::new_member(r.path.clone())).collect()
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
2020-03-31 23:15:20 +00:00
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot } => cargo
|
|
|
|
.packages()
|
|
|
|
.map(|pkg| PackageRoot {
|
|
|
|
path: cargo[pkg].root().to_path_buf(),
|
|
|
|
is_member: cargo[pkg].is_member,
|
|
|
|
})
|
|
|
|
.chain(sysroot.crates().map(|krate| {
|
|
|
|
PackageRoot::new_non_member(sysroot[krate].root_dir().to_path_buf())
|
|
|
|
}))
|
|
|
|
.collect(),
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
2019-02-06 21:54:33 +00:00
|
|
|
|
2020-03-16 12:43:29 +00:00
|
|
|
pub fn out_dirs(&self) -> Vec<PathBuf> {
|
|
|
|
match self {
|
2020-03-16 13:17:32 +00:00
|
|
|
ProjectWorkspace::Json { project } => {
|
2020-03-31 23:52:44 +00:00
|
|
|
project.crates.iter().filter_map(|krate| krate.out_dir.as_ref()).cloned().collect()
|
2020-03-16 13:17:32 +00:00
|
|
|
}
|
2020-03-31 23:52:44 +00:00
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot: _ } => {
|
|
|
|
cargo.packages().filter_map(|pkg| cargo[pkg].out_dir.as_ref()).cloned().collect()
|
2020-03-16 12:43:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-18 12:56:46 +00:00
|
|
|
pub fn proc_macro_dylib_paths(&self) -> Vec<PathBuf> {
|
|
|
|
match self {
|
2020-04-01 00:01:30 +00:00
|
|
|
ProjectWorkspace::Json { project } => project
|
|
|
|
.crates
|
|
|
|
.iter()
|
|
|
|
.filter_map(|krate| krate.proc_macro_dylib_path.as_ref())
|
|
|
|
.cloned()
|
|
|
|
.collect(),
|
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot: _sysroot } => cargo
|
|
|
|
.packages()
|
|
|
|
.filter_map(|pkg| cargo[pkg].proc_macro_dylib_path.as_ref())
|
|
|
|
.cloned()
|
|
|
|
.collect(),
|
2020-03-18 12:56:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-06 08:54:51 +00:00
|
|
|
pub fn n_packages(&self) -> usize {
|
2019-03-05 21:29:23 +00:00
|
|
|
match self {
|
|
|
|
ProjectWorkspace::Json { project } => project.crates.len(),
|
2019-08-06 08:54:51 +00:00
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot } => {
|
|
|
|
cargo.packages().len() + sysroot.crates().len()
|
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 06:48:45 +00:00
|
|
|
pub fn to_crate_graph(
|
|
|
|
&self,
|
2019-10-02 18:02:53 +00:00
|
|
|
default_cfg_options: &CfgOptions,
|
2020-03-16 12:43:29 +00:00
|
|
|
extern_source_roots: &FxHashMap<PathBuf, ExternSourceId>,
|
2020-03-18 12:56:46 +00:00
|
|
|
proc_macro_client: &ProcMacroClient,
|
2019-09-08 06:48:45 +00:00
|
|
|
load: &mut dyn FnMut(&Path) -> Option<FileId>,
|
2020-03-08 13:26:57 +00:00
|
|
|
) -> CrateGraph {
|
2019-03-05 21:29:23 +00:00
|
|
|
let mut crate_graph = CrateGraph::default();
|
|
|
|
match self {
|
|
|
|
ProjectWorkspace::Json { project } => {
|
2020-04-01 00:13:39 +00:00
|
|
|
let crates: FxHashMap<_, _> = project
|
|
|
|
.crates
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.filter_map(|(seq_index, krate)| {
|
|
|
|
let file_id = load(&krate.root_module)?;
|
2019-03-05 21:29:23 +00:00
|
|
|
let edition = match krate.edition {
|
|
|
|
json_project::Edition::Edition2015 => Edition::Edition2015,
|
|
|
|
json_project::Edition::Edition2018 => Edition::Edition2018,
|
|
|
|
};
|
2019-10-08 11:22:49 +00:00
|
|
|
let cfg_options = {
|
|
|
|
let mut opts = default_cfg_options.clone();
|
|
|
|
for name in &krate.atom_cfgs {
|
|
|
|
opts.insert_atom(name.into());
|
|
|
|
}
|
|
|
|
for (key, value) in &krate.key_value_cfgs {
|
|
|
|
opts.insert_key_value(key.into(), value.into());
|
|
|
|
}
|
|
|
|
opts
|
|
|
|
};
|
2020-03-10 14:00:58 +00:00
|
|
|
|
2020-03-16 13:17:32 +00:00
|
|
|
let mut env = Env::default();
|
|
|
|
let mut extern_source = ExternSource::default();
|
|
|
|
if let Some(out_dir) = &krate.out_dir {
|
2020-04-24 18:48:30 +00:00
|
|
|
// NOTE: cargo and rustc seem to hide non-UTF-8 strings from env! and option_env!()
|
|
|
|
if let Some(out_dir) = out_dir.to_str().map(|s| s.to_owned()) {
|
|
|
|
env.set("OUT_DIR", out_dir);
|
|
|
|
}
|
2020-03-16 13:17:32 +00:00
|
|
|
if let Some(&extern_source_id) = extern_source_roots.get(out_dir) {
|
|
|
|
extern_source.set_extern_path(&out_dir, extern_source_id);
|
|
|
|
}
|
|
|
|
}
|
2020-03-18 12:56:46 +00:00
|
|
|
let proc_macro = krate
|
|
|
|
.proc_macro_dylib_path
|
|
|
|
.clone()
|
|
|
|
.map(|it| proc_macro_client.by_dylib_path(&it));
|
2020-03-10 14:00:58 +00:00
|
|
|
// FIXME: No crate name in json definition such that we cannot add OUT_DIR to env
|
2020-04-01 00:13:39 +00:00
|
|
|
Some((
|
|
|
|
json_project::CrateId(seq_index),
|
2019-11-22 10:55:03 +00:00
|
|
|
crate_graph.add_crate_root(
|
|
|
|
file_id,
|
|
|
|
edition,
|
2020-03-08 13:26:57 +00:00
|
|
|
// FIXME json definitions can store the crate name
|
|
|
|
None,
|
2019-11-22 10:55:03 +00:00
|
|
|
cfg_options,
|
2020-03-16 13:17:32 +00:00
|
|
|
env,
|
|
|
|
extern_source,
|
2020-03-18 12:56:46 +00:00
|
|
|
proc_macro.unwrap_or_default(),
|
2019-11-22 10:55:03 +00:00
|
|
|
),
|
2020-04-01 00:13:39 +00:00
|
|
|
))
|
|
|
|
})
|
|
|
|
.collect();
|
2019-02-06 21:54:33 +00:00
|
|
|
|
2019-03-05 21:29:23 +00:00
|
|
|
for (id, krate) in project.crates.iter().enumerate() {
|
|
|
|
for dep in &krate.deps {
|
|
|
|
let from_crate_id = json_project::CrateId(id);
|
|
|
|
let to_crate_id = dep.krate;
|
|
|
|
if let (Some(&from), Some(&to)) =
|
|
|
|
(crates.get(&from_crate_id), crates.get(&to_crate_id))
|
2019-02-06 21:54:33 +00:00
|
|
|
{
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph
|
|
|
|
.add_dep(from, CrateName::new(&dep.name).unwrap(), to)
|
|
|
|
.is_err()
|
2020-02-05 10:47:28 +00:00
|
|
|
{
|
2019-03-05 21:29:23 +00:00
|
|
|
log::error!(
|
|
|
|
"cyclic dependency {:?} -> {:?}",
|
|
|
|
from_crate_id,
|
|
|
|
to_crate_id
|
|
|
|
);
|
|
|
|
}
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot } => {
|
2020-04-01 00:13:39 +00:00
|
|
|
let sysroot_crates: FxHashMap<_, _> = sysroot
|
|
|
|
.crates()
|
|
|
|
.filter_map(|krate| {
|
|
|
|
let file_id = load(&sysroot[krate].root)?;
|
|
|
|
|
2019-09-29 23:38:16 +00:00
|
|
|
// Crates from sysroot have `cfg(test)` disabled
|
2019-10-08 11:22:49 +00:00
|
|
|
let cfg_options = {
|
|
|
|
let mut opts = default_cfg_options.clone();
|
|
|
|
opts.remove_atom("test");
|
|
|
|
opts
|
|
|
|
};
|
|
|
|
|
2020-03-16 13:10:13 +00:00
|
|
|
let env = Env::default();
|
|
|
|
let extern_source = ExternSource::default();
|
2020-03-18 12:56:46 +00:00
|
|
|
let proc_macro = vec![];
|
2020-04-01 00:13:39 +00:00
|
|
|
let crate_name = CrateName::new(&sysroot[krate].name)
|
|
|
|
.expect("Sysroot crate names should not contain dashes");
|
2020-03-18 12:56:46 +00:00
|
|
|
|
2019-11-22 10:55:03 +00:00
|
|
|
let crate_id = crate_graph.add_crate_root(
|
|
|
|
file_id,
|
|
|
|
Edition::Edition2018,
|
2020-04-01 00:13:39 +00:00
|
|
|
Some(crate_name),
|
2019-11-22 10:55:03 +00:00
|
|
|
cfg_options,
|
2020-03-10 14:00:58 +00:00
|
|
|
env,
|
2020-03-11 03:04:02 +00:00
|
|
|
extern_source,
|
2020-03-18 12:56:46 +00:00
|
|
|
proc_macro,
|
2019-11-22 10:55:03 +00:00
|
|
|
);
|
2020-04-01 00:13:39 +00:00
|
|
|
Some((krate, crate_id))
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
2019-03-05 21:29:23 +00:00
|
|
|
for from in sysroot.crates() {
|
2020-03-19 16:59:31 +00:00
|
|
|
for &to in sysroot[from].deps.iter() {
|
|
|
|
let name = &sysroot[to].name;
|
2019-03-05 21:29:23 +00:00
|
|
|
if let (Some(&from), Some(&to)) =
|
|
|
|
(sysroot_crates.get(&from), sysroot_crates.get(&to))
|
|
|
|
{
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph.add_dep(from, CrateName::new(name).unwrap(), to).is_err()
|
2020-02-05 10:47:28 +00:00
|
|
|
{
|
2019-03-05 21:29:23 +00:00
|
|
|
log::error!("cyclic dependency between sysroot crates")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-09 23:22:19 +00:00
|
|
|
let libcore = sysroot.core().and_then(|it| sysroot_crates.get(&it).copied());
|
2019-11-24 12:19:47 +00:00
|
|
|
let liballoc = sysroot.alloc().and_then(|it| sysroot_crates.get(&it).copied());
|
2019-07-04 17:26:44 +00:00
|
|
|
let libstd = sysroot.std().and_then(|it| sysroot_crates.get(&it).copied());
|
2019-11-24 10:33:12 +00:00
|
|
|
let libproc_macro =
|
|
|
|
sysroot.proc_macro().and_then(|it| sysroot_crates.get(&it).copied());
|
2019-03-05 21:29:23 +00:00
|
|
|
|
|
|
|
let mut pkg_to_lib_crate = FxHashMap::default();
|
|
|
|
let mut pkg_crates = FxHashMap::default();
|
|
|
|
// Next, create crates for each package, target pair
|
|
|
|
for pkg in cargo.packages() {
|
|
|
|
let mut lib_tgt = None;
|
2020-03-19 16:53:31 +00:00
|
|
|
for &tgt in cargo[pkg].targets.iter() {
|
|
|
|
let root = cargo[tgt].root.as_path();
|
2019-03-05 21:29:23 +00:00
|
|
|
if let Some(file_id) = load(root) {
|
2020-03-19 16:53:31 +00:00
|
|
|
let edition = cargo[pkg].edition;
|
2019-10-08 11:22:49 +00:00
|
|
|
let cfg_options = {
|
|
|
|
let mut opts = default_cfg_options.clone();
|
2020-05-08 00:56:53 +00:00
|
|
|
for feature in cargo[pkg].features.iter() {
|
|
|
|
opts.insert_key_value("feature".into(), feature.into());
|
|
|
|
}
|
|
|
|
for cfg in cargo[pkg].cfgs.iter() {
|
|
|
|
match cfg.find('=') {
|
|
|
|
Some(split) => opts.insert_key_value(
|
|
|
|
cfg[..split].into(),
|
|
|
|
cfg[split + 1..].trim_matches('"').into(),
|
|
|
|
),
|
|
|
|
None => opts.insert_atom(cfg.into()),
|
|
|
|
};
|
|
|
|
}
|
2019-10-08 11:22:49 +00:00
|
|
|
opts
|
|
|
|
};
|
2020-03-10 14:00:58 +00:00
|
|
|
let mut env = Env::default();
|
2020-03-11 03:04:02 +00:00
|
|
|
let mut extern_source = ExternSource::default();
|
2020-03-19 16:53:31 +00:00
|
|
|
if let Some(out_dir) = &cargo[pkg].out_dir {
|
2020-04-24 18:48:30 +00:00
|
|
|
// NOTE: cargo and rustc seem to hide non-UTF-8 strings from env! and option_env!()
|
|
|
|
if let Some(out_dir) = out_dir.to_str().map(|s| s.to_owned()) {
|
|
|
|
env.set("OUT_DIR", out_dir);
|
|
|
|
}
|
2020-03-16 13:10:13 +00:00
|
|
|
if let Some(&extern_source_id) = extern_source_roots.get(out_dir) {
|
|
|
|
extern_source.set_extern_path(&out_dir, extern_source_id);
|
2020-03-16 12:43:29 +00:00
|
|
|
}
|
2020-03-10 14:00:58 +00:00
|
|
|
}
|
2020-03-18 12:56:46 +00:00
|
|
|
let proc_macro = cargo[pkg]
|
|
|
|
.proc_macro_dylib_path
|
|
|
|
.as_ref()
|
|
|
|
.map(|it| proc_macro_client.by_dylib_path(&it))
|
|
|
|
.unwrap_or_default();
|
|
|
|
|
2019-11-22 10:55:03 +00:00
|
|
|
let crate_id = crate_graph.add_crate_root(
|
|
|
|
file_id,
|
|
|
|
edition,
|
2020-03-19 16:53:31 +00:00
|
|
|
Some(CrateName::normalize_dashes(&cargo[pkg].name)),
|
2019-11-22 10:55:03 +00:00
|
|
|
cfg_options,
|
2020-03-10 14:00:58 +00:00
|
|
|
env,
|
2020-03-11 03:04:02 +00:00
|
|
|
extern_source,
|
2020-03-18 12:56:46 +00:00
|
|
|
proc_macro.clone(),
|
2019-11-22 10:55:03 +00:00
|
|
|
);
|
2020-03-19 16:53:31 +00:00
|
|
|
if cargo[tgt].kind == TargetKind::Lib {
|
2020-03-21 17:09:38 +00:00
|
|
|
lib_tgt = Some((crate_id, cargo[tgt].name.clone()));
|
2019-03-05 21:29:23 +00:00
|
|
|
pkg_to_lib_crate.insert(pkg, crate_id);
|
|
|
|
}
|
2020-03-19 16:53:31 +00:00
|
|
|
if cargo[tgt].is_proc_macro {
|
2019-11-24 10:33:12 +00:00
|
|
|
if let Some(proc_macro) = libproc_macro {
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph
|
|
|
|
.add_dep(
|
|
|
|
crate_id,
|
|
|
|
CrateName::new("proc_macro").unwrap(),
|
|
|
|
proc_macro,
|
|
|
|
)
|
|
|
|
.is_err()
|
|
|
|
{
|
2019-11-24 10:33:12 +00:00
|
|
|
log::error!(
|
|
|
|
"cyclic dependency on proc_macro for {}",
|
2020-03-19 16:53:31 +00:00
|
|
|
&cargo[pkg].name
|
2019-11-24 10:33:12 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 21:29:23 +00:00
|
|
|
pkg_crates.entry(pkg).or_insert_with(Vec::new).push(crate_id);
|
|
|
|
}
|
|
|
|
}
|
2019-02-06 21:54:33 +00:00
|
|
|
|
2019-11-09 23:22:19 +00:00
|
|
|
// Set deps to the core, std and to the lib target of the current package
|
2019-02-06 21:54:33 +00:00
|
|
|
for &from in pkg_crates.get(&pkg).into_iter().flatten() {
|
2020-03-21 17:09:38 +00:00
|
|
|
if let Some((to, name)) = lib_tgt.clone() {
|
2020-02-18 13:32:19 +00:00
|
|
|
if to != from
|
|
|
|
&& crate_graph
|
|
|
|
.add_dep(
|
|
|
|
from,
|
|
|
|
// For root projects with dashes in their name,
|
|
|
|
// cargo metadata does not do any normalization,
|
|
|
|
// so we do it ourselves currently
|
2020-03-21 17:09:38 +00:00
|
|
|
CrateName::normalize_dashes(&name),
|
2020-02-18 13:32:19 +00:00
|
|
|
to,
|
|
|
|
)
|
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
{
|
2019-03-05 21:29:23 +00:00
|
|
|
log::error!(
|
|
|
|
"cyclic dependency between targets of {}",
|
2020-03-19 16:53:31 +00:00
|
|
|
&cargo[pkg].name
|
2019-03-05 21:29:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-10 21:15:47 +00:00
|
|
|
// core is added as a dependency before std in order to
|
|
|
|
// mimic rustcs dependency order
|
2019-11-09 23:22:19 +00:00
|
|
|
if let Some(core) = libcore {
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph
|
|
|
|
.add_dep(from, CrateName::new("core").unwrap(), core)
|
|
|
|
.is_err()
|
2020-02-05 10:47:28 +00:00
|
|
|
{
|
2020-03-19 16:53:31 +00:00
|
|
|
log::error!("cyclic dependency on core for {}", &cargo[pkg].name)
|
2019-11-24 12:19:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(alloc) = liballoc {
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph
|
|
|
|
.add_dep(from, CrateName::new("alloc").unwrap(), alloc)
|
|
|
|
.is_err()
|
2020-02-05 10:47:28 +00:00
|
|
|
{
|
2020-03-19 16:53:31 +00:00
|
|
|
log::error!("cyclic dependency on alloc for {}", &cargo[pkg].name)
|
2019-11-09 23:22:19 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
if let Some(std) = libstd {
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph
|
|
|
|
.add_dep(from, CrateName::new("std").unwrap(), std)
|
|
|
|
.is_err()
|
2020-02-05 10:47:28 +00:00
|
|
|
{
|
2020-03-19 16:53:31 +00:00
|
|
|
log::error!("cyclic dependency on std for {}", &cargo[pkg].name)
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 06:48:45 +00:00
|
|
|
// Now add a dep edge from all targets of upstream to the lib
|
2019-03-05 21:29:23 +00:00
|
|
|
// target of downstream.
|
|
|
|
for pkg in cargo.packages() {
|
2020-03-19 16:53:31 +00:00
|
|
|
for dep in cargo[pkg].dependencies.iter() {
|
2019-03-05 21:29:23 +00:00
|
|
|
if let Some(&to) = pkg_to_lib_crate.get(&dep.pkg) {
|
|
|
|
for &from in pkg_crates.get(&pkg).into_iter().flatten() {
|
2020-02-18 13:32:19 +00:00
|
|
|
if crate_graph
|
|
|
|
.add_dep(from, CrateName::new(&dep.name).unwrap(), to)
|
|
|
|
.is_err()
|
|
|
|
{
|
2019-03-05 21:29:23 +00:00
|
|
|
log::error!(
|
|
|
|
"cyclic dependency {} -> {}",
|
2020-03-19 16:53:31 +00:00
|
|
|
&cargo[pkg].name,
|
|
|
|
&cargo[dep.pkg].name
|
2019-03-05 21:29:23 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-08 13:26:57 +00:00
|
|
|
crate_graph
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
2019-04-13 17:45:21 +00:00
|
|
|
|
|
|
|
pub fn workspace_root_for(&self, path: &Path) -> Option<&Path> {
|
|
|
|
match self {
|
|
|
|
ProjectWorkspace::Cargo { cargo, .. } => {
|
2020-01-10 21:41:52 +00:00
|
|
|
Some(cargo.workspace_root()).filter(|root| path.starts_with(root))
|
2019-04-13 17:45:21 +00:00
|
|
|
}
|
|
|
|
ProjectWorkspace::Json { project: JsonProject { roots, .. } } => roots
|
|
|
|
.iter()
|
|
|
|
.find(|root| path.starts_with(&root.path))
|
|
|
|
.map(|root| root.path.as_ref()),
|
|
|
|
}
|
|
|
|
}
|
2019-02-05 22:10:49 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 16:15:13 +00:00
|
|
|
pub fn get_rustc_cfg_options(target: Option<&String>) -> CfgOptions {
|
2019-10-02 18:02:53 +00:00
|
|
|
let mut cfg_options = CfgOptions::default();
|
|
|
|
|
2019-10-08 11:43:29 +00:00
|
|
|
// Some nightly-only cfgs, which are required for stdlib
|
|
|
|
{
|
|
|
|
cfg_options.insert_atom("target_thread_local".into());
|
2020-02-14 18:33:39 +00:00
|
|
|
for &target_has_atomic in ["8", "16", "32", "64", "cas", "ptr"].iter() {
|
|
|
|
cfg_options.insert_key_value("target_has_atomic".into(), target_has_atomic.into());
|
|
|
|
cfg_options
|
|
|
|
.insert_key_value("target_has_atomic_load_store".into(), target_has_atomic.into());
|
2019-10-08 11:43:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 12:54:29 +00:00
|
|
|
let rustc_cfgs = || -> Result<String> {
|
2019-10-05 12:55:27 +00:00
|
|
|
// `cfg(test)` and `cfg(debug_assertion)` are handled outside, so we suppress them here.
|
2020-05-08 12:54:29 +00:00
|
|
|
let mut cmd = Command::new(ra_toolchain::rustc());
|
2020-05-05 16:23:47 +00:00
|
|
|
cmd.args(&["--print", "cfg", "-O"]);
|
|
|
|
if let Some(target) = target {
|
|
|
|
cmd.args(&["--target", target.as_str()]);
|
|
|
|
}
|
2020-05-08 12:54:29 +00:00
|
|
|
let output = output(cmd)?;
|
2020-01-08 13:04:47 +00:00
|
|
|
Ok(String::from_utf8(output.stdout)?)
|
2020-05-08 12:54:29 +00:00
|
|
|
}();
|
|
|
|
|
|
|
|
match rustc_cfgs {
|
2019-10-02 18:02:53 +00:00
|
|
|
Ok(rustc_cfgs) => {
|
|
|
|
for line in rustc_cfgs.lines() {
|
|
|
|
match line.find('=') {
|
2019-10-08 11:22:49 +00:00
|
|
|
None => cfg_options.insert_atom(line.into()),
|
2019-10-02 18:02:53 +00:00
|
|
|
Some(pos) => {
|
|
|
|
let key = &line[..pos];
|
|
|
|
let value = line[pos + 1..].trim_matches('"');
|
2019-10-08 11:22:49 +00:00
|
|
|
cfg_options.insert_key_value(key.into(), value.into());
|
2019-10-02 18:02:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 12:54:29 +00:00
|
|
|
Err(e) => log::error!("failed to get rustc cfgs: {:#}", e),
|
2019-10-02 18:02:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cfg_options
|
|
|
|
}
|
2020-05-08 12:54:29 +00:00
|
|
|
|
|
|
|
fn output(mut cmd: Command) -> Result<Output> {
|
|
|
|
let output = cmd.output().with_context(|| format!("{:?} failed", cmd))?;
|
|
|
|
if !output.status.success() {
|
|
|
|
bail!("{:?} failed, {}", cmd, output.status)
|
|
|
|
}
|
|
|
|
Ok(output)
|
|
|
|
}
|