summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 063fa3991b655e39be4927f7ab62cb963f73b9be (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
use std::fs::File;
use std::io::{self, BufRead, BufReader, Read};
use structopt::StructOpt;

mod choice;

fn main() {
    let opt = choice::Opt::from_args();

    let read = match &opt.input {
        Some(f) => Box::new(File::open(f).expect("Could not open file")) as Box<dyn Read>,
        None => Box::new(io::stdin()) as Box<dyn Read>,
    };

    let buf = BufReader::new(read);

    let lines = buf.lines();
    for line in lines {
        match line {
            Ok(l) => {
                for choice in &opt.choice {
                    choice.print_choice(&l, &opt);
                }
                println!();
            }
            Err(e) => println!("ERROR: {}", e),
        }
    }
}