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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
use super::FnBuilder;
use super::GenConst;
use super::Parent;
use super::StreamBuilder;
use super::StringOrIdent;
use super::generate_item::FnParent;
use crate::parse::GenericConstraints;
use crate::parse::Generics;
use crate::prelude::Delimiter;
use crate::prelude::Result;
#[must_use]
/// A helper struct for implementing a trait for a given struct or enum.
pub struct ImplFor<'a, P: Parent> {
generator: &'a mut P,
outer_attr: Vec<StreamBuilder>,
inner_attr: Vec<StreamBuilder>,
type_name: StringOrIdent,
trait_name: Option<StringOrIdent>,
lifetimes: Option<Vec<String>>,
trait_generics: Option<Vec<String>>,
impl_generics: Vec<String>,
consts: Vec<StreamBuilder>,
custom_generic_constraints: Option<GenericConstraints>,
impl_types: Vec<StreamBuilder>,
fns: Vec<(StreamBuilder, StreamBuilder)>,
is_unsafe: bool,
}
impl<'a, P: Parent> ImplFor<'a, P> {
pub(super) const fn new(
generator: &'a mut P,
type_name: StringOrIdent,
trait_name: Option<StringOrIdent>,
) -> Self {
Self {
generator,
outer_attr: Vec::new(),
inner_attr: Vec::new(),
trait_name,
type_name,
lifetimes: None,
trait_generics: None,
impl_generics: vec![],
consts: Vec::new(),
custom_generic_constraints: None,
impl_types: Vec::new(),
fns: Vec::new(),
is_unsafe: false,
}
}
/// Internal helper function to set lifetimes
pub(crate) fn with_lifetimes<ITER>(
mut self,
lifetimes: ITER,
) -> Self
where
ITER: IntoIterator,
ITER::Item: Into<String>,
{
self.lifetimes = Some(lifetimes.into_iter().map(Into::into).collect());
self
}
/// Make the new lifetimes added by `Generator::impl_for_with_lifetimes` depend on the existing lifetimes from the original derive.
///
/// See [`impl_for_with_lifetimes`] for more information.
///
/// Calling this method in any other context has no effect.
///
/// [`impl_for_with_lifetimes`]: struct.Generator.html#method.impl_for_with_lifetimes
///
/// # Panics
///
/// Panics if an internal invariant is violated.
pub fn new_lifetimes_depend_on_existing(mut self) -> Self {
if let Some(new_lt) = &self.lifetimes
&& let Some(generics) = self.generator.generics()
{
let constraints = self.custom_generic_constraints.get_or_insert_with(|| {
self.generator
.generic_constraints()
.cloned()
.unwrap_or_default()
});
for old_lt in generics.iter_lifetimes() {
for new_lt in new_lt {
constraints
.push_parsed_constraint(format!("'{}: '{}", new_lt, old_lt.ident))
.expect("Could not ensure new lifetimes depend on existing lifetimes");
}
}
}
self
}
/// Add unsafe generic parameters to the trait implementation.
/// ```
/// Make the generated `impl` block unsafe.
///
/// Generates:
/// ```ignore
/// unsafe impl Foo for Bar { }
/// ```
pub const fn make_unsafe(mut self) -> Self {
self.is_unsafe = true;
self
}
/// Add generic parameters to the trait implementation.
/// ```
/// # use virtue::prelude::Generator;
/// # let mut generator = Generator::with_name("Bar");
/// generator.impl_for("Foo").with_trait_generics(["Baz"]);
/// # generator.assert_eq("impl Foo < Baz > for Bar { }");
/// # Ok::<_, virtue::Error>(())
/// ```
///
/// Generates:
/// ```ignore
/// impl Foo for <struct or enum> {
/// const BAR: u8 = 5;
/// }
pub fn with_trait_generics<ITER>(
mut self,
generics: ITER,
) -> Self
where
ITER: IntoIterator,
ITER::Item: Into<String>,
{
self.trait_generics = Some(generics.into_iter().map(Into::into).collect());
self
}
/// # Errors
///
/// Returns an error if the operation fails.
/// Add generic parameters to the impl block.
/// ```
/// # use virtue::prelude::Generator;
/// # let mut generator = Generator::with_name("Bar");
/// generator.impl_for("Foo").with_impl_generics(["Baz"]);
/// # generator.assert_eq("impl < Baz > Foo for Bar { }");
/// # Ok::<_, virtue::Error>(())
/// ```
///
/// Generates:
/// ```ignore
/// impl<Baz> Foo for Bar { }
/// ```
pub fn with_impl_generics<ITER>(
mut self,
generics: ITER,
) -> Self
where
ITER: IntoIterator,
ITER::Item: Into<String>,
{
self.impl_generics = generics.into_iter().map(Into::into).collect();
self
}
/// Add a outer attribute to the trait implementation
///
/// # Errors
///
/// Returns an error if parsing fails.
pub fn impl_outer_attr(
&mut self,
attr: impl AsRef<str>,
) -> Result {
let mut builder = StreamBuilder::new();
builder.punct('#').group(Delimiter::Bracket, |builder| {
builder.push_parsed(attr)?;
Ok(())
})?;
self.outer_attr.push(builder);
Ok(())
}
/// Add a inner attribute to the trait implementation
///
/// # Errors
///
/// Returns an error if parsing fails.
pub fn impl_inner_attr(
&mut self,
attr: impl AsRef<str>,
) -> Result {
let mut builder = StreamBuilder::new();
builder
.punct('#')
.punct('!')
.group(Delimiter::Brace, |builder| {
builder.push_parsed(attr)?;
Ok(())
})?;
self.inner_attr.push(builder);
Ok(())
}
/// Add a const to the trait implementation
/// ```
/// # use virtue::prelude::Generator;
/// # let mut generator = Generator::with_name("Bar");
/// generator
/// .impl_for("Foo")
/// .generate_const("BAR", "u8")
/// .with_value(|b| {
/// b.push_parsed("5")?;
/// Ok(())
/// })?;
/// # generator.assert_eq("impl Foo for Bar { const BAR : u8 = 5 ; }");
/// # Ok::<_, virtue::Error>(())
/// ```
///
/// Generates:
/// ```ignore
/// impl Foo for <struct or enum> {
/// const BAR: u8 = 5;
/// }
pub fn generate_const(
&mut self,
name: impl Into<String>,
ty: impl Into<String>,
) -> GenConst<'_> {
GenConst::new(&mut self.consts, name, ty)
}
/// # Errors
///
/// Returns an error if the operation fails.
/// Add a function to the trait implementation.
///
/// `generator.impl_for("Foo").generate_fn("bar")` results in code like:
///
/// ```ignore
/// impl Foo for <struct or enum> {
/// fn bar() {}
/// }
/// ```
///
/// See [`FnBuilder`] for more options, as well as information on how to fill the function body.
pub fn generate_fn(
&mut self,
name: impl Into<String>,
) -> FnBuilder<'_, Self> {
FnBuilder::new(self, name)
}
/// Add a type to the impl
///
/// `generator.impl_for("Foo").impl_type("Bar", "u8")` results in code like:
///
/// ```ignore
/// impl Foo for <struct or enum> {
/// type Bar = u8;
/// }
/// ```
///
/// # Errors
///
/// Returns an error if parsing fails.
pub fn impl_type(
&mut self,
name: impl AsRef<str>,
value: impl AsRef<str>,
) -> Result {
let mut builder = StreamBuilder::new();
builder
.ident_str("type")
.push_parsed(name)?
.punct('=')
.push_parsed(value)?
.punct(';');
self.impl_types.push(builder);
Ok(())
}
/// Modify the generic constraints of a type.
/// This can be used to add additional type constraints to your implementation.
///
/// ```ignore
/// // Your derive:
/// #[derive(YourTrait)]
/// pub struct Foo<B> {
/// ...
/// }
///
/// // With this code:
/// generator
/// .impl_for("YourTrait")
/// .modify_generic_constraints(|generics, constraints| {
/// for g in generics.iter_generics() {
/// constraints.push_generic(g, "YourTrait");
/// }
/// })
///
/// // will generate:
/// impl<B> YourTrait for Foo<B>
/// where B: YourTrait // <-
/// {
/// }
/// ```
///
/// # Errors
///
/// Returns an error if parsing fails.
pub fn modify_generic_constraints<CB>(
&mut self,
cb: CB,
) -> Result<&mut Self>
where
CB: FnOnce(&Generics, &mut GenericConstraints) -> Result,
{
if let Some(generics) = self.generator.generics() {
let constraints = self.custom_generic_constraints.get_or_insert_with(|| {
self.generator
.generic_constraints()
.cloned()
.unwrap_or_default()
});
cb(generics, constraints)?;
}
Ok(self)
}
}
impl<P: Parent> FnParent for ImplFor<'_, P> {
fn append(
&mut self,
fn_definition: StreamBuilder,
fn_body: StreamBuilder,
) -> Result {
self.fns.push((fn_definition, fn_body));
Ok(())
}
}
impl<P: Parent> Drop for ImplFor<'_, P> {
fn drop(&mut self) {
if std::thread::panicking() {
return;
}
let mut builder = StreamBuilder::new();
for attr in std::mem::take(&mut self.outer_attr) {
builder.append(attr);
}
self.generate_impl_definition(&mut builder);
builder
.group(Delimiter::Brace, |builder| {
for attr in std::mem::take(&mut self.inner_attr) {
builder.append(attr);
}
for ty in std::mem::take(&mut self.impl_types) {
builder.append(ty);
}
for r#const in std::mem::take(&mut self.consts) {
builder.append(r#const);
}
for (fn_def, fn_body) in std::mem::take(&mut self.fns) {
builder.append(fn_def);
builder
.group(Delimiter::Brace, |body| {
*body = fn_body;
Ok(())
})
.unwrap();
}
Ok(())
})
.unwrap();
self.generator.append(builder);
}
}
impl<P: Parent> ImplFor<'_, P> {
fn generate_impl_definition(
&mut self,
builder: &mut StreamBuilder,
) {
if self.is_unsafe {
builder.ident_str("unsafe");
}
builder.ident_str("impl");
let impl_generics = self.impl_generics.as_slice();
if let Some(lifetimes) = &self.lifetimes {
if let Some(generics) = self.generator.generics() {
builder.append(generics.impl_generics_with_additional(lifetimes, impl_generics));
} else {
append_lifetimes_and_generics(builder, lifetimes, impl_generics);
}
} else if let Some(generics) = self.generator.generics() {
builder.append(generics.impl_generics_with_additional(&[], impl_generics));
} else if !impl_generics.is_empty() {
append_lifetimes_and_generics(builder, &[], impl_generics);
}
if let Some(t) = &self.trait_name {
builder.push_parsed(t.to_string()).unwrap();
let lifetimes = self.lifetimes.as_deref().unwrap_or_default();
let generics = self.trait_generics.as_deref().unwrap_or_default();
append_lifetimes_and_generics(builder, lifetimes, generics);
builder.ident_str("for");
}
builder.push_parsed(self.type_name.to_string()).unwrap();
if let Some(generics) = &self.generator.generics() {
builder.append(generics.type_generics());
}
match self.custom_generic_constraints.take() {
| Some(generic_constraints) => {
builder.append(generic_constraints.where_clause());
},
| _ => {
if let Some(generic_constraints) = &self.generator.generic_constraints() {
builder.append(generic_constraints.where_clause());
}
},
}
}
}
fn append_lifetimes_and_generics(
builder: &mut StreamBuilder,
lifetimes: &[String],
generics: &[String],
) {
if lifetimes.is_empty() && generics.is_empty() {
return;
}
builder.punct('<');
for (idx, lt) in lifetimes.iter().enumerate() {
if idx > 0 {
builder.punct(',');
}
builder.lifetime_str(lt);
}
for (idx, r#gen) in generics.iter().enumerate() {
if idx > 0 || !lifetimes.is_empty() {
builder.punct(',');
}
builder.push_parsed(r#gen).unwrap();
}
builder.punct('>');
}