2019-09-30 03:58:53 -05:00
|
|
|
//! FIXME: write short doc here
|
|
|
|
|
2020-02-17 16:18:26 -06:00
|
|
|
use anyhow::{bail, Context, Result};
|
2019-01-10 13:21:14 -06:00
|
|
|
use std::{
|
2020-03-19 11:59:31 -05:00
|
|
|
env, ops,
|
2019-01-10 13:21:14 -06:00
|
|
|
path::{Path, PathBuf},
|
2020-02-17 16:38:01 -06:00
|
|
|
process::{Command, Output},
|
2019-01-10 13:21:14 -06:00
|
|
|
};
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
use ra_arena::{Arena, Idx};
|
2020-05-05 16:07:10 -05:00
|
|
|
use ra_env::get_path_for_executable;
|
2019-01-10 13:21:14 -06:00
|
|
|
|
2019-08-19 07:41:18 -05:00
|
|
|
#[derive(Default, Debug, Clone)]
|
2019-01-10 13:21:14 -06:00
|
|
|
pub struct Sysroot {
|
2020-03-19 10:00:11 -05:00
|
|
|
crates: Arena<SysrootCrateData>,
|
2019-01-10 13:47:05 -06:00
|
|
|
}
|
|
|
|
|
2020-03-19 10:00:11 -05:00
|
|
|
pub type SysrootCrate = Idx<SysrootCrateData>;
|
2019-01-10 13:47:05 -06:00
|
|
|
|
|
|
|
#[derive(Debug, Clone)]
|
2020-03-19 11:59:31 -05:00
|
|
|
pub struct SysrootCrateData {
|
|
|
|
pub name: String,
|
|
|
|
pub root: PathBuf,
|
|
|
|
pub deps: Vec<SysrootCrate>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ops::Index<SysrootCrate> for Sysroot {
|
|
|
|
type Output = SysrootCrateData;
|
|
|
|
fn index(&self, index: SysrootCrate) -> &SysrootCrateData {
|
|
|
|
&self.crates[index]
|
|
|
|
}
|
2019-01-10 13:21:14 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Sysroot {
|
2019-11-09 17:22:19 -06:00
|
|
|
pub fn core(&self) -> Option<SysrootCrate> {
|
|
|
|
self.by_name("core")
|
|
|
|
}
|
|
|
|
|
2019-11-24 06:19:47 -06:00
|
|
|
pub fn alloc(&self) -> Option<SysrootCrate> {
|
|
|
|
self.by_name("alloc")
|
|
|
|
}
|
|
|
|
|
2019-02-05 16:10:49 -06:00
|
|
|
pub fn std(&self) -> Option<SysrootCrate> {
|
2019-01-10 14:05:22 -06:00
|
|
|
self.by_name("std")
|
|
|
|
}
|
|
|
|
|
2019-11-24 04:33:12 -06:00
|
|
|
pub fn proc_macro(&self) -> Option<SysrootCrate> {
|
|
|
|
self.by_name("proc_macro")
|
|
|
|
}
|
|
|
|
|
2019-08-06 03:54:51 -05:00
|
|
|
pub fn crates<'a>(&'a self) -> impl Iterator<Item = SysrootCrate> + ExactSizeIterator + 'a {
|
2019-01-10 15:37:10 -06:00
|
|
|
self.crates.iter().map(|(id, _data)| id)
|
|
|
|
}
|
|
|
|
|
2019-02-05 16:10:49 -06:00
|
|
|
pub fn discover(cargo_toml: &Path) -> Result<Sysroot> {
|
2020-02-17 16:03:57 -06:00
|
|
|
let src = get_or_install_rust_src(cargo_toml)?;
|
2019-02-08 05:49:43 -06:00
|
|
|
let mut sysroot = Sysroot { crates: Arena::default() };
|
2019-01-10 13:47:05 -06:00
|
|
|
for name in SYSROOT_CRATES.trim().lines() {
|
2019-01-10 15:37:10 -06:00
|
|
|
let root = src.join(format!("lib{}", name)).join("lib.rs");
|
|
|
|
if root.exists() {
|
2019-01-10 13:47:05 -06:00
|
|
|
sysroot.crates.alloc(SysrootCrateData {
|
|
|
|
name: name.into(),
|
2019-01-10 15:37:10 -06:00
|
|
|
root,
|
2019-01-10 13:47:05 -06:00
|
|
|
deps: Vec::new(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-01-10 14:05:22 -06:00
|
|
|
if let Some(std) = sysroot.std() {
|
2019-01-10 13:47:05 -06:00
|
|
|
for dep in STD_DEPS.trim().lines() {
|
|
|
|
if let Some(dep) = sysroot.by_name(dep) {
|
|
|
|
sysroot.crates[std].deps.push(dep)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-29 16:16:57 -06:00
|
|
|
if let Some(alloc) = sysroot.alloc() {
|
2019-11-24 04:33:12 -06:00
|
|
|
if let Some(core) = sysroot.core() {
|
2019-06-13 14:59:50 -05:00
|
|
|
sysroot.crates[alloc].deps.push(core);
|
|
|
|
}
|
|
|
|
}
|
2019-01-10 13:47:05 -06:00
|
|
|
Ok(sysroot)
|
|
|
|
}
|
2019-01-10 13:21:14 -06:00
|
|
|
|
2019-01-10 13:47:05 -06:00
|
|
|
fn by_name(&self, name: &str) -> Option<SysrootCrate> {
|
2019-02-08 05:49:43 -06:00
|
|
|
self.crates.iter().find(|(_id, data)| data.name == name).map(|(id, _data)| id)
|
2019-01-10 13:21:14 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-10 13:47:05 -06:00
|
|
|
|
2020-02-17 16:38:01 -06:00
|
|
|
fn create_command_text(program: &str, args: &[&str]) -> String {
|
|
|
|
format!("{} {}", program, args.join(" "))
|
|
|
|
}
|
2019-08-22 14:08:34 -05:00
|
|
|
|
2020-02-17 16:38:01 -06:00
|
|
|
fn run_command_in_cargo_dir(cargo_toml: &Path, program: &str, args: &[&str]) -> Result<Output> {
|
|
|
|
let output = Command::new(program)
|
2020-02-17 16:18:26 -06:00
|
|
|
.current_dir(cargo_toml.parent().unwrap())
|
2020-02-17 16:38:01 -06:00
|
|
|
.args(args)
|
2020-02-17 16:18:26 -06:00
|
|
|
.output()
|
2020-02-17 16:38:01 -06:00
|
|
|
.context(format!("{} failed", create_command_text(program, args)))?;
|
|
|
|
if !output.status.success() {
|
|
|
|
match output.status.code() {
|
|
|
|
Some(code) => bail!(
|
|
|
|
"failed to run the command: '{}' exited with code {}",
|
|
|
|
create_command_text(program, args),
|
|
|
|
code
|
|
|
|
),
|
|
|
|
None => bail!(
|
|
|
|
"failed to run the command: '{}' terminated by signal",
|
|
|
|
create_command_text(program, args)
|
|
|
|
),
|
2020-02-17 16:18:26 -06:00
|
|
|
};
|
|
|
|
}
|
2020-02-17 16:38:01 -06:00
|
|
|
Ok(output)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_or_install_rust_src(cargo_toml: &Path) -> Result<PathBuf> {
|
|
|
|
if let Ok(path) = env::var("RUST_SRC_PATH") {
|
|
|
|
return Ok(path.into());
|
|
|
|
}
|
2020-05-05 15:44:43 -05:00
|
|
|
let rustc = get_path_for_executable("rustc")?;
|
|
|
|
let rustc_output = run_command_in_cargo_dir(cargo_toml, &rustc, &["--print", "sysroot"])?;
|
2020-02-17 16:18:26 -06:00
|
|
|
let stdout = String::from_utf8(rustc_output.stdout)?;
|
|
|
|
let sysroot_path = Path::new(stdout.trim());
|
|
|
|
let src_path = sysroot_path.join("lib/rustlib/src/rust/src");
|
|
|
|
|
|
|
|
if !src_path.exists() {
|
2020-05-05 16:07:10 -05:00
|
|
|
let rustup = get_path_for_executable("rustup")?;
|
|
|
|
run_command_in_cargo_dir(cargo_toml, &rustup, &["component", "add", "rust-src"])?;
|
2020-02-17 16:18:26 -06:00
|
|
|
}
|
|
|
|
if !src_path.exists() {
|
|
|
|
bail!(
|
|
|
|
"can't load standard library from sysroot\n\
|
|
|
|
{}\n\
|
|
|
|
(discovered via `rustc --print sysroot`)\n\
|
|
|
|
try running `rustup component add rust-src` or set `RUST_SRC_PATH`",
|
|
|
|
src_path.display(),
|
|
|
|
)
|
2020-02-17 15:33:48 -06:00
|
|
|
}
|
2020-02-17 16:18:26 -06:00
|
|
|
Ok(src_path)
|
2020-02-17 15:33:48 -06:00
|
|
|
}
|
|
|
|
|
2020-03-19 11:59:31 -05:00
|
|
|
impl SysrootCrateData {
|
|
|
|
pub fn root_dir(&self) -> &Path {
|
|
|
|
self.root.parent().unwrap()
|
2019-01-10 15:37:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 13:47:05 -06:00
|
|
|
const SYSROOT_CRATES: &str = "
|
|
|
|
std
|
|
|
|
core
|
|
|
|
alloc
|
|
|
|
collections
|
|
|
|
libc
|
|
|
|
panic_unwind
|
|
|
|
proc_macro
|
|
|
|
rustc_unicode
|
|
|
|
std_unicode
|
|
|
|
test
|
|
|
|
alloc_jemalloc
|
|
|
|
alloc_system
|
|
|
|
compiler_builtins
|
|
|
|
getopts
|
|
|
|
panic_unwind
|
|
|
|
panic_abort
|
|
|
|
rand
|
|
|
|
term
|
|
|
|
unwind
|
|
|
|
build_helper
|
|
|
|
rustc_asan
|
|
|
|
rustc_lsan
|
|
|
|
rustc_msan
|
|
|
|
rustc_tsan
|
|
|
|
syntax";
|
|
|
|
|
|
|
|
const STD_DEPS: &str = "
|
2019-02-03 16:23:59 -06:00
|
|
|
alloc
|
2019-01-10 13:47:05 -06:00
|
|
|
alloc_jemalloc
|
|
|
|
alloc_system
|
2019-02-03 09:35:42 -06:00
|
|
|
core
|
2019-01-10 13:47:05 -06:00
|
|
|
panic_abort
|
|
|
|
rand
|
|
|
|
compiler_builtins
|
|
|
|
unwind
|
|
|
|
rustc_asan
|
|
|
|
rustc_lsan
|
|
|
|
rustc_msan
|
|
|
|
rustc_tsan
|
|
|
|
build_helper";
|