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
340
341
342
343
344
345
use proc_macro2::{Span, TokenStream};
use quote::{ToTokens, TokenStreamExt};
use syn;
use Bindings;
use Block;
use BuilderPattern;
use DEFAULT_STRUCT_NAME;
#[derive(Debug, Clone)]
pub struct Initializer<'a> {
pub field_ident: &'a syn::Ident,
pub field_enabled: bool,
pub builder_pattern: BuilderPattern,
pub default_value: Option<Block>,
pub use_default_struct: bool,
pub bindings: Bindings,
}
impl<'a> ToTokens for Initializer<'a> {
fn to_tokens(&self, tokens: &mut TokenStream) {
trace!("Deriving initializer for `{}`.", self.field_ident);
let struct_field = &self.field_ident;
if self.field_enabled {
let match_some = self.match_some();
let match_none = self.match_none();
let builder_field = &*struct_field;
tokens.append_all(quote!(
#struct_field: match self.#builder_field {
#match_some,
#match_none,
},
));
} else {
let default = self.default();
tokens.append_all(quote!(
#struct_field: #default,
));
}
}
}
impl<'a> Initializer<'a> {
fn match_some(&'a self) -> MatchSome {
match self.builder_pattern {
BuilderPattern::Owned => MatchSome::Move,
BuilderPattern::Mutable | BuilderPattern::Immutable => {
if self.bindings.no_std {
MatchSome::CloneNoStd
} else {
MatchSome::Clone
}
}
}
}
fn match_none(&'a self) -> MatchNone<'a> {
match self.default_value {
Some(ref expr) => MatchNone::DefaultTo(expr),
None => {
if self.use_default_struct {
MatchNone::UseDefaultStructField(self.field_ident)
} else if self.bindings.no_std {
MatchNone::ReturnErrorNoStd(format!(
"`{}` must be initialized",
self.field_ident
))
} else {
MatchNone::ReturnError(format!("`{}` must be initialized", self.field_ident))
}
}
}
}
fn default(&'a self) -> TokenStream {
match self.default_value {
Some(ref expr) => quote!(#expr),
None if self.use_default_struct => {
let struct_ident = syn::Ident::new(DEFAULT_STRUCT_NAME, Span::call_site());
let field_ident = self.field_ident;
quote!(#struct_ident.#field_ident)
}
None => {
let default = self.bindings.default_trait();
quote!(#default::default())
}
}
}
}
enum MatchNone<'a> {
DefaultTo(&'a Block),
UseDefaultStructField(&'a syn::Ident),
ReturnError(String),
ReturnErrorNoStd(String),
}
impl<'a> ToTokens for MatchNone<'a> {
fn to_tokens(&self, tokens: &mut TokenStream) {
match *self {
MatchNone::DefaultTo(expr) => tokens.append_all(quote!(
None => #expr
)),
MatchNone::UseDefaultStructField(field_ident) => {
let struct_ident = syn::Ident::new(DEFAULT_STRUCT_NAME, Span::call_site());
tokens.append_all(quote!(
None => #struct_ident.#field_ident
))
}
MatchNone::ReturnError(ref err) => tokens.append_all(quote!(
None => return ::std::result::Result::Err(::std::string::String::from(#err))
)),
MatchNone::ReturnErrorNoStd(ref err) => tokens.append_all(quote!(
None => return ::core::result::Result::Err(
::alloc::string::String::from(#err))
)),
}
}
}
enum MatchSome {
Move,
Clone,
CloneNoStd,
}
impl<'a> ToTokens for MatchSome {
fn to_tokens(&self, tokens: &mut TokenStream) {
match *self {
Self::Move => tokens.append_all(quote!(
Some(value) => value
)),
Self::Clone => tokens.append_all(quote!(
Some(ref value) => ::std::clone::Clone::clone(value)
)),
Self::CloneNoStd => tokens.append_all(quote!(
Some(ref value) => ::core::clone::Clone::clone(value)
)),
}
}
}
#[doc(hidden)]
#[macro_export]
macro_rules! default_initializer {
() => {
Initializer {
field_ident: &syn::Ident::new("foo", ::proc_macro2::Span::call_site()),
field_enabled: true,
builder_pattern: BuilderPattern::Mutable,
default_value: None,
use_default_struct: false,
bindings: Default::default(),
}
};
}
#[cfg(test)]
mod tests {
#[allow(unused_imports)]
use super::*;
#[test]
fn immutable() {
let mut initializer = default_initializer!();
initializer.builder_pattern = BuilderPattern::Immutable;
assert_eq!(
quote!(#initializer).to_string(),
quote!(
foo: match self.foo {
Some(ref value) => ::std::clone::Clone::clone(value),
None => return ::std::result::Result::Err(::std::string::String::from(
"`foo` must be initialized"
)),
},
)
.to_string()
);
}
#[test]
fn mutable() {
let mut initializer = default_initializer!();
initializer.builder_pattern = BuilderPattern::Mutable;
assert_eq!(
quote!(#initializer).to_string(),
quote!(
foo: match self.foo {
Some(ref value) => ::std::clone::Clone::clone(value),
None => return ::std::result::Result::Err(::std::string::String::from(
"`foo` must be initialized"
)),
},
)
.to_string()
);
}
#[test]
fn owned() {
let mut initializer = default_initializer!();
initializer.builder_pattern = BuilderPattern::Owned;
assert_eq!(
quote!(#initializer).to_string(),
quote!(
foo: match self.foo {
Some(value) => value,
None => return ::std::result::Result::Err(::std::string::String::from(
"`foo` must be initialized"
)),
},
)
.to_string()
);
}
#[test]
fn default_value() {
let mut initializer = default_initializer!();
initializer.default_value = Some("42".parse().unwrap());
assert_eq!(
quote!(#initializer).to_string(),
quote!(
foo: match self.foo {
Some(ref value) => ::std::clone::Clone::clone(value),
None => { 42 },
},
)
.to_string()
);
}
#[test]
fn default_struct() {
let mut initializer = default_initializer!();
initializer.use_default_struct = true;
assert_eq!(
quote!(#initializer).to_string(),
quote!(
foo: match self.foo {
Some(ref value) => ::std::clone::Clone::clone(value),
None => __default.foo,
},
)
.to_string()
);
}
#[test]
fn setter_disabled() {
let mut initializer = default_initializer!();
initializer.field_enabled = false;
assert_eq!(
quote!(#initializer).to_string(),
quote!(foo: ::std::default::Default::default(),).to_string()
);
}
#[test]
fn no_std() {
let mut initializer = default_initializer!();
initializer.bindings.no_std = true;
assert_eq!(
quote!(#initializer).to_string(),
quote!(
foo: match self.foo {
Some(ref value) => ::core::clone::Clone::clone(value),
None => return ::core::result::Result::Err(::alloc::string::String::from(
"`foo` must be initialized"
)),
},
)
.to_string()
);
}
#[test]
fn no_std_setter_disabled() {
let mut initializer = default_initializer!();
initializer.bindings.no_std = true;
initializer.field_enabled = false;
assert_eq!(
quote!(#initializer).to_string(),
quote!(foo: ::core::default::Default::default(),).to_string()
);
}
}