2022-08-17 14:31:53 +00:00
|
|
|
use std::process::Command;
|
|
|
|
|
2019-05-22 11:50:23 +00:00
|
|
|
use crate::exercise::{Exercise, Mode};
|
2019-01-09 21:04:08 +00:00
|
|
|
use crate::verify::test;
|
2019-01-09 19:33:43 +00:00
|
|
|
use indicatif::ProgressBar;
|
|
|
|
|
2020-06-04 14:31:17 +00:00
|
|
|
// Invoke the rust compiler on the path of the given exercise,
|
|
|
|
// and run the ensuing binary.
|
|
|
|
// The verbose argument helps determine whether or not to show
|
|
|
|
// the output from the test harnesses (if the mode of the exercise is test)
|
|
|
|
pub fn run(exercise: &Exercise, verbose: bool) -> Result<(), ()> {
|
2019-04-11 20:41:24 +00:00
|
|
|
match exercise.mode {
|
2020-06-04 14:31:17 +00:00
|
|
|
Mode::Test => test(exercise, verbose)?,
|
2019-04-11 20:41:24 +00:00
|
|
|
Mode::Compile => compile_and_run(exercise)?,
|
2020-02-14 14:25:03 +00:00
|
|
|
Mode::Clippy => compile_and_run(exercise)?,
|
2019-03-06 20:47:00 +00:00
|
|
|
}
|
2019-04-11 20:41:24 +00:00
|
|
|
Ok(())
|
2019-03-06 20:47:00 +00:00
|
|
|
}
|
2019-01-09 19:33:58 +00:00
|
|
|
|
2022-08-17 14:31:53 +00:00
|
|
|
// Resets the exercise by stashing the changes.
|
|
|
|
pub fn reset(exercise: &Exercise) -> Result<(), ()> {
|
|
|
|
let command = Command::new("git")
|
|
|
|
.args(["stash", "--"])
|
|
|
|
.arg(&exercise.path)
|
|
|
|
.spawn();
|
|
|
|
|
|
|
|
match command {
|
|
|
|
Ok(_) => Ok(()),
|
|
|
|
Err(_) => Err(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 14:31:17 +00:00
|
|
|
// Invoke the rust compiler on the path of the given exercise
|
|
|
|
// and run the ensuing binary.
|
|
|
|
// This is strictly for non-test binaries, so output is displayed
|
2020-02-20 19:11:53 +00:00
|
|
|
fn compile_and_run(exercise: &Exercise) -> Result<(), ()> {
|
2019-03-11 14:09:20 +00:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
2022-10-12 20:30:52 +00:00
|
|
|
progress_bar.set_message(format!("Compiling {exercise}..."));
|
2019-03-11 14:09:20 +00:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-07 16:12:03 +00:00
|
|
|
|
2020-02-20 19:11:53 +00:00
|
|
|
let compilation_result = exercise.compile();
|
|
|
|
let compilation = match compilation_result {
|
|
|
|
Ok(compilation) => compilation,
|
|
|
|
Err(output) => {
|
|
|
|
progress_bar.finish_and_clear();
|
|
|
|
warn!(
|
|
|
|
"Compilation of {} failed!, Compiler error message:\n",
|
|
|
|
exercise
|
|
|
|
);
|
|
|
|
println!("{}", output.stderr);
|
|
|
|
return Err(());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-10-12 20:30:52 +00:00
|
|
|
progress_bar.set_message(format!("Running {exercise}..."));
|
2020-02-20 19:11:53 +00:00
|
|
|
let result = compilation.run();
|
|
|
|
progress_bar.finish_and_clear();
|
2019-03-06 20:47:00 +00:00
|
|
|
|
2020-02-20 19:11:53 +00:00
|
|
|
match result {
|
|
|
|
Ok(output) => {
|
|
|
|
println!("{}", output.stdout);
|
|
|
|
success!("Successfully ran {}", exercise);
|
2019-03-06 20:47:00 +00:00
|
|
|
Ok(())
|
2020-02-20 19:11:53 +00:00
|
|
|
}
|
|
|
|
Err(output) => {
|
|
|
|
println!("{}", output.stdout);
|
|
|
|
println!("{}", output.stderr);
|
2019-03-06 20:47:00 +00:00
|
|
|
|
2020-02-20 19:11:53 +00:00
|
|
|
warn!("Ran {} with errors", exercise);
|
2019-03-06 20:47:00 +00:00
|
|
|
Err(())
|
2019-01-09 19:33:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|