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
#![allow(dead_code)]

extern crate proc_macro;
extern crate syn;
extern crate itertools;

#[macro_use]
extern crate quote;

#[cfg(test)]
mod test;

use proc_macro::TokenStream;
use itertools::Itertools;

#[proc_macro_derive(SafeBuilder)]
pub fn safe_builder(input: TokenStream) -> TokenStream
{
    let s = input.to_string();

    let ast = syn::parse_macro_input(&s).unwrap();

    let target = TargetStruct::new(&ast);

    target.build().parse().unwrap()
}

use syn::{Body, VariantData, Ty};
use std::collections::HashMap;

#[derive(Debug, Clone, PartialEq)]
struct TargetStruct
{
    name: String,
    fields: HashMap<String, Ty>,
    partials: Partials,
}

impl TargetStruct
{
    pub fn new(input: &syn::MacroInput) -> TargetStruct
    {
        assert!(input.generics.lifetimes.len() == 0, "safe-builder-derive does not support lifetimes");
        assert!(input.generics.ty_params.len() == 0, "safe-builder-derive does not support generic types");

        let name = input.ident.to_string();

        if let Body::Struct(VariantData::Struct(ref fields)) = input.body
        {
            match fields.first()
            {
                None => TargetStruct
                {
                    name: name,
                    fields: HashMap::new(),
                    partials: Partials::new(Vec::new())
                },
                Some(ref first) => match first.ident
                {
                    Some(_) =>
                    {
                        let mut map = HashMap::new();
                        let mut field_names = Vec::new();

                        for field in fields.iter()
                        {
                            let name = field.ident.clone().unwrap().to_string();

                            field_names.push(name.clone());
                            map.insert(name, field.ty.clone());
                        }

                        let field_combinations = (0..fields.len())
                            .flat_map(|n| field_names.iter()
                                .combinations(n)
                                .map(|v| v.into_iter()
                                    .map(|s| s.to_owned())
                                    .collect::<Vec<_>>()))
                            .map(|mut v| {v.sort(); v});
                        
                        let mut names = Vec::new();
                        let mut partials = Vec::new();

                        for combo in field_combinations
                        {
                            let mut name = format!("{}BuilderWith{}", name,
                                combo.iter().fold(String::new(), |mut a, b|
                                {
                                    a.push_str(b);
                                    a
                                }));
                            
                            while names.contains(&name)
                            {
                                name.push('_'); // TODO: better way to make names unique
                            }

                            names.push(name.clone());

                            partials.push(PartialStruct::new(name, combo));
                        }

                        TargetStruct
                        {
                            name: name,
                            fields: map,
                            partials: Partials::new(partials)
                        }
                    }
                    None => panic!("safe-builder-derive does not support tuple struct")
                }
            }
        }
        else
        {
            panic!("safe-builder-derive does not support enums");
        }
    }

    pub fn build(&self) -> quote::Tokens
    {
        let target_id = quote::Ident::from(self.name.as_ref());

        if self.fields.len() == 0
        {
            quote!
            {
                impl ::safe_builder::PartialBuilder for #target_id { }

                impl ::safe_builder::SafeBuilder for #target_id
                {
                    fn build() -> #target_id
                    {
                        #target_id { }
                    }
                }
            }
        }
        else
        {
            let init_struct_id = quote::Ident::from(self.partials.at_order(0).unwrap()[0].name.as_str());

            let target_impl = quote!
            {
                impl ::safe_builder::SafeBuilder<#init_struct_id> for #target_id
                {
                    fn build() -> #init_struct_id
                    {
                        #init_struct_id{ }
                    }
                }
            };

            let other_impls = self.partials.all().into_iter()
                .map(|partial| partial.build(&self))
                .collect::<Vec<_>>();
            
            quote!
            {
                #target_impl

                #(#other_impls)*
            }
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
struct Partials(HashMap<usize, Vec<PartialStruct>>);

impl Partials
{
    pub fn new(partials: Vec<PartialStruct>) -> Partials
    {
        let mut map: HashMap<usize, Vec<PartialStruct>> = HashMap::new();

        for partial in partials.into_iter()
        {
            let o = partial.order();

            if let Some(_) = map.get_mut(&o)
            {
                map.get_mut(&o).unwrap().push(partial);
            }
            else
            {
                map.insert(o, vec![partial]);
            }
        }

        Partials(map)
    }

    pub fn at_order<'a>(&'a self, order: usize) -> Option<&'a [PartialStruct]>
    {
        match self.0.get(&order)
        {
            Some(vec) => Some(&vec),
            None => None
        }
    }

    pub fn all<'a>(&'a self) -> Vec<&'a PartialStruct>
    {
        self.0.values()
            .flat_map(|order| order.into_iter())
            .collect::<Vec<_>>()
    }
}

#[derive(Debug, Clone, PartialEq)]
struct PartialStruct
{
    name: String,
    fields: Vec<String>,
}

impl PartialStruct
{
    pub fn new(name: String, fields: Vec<String>) -> PartialStruct
    {
        PartialStruct
        {
            name: name,
            fields: fields
        }
    }

    pub fn order(&self) -> usize
    {
        self.fields.len()
    }

    pub fn step<'a>(&self, other: &'a PartialStruct) -> Option<String>
    {
        if self.order() == other.order() - 1 && other.order() != 0
        {
            let mut s = String::new();
            for field in other.fields.iter()
            {
                if !self.fields.contains(field)
                {
                    s = field.to_owned();
                }
            }

            if s == String::new()
            {
                panic!("partial of order n - 1 can't find last field in target!");
            }
            else
            {
                Some(s)
            }
        }
        else
        {
            None
        }
    }

    pub fn build(&self, target: &TargetStruct) -> quote::Tokens
    {
        let self_id = quote::Ident::from(self.name.as_str());
        let partial_struct =
        {
            let fields = self.fields.iter()
                .map(|name|
                {
                    let id = quote::Ident::from(name.as_str());
                    let ty = target.fields.get(name).unwrap();

                    quote!
                    {
                        #id: #ty
                    }
                })
                .collect::<Vec<_>>();

            quote!
            {
                pub struct #self_id
                {
                    #(#fields),*
                }

                impl ::safe_builder::PartialBuilder for #self_id { }
            }
        };

        let partial_steps = if self.fields.len() < target.fields.len() - 1
        {
            let steps = target.partials.at_order(self.order() + 1).unwrap().iter()
                .filter(|partial| self.fields.iter()
                    .all(|field| partial.fields.contains(field)))
                .map(|partial|
                {
                    let step = self.step(partial).unwrap().clone();

                    let step_id = quote::Ident::from(step.as_str());
                    let step_ty = target.fields.get(&step).unwrap();

                    let step_struct = quote::Ident::from(partial.name.as_str());

                    let step_field = quote!
                    {
                        #step_id: #step_id
                    };

                    let fields = self.fields.iter()
                        .map(|name|
                        {
                            let id = quote::Ident::from(name.as_str());

                            quote!
                            {
                                #id: self.#id
                            }
                        });

                    if fields.len() == 0
                    {
                        quote!
                        {
                            fn #step_id(self, #step_id: #step_ty) -> #step_struct
                            {
                                #step_struct
                                {
                                    #step_field
                                }
                            }
                        }
                    }
                    else
                    {
                        quote!
                        {
                            fn #step_id(self, #step_id: #step_ty) -> #step_struct
                            {
                                #step_struct
                                {
                                    #(#fields),*,
                                    #step_field
                                }
                            }
                        }
                    }
                });

            quote!
            {
                impl #self_id
                {
                    #(#steps)*
                }
            }
        }
        else
        {
            let target_id = quote::Ident::from(target.name.as_ref());

            let missing =
            {
                let mut s = String::new();
                for field in target.fields.keys()
                {
                    if !self.fields.contains(field)
                    {
                        s = field.to_owned();
                    }
                }

                if s == String::new()
                {
                    panic!("partial of order n - 1 can't find last field in target!");
                }
                else
                {
                    s
                }
            };

            let missing_id = quote::Ident::from(missing.as_str());
            let missing_ty = target.fields.get(&missing);

            let fields = self.fields.iter()
                .map(|name|
                {
                    let id = quote::Ident::from(name.as_str());

                    quote!
                    {
                        #id: self.#id
                    }
                });

            if fields.len() == 0
            {
                quote!
                {
                    impl #self_id
                    {
                        fn #missing_id(self, #missing_id: #missing_ty) -> #target_id
                        {
                            #missing_id: #missing_id
                        }
                    }
                }
            }
            else
            {
                quote!
                {
                    impl #self_id
                    {
                        fn #missing_id(self, #missing_id: #missing_ty) -> #target_id
                        {
                            #target_id
                            {
                                #(#fields),*,
                                #missing_id: #missing_id
                            }
                        }
                    }
                }
            }
        };

        quote!
        {
            #partial_struct

            #partial_steps
        }
    }
}