-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathderive_client.rs
More file actions
339 lines (320 loc) · 13.9 KB
/
Copy pathderive_client.rs
File metadata and controls
339 lines (320 loc) · 13.9 KB
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
use itertools::Itertools;
use proc_macro2::TokenStream;
use quote::{format_ident, quote};
use syn::{Error, FnArg, LitStr, Path, Type, TypePath, TypeReference};
use crate::{
attribute::pass_through_attr_to_gen_code, map_type::map_type, stellar_xdr::ScSpecTypeDef,
symbol, syn_ext,
};
fn is_muxed_address_type(arg: &FnArg) -> bool {
if let FnArg::Typed(pat_type) = arg {
if let Ok(ScSpecTypeDef::MuxedAddress) = map_type(&pat_type.ty, true, false) {
return true;
}
}
false
}
pub fn derive_client_type(crate_path: &Path, ty: &str, name: &str) -> TokenStream {
let ty_str = quote!(#ty).to_string();
// Render the Client.
let client_doc = format!("{name} is a client for calling the contract defined in {ty_str}.");
let client_ident = format_ident!("{}", name);
if cfg!(not(feature = "testutils")) {
quote! {
#[doc = #client_doc]
pub struct #client_ident<'a> {
pub env: #crate_path::Env,
pub address: #crate_path::Address,
#[doc(hidden)]
_phantom: core::marker::PhantomData<&'a ()>,
}
impl<'a> #client_ident<'a> {
pub fn new(env: &#crate_path::Env, address: &#crate_path::Address) -> Self {
Self {
env: env.clone(),
address: address.clone(),
_phantom: core::marker::PhantomData,
}
}
}
}
} else {
quote! {
#[doc = #client_doc]
pub struct #client_ident<'a> {
pub env: #crate_path::Env,
pub address: #crate_path::Address,
#[doc(hidden)]
set_auths: Option<&'a [#crate_path::xdr::SorobanAuthorizationEntry]>,
#[doc(hidden)]
mock_auths: Option<&'a [#crate_path::testutils::MockAuth<'a>]>,
#[doc(hidden)]
mock_all_auths: bool,
#[doc(hidden)]
allow_non_root_auth: bool,
}
impl<'a> #client_ident<'a> {
pub fn new(env: &#crate_path::Env, address: &#crate_path::Address) -> Self {
Self {
env: env.clone(),
address: address.clone(),
set_auths: None,
mock_auths: None,
mock_all_auths: false,
allow_non_root_auth: false,
}
}
/// Set authorizations in the environment which will be consumed by
/// contracts when they invoke `Address::require_auth` or
/// `Address::require_auth_for_args` functions.
///
/// Requires valid signatures for the authorization to be successful.
/// To mock auth without requiring valid signatures, use `mock_auths`.
///
/// See `soroban_sdk::Env::set_auths` for more details and examples.
pub fn set_auths(&self, auths: &'a [#crate_path::xdr::SorobanAuthorizationEntry]) -> Self {
Self {
env: self.env.clone(),
address: self.address.clone(),
set_auths: Some(auths),
mock_auths: self.mock_auths.clone(),
mock_all_auths: false,
allow_non_root_auth: false,
}
}
/// Mock authorizations in the environment which will cause matching invokes
/// of `Address::require_auth` and `Address::require_auth_for_args` to
/// pass.
///
/// See `soroban_sdk::Env::set_auths` for more details and examples.
pub fn mock_auths(&self, mock_auths: &'a [#crate_path::testutils::MockAuth<'a>]) -> Self {
Self {
env: self.env.clone(),
address: self.address.clone(),
set_auths: self.set_auths.clone(),
mock_auths: Some(mock_auths),
mock_all_auths: false,
allow_non_root_auth: false,
}
}
/// Mock all calls to the `Address::require_auth` and
/// `Address::require_auth_for_args` functions in invoked contracts,
/// having them succeed as if authorization was provided.
///
/// See `soroban_sdk::Env::mock_all_auths` for more details and
/// examples.
pub fn mock_all_auths(&self) -> Self {
Self {
env: self.env.clone(),
address: self.address.clone(),
set_auths: None,
mock_auths: None,
mock_all_auths: true,
allow_non_root_auth: false,
}
}
/// A version of `mock_all_auths` that allows authorizations that
/// are not present in the root invocation.
///
/// Refer to `mock_all_auths` documentation for details and
/// prefer using `mock_all_auths` unless non-root authorization is
/// required.
///
/// See `soroban_sdk::Env::mock_all_auths_allowing_non_root_auth`
/// for more details and examples.
pub fn mock_all_auths_allowing_non_root_auth(&self) -> Self {
Self {
env: self.env.clone(),
address: self.address.clone(),
set_auths: None,
mock_auths: None,
mock_all_auths: true,
allow_non_root_auth: true,
}
}
}
}
}
}
pub fn derive_client_impl(crate_path: &Path, name: &str, fns: &[syn_ext::Fn]) -> TokenStream {
// Map the traits methods to methods for the Client.
let mut errors = Vec::<Error>::new();
let fns: Vec<_> = fns
.iter()
.filter(|f| {
// Skip generating client functions for calling contract functions
// that start with '__', because the Soroban Env won't let those
// functions be invoked directly as they're reserved for callbacks
// and hooks.
!f.ident.to_string().starts_with("__")
})
.map(|f| {
let fn_ident = &f.ident;
let fn_try_ident = format_ident!("try_{}", &f.ident);
let fn_name = fn_ident.to_string();
let fn_name_symbol = symbol::short_or_long(
crate_path,
quote!(&self.env),
&LitStr::new(&fn_name, fn_ident.span()),
);
// Check for the Env argument.
let env_input = f.inputs.first().and_then(|a| match a {
FnArg::Typed(pat_type) => {
let mut ty = &*pat_type.ty;
if let Type::Reference(TypeReference { elem, .. }) = ty {
ty = elem;
}
if let Type::Path(TypePath {
path: syn::Path { segments, .. },
..
}) = ty
{
if segments.last().map_or(false, |s| s.ident == "Env") {
Some(())
} else {
None
}
} else {
None
}
}
FnArg::Receiver(_) => None,
});
// Map all remaining inputs.
let (fn_input_types, fn_input_conversions): (Vec<_>, Vec<_>) = f
.inputs
.iter()
.skip(if env_input.is_some() { 1 } else { 0 })
.map(|t| {
let ident = match syn_ext::fn_arg_ident(t) {
Ok(ident) => ident,
Err(e) => {
errors.push(e);
format_ident!("_")
}
};
let is_muxed_address = is_muxed_address_type(t);
let converted_type = if is_muxed_address {
syn_ext::fn_arg_make_into(t)
} else {
syn_ext::fn_arg_make_ref(t, None)
};
// Generate argument conversion into Val
let conversion = if is_muxed_address {
quote! { #ident.into().into_val(&self.env) }
} else {
quote! { #ident.into_val(&self.env) }
};
(converted_type, conversion)
})
.multiunzip();
let fn_output = f.output();
let fn_try_output = f.try_output(crate_path);
let fn_attrs = f
.attrs
.iter()
.filter(|attr| pass_through_attr_to_gen_code(attr))
.collect::<Vec<_>>();
if cfg!(not(feature = "testutils")) {
quote! {
#(#fn_attrs)*
pub fn #fn_ident(&self, #(#fn_input_types),*) -> #fn_output {
use core::ops::Not;
use #crate_path::{IntoVal,FromVal};
let res = self.env.invoke_contract(
&self.address,
&#fn_name_symbol,
#crate_path::vec![&self.env, #(#fn_input_conversions),*],
);
res
}
#(#fn_attrs)*
pub fn #fn_try_ident(&self, #(#fn_input_types),*) -> #fn_try_output {
use #crate_path::{IntoVal,FromVal};
let res = self.env.try_invoke_contract(
&self.address,
&#fn_name_symbol,
#crate_path::vec![&self.env, #(#fn_input_conversions),*],
);
res
}
}
} else {
quote! {
#(#fn_attrs)*
pub fn #fn_ident(&self, #(#fn_input_types),*) -> #fn_output {
use core::ops::Not;
let old_auth_manager = self.env.in_contract().not().then(||
self.env.host().snapshot_auth_manager().unwrap()
);
{
if let Some(set_auths) = self.set_auths {
self.env.set_auths(set_auths);
}
if let Some(mock_auths) = self.mock_auths {
self.env.mock_auths(mock_auths);
}
if self.mock_all_auths {
if self.allow_non_root_auth {
self.env.mock_all_auths_allowing_non_root_auth();
} else {
self.env.mock_all_auths();
}
}
}
use #crate_path::{IntoVal,FromVal};
let res = self.env.invoke_contract(
&self.address,
&#fn_name_symbol,
#crate_path::vec![&self.env, #(#fn_input_conversions),*],
);
if let Some(old_auth_manager) = old_auth_manager {
self.env.host().set_auth_manager(old_auth_manager).unwrap();
}
res
}
#(#fn_attrs)*
pub fn #fn_try_ident(&self, #(#fn_input_types),*) -> #fn_try_output {
use core::ops::Not;
let old_auth_manager = self.env.in_contract().not().then(||
self.env.host().snapshot_auth_manager().unwrap()
);
{
if let Some(set_auths) = self.set_auths {
self.env.set_auths(set_auths);
}
if let Some(mock_auths) = self.mock_auths {
self.env.mock_auths(mock_auths);
}
if self.mock_all_auths {
self.env.mock_all_auths();
}
}
use #crate_path::{IntoVal,FromVal};
let res = self.env.try_invoke_contract(
&self.address,
&#fn_name_symbol,
#crate_path::vec![&self.env, #(#fn_input_conversions),*],
);
if let Some(old_auth_manager) = old_auth_manager {
self.env.host().set_auth_manager(old_auth_manager).unwrap();
}
res
}
}
}
})
.collect();
// If errors have occurred, render them instead.
if !errors.is_empty() {
let compile_errors = errors.iter().map(Error::to_compile_error);
return quote! { #(#compile_errors)* };
}
// Render the Client.
let client_ident = format_ident!("{}", name);
quote! {
impl<'a> #client_ident<'a> {
#(#fns)*
}
}
}