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
use proc_macro::TokenStream;
use quote::{quote, ToTokens};
use syn::{parse_macro_input, Expr, ExprTuple, FnArg, Lit, ReturnType};
use std::path::PathBuf;
mod gen_rust_types;
/// hotload_macro
/// generate a struct with #[no_mangle] functions and struct type and same other types from a lib.rs file
#[proc_macro]
pub fn gen_rust_no_mangle(input: TokenStream) -> TokenStream {
// Parse the input as an expression tuple
let input = parse_macro_input!(input as ExprTuple);
let elems = &input.elems;
// Ensure we have exactly two elements in the tuple
if elems.len() < 2 {
return syn::Error::new_spanned(
input,
"Expected a tuple with two elements: (StructName, FilePath, Optioned value: bool is gen rust types)",
)
.to_compile_error()
.into();
}
// Parse the first element as a path (struct name)
let struct_name = match &elems[0] {
Expr::Path(expr_path) => match expr_path.path.get_ident().cloned() {
Some(ident) => ident,
None => {
return syn::Error::new_spanned(&elems[0], "Expected a struct name identifier")
.to_compile_error()
.into();
}
},
_ => {
return syn::Error::new_spanned(&elems[0], "Expected a struct name")
.to_compile_error()
.into()
}
};
// Parse the second element as a string literal (file path)
let file_path = match &elems[1] {
Expr::Lit(expr_lit) => match &expr_lit.lit {
Lit::Str(lit_str) => lit_str.value(),
_ => {
return syn::Error::new_spanned(
&elems[1],
"Expected a string literal for the file path",
)
.to_compile_error()
.into()
}
},
_ => {
return syn::Error::new_spanned(
&elems[1],
"Expected a string literal for the file path",
)
.to_compile_error()
.into()
}
};
// Parse the third element as a bool (is gen rust types)
let is_gen_rust_types = match &elems.get(2) {
Some(v) => match v {
Expr::Lit(expr_lit) => match &expr_lit.lit {
Lit::Bool(v) => v.value(),
_ => {
return syn::Error::new_spanned(v, "Expected bool for gen rust types")
.to_compile_error()
.into()
}
},
_ => {
return syn::Error::new_spanned(v, "Expected bool for gen rust types")
.to_compile_error()
.into()
}
},
None => false,
};
// Read the file content
let lib_rs_path = resolve_input_path(&file_path);
let lib_rs_content = match std::fs::read_to_string(&lib_rs_path) {
Ok(content) => content,
Err(err) => {
return syn::Error::new_spanned(
&elems[1],
format!(
"Failed to read file: {} ({})",
lib_rs_path.display(),
err
),
)
.to_compile_error()
.into();
}
};
// Parse the file content
let file = match syn::parse_file(&lib_rs_content) {
Ok(file) => file,
Err(err) => {
return syn::Error::new_spanned(
&elems[1],
format!(
"Failed to parse file: {} ({})",
lib_rs_path.display(),
err
),
)
.to_compile_error()
.into();
}
};
// Extract #[no_mangle] functions
let mut functions = vec![];
let mut types = vec![];
let mut is_gen_a = false;
for item in file.items {
if let syn::Item::Static(item) = item {
// Check if the function is public
match item.vis {
syn::Visibility::Public(_) => {}
_ => continue,
};
// Check if the function has #[no_mangle] attribute
let has_no_mangle = item
.attrs
.iter()
.any(|attr| attr.to_token_stream().to_string().contains("no_mangle"));
if !has_no_mangle {
continue;
}
#[allow(unused_mut)]
let mut static_type = Some(&item.ty);
let mut_val = item.mutability.clone();
is_gen_a = true;
let mut_quote = match mut_val {
_ if static_type.to_token_stream().to_string().replace(' ', "").contains("&str") => {
// static_type = None;
// quote! { &'a str }
// not support static &str
continue;
}
syn::StaticMutability::Mut(_) => {
quote! { &'a mut }
}
syn::StaticMutability::None => {
quote! { &'a }
}
_ => {
// unknown static mutability
quote! { &'a }
}
};
let static_name = &item.ident;
functions.push(quote! {
#static_name : #mut_quote #static_type,
});
} else if let syn::Item::Fn(item) = item {
// Check if the function is public
match item.vis {
syn::Visibility::Public(_) => {}
_ => continue,
};
// Check if the function has #[no_mangle] attribute
let has_no_mangle = item
.attrs
.iter()
.any(|attr| attr.to_token_stream().to_string().contains("no_mangle"));
if !has_no_mangle {
continue;
}
let fn_name = &item.sig.ident;
// Process function arguments
let inputs: Result<Vec<_>, syn::Error> = item
.sig
.inputs
.iter()
.map(|arg| {
if let FnArg::Typed(pat_type) = arg {
if let syn::Pat::Ident(pat_ident) = &*pat_type.pat {
let name = &pat_ident.ident;
let ty = &pat_type.ty;
Ok(quote! { #name: #ty })
} else {
Err(syn::Error::new_spanned(
&pat_type.pat,
"Unsupported function argument pattern",
))
}
} else {
Err(syn::Error::new_spanned(
arg,
"Unsupported function argument pattern",
))
}
})
.collect();
let inputs = match inputs {
Ok(v) => v,
Err(err) => return err.to_compile_error().into(),
};
// Process return type
let ret_type = match &item.sig.output {
ReturnType::Type(_, ty) => quote! { -> #ty },
ReturnType::Default => quote! {},
};
if ret_type.to_string().contains("'a") {
is_gen_a = true;
}
functions.push(quote! {
#fn_name: fn(#(#inputs),*) #ret_type,
});
} else if is_gen_rust_types {
if let Some((_name, v)) = gen_rust_types::gen_rust_types(item) {
types.push(v);
}
}
}
let gen_a = if is_gen_a {
quote! { <'a> }
} else {
quote! {}
};
// Generate the struct code
let expanded = quote! {
#(#types)*
#[derive(dlopen2::wrapper::WrapperApi)]
pub struct #struct_name #gen_a {
#(#functions)*
}
};
// 注意:proc-macro 中禁止使用 println!,会干扰 rust-analyzer 的 stdout 通信管道
// eprintln!("hotload_macro gen code:\n{}\n", expanded);
// Return the generated code as TokenStream
TokenStream::from(expanded)
}
fn resolve_input_path(path: &str) -> PathBuf {
let input = PathBuf::from(path);
if input.is_absolute() {
return input;
}
if let Ok(manifest_dir) = std::env::var("CARGO_MANIFEST_DIR") {
let mut base = PathBuf::from(manifest_dir);
base.push(path);
return base;
}
if let Ok(current_dir) = std::env::current_dir() {
let mut base = current_dir;
base.push(path);
return base;
}
input
}