mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Document exercise
This commit is contained in:
parent
2dfc7cdb1a
commit
39a19f9450
@ -124,7 +124,27 @@ impl AppState {
|
|||||||
|
|
||||||
let exercises = exercise_infos
|
let exercises = exercise_infos
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.map(Exercise::from)
|
.map(|exercise_info| {
|
||||||
|
// Leaking to be able to borrow in the watch mode `Table`.
|
||||||
|
// Leaking is not a problem because the `AppState` instance lives until
|
||||||
|
// the end of the program.
|
||||||
|
let path = exercise_info.path().leak();
|
||||||
|
let name = exercise_info.name.leak();
|
||||||
|
let dir = exercise_info.dir.map(|dir| &*dir.leak());
|
||||||
|
|
||||||
|
let hint = exercise_info.hint.trim().to_owned();
|
||||||
|
|
||||||
|
Exercise {
|
||||||
|
dir,
|
||||||
|
name,
|
||||||
|
path,
|
||||||
|
test: exercise_info.test,
|
||||||
|
strict_clippy: exercise_info.strict_clippy,
|
||||||
|
hint,
|
||||||
|
// Updated in `Self::update_from_file`.
|
||||||
|
done: false,
|
||||||
|
}
|
||||||
|
})
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
let mut slf = Self {
|
let mut slf = Self {
|
||||||
|
@ -10,30 +10,33 @@ use std::{
|
|||||||
use crate::{
|
use crate::{
|
||||||
cmd::{run_cmd, CargoCmd},
|
cmd::{run_cmd, CargoCmd},
|
||||||
in_official_repo,
|
in_official_repo,
|
||||||
info_file::ExerciseInfo,
|
|
||||||
terminal_link::TerminalFileLink,
|
terminal_link::TerminalFileLink,
|
||||||
DEBUG_PROFILE,
|
DEBUG_PROFILE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// The initial capacity of the output buffer.
|
||||||
pub const OUTPUT_CAPACITY: usize = 1 << 14;
|
pub const OUTPUT_CAPACITY: usize = 1 << 14;
|
||||||
|
|
||||||
pub struct Exercise {
|
pub struct Exercise {
|
||||||
|
/// Directory name.
|
||||||
pub dir: Option<&'static str>,
|
pub dir: Option<&'static str>,
|
||||||
// Exercise's unique name
|
/// Exercise's unique name.
|
||||||
pub name: &'static str,
|
pub name: &'static str,
|
||||||
// Exercise's path
|
/// Path of the exercise file starting with the `exercises/` directory.
|
||||||
pub path: &'static str,
|
pub path: &'static str,
|
||||||
pub test: bool,
|
pub test: bool,
|
||||||
pub strict_clippy: bool,
|
pub strict_clippy: bool,
|
||||||
// The hint text associated with the exercise
|
|
||||||
pub hint: String,
|
pub hint: String,
|
||||||
pub done: bool,
|
pub done: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Exercise {
|
impl Exercise {
|
||||||
|
// Run the exercise's binary and append its output to the `output` buffer.
|
||||||
|
// Compilation should be done before calling this method.
|
||||||
fn run_bin(&self, output: &mut Vec<u8>, target_dir: &Path) -> Result<bool> {
|
fn run_bin(&self, output: &mut Vec<u8>, target_dir: &Path) -> Result<bool> {
|
||||||
writeln!(output, "{}", "Output".underlined())?;
|
writeln!(output, "{}", "Output".underlined())?;
|
||||||
|
|
||||||
|
// 7 = "/debug/".len()
|
||||||
let mut bin_path =
|
let mut bin_path =
|
||||||
PathBuf::with_capacity(target_dir.as_os_str().len() + 7 + self.name.len());
|
PathBuf::with_capacity(target_dir.as_os_str().len() + 7 + self.name.len());
|
||||||
bin_path.push(target_dir);
|
bin_path.push(target_dir);
|
||||||
@ -43,18 +46,23 @@ impl Exercise {
|
|||||||
let success = run_cmd(Command::new(&bin_path), &bin_path.to_string_lossy(), output)?;
|
let success = run_cmd(Command::new(&bin_path), &bin_path.to_string_lossy(), output)?;
|
||||||
|
|
||||||
if !success {
|
if !success {
|
||||||
|
// This output is important to show the user that something went wrong.
|
||||||
|
// Otherwise, calling something like `exit(1)` in an exercise without further output
|
||||||
|
// leaves the user confused about why the exercise isn't done yet.
|
||||||
writeln!(
|
writeln!(
|
||||||
output,
|
output,
|
||||||
"{}",
|
"{}",
|
||||||
"The exercise didn't run successfully (nonzero exit code)"
|
"The exercise didn't run successfully (nonzero exit code)"
|
||||||
.bold()
|
.bold()
|
||||||
.red()
|
.red(),
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(success)
|
Ok(success)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Compile, check and run the exercise.
|
||||||
|
/// The output is written to the `output` buffer after clearing it.
|
||||||
pub fn run(&self, output: &mut Vec<u8>, target_dir: &Path) -> Result<bool> {
|
pub fn run(&self, output: &mut Vec<u8>, target_dir: &Path) -> Result<bool> {
|
||||||
output.clear();
|
output.clear();
|
||||||
|
|
||||||
@ -76,9 +84,10 @@ impl Exercise {
|
|||||||
return Ok(false);
|
return Ok(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Discard the output of `cargo build` because it will be shown again by the Cargo command.
|
// Discard the output of `cargo build` because it will be shown again by Clippy.
|
||||||
output.clear();
|
output.clear();
|
||||||
|
|
||||||
|
// `--profile test` is required to also check code with `[cfg(test)]`.
|
||||||
let clippy_args: &[&str] = if self.strict_clippy {
|
let clippy_args: &[&str] = if self.strict_clippy {
|
||||||
&["--profile", "test", "--", "-D", "warnings"]
|
&["--profile", "test", "--", "-D", "warnings"]
|
||||||
} else {
|
} else {
|
||||||
@ -126,34 +135,6 @@ impl Exercise {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl From<ExerciseInfo> for Exercise {
|
|
||||||
fn from(mut exercise_info: ExerciseInfo) -> Self {
|
|
||||||
// Leaking to be able to borrow in the watch mode `Table`.
|
|
||||||
// Leaking is not a problem because the `AppState` instance lives until
|
|
||||||
// the end of the program.
|
|
||||||
let path = exercise_info.path().leak();
|
|
||||||
|
|
||||||
exercise_info.name.shrink_to_fit();
|
|
||||||
let name = exercise_info.name.leak();
|
|
||||||
let dir = exercise_info.dir.map(|mut dir| {
|
|
||||||
dir.shrink_to_fit();
|
|
||||||
&*dir.leak()
|
|
||||||
});
|
|
||||||
|
|
||||||
let hint = exercise_info.hint.trim().to_owned();
|
|
||||||
|
|
||||||
Self {
|
|
||||||
dir,
|
|
||||||
name,
|
|
||||||
path,
|
|
||||||
test: exercise_info.test,
|
|
||||||
strict_clippy: exercise_info.strict_clippy,
|
|
||||||
hint,
|
|
||||||
done: false,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Display for Exercise {
|
impl Display for Exercise {
|
||||||
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
||||||
self.path.fmt(f)
|
self.path.fmt(f)
|
||||||
|
Loading…
Reference in New Issue
Block a user