aboutsummaryrefslogtreecommitdiff
path: root/macros/src/macro_flag.rs
blob: ba71cc22f12cfb2048870041156d7ffd73e29020 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
use std::hash::Hash;

use proc_macro2::Span;
use syn::parse::{Parse, ParseStream};
use syn::{Ident, Lit, LitBool, Token};

use crate::util::error::diagnostic_error_enum;

#[derive(Debug, Clone)]
pub struct MacroFlag
{
    pub name: Ident,
    pub value: MacroFlagValue,
}

impl MacroFlag
{
    pub fn new_off(flag: &str) -> Self
    {
        Self {
            name: Ident::new(flag, Span::call_site()),
            value: MacroFlagValue::Literal(Lit::Bool(LitBool::new(
                false,
                Span::call_site(),
            ))),
        }
    }

    pub fn name(&self) -> &Ident
    {
        &self.name
    }

    pub fn get_bool(&self) -> Result<bool, MacroFlagError>
    {
        if let MacroFlagValue::Literal(Lit::Bool(lit_bool)) = &self.value {
            return Ok(lit_bool.value);
        }

        Err(MacroFlagError::UnexpectedValueKind {
            expected: "boolean literal",
            value_span: self.value.span(),
        })
    }

    pub fn get_ident(&self) -> Result<Ident, MacroFlagError>
    {
        if let MacroFlagValue::Identifier(ident) = &self.value {
            return Ok(ident.clone());
        }

        Err(MacroFlagError::UnexpectedValueKind {
            expected: "identifier",
            value_span: self.value.span(),
        })
    }
}

impl Parse for MacroFlag
{
    fn parse(input: ParseStream) -> syn::Result<Self>
    {
        let name = input.parse::<Ident>()?;

        input.parse::<Token![=]>()?;

        let value: MacroFlagValue = input.parse()?;

        Ok(Self { name, value })
    }
}

impl PartialEq for MacroFlag
{
    fn eq(&self, other: &Self) -> bool
    {
        self.name == other.name
    }
}

impl Eq for MacroFlag {}

impl Hash for MacroFlag
{
    fn hash<H: std::hash::Hasher>(&self, state: &mut H)
    {
        self.name.hash(state);
    }
}

diagnostic_error_enum! {
pub enum MacroFlagError {
    #[error("Expected a {expected}"), span = value_span]
    UnexpectedValueKind {
        expected: &'static str,
        value_span: Span
    },
}
}

#[derive(Debug, Clone)]
pub enum MacroFlagValue
{
    Literal(Lit),
    Identifier(Ident),
}

impl MacroFlagValue
{
    fn span(&self) -> Span
    {
        match self {
            Self::Literal(lit) => lit.span(),
            Self::Identifier(ident) => ident.span(),
        }
    }
}

impl Parse for MacroFlagValue
{
    fn parse(input: ParseStream) -> syn::Result<Self>
    {
        if let Ok(lit) = input.parse::<Lit>() {
            return Ok(Self::Literal(lit));
        };

        input.parse::<Ident>().map(Self::Identifier).map_err(|err| {
            syn::Error::new(err.span(), "Expected a literal or a identifier")
        })
    }
}

#[cfg(test)]
mod tests
{
    use std::error::Error;

    use proc_macro2::Span;
    use quote::{format_ident, quote};
    use syn::parse2;

    use super::*;

    #[test]
    fn can_parse_macro_flag() -> Result<(), Box<dyn Error>>
    {
        assert_eq!(
            parse2::<MacroFlag>(quote! {
                more = true
            })?,
            MacroFlag {
                name: format_ident!("more"),
                value: MacroFlagValue::Literal(Lit::Bool(LitBool::new(
                    true,
                    Span::call_site()
                )))
            }
        );

        assert_eq!(
            parse2::<MacroFlag>(quote! {
                do_something = false
            })?,
            MacroFlag {
                name: format_ident!("do_something"),
                value: MacroFlagValue::Literal(Lit::Bool(LitBool::new(
                    false,
                    Span::call_site()
                )))
            }
        );

        assert!(parse2::<MacroFlag>(quote! {
            10 = false
        })
        .is_err());

        Ok(())
    }
}