rust-analyzer/crates/ra_project_model/src/sysroot.rs

174 lines
4.8 KiB
Rust
Raw Normal View History

//! FIXME: write short doc here
use std::{convert::TryFrom, env, ops, path::Path, process::Command};
2019-01-10 19:21:14 +00:00
use anyhow::{bail, format_err, Result};
use paths::{AbsPath, AbsPathBuf};
2020-03-19 15:00:11 +00:00
use ra_arena::{Arena, Idx};
2020-05-08 12:54:29 +00:00
use crate::utf8_stdout;
2019-01-10 19:21:14 +00:00
#[derive(Default, Debug, Clone, Eq, PartialEq)]
2019-01-10 19:21:14 +00:00
pub struct Sysroot {
2020-03-19 15:00:11 +00:00
crates: Arena<SysrootCrateData>,
2019-01-10 19:47:05 +00:00
}
2020-03-19 15:00:11 +00:00
pub type SysrootCrate = Idx<SysrootCrateData>;
2019-01-10 19:47:05 +00:00
#[derive(Debug, Clone, Eq, PartialEq)]
2020-03-19 16:59:31 +00:00
pub struct SysrootCrateData {
pub name: String,
pub root: AbsPathBuf,
2020-03-19 16:59:31 +00: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 19:21:14 +00:00
}
impl Sysroot {
pub fn core(&self) -> Option<SysrootCrate> {
self.by_name("core")
}
2019-11-24 12:19:47 +00:00
pub fn alloc(&self) -> Option<SysrootCrate> {
self.by_name("alloc")
}
pub fn std(&self) -> Option<SysrootCrate> {
2019-01-10 20:05:22 +00:00
self.by_name("std")
}
2019-11-24 10:33:12 +00:00
pub fn proc_macro(&self) -> Option<SysrootCrate> {
self.by_name("proc_macro")
}
2019-08-06 08:54:51 +00:00
pub fn crates<'a>(&'a self) -> impl Iterator<Item = SysrootCrate> + ExactSizeIterator + 'a {
2019-01-10 21:37:10 +00:00
self.crates.iter().map(|(id, _data)| id)
}
pub fn discover(cargo_toml: &AbsPath) -> Result<Sysroot> {
let src = get_or_install_rust_src(cargo_toml)?;
2019-02-08 11:49:43 +00:00
let mut sysroot = Sysroot { crates: Arena::default() };
2019-01-10 19:47:05 +00:00
for name in SYSROOT_CRATES.trim().lines() {
// FIXME: remove this path when 1.47 comes out
// https://github.com/rust-lang/rust/pull/73265
2019-01-10 21:37:10 +00:00
let root = src.join(format!("lib{}", name)).join("lib.rs");
if root.exists() {
2019-01-10 19:47:05 +00:00
sysroot.crates.alloc(SysrootCrateData {
name: name.into(),
2019-01-10 21:37:10 +00:00
root,
2019-01-10 19:47:05 +00:00
deps: Vec::new(),
});
} else {
let root = src.join(name).join("src/lib.rs");
if root.exists() {
sysroot.crates.alloc(SysrootCrateData {
name: name.into(),
root,
deps: Vec::new(),
});
}
2019-01-10 19:47:05 +00:00
}
}
2019-01-10 20:05:22 +00:00
if let Some(std) = sysroot.std() {
2019-01-10 19:47:05 +00:00
for dep in STD_DEPS.trim().lines() {
if let Some(dep) = sysroot.by_name(dep) {
sysroot.crates[std].deps.push(dep)
}
}
}
if let Some(alloc) = sysroot.alloc() {
2019-11-24 10:33:12 +00:00
if let Some(core) = sysroot.core() {
2019-06-13 19:59:50 +00:00
sysroot.crates[alloc].deps.push(core);
}
}
2019-01-10 19:47:05 +00:00
Ok(sysroot)
}
2019-01-10 19:21:14 +00:00
2019-01-10 19:47:05 +00:00
fn by_name(&self, name: &str) -> Option<SysrootCrate> {
2019-02-08 11:49:43 +00:00
self.crates.iter().find(|(_id, data)| data.name == name).map(|(id, _data)| id)
2019-01-10 19:21:14 +00:00
}
}
2019-01-10 19:47:05 +00:00
fn get_or_install_rust_src(cargo_toml: &AbsPath) -> Result<AbsPathBuf> {
2020-02-17 22:38:01 +00:00
if let Ok(path) = env::var("RUST_SRC_PATH") {
let path = AbsPathBuf::try_from(path.as_str())
.map_err(|path| format_err!("RUST_SRC_PATH must be absolute: {}", path.display()))?;
return Ok(path);
2020-02-17 22:38:01 +00:00
}
2020-05-08 12:54:29 +00:00
let current_dir = cargo_toml.parent().unwrap();
let mut rustc = Command::new(ra_toolchain::rustc());
rustc.current_dir(current_dir).args(&["--print", "sysroot"]);
let stdout = utf8_stdout(rustc)?;
let sysroot_path = AbsPath::assert(Path::new(stdout.trim()));
let mut src = get_rust_src(sysroot_path);
if src.is_none() {
2020-05-08 12:54:29 +00:00
let mut rustup = Command::new(ra_toolchain::rustup());
rustup.current_dir(current_dir).args(&["component", "add", "rust-src"]);
utf8_stdout(rustup)?;
src = get_rust_src(sysroot_path);
2020-02-17 22:18:26 +00:00
}
match src {
Some(r) => Ok(r),
None => bail!(
2020-02-17 22:18:26 +00:00
"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`",
sysroot_path.display(),
),
}
}
fn get_rust_src(sysroot_path: &AbsPath) -> Option<AbsPathBuf> {
// try the new path first since the old one still exists
let mut src_path = sysroot_path.join("lib/rustlib/src/rust/library");
if !src_path.exists() {
// FIXME: remove this path when 1.47 comes out
// https://github.com/rust-lang/rust/pull/73265
src_path = sysroot_path.join("lib/rustlib/src/rust/src");
}
if src_path.exists() {
Some(src_path)
} else {
None
2020-02-17 21:33:48 +00:00
}
}
2020-03-19 16:59:31 +00:00
impl SysrootCrateData {
pub fn root_dir(&self) -> &AbsPath {
2020-03-19 16:59:31 +00:00
self.root.parent().unwrap()
2019-01-10 21:37:10 +00:00
}
}
2019-01-10 19:47:05 +00:00
const SYSROOT_CRATES: &str = "
alloc
2020-07-30 14:17:59 +00:00
core
2019-01-10 19:47:05 +00:00
panic_abort
2020-07-30 14:17:59 +00:00
panic_unwind
proc_macro
profiler_builtins
rtstartup
std
stdarch
2019-01-10 19:47:05 +00:00
term
2020-07-30 14:17:59 +00:00
test
unwind";
2019-01-10 19:47:05 +00:00
const STD_DEPS: &str = "
2019-02-03 22:23:59 +00:00
alloc
2019-02-03 15:35:42 +00:00
core
2019-01-10 19:47:05 +00:00
panic_abort
2020-07-30 14:17:59 +00:00
panic_unwind
profiler_builtins
rtstartup
proc_macro
stdarch
term
test
unwind";