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
extern crate proc_macro;
mod derive_client;
mod derive_fn;
mod derive_type;
mod map_type;
mod path;
mod syn_ext;
use derive_client::derive_client;
use derive_fn::{derive_contract_function_set, derive_fn};
use derive_type::{derive_type_enum, derive_type_struct};
use darling::FromMeta;
use proc_macro::TokenStream;
use proc_macro2::{Literal, Span, TokenStream as TokenStream2};
use quote::quote;
use sha2::{Digest, Sha256};
use soroban_spec::gen::rust::{generate_from_wasm, GenerateFromFileError};
use std::fs;
use syn::{
parse_macro_input, spanned::Spanned, AttributeArgs, DeriveInput, Error, ItemImpl, Type,
Visibility,
};
use self::derive_client::ClientItem;
#[derive(Debug, FromMeta)]
struct ContractImplArgs {
#[darling(default = "contractimpl_args_default_export")]
export: bool,
}
fn contractimpl_args_default_export() -> bool {
true
}
#[proc_macro_attribute]
pub fn contractimpl(metadata: TokenStream, input: TokenStream) -> TokenStream {
let args = parse_macro_input!(metadata as AttributeArgs);
let args = match ContractImplArgs::from_list(&args) {
Ok(v) => v,
Err(e) => return e.write_errors().into(),
};
let imp = parse_macro_input!(input as ItemImpl);
let ty = &imp.self_ty;
let client_ident = if let Type::Path(path) = &**ty {
path.path
.segments
.last()
.map(|name| format!("{}Client", name.ident))
} else {
None
}
.unwrap_or_else(|| format!("Client"));
let pub_methods: Vec<_> = syn_ext::impl_pub_methods(&imp).collect();
let derived: Result<proc_macro2::TokenStream, proc_macro2::TokenStream> = pub_methods
.iter()
.map(|m| {
let ident = &m.sig.ident;
let call = quote! { <super::#ty>::#ident };
let trait_ident = imp.trait_.as_ref().and_then(|x| x.1.get_ident());
derive_fn(
&call,
ty,
ident,
&m.sig.inputs,
&m.sig.output,
args.export,
&trait_ident,
&client_ident,
)
})
.collect();
match derived {
Ok(derived_ok) => {
let cfs = derive_contract_function_set(ty, pub_methods.into_iter());
quote! {
#[::soroban_sdk::contractclient(name = #client_ident)]
#imp
#derived_ok
#cfs
}
.into()
}
Err(derived_err) => quote! {
#imp
#derived_err
}
.into(),
}
}
#[derive(Debug, FromMeta)]
struct ContractTypeArgs {
lib: Option<String>,
}
#[proc_macro_attribute]
pub fn contracttype(metadata: TokenStream, input: TokenStream) -> TokenStream {
let args = parse_macro_input!(metadata as AttributeArgs);
let args = match ContractTypeArgs::from_list(&args) {
Ok(v) => v,
Err(e) => return e.write_errors().into(),
};
let input = parse_macro_input!(input as DeriveInput);
let ident = &input.ident;
let gen_spec = matches!(input.vis, Visibility::Public(_));
let derived = match &input.data {
syn::Data::Struct(s) => derive_type_struct(ident, s, gen_spec, &args.lib),
syn::Data::Enum(e) => derive_type_enum(ident, e, gen_spec, &args.lib),
syn::Data::Union(u) => Error::new(
u.union_token.span(),
"unions are unsupported as contract types",
)
.to_compile_error(),
};
quote! {
#input
#derived
}
.into()
}
#[derive(Debug, FromMeta)]
struct ContractFileArgs {
file: String,
sha256: darling::util::SpannedValue<String>,
}
#[doc(hidden)]
#[proc_macro]
pub fn contractfile(metadata: TokenStream) -> TokenStream {
let args = parse_macro_input!(metadata as AttributeArgs);
let args = match ContractFileArgs::from_list(&args) {
Ok(v) => v,
Err(e) => return e.write_errors().into(),
};
let file_abs = path::abs_from_rel_to_manifest(&args.file);
let wasm = match fs::read(file_abs) {
Ok(wasm) => wasm,
Err(e) => {
return Error::new(Span::call_site(), e.to_string())
.into_compile_error()
.into()
}
};
let sha256 = Sha256::digest(&wasm);
let sha256 = format!("{:x}", sha256);
if *args.sha256 != sha256 {
return Error::new(
args.sha256.span(),
format!("sha256 does not match, expected: {}", sha256),
)
.into_compile_error()
.into();
}
let contents_lit = Literal::byte_string(&wasm);
quote! { #contents_lit }.into()
}
#[derive(Debug, FromMeta)]
struct ContractClientArgs {
name: String,
}
#[doc(hidden)]
#[proc_macro_attribute]
pub fn contractclient(metadata: TokenStream, input: TokenStream) -> TokenStream {
let args = parse_macro_input!(metadata as AttributeArgs);
let args = match ContractClientArgs::from_list(&args) {
Ok(v) => v,
Err(e) => return e.write_errors().into(),
};
let input2: TokenStream2 = input.clone().into();
let item = parse_macro_input!(input as ClientItem);
let methods: Vec<_> = item.fns();
let client = derive_client(&args.name, &methods);
quote! {
#input2
#client
}
.into()
}
#[derive(Debug, FromMeta)]
struct ContractImportArgs {
file: String,
#[darling(default)]
sha256: darling::util::SpannedValue<Option<String>>,
}
#[proc_macro]
pub fn contractimport(metadata: TokenStream) -> TokenStream {
let attr_args = parse_macro_input!(metadata as AttributeArgs);
let args = match ContractImportArgs::from_list(&attr_args) {
Ok(v) => v,
Err(e) => return e.write_errors().into(),
};
let file_abs = path::abs_from_rel_to_manifest(&args.file);
let wasm = match fs::read(file_abs) {
Ok(wasm) => wasm,
Err(e) => {
return Error::new(Span::call_site(), e.to_string())
.into_compile_error()
.into()
}
};
match generate_from_wasm(&wasm, &args.file, args.sha256.as_deref()) {
Ok(code) => quote! { #code },
Err(e @ GenerateFromFileError::VerifySha256 { .. }) => {
Error::new(args.sha256.span(), e.to_string()).into_compile_error()
}
Err(e) => Error::new(Span::call_site(), e.to_string()).into_compile_error(),
}
.into()
}