2019-05-22 12:50:23 +01: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 15:31:17 +01: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 21:41:24 +01:00
|
|
|
match exercise.mode {
|
2020-06-04 15:31:17 +01:00
|
|
|
Mode::Test => test(exercise, verbose)?,
|
2019-04-11 21:41:24 +01: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 21:41:24 +01:00
|
|
|
Ok(())
|
2019-03-06 20:47:00 +00:00
|
|
|
}
|
2019-01-09 19:33:58 +00:00
|
|
|
|
2020-06-04 15:31:17 +01: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();
|
2019-04-11 21:41:24 +01:00
|
|
|
progress_bar.set_message(format!("Compiling {}...", exercise).as_str());
|
2019-03-11 14:09:20 +00:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-07 17:12:03 +01: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(());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-04-11 21:41:24 +01:00
|
|
|
progress_bar.set_message(format!("Running {}...", exercise).as_str());
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|