rustlings/src/run.rs

55 lines
1.8 KiB
Rust
Raw Normal View History

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 console::{style, Emoji};
use indicatif::ProgressBar;
pub fn run(exercise: &Exercise) -> Result<(), ()> {
match exercise.mode {
Mode::Test => {
test(exercise)?;
}
Mode::Compile => compile_and_run(exercise)?,
}
Ok(())
}
2019-01-09 13:33:58 -06:00
pub fn compile_and_run(exercise: &Exercise) -> Result<(), ()> {
2019-03-11 08:09:20 -06:00
let progress_bar = ProgressBar::new_spinner();
progress_bar.set_message(format!("Compiling {}...", exercise).as_str());
2019-03-11 08:09:20 -06:00
progress_bar.enable_steady_tick(100);
2019-04-07 11:12:03 -05:00
let compilecmd = exercise.compile();
progress_bar.set_message(format!("Running {}...", exercise).as_str());
if compilecmd.status.success() {
let runcmd = exercise.run();
2019-03-11 08:09:20 -06:00
progress_bar.finish_and_clear();
if runcmd.status.success() {
println!("{}", String::from_utf8_lossy(&runcmd.stdout));
let formatstr = format!("{} Successfully ran {}", Emoji("", ""), exercise);
println!("{}", style(formatstr).green());
exercise.clean();
Ok(())
2019-01-09 13:33:43 -06:00
} else {
println!("{}", String::from_utf8_lossy(&runcmd.stdout));
println!("{}", String::from_utf8_lossy(&runcmd.stderr));
let formatstr = format!("{} Ran {} with errors", Emoji("⚠️ ", "!"), exercise);
2019-01-09 13:33:43 -06:00
println!("{}", style(formatstr).red());
exercise.clean();
Err(())
2019-01-09 13:33:43 -06:00
}
} else {
2019-03-11 08:09:20 -06:00
progress_bar.finish_and_clear();
let formatstr = format!(
"{} Compilation of {} failed! Compiler error message:\n",
Emoji("⚠️ ", "!"),
exercise
);
println!("{}", style(formatstr).red());
println!("{}", String::from_utf8_lossy(&compilecmd.stderr));
exercise.clean();
Err(())
2019-01-09 13:33:43 -06:00
}
}