advent-of-code/aoc/src/lib.rs

33 lines
881 B
Rust
Raw Normal View History

2019-12-02 16:05:24 +01:00
use std::env;
2019-12-01 22:22:12 +01:00
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
#[macro_export]
macro_rules! err {
($($string:expr),+) => (Box::<dyn std::error::Error>::from(format!($($string),+)))
}
2019-12-02 16:05:24 +01:00
type DayFunc = fn() -> Result<()>;
pub fn run(days: &[DayFunc]) -> Result<()> {
let mut args = env::args();
args.next();
match args.next() {
Some(arg) => {
let day: usize = arg.parse().expect("Please provide a day number");
days[day - 1]().unwrap_or_else(|e| eprintln!("error running day specified: {}", e));
}
None => {
for (i, day) in days.iter().enumerate() {
let i = i + 1;
println!("day{}: ", i);
day().unwrap_or_else(|e| eprintln!("error running day {}: {}", i, e));
println!();
}
}
}
Ok(())
}