2020-08-25 10:00:08 -05:00
|
|
|
//! Loads "sysroot" crate.
|
|
|
|
//!
|
|
|
|
//! One confusing point here is that normally sysroot is a bunch of `.rlib`s,
|
|
|
|
//! but we can't process `.rlib` and need source code instead. The source code
|
|
|
|
//! is typically installed with `rustup component add rust-src` command.
|
2019-09-30 03:58:53 -05:00
|
|
|
|
2020-08-25 10:00:08 -05:00
|
|
|
use std::{convert::TryFrom, env, ops, path::PathBuf, process::Command};
|
2019-01-10 13:21:14 -06:00
|
|
|
|
2020-08-25 10:00:08 -05:00
|
|
|
use anyhow::{format_err, Result};
|
2021-01-14 09:47:42 -06:00
|
|
|
use la_arena::{Arena, Idx};
|
2020-07-10 08:27:34 -05:00
|
|
|
use paths::{AbsPath, AbsPathBuf};
|
2020-05-08 07:54:29 -05:00
|
|
|
|
2020-07-23 11:57:27 -05:00
|
|
|
use crate::utf8_stdout;
|
2019-01-10 13:21:14 -06:00
|
|
|
|
2020-07-10 08:27:34 -05:00
|
|
|
#[derive(Default, Debug, Clone, Eq, PartialEq)]
|
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-11-02 09:31:38 -06:00
|
|
|
pub(crate) type SysrootCrate = Idx<SysrootCrateData>;
|
2019-01-10 13:47:05 -06:00
|
|
|
|
2020-07-10 08:27:34 -05:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
2020-03-19 11:59:31 -05:00
|
|
|
pub struct SysrootCrateData {
|
|
|
|
pub name: String,
|
2020-06-24 06:34:24 -05:00
|
|
|
pub root: AbsPathBuf,
|
2020-03-19 11:59:31 -05:00
|
|
|
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 {
|
2020-08-25 10:53:24 -05:00
|
|
|
pub fn public_deps(&self) -> impl Iterator<Item = (&'static str, SysrootCrate)> + '_ {
|
|
|
|
// core is added as a dependency before std in order to
|
|
|
|
// mimic rustcs dependency order
|
2020-11-17 04:51:45 -06:00
|
|
|
["core", "alloc", "std"].iter().filter_map(move |&it| Some((it, self.by_name(it)?)))
|
2019-01-10 14:05:22 -06:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-06-24 06:34:24 -05:00
|
|
|
pub fn discover(cargo_toml: &AbsPath) -> Result<Sysroot> {
|
2020-10-14 10:18:33 -05:00
|
|
|
log::debug!("Discovering sysroot for {}", cargo_toml.display());
|
2021-05-23 12:56:54 -05:00
|
|
|
let current_dir = cargo_toml.parent().ok_or_else(|| {
|
2021-05-24 06:47:20 -05:00
|
|
|
format_err!("Failed to find the parent directory for {}", cargo_toml.display())
|
2021-05-23 12:56:54 -05:00
|
|
|
})?;
|
2021-02-11 10:34:56 -06:00
|
|
|
let sysroot_dir = discover_sysroot_dir(current_dir)?;
|
|
|
|
let sysroot_src_dir = discover_sysroot_src_dir(&sysroot_dir, current_dir)?;
|
2020-09-11 07:48:56 -05:00
|
|
|
let res = Sysroot::load(&sysroot_src_dir)?;
|
2020-08-25 10:00:08 -05:00
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
2021-02-11 10:34:56 -06:00
|
|
|
pub fn discover_rustc(cargo_toml: &AbsPath) -> Option<AbsPathBuf> {
|
|
|
|
log::debug!("Discovering rustc source for {}", cargo_toml.display());
|
|
|
|
let current_dir = cargo_toml.parent().unwrap();
|
|
|
|
discover_sysroot_dir(current_dir).ok().and_then(|sysroot_dir| get_rustc_src(&sysroot_dir))
|
|
|
|
}
|
|
|
|
|
2020-09-11 07:48:56 -05:00
|
|
|
pub fn load(sysroot_src_dir: &AbsPath) -> Result<Sysroot> {
|
2019-02-08 05:49:43 -06:00
|
|
|
let mut sysroot = Sysroot { crates: Arena::default() };
|
2020-08-25 10:00:08 -05:00
|
|
|
|
2019-01-10 13:47:05 -06:00
|
|
|
for name in SYSROOT_CRATES.trim().lines() {
|
2020-10-30 01:58:59 -05:00
|
|
|
let root = [format!("{}/src/lib.rs", name), format!("lib{}/lib.rs", name)]
|
2020-08-25 10:00:08 -05:00
|
|
|
.iter()
|
|
|
|
.map(|it| sysroot_src_dir.join(it))
|
|
|
|
.find(|it| it.exists());
|
|
|
|
|
|
|
|
if let Some(root) = root {
|
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(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2020-08-25 10:00:08 -05:00
|
|
|
|
2020-08-25 10:53:24 -05:00
|
|
|
if let Some(std) = sysroot.by_name("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-08-25 10:00:08 -05:00
|
|
|
|
2020-08-25 10:53:24 -05:00
|
|
|
if let Some(alloc) = sysroot.by_name("alloc") {
|
|
|
|
if let Some(core) = sysroot.by_name("core") {
|
2019-06-13 14:59:50 -05:00
|
|
|
sysroot.crates[alloc].deps.push(core);
|
|
|
|
}
|
|
|
|
}
|
2020-08-25 10:00:08 -05:00
|
|
|
|
2020-09-11 07:48:56 -05:00
|
|
|
if sysroot.by_name("core").is_none() {
|
2020-10-09 09:11:16 -05:00
|
|
|
let var_note = if env::var_os("RUST_SRC_PATH").is_some() {
|
2020-10-09 09:17:05 -05:00
|
|
|
" (`RUST_SRC_PATH` might be incorrect, try unsetting it)"
|
2020-10-09 09:11:16 -05:00
|
|
|
} else {
|
|
|
|
""
|
|
|
|
};
|
2020-09-11 07:48:56 -05:00
|
|
|
anyhow::bail!(
|
2020-10-09 09:11:16 -05:00
|
|
|
"could not find libcore in sysroot path `{}`{}",
|
|
|
|
sysroot_src_dir.as_ref().display(),
|
|
|
|
var_note,
|
2020-09-11 07:48:56 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(sysroot)
|
2019-01-10 13:47:05 -06:00
|
|
|
}
|
2019-01-10 13:21:14 -06:00
|
|
|
|
2019-01-10 13:47:05 -06:00
|
|
|
fn by_name(&self, name: &str) -> Option<SysrootCrate> {
|
2020-08-25 10:00:08 -05:00
|
|
|
let (id, _data) = self.crates.iter().find(|(_id, data)| data.name == name)?;
|
|
|
|
Some(id)
|
2019-01-10 13:21:14 -06:00
|
|
|
}
|
|
|
|
}
|
2019-01-10 13:47:05 -06:00
|
|
|
|
2021-02-11 10:34:56 -06:00
|
|
|
fn discover_sysroot_dir(current_dir: &AbsPath) -> Result<AbsPathBuf> {
|
|
|
|
let mut rustc = Command::new(toolchain::rustc());
|
|
|
|
rustc.current_dir(current_dir).args(&["--print", "sysroot"]);
|
|
|
|
log::debug!("Discovering sysroot by {:?}", rustc);
|
|
|
|
let stdout = utf8_stdout(rustc)?;
|
|
|
|
Ok(AbsPathBuf::assert(PathBuf::from(stdout)))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn discover_sysroot_src_dir(
|
|
|
|
sysroot_path: &AbsPathBuf,
|
|
|
|
current_dir: &AbsPath,
|
|
|
|
) -> Result<AbsPathBuf> {
|
2020-02-17 16:38:01 -06:00
|
|
|
if let Ok(path) = env::var("RUST_SRC_PATH") {
|
2020-06-24 06:34:24 -05:00
|
|
|
let path = AbsPathBuf::try_from(path.as_str())
|
|
|
|
.map_err(|path| format_err!("RUST_SRC_PATH must be absolute: {}", path.display()))?;
|
2020-11-06 04:29:54 -06:00
|
|
|
let core = path.join("core");
|
|
|
|
if core.exists() {
|
|
|
|
log::debug!("Discovered sysroot by RUST_SRC_PATH: {}", path.display());
|
|
|
|
return Ok(path);
|
|
|
|
}
|
|
|
|
log::debug!("RUST_SRC_PATH is set, but is invalid (no core: {:?}), ignoring", core);
|
2020-02-17 16:38:01 -06:00
|
|
|
}
|
2020-08-25 10:00:08 -05:00
|
|
|
|
|
|
|
get_rust_src(&sysroot_path)
|
|
|
|
.or_else(|| {
|
|
|
|
let mut rustup = Command::new(toolchain::rustup());
|
|
|
|
rustup.current_dir(current_dir).args(&["component", "add", "rust-src"]);
|
|
|
|
utf8_stdout(rustup).ok()?;
|
|
|
|
get_rust_src(&sysroot_path)
|
|
|
|
})
|
|
|
|
.ok_or_else(|| {
|
|
|
|
format_err!(
|
|
|
|
"\
|
|
|
|
can't load standard library from sysroot
|
|
|
|
{}
|
|
|
|
(discovered via `rustc --print sysroot`)
|
2020-12-13 06:01:55 -06:00
|
|
|
try installing the Rust source the same way you installed rustc",
|
2020-08-25 10:00:08 -05:00
|
|
|
sysroot_path.display(),
|
|
|
|
)
|
|
|
|
})
|
2020-07-30 07:04:41 -05:00
|
|
|
}
|
|
|
|
|
2021-02-11 10:34:56 -06:00
|
|
|
fn get_rustc_src(sysroot_path: &AbsPath) -> Option<AbsPathBuf> {
|
|
|
|
let rustc_src = sysroot_path.join("lib/rustlib/rustc-src/rust/compiler/rustc/Cargo.toml");
|
|
|
|
log::debug!("Checking for rustc source code: {}", rustc_src.display());
|
|
|
|
if rustc_src.exists() {
|
|
|
|
Some(rustc_src)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-30 07:04:41 -05:00
|
|
|
fn get_rust_src(sysroot_path: &AbsPath) -> Option<AbsPathBuf> {
|
2020-08-25 10:00:08 -05:00
|
|
|
// Try the new path first since the old one still exists.
|
|
|
|
let rust_src = sysroot_path.join("lib/rustlib/src/rust");
|
2020-10-14 10:18:33 -05:00
|
|
|
log::debug!("Checking sysroot (looking for `library` and `src` dirs): {}", rust_src.display());
|
2020-08-25 10:00:08 -05:00
|
|
|
["library", "src"].iter().map(|it| rust_src.join(it)).find(|it| it.exists())
|
2020-02-17 15:33:48 -06:00
|
|
|
}
|
|
|
|
|
2020-03-19 11:59:31 -05:00
|
|
|
impl SysrootCrateData {
|
2020-06-24 06:34:24 -05:00
|
|
|
pub fn root_dir(&self) -> &AbsPath {
|
2020-03-19 11:59:31 -05:00
|
|
|
self.root.parent().unwrap()
|
2019-01-10 15:37:10 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-10 13:47:05 -06:00
|
|
|
const SYSROOT_CRATES: &str = "
|
|
|
|
alloc
|
2020-07-30 09:17:59 -05:00
|
|
|
core
|
2019-01-10 13:47:05 -06:00
|
|
|
panic_abort
|
2020-07-30 09:17:59 -05:00
|
|
|
panic_unwind
|
|
|
|
proc_macro
|
|
|
|
profiler_builtins
|
|
|
|
rtstartup
|
|
|
|
std
|
|
|
|
stdarch
|
2019-01-10 13:47:05 -06:00
|
|
|
term
|
2020-07-30 09:17:59 -05:00
|
|
|
test
|
|
|
|
unwind";
|
2019-01-10 13:47:05 -06:00
|
|
|
|
|
|
|
const STD_DEPS: &str = "
|
2019-02-03 16:23:59 -06:00
|
|
|
alloc
|
2019-02-03 09:35:42 -06:00
|
|
|
core
|
2019-01-10 13:47:05 -06:00
|
|
|
panic_abort
|
2020-07-30 09:17:59 -05:00
|
|
|
panic_unwind
|
|
|
|
profiler_builtins
|
|
|
|
rtstartup
|
|
|
|
proc_macro
|
|
|
|
stdarch
|
|
|
|
term
|
|
|
|
test
|
|
|
|
unwind";
|