2024-04-18 06:41:17 -04:00
|
|
|
use anyhow::{Context, Result};
|
2024-04-13 20:41:19 -04:00
|
|
|
use crossterm::style::{style, StyledContent, Stylize};
|
2024-04-07 18:36:26 -04:00
|
|
|
use std::{
|
2024-04-13 19:15:43 -04:00
|
|
|
fmt::{self, Display, Formatter},
|
2024-04-13 20:41:19 -04:00
|
|
|
fs,
|
2024-04-17 17:37:31 -04:00
|
|
|
path::Path,
|
2024-04-18 06:41:17 -04:00
|
|
|
process::{Command, Output},
|
2024-04-07 18:36:26 -04:00
|
|
|
};
|
2019-04-11 16:41:24 -04:00
|
|
|
|
2024-04-18 06:41:17 -04:00
|
|
|
use crate::{info_file::Mode, DEVELOPING_OFFICIAL_RUSTLINGS};
|
2024-03-31 10:55:33 -04:00
|
|
|
|
2024-04-13 20:41:19 -04:00
|
|
|
pub struct TerminalFileLink<'a> {
|
|
|
|
path: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Display for TerminalFileLink<'a> {
|
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
|
|
|
|
if let Ok(Some(canonical_path)) = fs::canonicalize(self.path)
|
|
|
|
.as_deref()
|
|
|
|
.map(|path| path.to_str())
|
|
|
|
{
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"\x1b]8;;file://{}\x1b\\{}\x1b]8;;\x1b\\",
|
|
|
|
canonical_path, self.path,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
write!(f, "{}", self.path,)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
2024-04-13 20:41:19 -04:00
|
|
|
pub path: &'static str,
|
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.
|
2024-04-17 17:37:31 -04:00
|
|
|
if DEVELOPING_OFFICIAL_RUSTLINGS && Path::new("tests").exists() {
|
2024-03-31 20:11:52 -04:00
|
|
|
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-16 15:46:07 -04:00
|
|
|
Mode::Test => self.cargo_cmd(
|
|
|
|
"test",
|
|
|
|
&[
|
|
|
|
"--",
|
|
|
|
"--color",
|
|
|
|
"always",
|
|
|
|
"--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-13 20:41:19 -04:00
|
|
|
pub fn terminal_link(&self) -> StyledContent<TerminalFileLink<'_>> {
|
|
|
|
style(TerminalFileLink { path: self.path })
|
|
|
|
.underlined()
|
|
|
|
.blue()
|
|
|
|
}
|
2019-04-11 16:41:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Exercise {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
2024-04-13 20:41:19 -04:00
|
|
|
self.path.fmt(f)
|
2019-04-11 16:41:24 -04:00
|
|
|
}
|
|
|
|
}
|