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;
|
|
|
|
|
2019-04-11 21:41:24 +01:00
|
|
|
pub fn run(exercise: &Exercise) -> Result<(), ()> {
|
|
|
|
match exercise.mode {
|
2019-11-12 10:35:40 +00:00
|
|
|
Mode::Test => test(exercise)?,
|
2019-04-11 21:41:24 +01:00
|
|
|
Mode::Compile => 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-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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|