mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
71 lines
1.9 KiB
Rust
71 lines
1.9 KiB
Rust
extern crate clap;
|
|
extern crate chrono;
|
|
extern crate regex;
|
|
use clap::{Arg, App};
|
|
use std::fs;
|
|
use std::io;
|
|
|
|
pub mod common;
|
|
pub mod day01;
|
|
pub mod day02;
|
|
pub mod day03;
|
|
pub mod day04;
|
|
|
|
fn get_impl(day: &str) -> Box<common::Solution> {
|
|
match day.parse() {
|
|
Ok(1) => Box::new(day01::Day01::new()),
|
|
Ok(2) => Box::new(day02::Day02::new()),
|
|
Ok(3) => Box::new(day03::Day03::new()),
|
|
Ok(4) => Box::new(day04::Day04::new()),
|
|
Ok(val) => panic!("Unimplemented day {}", val),
|
|
_ => panic!("Invalid number"),
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let matches = App::new("Advent of Code")
|
|
.version("2018")
|
|
.author("Bert Peters <bert@bertptrs.nl>")
|
|
.arg(Arg::with_name("day")
|
|
.value_name("DAY")
|
|
.help("Number of the day to execute")
|
|
.required(true)
|
|
.takes_value(true))
|
|
.arg(Arg::with_name("part2")
|
|
.short("2")
|
|
.help("Whether to run part 2")
|
|
.long("part2"))
|
|
.arg(Arg::with_name("input")
|
|
.short("i")
|
|
.long("input")
|
|
.help("Optional input file, stdin otherwise")
|
|
.takes_value(true))
|
|
.get_matches();
|
|
|
|
let mut implementation = get_impl(matches.value_of("day").unwrap());
|
|
let mut data: Box<io::Read> = match matches.value_of("input") {
|
|
Some(filename) => { Box::new(fs::File::open(filename).unwrap()) }
|
|
None => { Box::new(io::stdin()) }
|
|
};
|
|
|
|
if matches.is_present("part2") {
|
|
println!("{}", implementation.part2(&mut data));
|
|
} else {
|
|
println!("{}", implementation.part1(&mut data));
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_get_impl() {
|
|
// Verify that we can load all days
|
|
let last_implemented = 4;
|
|
for d in 1..=last_implemented {
|
|
get_impl(&format!("{}", d));
|
|
}
|
|
}
|
|
}
|