-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathderive_struct.rs
More file actions
245 lines (224 loc) · 9.87 KB
/
derive_struct.rs
File metadata and controls
245 lines (224 loc) · 9.87 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
use itertools::Itertools;
use proc_macro2::{Literal, TokenStream as TokenStream2};
use quote::{format_ident, quote};
use syn::{Attribute, DataStruct, Error, Ident, Path, Visibility};
use stellar_xdr::curr as stellar_xdr;
use stellar_xdr::{
ScSpecEntry, ScSpecTypeDef, ScSpecUdtStructFieldV0, ScSpecUdtStructV0, StringM, WriteXdr,
};
use crate::{
doc::docs_from_attrs, map_type::map_type, shaking, spec_shaking_v2_enabled,
DEFAULT_XDR_RW_LIMITS,
};
// TODO: Add field attribute for including/excluding fields in types.
// TODO: Better handling of partial types and types without all their fields and
// types with private fields.
pub fn derive_type_struct(
path: &Path,
vis: &Visibility,
ident: &Ident,
attrs: &[Attribute],
data: &DataStruct,
spec: bool,
lib: &Option<String>,
) -> TokenStream2 {
// Collect errors as they are encountered and emit them at the end.
let mut errors = Vec::<Error>::new();
let fields = &data.fields;
let field_count_usize: usize = fields.len();
let (spec_fields, field_idents, field_names, field_idx_lits, field_types, try_from_xdrs, try_into_xdrs): (Vec<_>, Vec<_>, Vec<_>, Vec<_>, Vec<_>, Vec<_>, Vec<_>) = fields
.iter()
.sorted_by_key(|field| field.ident.as_ref().unwrap().to_string())
.enumerate()
.map(|(field_num, field)| {
let field_ident = field.ident.as_ref().unwrap();
let field_name = field_ident.to_string();
let field_idx_lit = Literal::usize_unsuffixed(field_num);
let field_type = &field.ty;
let spec_field = ScSpecUdtStructFieldV0 {
doc: docs_from_attrs(&field.attrs),
name: field_name.clone().try_into().unwrap_or_else(|_| {
const MAX: u32 = 30;
errors.push(Error::new(field_ident.span(), format!("struct field name is too long: {}, max is {MAX}", field_name.len())));
StringM::<MAX>::default()
}),
type_: match map_type(&field.ty,false, false) {
Ok(t) => t,
Err(e) => {
errors.push(e);
ScSpecTypeDef::I32
}
},
};
let try_from_xdr = quote! {
#field_ident: {
let key: #path::xdr::ScVal = #path::xdr::ScSymbol(#field_name.try_into().map_err(|_| #path::xdr::Error::Invalid)?).into();
let idx = map.binary_search_by_key(&key, |entry| entry.key.clone()).map_err(|_| #path::xdr::Error::Invalid)?;
let rv: #path::Val = (&map[idx].val.clone()).try_into_val(env).map_err(|_| #path::xdr::Error::Invalid)?;
rv.try_into_val(env).map_err(|_| #path::xdr::Error::Invalid)?
}
};
let try_into_xdr = quote! {
#path::xdr::ScMapEntry {
key: #path::xdr::ScSymbol(#field_name.try_into().map_err(|_| #path::xdr::Error::Invalid)?).into(),
val: (&val.#field_ident).try_into().map_err(|_| #path::xdr::Error::Invalid)?,
}
};
(spec_field, field_ident, field_name, field_idx_lit, field_type, try_from_xdr, try_into_xdr)
})
.multiunzip();
// 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)* };
}
// Compute spec XDR once if spec is enabled.
let spec_xdr = if spec {
let spec_entry = ScSpecEntry::UdtStructV0(ScSpecUdtStructV0 {
doc: docs_from_attrs(attrs),
lib: lib.as_deref().unwrap_or_default().try_into().unwrap(),
name: ident.to_string().try_into().unwrap(),
fields: spec_fields.try_into().unwrap(),
});
Some(spec_entry.to_xdr(DEFAULT_XDR_RW_LIMITS).unwrap())
} else {
None
};
// Generated code spec.
let spec_gen = if let Some(ref spec_xdr) = spec_xdr {
let spec_xdr_lit = proc_macro2::Literal::byte_string(spec_xdr.as_slice());
let spec_xdr_len = spec_xdr.len();
let spec_ident = format_ident!("__SPEC_XDR_TYPE_{}", ident.to_string().to_uppercase());
Some(quote! {
#[cfg_attr(target_family = "wasm", link_section = "contractspecv0")]
pub static #spec_ident: [u8; #spec_xdr_len] = #ident::spec_xdr();
impl #ident {
pub const fn spec_xdr() -> [u8; #spec_xdr_len] {
*#spec_xdr_lit
}
}
})
} else {
None
};
// SpecShakingMarker impl - only generated when spec is true and
// spec shaking v2 is enabled.
let spec_shaking_impl = if spec_shaking_v2_enabled() {
spec_xdr.as_ref().map(|spec_xdr| {
shaking::generate_marker_impl(
path,
quote!(#ident),
spec_xdr,
field_types.iter().cloned(),
None,
None,
None,
)
})
} else {
None
};
// Output.
let mut output = quote! {
#spec_gen
#spec_shaking_impl
impl #path::TryFromVal<#path::Env, #path::Val> for #ident {
type Error = #path::ConversionError;
fn try_from_val(env: &#path::Env, val: &#path::Val) -> Result<Self, #path::ConversionError> {
use #path::{TryIntoVal,EnvBase,ConversionError,Val,MapObject};
const KEYS: [&'static str; #field_count_usize] = [#(#field_names),*];
let mut vals: [Val; #field_count_usize] = [Val::VOID.to_val(); #field_count_usize];
let map: MapObject = val.try_into().map_err(|_| ConversionError)?;
env.map_unpack_to_slice(map, &KEYS, &mut vals).map_err(|_| ConversionError)?;
Ok(Self {
#(#field_idents: vals[#field_idx_lits].try_into_val(env).map_err(|_| #path::ConversionError)?,)*
})
}
}
impl #path::TryFromVal<#path::Env, #ident> for #path::Val {
type Error = #path::ConversionError;
fn try_from_val(env: &#path::Env, val: &#ident) -> Result<Self, #path::ConversionError> {
use #path::{TryIntoVal,EnvBase,ConversionError,Val};
const KEYS: [&'static str; #field_count_usize] = [#(#field_names),*];
let vals: [Val; #field_count_usize] = [
#((&val.#field_idents).try_into_val(env).map_err(|_| ConversionError)?),*
];
Ok(env.map_new_from_slices(&KEYS, &vals).map_err(|_| ConversionError)?.into())
}
}
impl #path::TryFromVal<#path::Env, &#ident> for #path::Val {
type Error = #path::ConversionError;
#[inline(always)]
fn try_from_val(env: &#path::Env, val: &&#ident) -> Result<Self, #path::ConversionError> {
<_ as #path::TryFromVal<#path::Env, #ident>>::try_from_val(env, *val)
}
}
};
// Additional output when testutils are enabled.
if cfg!(feature = "testutils") {
let arbitrary_tokens = crate::arbitrary::derive_arbitrary_struct(path, vis, ident, data);
output.extend(quote!{
impl #path::TryFromVal<#path::Env, #path::xdr::ScMap> for #ident {
type Error = #path::xdr::Error;
#[inline(always)]
fn try_from_val(env: &#path::Env, val: &#path::xdr::ScMap) -> Result<Self, #path::xdr::Error> {
use #path::xdr::Validate;
use #path::TryIntoVal;
let map = val;
if map.len() != #field_count_usize {
return Err(#path::xdr::Error::Invalid);
}
map.validate()?;
Ok(Self{
#(#try_from_xdrs,)*
})
}
}
impl #path::TryFromVal<#path::Env, #path::xdr::ScVal> for #ident {
type Error = #path::xdr::Error;
#[inline(always)]
fn try_from_val(env: &#path::Env, val: &#path::xdr::ScVal) -> Result<Self, #path::xdr::Error> {
if let #path::xdr::ScVal::Map(Some(map)) = val {
<_ as #path::TryFromVal<_, _>>::try_from_val(env, map)
} else {
Err(#path::xdr::Error::Invalid)
}
}
}
impl TryFrom<&#ident> for #path::xdr::ScMap {
type Error = #path::xdr::Error;
#[inline(always)]
fn try_from(val: &#ident) -> Result<Self, #path::xdr::Error> {
extern crate alloc;
use #path::TryFromVal;
#path::xdr::ScMap::sorted_from(alloc::vec![
#(#try_into_xdrs,)*
])
}
}
impl TryFrom<#ident> for #path::xdr::ScMap {
type Error = #path::xdr::Error;
#[inline(always)]
fn try_from(val: #ident) -> Result<Self, #path::xdr::Error> {
(&val).try_into()
}
}
impl TryFrom<&#ident> for #path::xdr::ScVal {
type Error = #path::xdr::Error;
#[inline(always)]
fn try_from(val: &#ident) -> Result<Self, #path::xdr::Error> {
Ok(#path::xdr::ScVal::Map(Some(val.try_into()?)))
}
}
impl TryFrom<#ident> for #path::xdr::ScVal {
type Error = #path::xdr::Error;
#[inline(always)]
fn try_from(val: #ident) -> Result<Self, #path::xdr::Error> {
(&val).try_into()
}
}
#arbitrary_tokens
});
}
output
}