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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
#![doc(html_root_url = "https://docs.rs/compile_ops/0.1.3/")]
#![no_std]
/*!
This crate provides macros that expand to the result of operations like addition,substraction,division,multiplication or power and a
macro for join them all.

All the macros support exclusion of expressions thought '!' before they,useful when you cannot prevent code
to expand inside the tokens passed;nowadays only possible thought the MBE expansion bucles.

This crate is **no_std**.

# Examples

```
#![feature(proc_macro_hygiene)]

use compile_ops::*;

assert_eq!(2, add!(1!5, !5, 1)); // five it is not invited...
assert_eq!(2, sub!(3, 1));
assert_eq!(2, mul!(2, 1));
assert_eq!(2, div!(4, 2));
assert_eq!(2, rem!(11, 3));

assert_eq!(2, ops!(2 % 2 + 2 * 2 ^ 1 / 1 - 2)); 
```
*/

extern crate proc_macro;
extern crate alloc;

use proc_macro::TokenStream;
use core::hint::unreachable_unchecked;
use alloc::{ string::{String, ToString}, vec::Vec, format };

/// Performs a compile-time addition between comma-separated values,excluding that is prefixed with ! from they.
#[proc_macro]
pub fn add(input: TokenStream) -> TokenStream {
    let input = input.to_string();

    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(',').map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: usize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, e) in it.drain(1..).enumerate() {
        let e: usize = e.parse().unwrap_or_else(|_| {
            err.push_str("compile_error!(\"Error at parsing operand number ");
            err.push_str(i.to_string().as_ref());
            err.push_str(".\")");
            0
        });

        if err != "" {
            return err.parse().unwrap();
        }

        result += e;        
    }

    result.to_string().parse().unwrap()
}

/// Performs a compile-time substraction between comma-separated values,excluding that is prefixed with ! from they.
#[proc_macro]
pub fn sub(input: TokenStream) -> TokenStream {
    let input = input.to_string();
    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(',').map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: isize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, e) in it.drain(1..).enumerate() {

        if e == "" {
            return ("compile_error!(\"Error at parsing operand number ".to_string() + 
            i.to_string().as_ref() + 
            ".\")").parse().unwrap()
        }

        let e: isize = e.parse().unwrap_or_else(|_| unsafe { unreachable_unchecked() });

        if err != "" {
            return err.parse().unwrap();
        }

        result -= e;        
    }

    result.to_string().parse().unwrap()
}

/// Performs a compile-time product between comma-separated values,excluding that is prefixed with ! from they.
#[proc_macro]
pub fn mul(input: TokenStream) -> TokenStream {
    let input = input.to_string();
    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(',').map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: usize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, e) in it.drain(1..).enumerate() {
        if e == "" {
            return ("compile_error!(\"Error at parsing operand number ".to_string() + 
            i.to_string().as_ref() + 
            ".\")").parse().unwrap()
        }

        let e: usize = e.parse().unwrap_or_else(|_| unsafe { unreachable_unchecked() });

        if err != "" {
            return err.parse().unwrap();
        }

        result *= e;        
    }

    result.to_string().parse().unwrap()
}

/// Performs a compile-time division between comma-separated values,excluding that is prefixed with ! from they.
#[proc_macro]
pub fn div(input: TokenStream) -> TokenStream {
    let input = input.to_string();
    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(',').map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: usize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, e) in it.drain(1..).enumerate() {
        if e == "" {
            return ("compile_error!(\"Error at parsing operand number ".to_string() + 
            i.to_string().as_ref() + 
            ".\")").parse().unwrap()
        }

        let e: usize = e.parse().unwrap_or_else(|_| unsafe { unreachable_unchecked() });

        result /= e;        
    }

    result.to_string().parse().unwrap()
}

/// Performs a compile-time remainder between comma-separated values,excluding that is prefixed with ! from they.
#[proc_macro]
pub fn rem(input: TokenStream) -> TokenStream {
    let input = input.to_string();
    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(',').map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: usize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, e) in it.drain(1..).enumerate() {
        if e == "" {
            return ("compile_error!(\"Error at parsing operand number ".to_string() + 
            i.to_string().as_ref() + 
            ".\")").parse().unwrap()
        }

        let e: usize = e.parse().unwrap_or_else(|_| unsafe { unreachable_unchecked() });

        result %= e;        
    }

    result.to_string().parse().unwrap()
}

/// Performs a compile-time power between comma-separated values,excluding that is prefixed with ! from they.
#[proc_macro]
pub fn pow(input: TokenStream) -> TokenStream {
    let input = input.to_string();
    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(',').map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: usize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, e) in it.drain(1..).enumerate() {
        if e == "" {
            return ("compile_error!(\"Error at parsing operand number ".to_string() + 
            i.to_string().as_ref() + 
            ".\")").parse().unwrap()
        }

        let e: u32 = e.parse().unwrap_or_else(|_| unsafe { unreachable_unchecked() });

        result = result.pow(e);        
    }

    result.to_string().parse().unwrap()
}

/// Performs any of the mathematical operations in Rust with their respective operator,`^` for power.
/// This macro also excludes anything that is prefixed with ! from the values.
/// 
/// The precedence is not applied,meaning that the operations are evaluated left to rigth.
#[proc_macro]
pub fn ops(input: TokenStream) -> TokenStream {
    let input = input.to_string();

    let mut operators = String::with_capacity(input.len());
    let mut err = String::with_capacity(64);

    let mut it: Vec<String> = input.split(|c: char| {
        match c {
            '+' => {operators.push('+'); true},
            '-' => {operators.push('-'); true},
            '*' => {operators.push('*'); true},
            '/' => {operators.push('/'); true},
            '%' => {operators.push('%'); true},
            '^' => {operators.push('^'); true},
            _ => false   
        }
    }).map(|e| {
        let mut trigger = false;
        let mut string = String::with_capacity(e.len()+1);

        string.push('0');

        string.extend(e.chars().filter(|c| {
            if *c == '!' {
                trigger = true;
            }

            c.is_numeric() && !trigger
        }));

        string
    }).collect();

    let mut result: isize = it[0].parse().unwrap_or_else(|_| {
        err.push_str("compile_error!(\"Error at parsing first operand.\")");
        0
    });

    if err != "" {
        return err.parse().unwrap();
    }

    for (i, (e, op)) in it.drain(1..).zip(operators.chars()).enumerate() {

        if e == "" {
            return format!("compile_error!(\"Error at parsing operand number {}.\")", i+1).parse().unwrap()
        }

        let e: isize = match e.parse() {
            Ok(i) => i,
            Err(_) => return format!("compile_error!(\"Error operand number {} overflows an isize.\")", i+1).parse().unwrap(),
        };

        match op {
            '+' => result = match result.checked_add(e) {
                Some(i) => i,
                None => return format!("compile_error!(\"operation number {} failed.\")", i+1).parse().unwrap(),
            },

            '-' => result = match result.checked_sub(e) {
                Some(i) => i,
                None => return format!("compile_error!(\"operation number {} failed.\")", i+1).parse().unwrap(),
            },

            '*' => result = match result.checked_mul(e) {
                Some(i) => i,
                None => return format!("compile_error!(\"operation number {} failed.\")", i+1).parse().unwrap(),
            },

            '/' => result = match result.checked_div(e) {
                Some(i) => i,
                None => return format!("compile_error!(\"operation number {} failed.\")", i+1).parse().unwrap(),
            },

            '%' => result = match result.checked_rem(e) {
                Some(i) => i,
                None => return format!("compile_error!(\"operation number {} failed.\")", i+1).parse().unwrap(),
            },

            '^' => result = match result.checked_pow(e as u32) {
                Some(i) => i,
                None => return format!("compile_error!(\"operation number {} failed.\")", i+1).parse().unwrap(),
            },

            _ => ()
        }        
    }

    result.to_string().parse().unwrap()
}

/// Ternary operations with `$bool:expr ? $code:expr $(! else_code)?` syntax for shorter and more legible conditionals.
/// 
/// This macro expand to `if bool_expr { code } else { else_code }` so does not prevent you for declaring
/// new scopes,take it count in position-sensitive code,because inner blocks can access outer ones this is not
/// typically a problem for safe code.
/// 
/// Because procedural macros does not expand if them are inside the arguments of another,you can't nest
/// ternary as you can do with normal `if` statements.
/// 
/// # Examples
/// 
/// ```
/// #![feature(proc_macro_hygiene)] // needed here due to the use in let
///                                 // statements but generally unneccesary
/// use compile_ops::ternary;
/// 
/// let mut one = 1;
/// let mut two = ternary!(one == 1 ? 2 ! 3);
/// 
/// assert_eq!(two, 2);
/// 
/// one = 2;
/// two = ternary!(one == 1 ? 2 ! 3);
/// 
/// ternary!(two == 3 ? one = 1);
/// 
/// assert_eq!(two, 3);
/// assert_eq!(one, 1);
/// ```
#[proc_macro]
pub fn ternary(input: TokenStream) -> TokenStream {
    let input = input.to_string();
    let mut expansion = String::with_capacity(input.len()+16);

    let mut index = input.find('?').unwrap_or_else(|| { expansion.push_str("compile_error!(\"Question mark character(?) not found in ternary operation.\")"); 0});

    if expansion != "" {
        return expansion.parse().unwrap();
    }

    if index == 0 {
        return "compile_error!(\"Missing boolean expresion behind the question mark character(?).\")".to_string().parse().unwrap();
    }

    let mut else_case = true;
    let (bool_expr, mut other) = input.split_at(index);
    
    other = &other[1..];

    index = other.rfind('!').unwrap_or_else(|| {else_case = false; 0});

    let (code, mut else_code) = if else_case { other.split_at(index) } else { (other, "") };

    if else_case {
        else_code = &else_code[1..];
    }

    expansion.push_str("if ");
    expansion.push_str(bool_expr);
    expansion.push_str(" {");
    expansion.push_str(code);
    expansion.push_str(" }");

    if else_case {
        expansion.push_str(" else { ");
        expansion.push_str(else_code);
        expansion.push_str(" }");
    }

    expansion.parse().unwrap()
}