1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-27 18:16:10 +02:00

Use the parsed exercises instead of glob

This commit is contained in:
mo8it 2024-03-25 22:20:00 +01:00
parent b932ed1f67
commit 87e55ccffd
3 changed files with 14 additions and 24 deletions

View File

@ -12,7 +12,6 @@ edition = "2021"
anyhow = "1.0.81"
clap = { version = "4.5.2", features = ["derive"] }
console = "0.15.8"
glob = "0.3.0"
home = "0.5.9"
indicatif = "0.17.8"
notify-debouncer-mini = "0.4.1"

View File

@ -206,7 +206,7 @@ fn main() -> Result<()> {
Subcommands::Lsp => {
let mut project = RustAnalyzerProject::build()?;
project
.exercises_to_json()
.exercises_to_json(exercises)
.expect("Couldn't parse rustlings exercises files");
if project.crates.is_empty() {

View File

@ -1,11 +1,12 @@
use anyhow::{bail, Context, Result};
use glob::glob;
use serde::{Deserialize, Serialize};
use std::env;
use std::error::Error;
use std::path::PathBuf;
use std::process::{Command, Stdio};
use crate::exercise::Exercise;
/// Contains the structure of resulting rust-project.json file
/// and functions to build the data required to create the file
#[derive(Serialize, Deserialize)]
@ -69,30 +70,20 @@ impl RustAnalyzerProject {
Ok(())
}
/// If path contains .rs extension, add a crate to `rust-project.json`
fn path_to_json(&mut self, path: PathBuf) -> Result<(), Box<dyn Error>> {
if let Some(ext) = path.extension() {
if ext == "rs" {
self.crates.push(Crate {
root_module: path.display().to_string(),
edition: "2021".to_string(),
deps: Vec::new(),
// This allows rust_analyzer to work inside #[test] blocks
cfg: vec!["test".to_string()],
})
}
}
Ok(())
}
/// Parse the exercises folder for .rs files, any matches will create
/// a new `crate` in rust-project.json which allows rust-analyzer to
/// treat it like a normal binary
pub fn exercises_to_json(&mut self) -> Result<(), Box<dyn Error>> {
for path in glob("./exercises/**/*")? {
self.path_to_json(path?)?;
}
pub fn exercises_to_json(&mut self, exercises: Vec<Exercise>) -> Result<(), Box<dyn Error>> {
self.crates = exercises
.into_iter()
.map(|exercise| Crate {
root_module: exercise.path.display().to_string(),
edition: "2021".to_string(),
deps: Vec::new(),
// This allows rust_analyzer to work inside #[test] blocks
cfg: vec!["test".to_string()],
})
.collect();
Ok(())
}
}