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
#![warn(missing_docs)]
//! # Struct_gen
//! Struct_gen automagically generates boilerplate code for structs.

#[macro_use]
extern crate struct_gen_derive;

/// `struct_gen!` is a macro for generating struct definitions and constructors.
///
/// # struct_gen
///
/// `struct_gen!` is the macro at the heart of this crate. It is responsible for generating
/// the boilerplate for a struct, from defining the struct to implementing its static
/// constructor method. Ultimately, it is desirable for this macro to be as abstract and as
/// flexible as possible, accepting struct's with:
/// * lifetimes
/// * smart pointers
/// * generics
/// * optional non-default/zero values per field in the constructor
/// * etc.
///
/// ## Example
/// ```rust
/// # #[macro_use]
/// # extern crate struct_gen;
/// # use struct_gen::Zero;
/// # fn main() {
/// struct_gen!(
///     Example {
///         height: i32
///         size:   f64
///         thing: char
///     }
/// );
/// # let example_struct = Example::new();
/// # assert_eq!(example_struct.height, 0);
/// # assert_eq!(example_struct.size, 0.0);
/// # assert_eq!(example_struct.thing, 0 as char);
/// # }
///
#[macro_export]
macro_rules! struct_gen (
    ($s:ident <$($lt: tt),+> {$( $i: ident : $t: ty)*} ) => (
        #[derive(Debug)]
        struct $s <$($lt,)*> {
            $(
                $i: $t,
            )*
        }

        impl<$($lt,)*> $s<$($lt,)*> {
            pub fn new() -> $s<$($lt,)*> {
                $s {
                    $(
                        $i: <$t>::zoor(),
                    )*
                }
            }
       }
    );




    ($s:ident {$( $i: ident : $t: ty)*} ) => (
        #[derive(Debug)]
        struct $s {
            $(
                $i: $t,
            )*
        }

       impl $s {
            pub fn new() -> $s {
                $s {
                    $(
                        $i: <$t>::zoor(),
                    )*
                }
            }
       }
    );
);

/// `Zero` is a trait for defining the zoor method,
/// zero-or-override, defining a method that returns
/// the default/zero value for a given type.
///
/// # Zero
///
/// The `Zero` trait defines a way for a type to
/// return the zero, or default, value of itself.
/// This is used within the `struct_gen!` macro's constructor
/// generation method to construct a base struct type with
/// default values. Ultimately, there will be a way to take
/// an input and override these values, but for now only
/// a default is implemented.
///
/// In order for a user to make a custom type compatible
/// with the `struct_gen!` macro, they will need to implement
/// this trait -- done easily with the `impl_zero!` macro.
pub trait Zero {
    /// The Item here will be defined to be the same type as
    /// the trait that is implementing it.
    type Item;
    /// zoor stands for zero or overide
    fn zoor() -> Self::Item;
}

/// `impl_zero!` is a macro for implementing the `Zero` trait in an
/// ergonomically friendly way.
///
/// # impl_zero
/// This macro is used to generate all the base default
/// cases for common/primitive types. It does this by
/// implementing the `Zero` trait for these types, in an
/// ergonomatically friendly way:
/// ```no-run
/// impl_zero!(TYPE, DEFAULT);
/// ```
///
/// ## Example
/// ```no-run
/// impl_zero!(i32, 0);
/// ```
#[macro_export]
macro_rules! impl_zero {
    (<$($lt: tt),+> , $t:ty, $e:expr) => {
        impl<$($lt,)*> Zero for $t {
            type Item = $t;
            fn zoor() -> Self::Item {
                $e
            }
        }
    };

    ($t:ty, $e:expr) => {
        impl Zero for $t {
            type Item = $t;
            fn zoor() -> Self::Item {
                $e
            }
        }
    };
}

// Boolean
impl_zero!(bool, false);

// Char - define char as 0 in unicode aka null
impl_zero!(char, 0 as char);

// Signed Integers
impl_zero!(i8, 0);
impl_zero!(i16, 0);
impl_zero!(i32, 0);
impl_zero!(i64, 0);
impl_zero!(isize, 0);

// Unsigned Integers
impl_zero!(u8, 0);
impl_zero!(u16, 0);
impl_zero!(u32, 0);
impl_zero!(u64, 0);
impl_zero!(usize, 0);

// Floats
impl_zero!(f32, 0.0);
impl_zero!(f64, 0.0);

// Strings
impl_zero!(String, String::from(""));

// str
impl_zero!(<'a>, &'a str, "");

// Slices
impl_zero!(<'a, T>, &'a [T], &[]);

// Vectors
impl_zero!(<T>, Vec<T>, vec![]);

// Arrays
// For now arrays will only be availible for
// fixed sizes [0, 10]. For everything else,
// please use std::vec::Vec.
#[derive(StructIterator)]
struct _ImplArray(
    bool,
    char,
    i8,
    i16,
    i32,
    i64,
    isize,
    u8,
    u16,
    u32,
    u64,
    usize,
    f32,
    f64,
);

#[cfg(test)]
mod test_struct_gen {
    use super::*;
    #[test]
    fn it_expands_to_empty_struct() {
        struct_gen!(Example {});

        let _e = Example::new();
    }

    #[test]
    fn it_expands_to_multi_field_struct() {
        struct_gen!(
            Example {
                a: i32
                b: f64
                c: bool
            }
        );

        let e = Example::new();
        assert_eq!(e.a, 0);
        assert_eq!(e.b, 0.0);
        assert!(!e.c);
    }

    #[test]
    fn it_works_with_bool() {
        struct_gen!(Example { a: bool });

        let e = Example::new();
        assert!(!e.a);
    }

    #[test]
    fn it_works_with_char() {
        struct_gen!(Example { a: char });

        let e = Example::new();
        assert_eq!(e.a, 0 as char);
    }

    #[test]
    fn it_works_with_i8() {
        struct_gen!(Example { a: i8 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_i16() {
        struct_gen!(Example { a: i16 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_i32() {
        struct_gen!(Example { a: i32 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_i64() {
        struct_gen!(Example { a: i64 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_isize() {
        struct_gen!(Example { a: isize });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_u8() {
        struct_gen!(Example { a: u8 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_u16() {
        struct_gen!(Example { a: u16 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_u32() {
        struct_gen!(Example { a: u32 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_u64() {
        struct_gen!(Example { a: u64 });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_usize() {
        struct_gen!(Example { a: usize });

        let e = Example::new();
        assert_eq!(e.a, 0);
    }

    #[test]
    fn it_works_with_f32() {
        struct_gen!(Example { a: f32 });

        let e = Example::new();
        assert_eq!(e.a, 0.0);
    }

    #[test]
    fn it_works_with_f64() {
        struct_gen!(Example { a: f64 });

        let e = Example::new();
        assert_eq!(e.a, 0.0);
    }

    #[test]
    fn it_works_with_strings() {
        struct_gen!(Example { a: String });

        let e = Example::new();
        assert_eq!(e.a, String::from(""));
    }

    #[test]
    fn it_works_with_a_single_lifetime() {
        struct_gen!(Example<'a> {a: &'a str});

        let e = Example::new();
        assert_eq!(e.a, "");
    }

    #[test]
    fn it_works_with_multiple_lifetimes() {
        struct_gen!(Example<'a, 'b, 'c> {
            a: &'a str
            b: &'b str
            c: &'c str
        });

        let e = Example::new();
        assert_eq!(e.a, "");
        assert_eq!(e.b, "");
        assert_eq!(e.c, "");
    }

    #[test]
    fn it_works_with_the_static_lifetime() {
        struct_gen!(Example {
            a: &'static [i32]
        });

        let e = Example::new();
        assert_eq!(e.a, &[]);
    }

    #[test]
    fn it_works_with_multiple_normal_vectors() {
        struct_gen!(Example {
            a: Vec<i32> b: Vec<bool>
        });

        let e = Example::new();
        assert_eq!(e.a, vec![]);
        assert_eq!(e.b, vec![]);
        assert_eq!(e.a.len(), 0);
        assert_eq!(e.b.len(), 0);
    }

    #[test]
    fn it_works_with_slices() {
        struct_gen!(Example <'a> {
            a: &'a [i32]
        });

        let e = Example::new();
        assert_eq!(e.a, &[]);
    }

    #[test]
    fn it_works_with_arrays() {
        struct_gen!(Example {
            a: [i32; 1]
            b: [f64; 2]

            c: [bool; 5]
            d: [usize; 10]
        });

        let e = Example::new();
        assert_eq!(e.a[0], 0);
        assert_eq!(e.b[1], 0.0);
        assert_eq!(e.c[4], false);
        assert_eq!(e.d[7], 0);
    }
}