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
#![warn(clippy::all)]
#![warn(rust_2018_idioms)]
#[macro_use]
extern crate quote;
use syn::{parse_macro_input, ItemFn, Token};
fn arg_is_task(arg: &syn::PatType) -> bool {
if let syn::Type::Reference(_) = *arg.ty {
} else {
return false;
};
if let syn::Pat::Ident(ref pat_ident) = *arg.pat {
pat_ident.ident == "task"
} else {
false
}
}
#[proc_macro_attribute]
pub fn rust_fun(
attrs: proc_macro::TokenStream,
input: proc_macro::TokenStream,
) -> proc_macro::TokenStream {
let attrs: proc_macro2::TokenStream = attrs.into();
let mut attrs_iter = attrs.into_iter();
let arret_type = attrs_iter.next().expect("Arret type expected");
if attrs_iter.next().is_some() {
panic!("unexpected tokens after Arret type");
}
let mut input_fn = parse_macro_input!(input as ItemFn);
let mut input_sig = &mut input_fn.sig;
let vis = input_fn.vis.clone();
let entry_point_name = format!("arret_{}_entry_point", input_sig.ident);
let entry_point_ident = proc_macro2::Ident::new(&entry_point_name, input_sig.ident.span());
let descriptor_ident = std::mem::replace(&mut input_sig.ident, entry_point_ident);
input_sig.abi = Some(syn::Abi {
extern_token: Token),
name: Some(syn::LitStr::new("C", input_sig.ident.span())),
});
let takes_task = input_sig
.inputs
.first()
.map(|arg| match arg {
syn::FnArg::Typed(typed) => arg_is_task(typed),
_ => false,
})
.unwrap_or(false);
let mut param_iter = input_sig.inputs.iter();
if takes_task {
param_iter.next();
}
let param_types = param_iter.map(|arg| match arg {
syn::FnArg::Typed(typed) => typed.ty.clone(),
_ => panic!("unexpected arg type"),
});
let ret_type = match input_sig.output {
syn::ReturnType::Default => quote!(()),
syn::ReturnType::Type(_, ref ret_type) => quote!(#ret_type),
};
let expanded = quote! {
#[allow(non_upper_case_globals)]
#vis const #descriptor_ident: RustFun = RustFun {
arret_type: #arret_type,
takes_task: #takes_task,
params: &[#(
<#param_types as ::arret_runtime::abitype::EncodeAbiType>::PARAM_ABI_TYPE
),*],
ret: <#ret_type as ::arret_runtime::abitype::EncodeRetAbiType>::RET_ABI_TYPE,
symbol: #entry_point_name,
};
#[no_mangle]
#input_fn
};
expanded.into()
}