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
extern crate proc_macro;
extern crate syn;
#[macro_use]
extern crate quote;

use proc_macro::TokenStream;

#[proc_macro_derive(UnitAdd)]
pub fn unit_add(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::Add for #name {
            type Output = #name;

            fn add(self, other: #name) -> #name {
                #name(self.0 + other.0)
            }
        }
        impl<'a, 'b> std::ops::Add<&'b #name> for &'a #name {
            type Output = #name;

            fn add(self, other: &'b #name) -> #name {
                #name(self.0 + other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitAddAssign)]
pub fn unit_add_assign(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::AddAssign for #name {
            fn add_assign(&mut self, other: #name) {
                *self = #name(self.0 + other.0)
            }
        }
        impl<'b> std::ops::AddAssign<&'b #name> for #name {

            fn add_assign(&mut self, other: &'b #name) {
                *self = #name(self.0 + other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitSub)]
pub fn unit_sub(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::Sub for #name {
            type Output = #name;

            fn sub(self, other: #name) -> #name {
                #name(self.0 - other.0)
            }
        }
        impl<'a, 'b> std::ops::Sub<&'b #name> for &'a #name {
            type Output = #name;

            fn sub(self, other: &'b #name) -> #name {
                #name(self.0 - other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitSubAssign)]
pub fn unit_sub_assign(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::SubAssign for #name {
            fn sub_assign(&mut self, other: #name) {
                *self = #name(self.0 - other.0)
            }
        }
        impl<'b> std::ops::SubAssign<&'b #name> for #name {

            fn sub_assign(&mut self, other: &'b #name) {
                *self = #name(self.0 - other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitMul)]
pub fn unit_mul(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::Mul for #name {
            type Output = #name;

            fn mul(self, other: #name) -> #name {
                #name(self.0 * other.0)
            }
        }
        impl<'a, 'b> std::ops::Mul<&'b #name> for &'a #name {
            type Output = #name;

            fn mul(self, other: &'b #name) -> #name {
                #name(self.0 * other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitMulAssign)]
pub fn unit_mul_assign(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::MulAssign for #name {
            fn mul_assign(&mut self, other: #name) {
                *self = #name(self.0 * other.0)
            }
        }
        impl<'b> std::ops::MulAssign<&'b #name> for #name {

            fn mul_assign(&mut self, other: &'b #name) {
                *self = #name(self.0 * other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitDiv)]
pub fn unit_div(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::Div for #name {
            type Output = #name;

            fn div(self, other: #name) -> #name {
                #name(self.0 / other.0)
            }
        }
        impl<'a, 'b> std::ops::Div<&'b #name> for &'a #name {
            type Output = #name;

            fn div(self, other: &'b #name) -> #name {
                #name(self.0 / other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitDivAssign)]
pub fn unit_div_assign(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::DivAssign for #name {
            fn div_assign(&mut self, other: #name) {
                *self = #name(self.0 / other.0)
            }
        }
        impl<'b> std::ops::DivAssign<&'b #name> for #name {

            fn div_assign(&mut self, other: &'b #name) {
                *self = #name(self.0 / other.0)
            }
        }
    };
    quote.parse().unwrap()
}

#[proc_macro_derive(UnitRem)]
pub fn unit_rem(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::Rem for #name {
            type Output = #name;

            fn rem(self, other: #name) -> #name {
                #name(self.0 % other.0)
            }
        }
        impl<'a, 'b> std::ops::Rem<&'b #name> for &'a #name {
            type Output = #name;

            fn rem(self, other: &'b #name) -> #name {
                #name(self.0 % other.0)
            }
        }
    };
    quote.parse().unwrap()
}


#[proc_macro_derive(UnitNeg)]
pub fn unit_neg(input: TokenStream) -> TokenStream {
    // Construct a string representation of the type definition
    let s = input.to_string();
    
    // Parse the string representation
    let ast = syn::parse_macro_input(&s).unwrap();

    let name = &ast.ident;
    let quote = quote! {
        impl std::ops::Neg for #name {
            type Output = #name;

            fn neg(self) -> #name {
                #name(-self.0)
            }
        }
        impl<'a> std::ops::Neg for &'a #name {
            type Output = #name;

            fn neg(self) -> #name {
                #name(-self.0)
            }
        }
    };
    quote.parse().unwrap()
}




// This panicks, figure out why it doesn't work.
#[proc_macro_derive(UnitAll)]
pub fn unit_all(input: TokenStream) -> TokenStream {
    let add = unit_add(input);
    let sub = unit_sub(add);
    let mul = unit_mul(sub);
    let div = unit_div(mul);
    let rem = unit_rem(div);
    let neg = unit_neg(rem);
    neg
}