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
use core::num::ParseIntError;

use super::tokenizer::Tokenizer;

#[derive(Debug)]
pub enum ParseErrorKind<'a> {
    Unexpected { need: &'a str, got: Option<&'a str> },
    ParseIntError(ParseIntError),
    UnexpectedId(&'a str),
}

#[derive(Debug)]
#[allow(dead_code)]
pub struct ParseError<'a> {
    kind: ParseErrorKind<'a>,
    loc: usize,
}

impl<'a> ParseError<'a> {
    pub fn new(kind: ParseErrorKind<'a>, loc: usize) -> Self {
        Self { kind, loc }
    }
}

pub type Result<'a, T> = core::result::Result<T, ParseError<'a>>;

pub trait CmdlineParse<'a>
where
    Self: Sized,
{
    fn parse_cmdline(tokenizer: &mut Tokenizer<'a>) -> Result<'a, Self>;
}

impl<'a> CmdlineParse<'a> for bool {
    fn parse_cmdline(tokenizer: &mut Tokenizer<'a>) -> Result<'a, Self> {
        let (loc, value) = tokenizer.next_value().ok_or_else(|| {
            ParseError::new(
                ParseErrorKind::Unexpected {
                    need: "true/false",
                    got: None,
                },
                tokenizer.current_index(),
            )
        })?;

        match value {
            "true" => Ok(true),
            "false" => Ok(false),
            _ => Err(ParseError::new(
                ParseErrorKind::Unexpected {
                    need: "true/false",
                    got: Some(value),
                },
                loc,
            )),
        }
    }
}

impl<'a> CmdlineParse<'a> for u32 {
    fn parse_cmdline(tokenizer: &mut Tokenizer<'a>) -> Result<'a, Self> {
        let (loc, value) = tokenizer.next_value().ok_or_else(|| {
            ParseError::new(
                ParseErrorKind::Unexpected {
                    need: "<number>",
                    got: None,
                },
                tokenizer.current_index(),
            )
        })?;

        value
            .parse()
            .map_err(|e| ParseError::new(ParseErrorKind::ParseIntError(e), loc))
    }
}

impl<'a> CmdlineParse<'a> for &'a str {
    fn parse_cmdline(tokenizer: &mut Tokenizer<'a>) -> Result<'a, Self> {
        let (_loc, value) = tokenizer.next_value().ok_or_else(|| {
            ParseError::new(
                ParseErrorKind::Unexpected {
                    need: "<str>",
                    got: None,
                },
                tokenizer.current_index(),
            )
        })?;

        Ok(value)
    }
}