aboutsummaryrefslogtreecommitdiff
path: root/macros/src/lib.rs
blob: 127b4cb0957a66f3395d754e6f436a972e7d80ed (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
use std::collections::HashMap;

use proc_macro::TokenStream;
use proc_macro2::TokenStream as TokenStream2;

use quote::{format_ident, quote};
use syn::{
    parse::{Parse, ParseStream, Result as ParseResult},
    parse_macro_input,
    punctuated::Punctuated,
    Expr, Ident, ItemStruct, Lit, Token,
};

struct KeyValue {
    key: Ident,
    _eq: Token![=],
    value: Expr,
}

impl Parse for KeyValue {
    fn parse(input: ParseStream) -> ParseResult<Self> {
        Ok(Self {
            key: input.parse()?,
            _eq: input.parse()?,
            value: input.parse()?,
        })
    }
}

struct LintMeta(HashMap<Ident, Expr>);

impl Parse for LintMeta {
    fn parse(input: ParseStream) -> ParseResult<Self> {
        Ok(Self(
            Punctuated::<KeyValue, Token![,]>::parse_terminated(input)?
                .into_iter()
                .map(|item| (item.key, item.value))
                .collect(),
        ))
    }
}

fn generate_self_impl(struct_name: &Ident) -> TokenStream2 {
    quote! {
        impl #struct_name {
            pub fn new() -> Box<Self> {
                Box::new(Self)
            }
        }
    }
}

fn generate_meta_impl(struct_name: &Ident, meta: &LintMeta) -> TokenStream2 {
    let name_fn = generate_name_fn(meta);
    let note_fn = generate_note_fn(meta);
    let code_fn = generate_code_fn(meta);
    let report_fn = generate_report_fn();
    let match_with_fn = generate_match_with_fn(meta);
    let match_kind = generate_match_kind(meta);
    quote! {
        impl Metadata for #struct_name {
            #name_fn
            #note_fn
            #code_fn
            #report_fn
            #match_with_fn
            #match_kind
        }
    }
}

fn generate_name_fn(meta: &LintMeta) -> TokenStream2 {
    let name = meta
        .0
        .get(&format_ident!("name"))
        .unwrap_or_else(|| panic!("`name` not present"));
    if let syn::Expr::Lit(name_lit) = name {
        if let Lit::Str(name_str) = &name_lit.lit {
            return quote! {
                fn name() -> &'static str {
                    #name_str
                }
            };
        }
    }
    panic!("Invalid value for `name`");
}

fn generate_note_fn(meta: &LintMeta) -> TokenStream2 {
    let note = meta
        .0
        .get(&format_ident!("note"))
        .unwrap_or_else(|| panic!("`note` not present"));
    if let syn::Expr::Lit(note_lit) = note {
        if let Lit::Str(note_str) = &note_lit.lit {
            return quote! {
                fn note() -> &'static str {
                    #note_str
                }
            };
        }
    }
    panic!("Invalid value for `note`");
}

fn generate_code_fn(meta: &LintMeta) -> TokenStream2 {
    let code = meta
        .0
        .get(&format_ident!("code"))
        .unwrap_or_else(|| panic!("`code` not present"));
    if let syn::Expr::Lit(code_lit) = code {
        if let Lit::Int(code_int) = &code_lit.lit {
            return quote! {
                fn code() -> u32 {
                    #code_int
                }
            };
        }
    }
    panic!("Invalid value for `note`");
}

fn generate_report_fn() -> TokenStream2 {
    quote! {
        fn report() -> Report {
            Report::new(Self::note(), Self::code())
        }
    }
}

fn generate_match_with_fn(meta: &LintMeta) -> TokenStream2 {
    let match_with_lit = meta
        .0
        .get(&format_ident!("match_with"))
        .unwrap_or_else(|| panic!("`match_with` not present"));
    if let syn::Expr::Path(match_path) = match_with_lit {
        quote! {
            fn match_with(&self, with: &SyntaxKind) -> bool {
                #match_path == *with
            }
        }
    } else if let syn::Expr::Array(array_expr) = match_with_lit {
        quote! {
            fn match_with(&self, with: &SyntaxKind) -> bool {
                #array_expr.contains(with)
            }
        }
    } else {
        panic!("`match_with` has non-path value")
    }
}

fn generate_match_kind(meta: &LintMeta) -> TokenStream2 {
    let match_with_lit = meta
        .0
        .get(&format_ident!("match_with"))
        .unwrap_or_else(|| panic!("`match_with` not present"));
    if let syn::Expr::Path(match_path) = match_with_lit {
        quote! {
            fn match_kind(&self) -> Vec<SyntaxKind> {
                vec![#match_path]
            }
        }
    } else if let syn::Expr::Array(array_expr) = match_with_lit {
        quote! {
            fn match_kind(&self) -> Vec<SyntaxKind> {
                #array_expr.to_vec()
            }
        }
    } else {
        panic!("`match_with` has non-path value")
    }
}

#[proc_macro_attribute]
pub fn lint(attr: TokenStream, item: TokenStream) -> TokenStream {
    let struct_item = parse_macro_input!(item as ItemStruct);
    let meta = parse_macro_input!(attr as LintMeta);

    let struct_name = &struct_item.ident;
    let self_impl = generate_self_impl(struct_name);
    let meta_impl = generate_meta_impl(struct_name, &meta);
    (quote! {
        #struct_item

        ::lazy_static::lazy_static! {
            pub static ref LINT: Box<dyn crate::Lint> = #struct_name::new();
        }

        #self_impl
        #meta_impl

        impl Lint for #struct_name {}
    })
    .into()
}