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-01-08 13:04:47 +00:00
|
|
|
error::Error,
|
2020-02-27 21:52:10 +00:00
|
|
|
fs::{read_dir, File, ReadDir},
|
2019-03-05 21:29:23 +00:00
|
|
|
io::BufReader,
|
|
|
|
path::{Path, PathBuf},
|
2019-10-02 18:02:53 +00:00
|
|
|
process::Command,
|
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::{
|
2019-12-13 10:16:34 +00:00
|
|
|
cargo_workspace::{CargoFeatures, 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-01-08 16:21:19 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Hash, Debug)]
|
2020-02-29 13:05:10 +00:00
|
|
|
pub struct CargoTomlNotFoundError {
|
|
|
|
pub searched_at: PathBuf,
|
|
|
|
pub reason: String,
|
2020-02-27 21:52:10 +00:00
|
|
|
}
|
|
|
|
|
2020-02-29 13:05:10 +00:00
|
|
|
impl std::fmt::Display for CargoTomlNotFoundError {
|
2020-02-27 21:52:10 +00:00
|
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
2020-02-29 13:05:10 +00:00
|
|
|
write!(
|
|
|
|
fmt,
|
|
|
|
"can't find Cargo.toml at {}, due to {}",
|
|
|
|
self.searched_at.display(),
|
|
|
|
self.reason
|
|
|
|
)
|
2020-02-27 21:52:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-29 13:05:10 +00:00
|
|
|
impl Error for CargoTomlNotFoundError {}
|
2020-01-08 13:04:47 +00:00
|
|
|
|
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
|
|
|
|
path: PathBuf,
|
|
|
|
/// Is a member of the current workspace
|
|
|
|
is_member: bool,
|
|
|
|
}
|
|
|
|
|
2019-08-06 08:50:32 +00:00
|
|
|
impl PackageRoot {
|
|
|
|
pub fn new(path: PathBuf, is_member: bool) -> PackageRoot {
|
|
|
|
PackageRoot { path, is_member }
|
2019-03-19 13:14:16 +00:00
|
|
|
}
|
|
|
|
|
2019-03-21 08:43:47 +00:00
|
|
|
pub fn path(&self) -> &PathBuf {
|
|
|
|
&self.path
|
2019-03-19 13:14:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_member(&self) -> bool {
|
|
|
|
self.is_member
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 22:10:49 +00:00
|
|
|
impl ProjectWorkspace {
|
2020-01-08 13:04:47 +00:00
|
|
|
pub fn discover(path: &Path, cargo_features: &CargoFeatures) -> Result<ProjectWorkspace> {
|
2019-12-13 10:16:34 +00:00
|
|
|
ProjectWorkspace::discover_with_sysroot(path, true, cargo_features)
|
2019-08-19 12:41:18 +00:00
|
|
|
}
|
|
|
|
|
2019-12-13 10:16:34 +00:00
|
|
|
pub fn discover_with_sysroot(
|
|
|
|
path: &Path,
|
|
|
|
with_sysroot: bool,
|
|
|
|
cargo_features: &CargoFeatures,
|
2020-01-08 13:04:47 +00:00
|
|
|
) -> Result<ProjectWorkspace> {
|
2019-03-05 21:29:23 +00:00
|
|
|
match find_rust_project_json(path) {
|
|
|
|
Some(json_path) => {
|
2020-02-13 10:10:50 +00:00
|
|
|
let file = File::open(&json_path)
|
|
|
|
.with_context(|| format!("Failed to open json file {}", json_path.display()))?;
|
2019-03-05 21:29:23 +00:00
|
|
|
let reader = BufReader::new(file);
|
2020-02-13 10:10:50 +00:00
|
|
|
Ok(ProjectWorkspace::Json {
|
|
|
|
project: from_reader(reader).with_context(|| {
|
|
|
|
format!("Failed to deserialize json file {}", json_path.display())
|
|
|
|
})?,
|
|
|
|
})
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
|
|
|
None => {
|
2020-02-13 10:10:50 +00:00
|
|
|
let cargo_toml = find_cargo_toml(path).with_context(|| {
|
|
|
|
format!("Failed to find Cargo.toml for path {}", path.display())
|
|
|
|
})?;
|
|
|
|
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()
|
|
|
|
};
|
2019-08-19 12:41:18 +00:00
|
|
|
Ok(ProjectWorkspace::Cargo { cargo, sysroot })
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
|
|
|
}
|
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 } => {
|
2019-03-06 23:39:50 +00:00
|
|
|
let mut roots = Vec::with_capacity(project.roots.len());
|
2019-03-05 21:29:23 +00:00
|
|
|
for root in &project.roots {
|
2019-08-06 08:50:32 +00:00
|
|
|
roots.push(PackageRoot::new(root.path.clone(), true));
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
2019-03-06 23:39:50 +00:00
|
|
|
roots
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
ProjectWorkspace::Cargo { cargo, sysroot } => {
|
2019-08-06 08:54:51 +00:00
|
|
|
let mut roots = Vec::with_capacity(cargo.packages().len() + sysroot.crates().len());
|
2019-03-05 21:29:23 +00:00
|
|
|
for pkg in cargo.packages() {
|
2019-03-19 13:14:16 +00:00
|
|
|
let root = pkg.root(&cargo).to_path_buf();
|
|
|
|
let member = pkg.is_member(&cargo);
|
2019-08-06 08:50:32 +00:00
|
|
|
roots.push(PackageRoot::new(root, member));
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
|
|
|
for krate in sysroot.crates() {
|
2019-08-06 08:50:32 +00:00
|
|
|
roots.push(PackageRoot::new(krate.root_dir(&sysroot).to_path_buf(), false))
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
2019-03-06 23:39:50 +00:00
|
|
|
roots
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
}
|
2019-02-06 21:54:33 +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-10 14:00:58 +00:00
|
|
|
outdirs: &FxHashMap<String, (ExternSourceId, String)>,
|
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 } => {
|
|
|
|
let mut crates = FxHashMap::default();
|
|
|
|
for (id, krate) in project.crates.iter().enumerate() {
|
|
|
|
let crate_id = json_project::CrateId(id);
|
|
|
|
if let Some(file_id) = load(&krate.root_module) {
|
|
|
|
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
|
|
|
|
|
|
|
// FIXME: No crate name in json definition such that we cannot add OUT_DIR to env
|
2019-09-29 23:38:16 +00:00
|
|
|
crates.insert(
|
|
|
|
crate_id,
|
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,
|
|
|
|
Env::default(),
|
2020-03-11 03:04:02 +00:00
|
|
|
Default::default(),
|
2019-11-22 10:55:03 +00:00
|
|
|
),
|
2019-09-29 23:38:16 +00:00
|
|
|
);
|
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 } => {
|
|
|
|
let mut sysroot_crates = FxHashMap::default();
|
|
|
|
for krate in sysroot.crates() {
|
|
|
|
if let Some(file_id) = load(krate.root(&sysroot)) {
|
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-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-10 14:00:58 +00:00
|
|
|
if let Some((id, path)) = outdirs.get(krate.name(&sysroot)) {
|
2020-03-11 03:04:02 +00:00
|
|
|
env.set("OUT_DIR", path.clone());
|
|
|
|
extern_source.set_extern_path(&path, *id);
|
2020-03-10 14:00:58 +00:00
|
|
|
}
|
|
|
|
|
2019-11-22 10:55:03 +00:00
|
|
|
let crate_id = crate_graph.add_crate_root(
|
|
|
|
file_id,
|
|
|
|
Edition::Edition2018,
|
2020-03-16 09:47:52 +00:00
|
|
|
Some(
|
|
|
|
CrateName::new(krate.name(&sysroot))
|
|
|
|
.expect("Sysroot crate names should not contain dashes"),
|
|
|
|
),
|
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,
|
2019-11-22 10:55:03 +00:00
|
|
|
);
|
2019-09-08 06:48:45 +00:00
|
|
|
sysroot_crates.insert(krate, crate_id);
|
2019-02-06 21:54:33 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-05 21:29:23 +00:00
|
|
|
for from in sysroot.crates() {
|
|
|
|
for to in from.deps(&sysroot) {
|
|
|
|
let name = to.name(&sysroot);
|
|
|
|
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;
|
|
|
|
for tgt in pkg.targets(&cargo) {
|
|
|
|
let root = tgt.root(&cargo);
|
|
|
|
if let Some(file_id) = load(root) {
|
|
|
|
let edition = pkg.edition(&cargo);
|
2019-10-08 11:22:49 +00:00
|
|
|
let cfg_options = {
|
|
|
|
let mut opts = default_cfg_options.clone();
|
|
|
|
opts.insert_features(pkg.features(&cargo).iter().map(Into::into));
|
|
|
|
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-10 14:00:58 +00:00
|
|
|
if let Some((id, path)) = outdirs.get(pkg.name(&cargo)) {
|
2020-03-11 03:04:02 +00:00
|
|
|
env.set("OUT_DIR", path.clone());
|
|
|
|
extern_source.set_extern_path(&path, *id);
|
2020-03-10 14:00:58 +00:00
|
|
|
}
|
2019-11-22 10:55:03 +00:00
|
|
|
let crate_id = crate_graph.add_crate_root(
|
|
|
|
file_id,
|
|
|
|
edition,
|
2020-03-16 09:47:52 +00:00
|
|
|
Some(CrateName::normalize_dashes(pkg.name(&cargo))),
|
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,
|
2019-11-22 10:55:03 +00:00
|
|
|
);
|
2019-03-05 21:29:23 +00:00
|
|
|
if tgt.kind(&cargo) == TargetKind::Lib {
|
|
|
|
lib_tgt = Some(crate_id);
|
|
|
|
pkg_to_lib_crate.insert(pkg, crate_id);
|
|
|
|
}
|
2019-11-24 10:33:12 +00:00
|
|
|
if tgt.is_proc_macro(&cargo) {
|
|
|
|
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 {}",
|
|
|
|
pkg.name(&cargo)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
2019-03-05 21:29:23 +00:00
|
|
|
if let Some(to) = lib_tgt {
|
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
|
|
|
|
CrateName::normalize_dashes(pkg.name(&cargo)),
|
|
|
|
to,
|
|
|
|
)
|
|
|
|
.is_err()
|
|
|
|
{
|
|
|
|
{
|
2019-03-05 21:29:23 +00:00
|
|
|
log::error!(
|
|
|
|
"cyclic dependency between targets of {}",
|
|
|
|
pkg.name(&cargo)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
{
|
2019-11-09 23:22:19 +00:00
|
|
|
log::error!("cyclic dependency on core for {}", pkg.name(&cargo))
|
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
|
|
|
{
|
2019-11-24 12:19:47 +00:00
|
|
|
log::error!("cyclic dependency on alloc for {}", pkg.name(&cargo))
|
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
|
|
|
{
|
2019-03-05 21:29:23 +00:00
|
|
|
log::error!("cyclic dependency on std for {}", pkg.name(&cargo))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
|
|
|
for dep in pkg.dependencies(&cargo) {
|
|
|
|
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 {} -> {}",
|
|
|
|
pkg.name(&cargo),
|
|
|
|
dep.pkg.name(&cargo)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-03-05 21:29:23 +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-02-27 21:52:10 +00:00
|
|
|
fn find_cargo_toml_in_parent_dir(path: &Path) -> Option<PathBuf> {
|
2019-02-05 22:10:49 +00:00
|
|
|
let mut curr = Some(path);
|
|
|
|
while let Some(path) = curr {
|
|
|
|
let candidate = path.join("Cargo.toml");
|
|
|
|
if candidate.exists() {
|
2020-02-24 16:38:59 +00:00
|
|
|
return Some(candidate);
|
2019-02-05 22:10:49 +00:00
|
|
|
}
|
|
|
|
curr = path.parent();
|
|
|
|
}
|
2020-02-27 21:52:10 +00:00
|
|
|
|
2020-02-24 16:38:59 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-02-27 21:52:10 +00:00
|
|
|
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![];
|
2020-02-24 16:38:59 +00:00
|
|
|
for entity in entities.filter_map(Result::ok) {
|
|
|
|
let candidate = entity.path().join("Cargo.toml");
|
|
|
|
if candidate.exists() {
|
2020-02-27 21:52:10 +00:00
|
|
|
valid_canditates.push(candidate)
|
2020-02-24 16:38:59 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-27 21:52:10 +00:00
|
|
|
valid_canditates
|
2020-02-24 16:38:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn find_cargo_toml(path: &Path) -> Result<PathBuf> {
|
|
|
|
if path.ends_with("Cargo.toml") {
|
|
|
|
return Ok(path.to_path_buf());
|
|
|
|
}
|
|
|
|
|
2020-02-27 21:52:10 +00:00
|
|
|
if let Some(p) = find_cargo_toml_in_parent_dir(path) {
|
|
|
|
return Ok(p);
|
2020-02-24 16:38:59 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 22:06:51 +00:00
|
|
|
let entities = match read_dir(path) {
|
2020-02-27 22:03:29 +00:00
|
|
|
Ok(entities) => entities,
|
2020-02-29 13:05:10 +00:00
|
|
|
Err(e) => {
|
|
|
|
return Err(CargoTomlNotFoundError {
|
|
|
|
searched_at: path.to_path_buf(),
|
|
|
|
reason: format!("file system error: {}", e),
|
|
|
|
}
|
|
|
|
.into());
|
|
|
|
}
|
2020-02-27 21:52:10 +00:00
|
|
|
};
|
2020-02-24 16:38:59 +00:00
|
|
|
|
2020-02-27 21:52:10 +00:00
|
|
|
let mut valid_canditates = find_cargo_toml_in_child_dir(entities);
|
|
|
|
match valid_canditates.len() {
|
|
|
|
1 => Ok(valid_canditates.remove(0)),
|
2020-02-29 13:05:10 +00:00
|
|
|
0 => Err(CargoTomlNotFoundError {
|
|
|
|
searched_at: path.to_path_buf(),
|
|
|
|
reason: "no Cargo.toml file found".to_string(),
|
|
|
|
}
|
|
|
|
.into()),
|
|
|
|
_ => Err(CargoTomlNotFoundError {
|
|
|
|
searched_at: path.to_path_buf(),
|
|
|
|
reason: format!(
|
|
|
|
"multiple equally valid Cargo.toml files found: {:?}",
|
|
|
|
valid_canditates
|
|
|
|
),
|
|
|
|
}
|
|
|
|
.into()),
|
2020-02-27 21:52:10 +00:00
|
|
|
}
|
2019-02-05 22:10:49 +00:00
|
|
|
}
|
2019-10-02 18:02:53 +00:00
|
|
|
|
|
|
|
pub fn get_rustc_cfg_options() -> CfgOptions {
|
|
|
|
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-02-13 10:10:50 +00:00
|
|
|
match (|| -> 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-02-13 10:10:50 +00:00
|
|
|
let output = Command::new("rustc")
|
|
|
|
.args(&["--print", "cfg", "-O"])
|
|
|
|
.output()
|
|
|
|
.context("Failed to get output from rustc --print cfg -O")?;
|
2019-10-02 18:02:53 +00:00
|
|
|
if !output.status.success() {
|
2020-02-13 10:10:50 +00:00
|
|
|
bail!(
|
|
|
|
"rustc --print cfg -O exited with exit code ({})",
|
|
|
|
output
|
|
|
|
.status
|
|
|
|
.code()
|
|
|
|
.map_or(String::from("no exit code"), |code| format!("{}", code))
|
|
|
|
);
|
2019-10-02 18:02:53 +00:00
|
|
|
}
|
2020-01-08 13:04:47 +00:00
|
|
|
Ok(String::from_utf8(output.stdout)?)
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => log::error!("failed to get rustc cfgs: {}", e),
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg_options
|
|
|
|
}
|