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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
use proc_macro::TokenStream;
use proc_macro_error::*;
use quote::quote;
use syn::{
parse_macro_input,
spanned::Spanned,
Attribute,
AttributeArgs,
Data,
DeriveInput,
Lit,
LitStr,
NestedMeta,
Type,
};
#[derive(Default)]
struct MacroFlags {
pub no_debug: bool,
pub no_display: bool,
pub no_partial_eq: bool,
pub no_total_eq: bool,
pub no_try_from: bool,
pub no_clone: bool,
pub no_copy: bool,
}
struct MacroAttrs {
pub repr: Type,
pub flags: MacroFlags,
}
fn parse_attrs(attrs: &Vec<Attribute>) -> MacroAttrs {
let mut macro_attrs = MacroAttrs {
repr: syn::parse_str("u8").unwrap(),
flags: Default::default(),
};
enum InnerParseError {
FailedToParseAttributeArgs,
UnknownVariantSpecified { variant: String },
LiteralsAreNotSupported,
}
fn parse_inner_args(
stream: TokenStream,
flags: &mut MacroFlags,
) -> Result<(), InnerParseError> {
let Ok(punct) = syn::parse_macro_input::parse::<AttributeArgs>(stream) else {
return Err(InnerParseError::FailedToParseAttributeArgs);
};
for meta in punct {
match meta {
NestedMeta::Meta(item) => {
let ident = item
.path()
.get_ident()
.expect(
"arg should be single ident, not \
absolute path",
)
.to_string();
match ident.as_str() {
"copy" => {
flags.no_copy = true;
}
"clone" => {
flags.no_clone = true;
}
"display" => {
flags.no_display = true;
}
"debug" => {
flags.no_debug = true;
}
"total_eq" => {
flags.no_total_eq = true;
}
"partial_eq" => {
flags.no_partial_eq = true;
}
"try_from" => {
flags.no_try_from = true;
}
v => {
return Err(
InnerParseError::UnknownVariantSpecified {
variant: v.into(),
},
)
}
}
}
_ => {
return Err(
InnerParseError::LiteralsAreNotSupported,
)
}
}
}
Ok(())
}
for attr in attrs {
if let Ok(meta) = attr.parse_meta() {
let path = meta.path();
if path.is_ident("enum_disable") {
if let Ok(args) =
attr.parse_args::<proc_macro2::TokenStream>()
{
if let Err(e) = parse_inner_args(
args.into(),
&mut macro_attrs.flags,
) {
match e {
InnerParseError::FailedToParseAttributeArgs => abort! {
attr, "Failed to parse attribute args";
note = "Possibly your input is not comma-separated idents?"
},
InnerParseError::LiteralsAreNotSupported => abort! {
attr, "Invalid macro argument";
help = "Try replace your literal with an ident"
},
InnerParseError::UnknownVariantSpecified { variant } => abort! {
attr, format!("Unknown variant specified: {variant}");
help = "Available variants are: display, debug, try_from, \
clone, copy, total_eq, partial_eq"
},
}
}
} else {
abort! {
attr, "Failed to parse `enum_disable` args";
note = "Possibly your input is not comma-separated list of idents";
help = "consider the following example: #[enum_disable(display, clone)],\
this will disable Display & Clone trait implementations";
};
}
} else if path.is_ident("repr") {
if let Ok(args) =
attr.parse_args::<proc_macro2::TokenStream>()
{
let args = args.into();
let args = syn::parse_macro_input::parse::<
AttributeArgs,
>(args)
.unwrap();
match args.get(0) {
Some(v) => match v {
NestedMeta::Meta(item) => {
let ident = item
.path()
.get_ident()
.unwrap()
.to_string();
macro_attrs.repr = if let Ok(t) =
syn::parse_str::<syn::Type>(
&ident,
) {
t
} else {
abort! {
v, "repr must be valid integral type";
help = "consider specifying one of: u8, u16, u32, u64,\
u128 and its signed equivalents"
};
}
}
_ => abort! {
v, "Invalid repr argument";
help = "Specify integral type to repr, for example: `#[repr(u16)]`"
},
},
None => {
abort! {
meta, "repr is expected to have 1 argument";
help = "Consider specifying an argument, for example: `#[repr(u16)]`"
}
}
};
}
}
}
}
macro_attrs
}
#[proc_macro_derive(IntegralEnum, attributes(enum_disable))]
#[proc_macro_error]
pub fn enum_try_from(input: TokenStream) -> TokenStream {
let input = parse_macro_input!(input as DeriveInput);
let macro_attrs = parse_attrs(&input.attrs);
let repr = ¯o_attrs.repr;
match input.data {
Data::Enum(e) => {
let name = input.ident;
let old_variants = e.variants;
let items: Vec<_> = old_variants
.iter()
.map(|variant| {
if !variant.fields.is_empty() {
abort! {
variant, "Enum fields with non-empty contents are not supported";
note = "Possibly your enum is not supposed to be integral"
}
}
let ident = &variant.ident;
let Some((_, discriminant)) = variant
.discriminant
.as_ref()
else {
abort! {
variant, "Explicit discriminant is required";
help = "try to specify it as follows: YourField = constant_expr"
}
};
let strlit = Lit::Str(LitStr::new(&ident.to_string(), variant.span()));
let display = quote! {
Self::#ident => { #strlit }
};
let debug = display.clone();
(
quote! {
#discriminant => { Ok(Self::#ident) }
},
display,
debug,
quote! {
Self::#ident => { Self::#ident }
},
)
})
.collect();
let convert_arms = items.iter().map(|(d, ..)| d);
let display_arms = items.iter().map(|(_, d, ..)| d);
let clone_arms = items.iter().map(|(_, _, _, d)| d);
let debug_arms = items.iter().map(|(_, _, d, ..)| d);
let display = if macro_attrs.flags.no_display {
quote!()
} else {
quote! {
impl ::core::fmt::Display for #name {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
f.write_str(match self {
#(#display_arms),*
})
}
}
}
};
let debug = if macro_attrs.flags.no_debug {
quote!()
} else {
quote! {
impl ::core::fmt::Debug for #name {
fn fmt(
&self, f: &mut ::core::fmt::Formatter<'_>
) -> ::core::result::Result<(), ::core::fmt::Error> {
f.write_str(match self {
#(#debug_arms),*
})
}
}
}
};
let (total_eq, partial_eq) = if macro_attrs
.flags
.no_partial_eq
{
(quote!(), quote!())
} else {
let partial = quote! {
impl ::core::cmp::PartialEq for #name {
fn eq(&self, other: &Self) -> bool {
::core::mem::discriminant(self) == ::core::mem::discriminant(other)
}
}
};
if macro_attrs.flags.no_total_eq {
(partial, quote!())
} else {
(
partial,
quote!(impl ::core::cmp::Eq for #name {}),
)
}
};
let (clone, copy) = if macro_attrs.flags.no_clone {
(quote!(), quote!())
} else {
let clone = quote! {
impl ::core::clone::Clone for #name {
#[inline]
fn clone(&self) -> Self {
match self {
#(#clone_arms),*
}
}
}
};
if macro_attrs.flags.no_copy {
(clone, quote!())
} else {
let copy = quote! { impl ::core::marker::Copy for #name {} };
(clone, copy)
}
};
let try_from = if macro_attrs.flags.no_try_from {
quote!()
} else {
quote! {
impl ::core::convert::TryFrom<#repr> for #name {
type Error = ();
fn try_from(v: #repr) -> ::core::result::Result<Self, Self::Error> {
match v {
#(#convert_arms),*
_ => Err(())
}
}
}
}
};
quote! {
#clone
#copy
#partial_eq
#total_eq
#try_from
#display
#debug
}
.into()
}
_ => abort! {
input, "Structures and unions are not supported"
},
}
}