summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: c5a0f1630d492060264613d625c77a21850b83a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
extern crate structopt;
#[macro_use]
extern crate structopt_derive;
use structopt::StructOpt;

use std::path::PathBuf;
use std::io::BufReader;
use std::io::prelude::*;
use std::fs::File;
use std::process;

#[derive(StructOpt, Debug)]
#[structopt(name = "AOC2017", about = "An Advent of Code CLI arguments object.")]
struct AdventCli {
    #[structopt(help = "Which part of the puzzle you are solving")]
    part: u32,

    #[structopt(help = "Input file", parse(from_os_str))]
    input: PathBuf
}

pub struct AdventArgs {
    pub part: u32,
    pub input: Vec<String>
}

impl AdventArgs {
    pub fn init() -> AdventArgs {
        let opt = AdventCli::from_args();
        let input = match AdventArgs::read_file(&opt.input) {
            Ok(input) => input,
            Err(error) => {
                // Typically I would think of exiting the program like
                // this to be bad form, but in this case I'm matching the
                // interface of StructOpt: if the input parameters were
                // invalid, just quit now with a nice message.
                eprintln!("Error reading file: {}", error);
                process::exit(1);
            }
        };
        AdventArgs {
            part: opt.part,
            input: input
        }
    }

    fn read_file(file: &PathBuf) -> Result<Vec<String>, std::io::Error> {
        let file = File::open(file)?;
        let file_reader = BufReader::new(file);
        file_reader.lines()
            .collect::<Result<Vec<_>, _>>()
            .map(AdventArgs::preprocess_file_lines)
    }

    fn preprocess_file_lines(lines: Vec<String>) -> Vec<String> {
        lines.iter()
            .filter(|line| line.len() > 0)
            .map(|line| line.trim().to_string())
            .collect()
    }
}