164 lines
4.1 KiB
Rust
164 lines
4.1 KiB
Rust
//! FIXME: write short doc here
|
|
|
|
use std::{convert::TryFrom, env, ops, path::Path, process::Command};
|
|
|
|
use anyhow::{bail, format_err, Result};
|
|
use ra_arena::{Arena, Idx};
|
|
|
|
use crate::output;
|
|
use paths::{AbsPath, AbsPathBuf};
|
|
|
|
#[derive(Default, Debug, Clone)]
|
|
pub struct Sysroot {
|
|
crates: Arena<SysrootCrateData>,
|
|
}
|
|
|
|
pub type SysrootCrate = Idx<SysrootCrateData>;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct SysrootCrateData {
|
|
pub name: String,
|
|
pub root: AbsPathBuf,
|
|
pub deps: Vec<SysrootCrate>,
|
|
}
|
|
|
|
impl ops::Index<SysrootCrate> for Sysroot {
|
|
type Output = SysrootCrateData;
|
|
fn index(&self, index: SysrootCrate) -> &SysrootCrateData {
|
|
&self.crates[index]
|
|
}
|
|
}
|
|
|
|
impl Sysroot {
|
|
pub fn core(&self) -> Option<SysrootCrate> {
|
|
self.by_name("core")
|
|
}
|
|
|
|
pub fn alloc(&self) -> Option<SysrootCrate> {
|
|
self.by_name("alloc")
|
|
}
|
|
|
|
pub fn std(&self) -> Option<SysrootCrate> {
|
|
self.by_name("std")
|
|
}
|
|
|
|
pub fn proc_macro(&self) -> Option<SysrootCrate> {
|
|
self.by_name("proc_macro")
|
|
}
|
|
|
|
pub fn crates<'a>(&'a self) -> impl Iterator<Item = SysrootCrate> + ExactSizeIterator + 'a {
|
|
self.crates.iter().map(|(id, _data)| id)
|
|
}
|
|
|
|
pub fn discover(cargo_toml: &AbsPath) -> Result<Sysroot> {
|
|
let src = get_or_install_rust_src(cargo_toml)?;
|
|
let mut sysroot = Sysroot { crates: Arena::default() };
|
|
for name in SYSROOT_CRATES.trim().lines() {
|
|
let root = src.join(format!("lib{}", name)).join("lib.rs");
|
|
if root.exists() {
|
|
sysroot.crates.alloc(SysrootCrateData {
|
|
name: name.into(),
|
|
root,
|
|
deps: Vec::new(),
|
|
});
|
|
}
|
|
}
|
|
if let Some(std) = sysroot.std() {
|
|
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() {
|
|
if let Some(core) = sysroot.core() {
|
|
sysroot.crates[alloc].deps.push(core);
|
|
}
|
|
}
|
|
Ok(sysroot)
|
|
}
|
|
|
|
fn by_name(&self, name: &str) -> Option<SysrootCrate> {
|
|
self.crates.iter().find(|(_id, data)| data.name == name).map(|(id, _data)| id)
|
|
}
|
|
}
|
|
|
|
fn get_or_install_rust_src(cargo_toml: &AbsPath) -> Result<AbsPathBuf> {
|
|
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);
|
|
}
|
|
let current_dir = cargo_toml.parent().unwrap();
|
|
let mut rustc = Command::new(ra_toolchain::rustc());
|
|
rustc.current_dir(current_dir).args(&["--print", "sysroot"]);
|
|
let rustc_output = output(rustc)?;
|
|
let stdout = String::from_utf8(rustc_output.stdout)?;
|
|
let sysroot_path = AbsPath::assert(Path::new(stdout.trim()));
|
|
let src_path = sysroot_path.join("lib/rustlib/src/rust/src");
|
|
|
|
if !src_path.exists() {
|
|
let mut rustup = Command::new(ra_toolchain::rustup());
|
|
rustup.current_dir(current_dir).args(&["component", "add", "rust-src"]);
|
|
let _output = output(rustup)?;
|
|
}
|
|
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(),
|
|
)
|
|
}
|
|
Ok(src_path)
|
|
}
|
|
|
|
impl SysrootCrateData {
|
|
pub fn root_dir(&self) -> &AbsPath {
|
|
self.root.parent().unwrap()
|
|
}
|
|
}
|
|
|
|
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 = "
|
|
alloc
|
|
alloc_jemalloc
|
|
alloc_system
|
|
core
|
|
panic_abort
|
|
rand
|
|
compiler_builtins
|
|
unwind
|
|
rustc_asan
|
|
rustc_lsan
|
|
rustc_msan
|
|
rustc_tsan
|
|
build_helper";
|