summaryrefslogtreecommitdiffstats
path: root/src/cli.rs
blob: 12f1cfc69a499b178fcca3446c7f1668e12c1ae3 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
use std::env;

use crate::{Error, Input, Result};

// NOTE: I assumed I should keep this "DIY". I would  most likely use some "de facto" external
// libraries like `clap`, `serde`, ect.

#[derive(Debug, Default)]
pub struct Cli {
    pub files: Vec<Input>,
    pub opts: Opts,
}

impl Cli {
    pub fn parse() -> Result<Self> {
        env::args()
            .skip(1)
            .try_fold(Cli::default(), |mut cli, opt| {
                match opt.as_str() {
                    "-" => cli.files.push(Input::Stdin),
                    o if o.starts_with("--") => cli.opts.parse_long(o)?,
                    o if o.starts_with('-') => cli.opts.parse_short(o)?,
                    s => cli.files.push(s.into()),
                };
                Ok(cli)
            })
            .map(|mut cli| {
                if cli.files.is_empty() {
                    cli.files.push(Input::Stdin);
                }
                cli
            })
    }
}

#[derive(Debug, Default)]
pub struct Opts {
    /// number nonempty output lines, overrides -n
    pub number_nonblank: bool,

    /// display $ at end of each line
    pub show_ends: bool,

    /// number all output lines
    pub number: bool,

    /// suppress repeated empty output lines
    pub squeeze_blank: bool,

    /// display TAB characters as ^I
    pub show_tabs: bool,

    /// use ^ and M- notation, except for LFD and TAB
    pub show_nonprinting: bool,

    /// display help and exit
    pub help: bool,

    /// output version information and exit
    pub version: bool,
}

impl Opts {
    fn parse_long(&mut self, s: &str) -> Result<()> {
        match s {
            "--number-nonblank" => self.number_nonblank = true,
            "--show-ends" => self.show_ends = true,
            "--number" => self.number = true,
            "--squeeze-blank" => self.squeeze_blank = true,
            "--show-tabs" => self.show_tabs = true,
            "--show-nonprinting" => self.show_nonprinting = true,
            "--help" => self.help = true,
            "--version" => self.version = true,
            s => return Err(Error::Opts(s.to_string())),
        };
        Ok(())
    }

    fn parse_short(&mut self, s: &str) -> Result<()> {
        for o in s.chars().skip(1) {
            match o {
                'b' => self.number_nonblank = true,
                'E' => self.show_ends = true,
                'n' => self.number = true,
                's' => self.squeeze_blank = true,
                'T' => self.show_tabs = true,
                'v' => self.show_nonprinting = true,
                s => return Err(Error::Opts(s.to_string())),
            };
        }
        Ok(())
    }
}