2019-05-22 06:50:23 -05:00
|
|
|
use crate::exercise::{Exercise, Mode};
|
2019-01-09 15:04:08 -06:00
|
|
|
use crate::verify::test;
|
2019-01-09 13:33:43 -06:00
|
|
|
use indicatif::ProgressBar;
|
|
|
|
|
2020-06-04 09:31:17 -05: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 15:41:24 -05:00
|
|
|
match exercise.mode {
|
2020-06-04 09:31:17 -05:00
|
|
|
Mode::Test => test(exercise, verbose)?,
|
2019-04-11 15:41:24 -05:00
|
|
|
Mode::Compile => compile_and_run(exercise)?,
|
2020-02-14 08:25:03 -06:00
|
|
|
Mode::Clippy => compile_and_run(exercise)?,
|
2019-03-06 14:47:00 -06:00
|
|
|
}
|
2019-04-11 15:41:24 -05:00
|
|
|
Ok(())
|
2019-03-06 14:47:00 -06:00
|
|
|
}
|
2019-01-09 13:33:58 -06:00
|
|
|
|
2020-06-04 09:31:17 -05: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 13:11:53 -06:00
|
|
|
fn compile_and_run(exercise: &Exercise) -> Result<(), ()> {
|
2019-03-11 09:09:20 -05:00
|
|
|
let progress_bar = ProgressBar::new_spinner();
|
2019-04-11 15:41:24 -05:00
|
|
|
progress_bar.set_message(format!("Compiling {}...", exercise).as_str());
|
2019-03-11 09:09:20 -05:00
|
|
|
progress_bar.enable_steady_tick(100);
|
2019-04-07 11:12:03 -05:00
|
|
|
|
2020-02-20 13:11:53 -06: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 15:41:24 -05:00
|
|
|
progress_bar.set_message(format!("Running {}...", exercise).as_str());
|
2020-02-20 13:11:53 -06:00
|
|
|
let result = compilation.run();
|
|
|
|
progress_bar.finish_and_clear();
|
2019-03-06 14:47:00 -06:00
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
match result {
|
|
|
|
Ok(output) => {
|
|
|
|
println!("{}", output.stdout);
|
|
|
|
success!("Successfully ran {}", exercise);
|
2019-03-06 14:47:00 -06:00
|
|
|
Ok(())
|
2020-02-20 13:11:53 -06:00
|
|
|
}
|
|
|
|
Err(output) => {
|
|
|
|
println!("{}", output.stdout);
|
|
|
|
println!("{}", output.stderr);
|
2019-03-06 14:47:00 -06:00
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
warn!("Ran {} with errors", exercise);
|
2019-03-06 14:47:00 -06:00
|
|
|
Err(())
|
2019-01-09 13:33:43 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|