rustlings/src/project.rs

84 lines
2.5 KiB
Rust
Raw Normal View History

2024-03-26 00:41:14 +03:00
use anyhow::{Context, Result};
use serde::Serialize;
use std::env;
use std::path::PathBuf;
2024-03-25 19:14:41 +03:00
use std::process::{Command, Stdio};
2022-06-16 06:53:41 +03:00
use crate::exercise::Exercise;
2022-06-16 06:53:41 +03:00
/// Contains the structure of resulting rust-project.json file
/// and functions to build the data required to create the file
#[derive(Serialize)]
2024-03-26 01:01:56 +03:00
struct RustAnalyzerProject {
2024-03-26 00:41:14 +03:00
sysroot_src: PathBuf,
crates: Vec<Crate>,
2022-06-16 06:53:41 +03:00
}
#[derive(Serialize)]
2024-03-26 00:41:14 +03:00
struct Crate {
root_module: PathBuf,
edition: &'static str,
// Not used, but required in the JSON file.
deps: Vec<()>,
2024-03-26 01:21:14 +03:00
// Only `test` is used for all crates.
// Therefore, an array is used instead of a `Vec`.
2024-03-26 00:41:14 +03:00
cfg: [&'static str; 1],
2022-06-16 06:53:41 +03:00
}
impl RustAnalyzerProject {
2024-03-26 01:01:56 +03:00
fn build(exercises: Vec<Exercise>) -> Result<Self> {
let crates = exercises
.into_iter()
.map(|exercise| Crate {
root_module: exercise.path,
edition: "2021",
deps: Vec::new(),
2024-03-26 01:21:14 +03:00
// This allows rust_analyzer to work inside `#[test]` blocks
2024-03-26 01:01:56 +03:00
cfg: ["test"],
})
.collect();
2024-03-26 00:41:14 +03:00
if let Some(path) = env::var_os("RUST_SRC_PATH") {
return Ok(Self {
2024-03-26 00:41:14 +03:00
sysroot_src: PathBuf::from(path),
2024-03-26 01:01:56 +03:00
crates,
});
2022-06-16 06:53:41 +03:00
}
let toolchain = Command::new("rustc")
.arg("--print")
.arg("sysroot")
2024-03-25 19:14:41 +03:00
.stderr(Stdio::inherit())
.output()
.context("Failed to get the sysroot from `rustc`. Do you have `rustc` installed?")?
.stdout;
let toolchain =
String::from_utf8(toolchain).context("The toolchain path is invalid UTF8")?;
let toolchain = toolchain.trim_end();
println!("Determined toolchain: {toolchain}\n");
let mut sysroot_src = PathBuf::with_capacity(256);
sysroot_src.extend([toolchain, "lib", "rustlib", "src", "rust", "library"]);
Ok(Self {
sysroot_src,
2024-03-26 01:01:56 +03:00
crates,
})
2022-06-16 06:53:41 +03:00
}
2024-03-26 01:01:56 +03:00
}
2022-06-16 06:53:41 +03:00
2024-03-26 01:01:56 +03:00
/// Write `rust-project.json` to disk.
pub fn write_project_json(exercises: Vec<Exercise>) -> Result<()> {
let content = RustAnalyzerProject::build(exercises)?;
2022-06-16 06:53:41 +03:00
2024-03-26 01:01:56 +03:00
// Using the capacity 2^14 since the file length in bytes is higher than 2^13.
// The final length is not known exactly because it depends on the user's sysroot path,
// the current number of exercises etc.
let mut buf = Vec::with_capacity(1 << 14);
serde_json::to_writer(&mut buf, &content)?;
std::fs::write("rust-project.json", buf)?;
Ok(())
2022-06-16 06:53:41 +03:00
}