2024-03-31 10:55:33 -04:00
|
|
|
use anyhow::{Context, Result};
|
2024-04-07 18:36:26 -04:00
|
|
|
use std::{
|
2024-04-13 19:15:43 -04:00
|
|
|
fmt::{self, Display, Formatter},
|
|
|
|
path::Path,
|
2024-04-07 18:36:26 -04:00
|
|
|
process::{Command, Output},
|
|
|
|
};
|
2019-04-11 16:41:24 -04:00
|
|
|
|
2024-04-13 19:15:43 -04:00
|
|
|
use crate::{
|
|
|
|
embedded::{WriteStrategy, EMBEDDED_FILES},
|
|
|
|
info_file::Mode,
|
|
|
|
};
|
2024-03-31 10:55:33 -04:00
|
|
|
|
2019-04-11 16:41:24 -04:00
|
|
|
pub struct Exercise {
|
2024-04-13 19:15:43 -04:00
|
|
|
// Exercise's unique name
|
|
|
|
pub name: &'static str,
|
|
|
|
// Exercise's path
|
|
|
|
pub path: &'static Path,
|
2024-03-31 10:55:33 -04:00
|
|
|
// The mode of the exercise
|
2019-04-11 16:41:24 -04:00
|
|
|
pub mode: Mode,
|
2020-06-04 10:31:17 -04:00
|
|
|
// The hint text associated with the exercise
|
2019-11-11 10:51:38 -05:00
|
|
|
pub hint: String,
|
2024-04-13 19:15:43 -04:00
|
|
|
pub done: bool,
|
2019-04-11 16:41:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Exercise {
|
2024-03-31 10:55:33 -04:00
|
|
|
fn cargo_cmd(&self, command: &str, args: &[&str]) -> Result<Output> {
|
2024-03-31 20:11:52 -04:00
|
|
|
let mut cmd = Command::new("cargo");
|
|
|
|
cmd.arg(command);
|
|
|
|
|
|
|
|
// A hack to make `cargo run` work when developing Rustlings.
|
|
|
|
// Use `dev/Cargo.toml` when in the directory of the repository.
|
|
|
|
#[cfg(debug_assertions)]
|
|
|
|
if std::path::Path::new("tests").exists() {
|
|
|
|
cmd.arg("--manifest-path").arg("dev/Cargo.toml");
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.arg("--color")
|
2024-03-31 10:55:33 -04:00
|
|
|
.arg("always")
|
|
|
|
.arg("-q")
|
|
|
|
.arg("--bin")
|
2024-04-13 19:15:43 -04:00
|
|
|
.arg(self.name)
|
2024-03-31 10:55:33 -04:00
|
|
|
.args(args)
|
2019-04-11 16:41:24 -04:00
|
|
|
.output()
|
2024-03-31 10:55:33 -04:00
|
|
|
.context("Failed to run Cargo")
|
|
|
|
}
|
2019-04-11 16:41:24 -04:00
|
|
|
|
2024-03-31 10:55:33 -04:00
|
|
|
pub fn run(&self) -> Result<Output> {
|
|
|
|
match self.mode {
|
2024-04-13 19:15:43 -04:00
|
|
|
Mode::Run => self.cargo_cmd("run", &[]),
|
2024-04-04 18:43:36 -04:00
|
|
|
Mode::Test => self.cargo_cmd("test", &["--", "--nocapture", "--format", "pretty"]),
|
2024-03-31 10:55:33 -04:00
|
|
|
Mode::Clippy => self.cargo_cmd(
|
|
|
|
"clippy",
|
|
|
|
&["--", "-D", "warnings", "-D", "clippy::float_cmp"],
|
|
|
|
),
|
2020-02-20 14:11:53 -05:00
|
|
|
}
|
2019-04-11 16:41:24 -04:00
|
|
|
}
|
2019-11-11 07:38:24 -05:00
|
|
|
|
2024-04-07 16:43:59 -04:00
|
|
|
pub fn reset(&self) -> Result<()> {
|
|
|
|
EMBEDDED_FILES
|
2024-04-13 19:15:43 -04:00
|
|
|
.write_exercise_to_disk(self.path, WriteStrategy::Overwrite)
|
2024-04-07 16:43:59 -04:00
|
|
|
.with_context(|| format!("Failed to reset the exercise {self}"))
|
|
|
|
}
|
2019-04-11 16:41:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Exercise {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
2024-04-12 13:07:17 -04:00
|
|
|
Display::fmt(&self.path.display(), f)
|
2019-04-11 16:41:24 -04:00
|
|
|
}
|
|
|
|
}
|