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
197
198
199
200
201
202
203
204
#![feature(box_syntax)]
#[macro_use]
extern crate pmutil;
extern crate proc_macro;
extern crate proc_macro2;
#[macro_use]
extern crate quote;
extern crate swc_macros_common;
extern crate syn;
use swc_macros_common::prelude::*;
#[proc_macro_derive(StringEnum)]
pub fn derive_string_enum(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
let input = syn::parse::<syn::DeriveInput>(input)
.map(From::from)
.expect("failed to parse derive input");
let mut tts = TokenStream::new();
quote_spanned!(def_site() => extern crate std;).to_tokens(&mut tts);
make_as_str(&input).to_tokens(&mut tts);
derive_fmt(&input, quote_spanned!(def_site() => std::fmt::Debug)).to_tokens(&mut tts);
derive_fmt(&input, quote_spanned!(def_site() => std::fmt::Display)).to_tokens(&mut tts);
tts.into()
}
fn derive_fmt(i: &DeriveInput, trait_path: TokenStream) -> ItemImpl {
Quote::new(def_site::<Span>())
.quote_with(smart_quote!(
Vars {
Trait: trait_path,
Type: &i.ident,
as_str: make_as_str_ident(),
},
{
impl Trait for Type {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let s = self.as_str();
Trait::fmt(s, f)
}
}
}
))
.parse::<ItemImpl>()
.with_generics(i.generics.clone())
.into()
}
fn make_as_str(i: &DeriveInput) -> ItemImpl {
fn get_str_value(attrs: &[Attribute]) -> String {
let docs: Vec<_> = attrs.iter().map(doc_str).filter_map(|o| o).collect();
for raw_line in docs {
let line = raw_line.trim();
if line.starts_with("`") && line.ends_with("`") {
let mut s: String = line.split_at(1).1.into();
let new_len = s.len() - 1;
s.truncate(new_len);
return s;
}
}
panic!("Cannot determine string value of this variant")
}
let arms = Binder::new_from(&i)
.variants()
.into_iter()
.map(|v| {
let qual_name = v.qual_path();
let str_value = get_str_value(&v.attrs());
let body = box Quote::new(def_site::<Span>())
.quote_with(smart_quote!(Vars { str_value }, { return str_value }))
.parse();
let pat = match *v.data() {
Fields::Unit => box Pat::Path(PatPath {
qself: None,
path: qual_name,
}),
_ => box Quote::new(def_site::<Span>())
.quote_with(smart_quote!(Vars { qual_name }, { qual_name{..} }))
.parse(),
};
Arm {
body,
attrs: v
.attrs()
.iter()
.filter(|attr| is_attr_name(attr, "cfg"))
.cloned()
.collect(),
pats: vec![Element::End(Pat::Ref(PatRef {
and_token: def_site(),
mutability: None,
pat,
}))]
.into_iter()
.collect(),
guard: None,
fat_arrow_token: def_site(),
comma: Some(def_site()),
leading_vert: None,
}
})
.collect();
let body = Expr::Match(ExprMatch {
attrs: Default::default(),
match_token: def_site(),
brace_token: def_site(),
expr: box Quote::new(def_site::<Span>())
.quote_with(smart_quote!(Vars {}, { self }))
.parse(),
arms,
});
Quote::new(def_site::<Span>())
.quote_with(smart_quote!(
Vars {
Type: &i.ident,
body,
as_str: make_as_str_ident(),
},
{
impl Type {
pub fn as_str(&self) -> &'static str {
body
}
}
}
))
.parse::<ItemImpl>()
.with_generics(i.generics.clone())
.into()
}
fn make_as_str_ident() -> Ident {
Ident::new("as_str", call_site())
}