prexel 0.1.9

A math expression evaluator
Documentation
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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
use crate::context::{Config, Context, DefaultContext};
use crate::utils::splitter::{
    rules, DefaultSplitter, DefaultSplitterBuilder, SplitWhitespaceOption,
};
use std::fmt::{Debug, Display};
use std::ops::Add;
use std::str::FromStr;
use num_traits::Zero;

/// Represents a binary number.
#[derive(Clone, Debug, Copy, PartialEq, Eq, Ord, PartialOrd)]
pub struct Binary(pub i128);

impl Zero for Binary {
    fn zero() -> Self {
        Binary(0)
    }

    fn is_zero(&self) -> bool {
        self.0 == 0
    }
}

impl Add for Binary {
    type Output = Self;

    fn add(self, rhs: Self) -> Self::Output {
        Binary(self.0 + rhs.0)
    }
}

impl FromStr for Binary {
    type Err = <i128 as FromStr>::Err;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        if let Some(stripped) = s.strip_prefix('b') {
            return i128::from_str_radix(stripped, 2).map(Binary);
        }

        i128::from_str(s).map(Binary)
    }
}

impl Display for Binary {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "{:b}", self.0)
    }
}

impl<'a> DefaultContext<'a, Binary> {
    /// Constructs a new binary context.
    pub fn new_binary() -> Self {
        Self::with_config_binary(Config::new())
    }

    /// Constructs a new binary context with the given configuration.
    pub fn with_config_binary(config: Config) -> Self {
        use crate::binary::math::*;

        let mut context = DefaultContext::<Binary>::with_config(config);
        context.add_unary_function(NotFunction).unwrap();
        context.add_binary_function(AndFunction).unwrap();
        context.add_binary_function(OrFunction).unwrap();
        context.add_binary_function(XorFunction).unwrap();
        context.add_binary_function(EqFunction).unwrap();
        context.add_binary_function(NeFunction).unwrap();
        context.add_binary_function(GtFunction).unwrap();
        context.add_binary_function(LtFunction).unwrap();
        context.add_binary_function(GteFunction).unwrap();
        context.add_binary_function(LteFunction).unwrap();
        context.add_binary_function(ShrFunction).unwrap();
        context.add_binary_function(ShlFunction).unwrap();
        context
    }
}

/// Returns a splitter for binary data.
///
/// # Example
/// ```
/// use prexel::binary::{Binary, binary_number_splitter};
/// use prexel::context::DefaultContext;
/// use prexel::evaluator::Evaluator;
/// use prexel::tokenizer::Tokenizer;
///
/// let tokenizer = Tokenizer::with_splitter(binary_number_splitter());
/// let context = DefaultContext::new_binary();
/// let evaluator = Evaluator::with_context_and_tokenizer(context, tokenizer);
///
/// let result = evaluator.eval("b1000 > b0111");
/// assert_eq!(result, Ok(Binary(1)));
/// ```
pub fn binary_number_splitter<'a>() -> DefaultSplitter<'a> {
    DefaultSplitterBuilder::new()
        .rule(rules::SplitBinary)
        .rule(rules::SplitNumeric)
        .rule(rules::SplitIdentifier)
        .rule(rules::SplitOperator)
        .whitespace(SplitWhitespaceOption::Remove)
        .build()
}

pub mod math {
    use crate::binary::Binary;
    use crate::function::{Associativity, BinaryFunction, Notation, Precedence, UnaryFunction};

    pub struct NotFunction;
    impl UnaryFunction<Binary> for NotFunction {
        fn name(&self) -> &str {
            "~"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["not"])
        }

        fn notation(&self) -> Notation {
            Notation::Prefix
        }

        fn call(&self, value: Binary) -> crate::Result<Binary> {
            Ok(Binary(!value.0))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns the bitwise NOT of the given value.")
        }
    }

    pub struct AndFunction;
    impl BinaryFunction<Binary> for AndFunction {
        fn name(&self) -> &str {
            "&"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["and"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(11)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            Ok(Binary(left.0 & right.0))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns the bitwise AND of the given values.")
        }
    }

    pub struct OrFunction;
    impl BinaryFunction<Binary> for OrFunction {
        fn name(&self) -> &str {
            "|"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["or"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(13)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            Ok(Binary(left.0 | right.0))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns the bitwise OR of the given values.")
        }
    }

    pub struct XorFunction;
    impl BinaryFunction<Binary> for XorFunction {
        fn name(&self) -> &str {
            "^"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["xor"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(12)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            Ok(Binary(left.0 ^ right.0))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns the bitwise XOR of the given values.")
        }
    }

    pub struct EqFunction;
    impl BinaryFunction<Binary> for EqFunction {
        fn name(&self) -> &str {
            "=="
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["eq", "equal"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(10)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            let result = if left.0 == right.0 { 1 } else { 0 };
            Ok(Binary(result))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns 1 if the given values are equal, 0 otherwise.")
        }
    }

    pub struct NeFunction;
    impl BinaryFunction<Binary> for NeFunction {
        fn name(&self) -> &str {
            "!="
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["ne", "no_equal"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(10)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            let result = if left.0 != right.0 { 1 } else { 0 };
            Ok(Binary(result))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns 1 if the given values are not equal, 0 otherwise.")
        }
    }

    pub struct GtFunction;
    impl BinaryFunction<Binary> for GtFunction {
        fn name(&self) -> &str {
            ">"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["gt"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(9)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            let result = if left.0 > right.0 { 1 } else { 0 };
            Ok(Binary(result))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns 1 if the left value is greater than the right value, 0 otherwise.")
        }
    }

    pub struct LtFunction;
    impl BinaryFunction<Binary> for LtFunction {
        fn name(&self) -> &str {
            "<"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["lt"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(9)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            let result = if left.0 < right.0 { 1 } else { 0 };
            Ok(Binary(result))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns 1 if the left value is less than the right value, 0 otherwise.")
        }
    }

    pub struct GteFunction;
    impl BinaryFunction<Binary> for GteFunction {
        fn name(&self) -> &str {
            ">="
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["gte"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(9)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            let result = if left.0 >= right.0 { 1 } else { 0 };
            Ok(Binary(result))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns 1 if the left value is greater than or equal to the right value, 0 otherwise.")
        }
    }

    pub struct LteFunction;
    impl BinaryFunction<Binary> for LteFunction {
        fn name(&self) -> &str {
            "<="
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["lte"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(9)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            let result = if left.0 <= right.0 { 1 } else { 0 };
            Ok(Binary(result))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns 1 if the left value is less than or equal to the right value, 0 otherwise.")
        }
    }

    pub struct ShrFunction;
    impl BinaryFunction<Binary> for ShrFunction {
        fn name(&self) -> &str {
            ">>"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["shr"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(7)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            Ok(Binary(left.0 >> right.0))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns the left value bits shifted right by the right value.")
        }
    }

    pub struct ShlFunction;
    impl BinaryFunction<Binary> for ShlFunction {
        fn name(&self) -> &str {
            "<<"
        }

        fn aliases(&self) -> Option<&[&str]> {
            Some(&["shl"])
        }

        fn precedence(&self) -> Precedence {
            Precedence(7)
        }

        fn associativity(&self) -> Associativity {
            Associativity::Left
        }

        fn call(&self, left: Binary, right: Binary) -> crate::Result<Binary> {
            Ok(Binary(left.0 << right.0))
        }

        fn description(&self) -> Option<&str> {
            Some("Returns the left value bits shifted left by the right value.")
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::evaluator::Evaluator;
    use crate::tokenizer::Tokenizer;

    fn eval(expr: &str) -> crate::Result<Binary> {
        let tokenizer = Tokenizer::with_splitter(binary_number_splitter());
        let context = DefaultContext::new_binary();
        let evaluator = Evaluator::with_context_and_tokenizer(context, tokenizer);
        evaluator.eval(expr)
    }

    #[test]
    fn not_test() {
        assert_eq!(eval("~b1").unwrap(), Binary(-2));
        assert_eq!(eval("not b1").unwrap(), Binary(-2));
    }

    #[test]
    fn and_test() {
        assert_eq!(eval("b101 & b110").unwrap(), Binary(4));
        assert_eq!(eval("b101 and b110").unwrap(), Binary(4));
    }

    #[test]
    fn or_test() {
        assert_eq!(eval("b101 | b110").unwrap(), Binary(7));
        assert_eq!(eval("b101 or b110").unwrap(), Binary(7));
    }

    #[test]
    fn xor_test() {
        assert_eq!(eval("b101 ^ b110").unwrap(), Binary(3));
        assert_eq!(eval("b101 xor b110").unwrap(), Binary(3));
    }

    #[test]
    fn equal_test() {
        assert_eq!(eval("b101 == b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 == b101"), Ok(Binary(1)));
        assert_eq!(eval("b101 equal b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 equal b101"), Ok(Binary(1)));
        assert_eq!(eval("b101 eq b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 eq b101"), Ok(Binary(1)));
    }

    #[test]
    fn not_equal_test() {
        assert_eq!(eval("b101 != b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 != b101"), Ok(Binary(0)));

        assert_eq!(eval("b101 no_equal b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 no_equal b101"), Ok(Binary(0)));

        assert_eq!(eval("b101 ne b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 ne b101"), Ok(Binary(0)));
    }

    #[test]
    fn greater_test() {
        assert_eq!(eval("b101 > b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 > b101"), Ok(Binary(0)));
        assert_eq!(eval("b110 > b101"), Ok(Binary(1)));

        assert_eq!(eval("b101 gt b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 gt b101"), Ok(Binary(0)));
        assert_eq!(eval("b110 gt b101"), Ok(Binary(1)));
    }

    #[test]
    fn less_test() {
        assert_eq!(eval("b101 < b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 < b101"), Ok(Binary(0)));
        assert_eq!(eval("b110 < b101"), Ok(Binary(0)));

        assert_eq!(eval("b101 lt b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 lt b101"), Ok(Binary(0)));
        assert_eq!(eval("b110 lt b101"), Ok(Binary(0)));
    }

    #[test]
    fn greater_equal_test() {
        assert_eq!(eval("b101 >= b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 >= b101"), Ok(Binary(1)));
        assert_eq!(eval("b110 >= b101"), Ok(Binary(1)));

        assert_eq!(eval("b101 gte b110"), Ok(Binary(0)));
        assert_eq!(eval("b101 gte b101"), Ok(Binary(1)));
        assert_eq!(eval("b110 gte b101"), Ok(Binary(1)));
    }

    #[test]
    fn less_equal_test() {
        assert_eq!(eval("b101 <= b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 <= b101"), Ok(Binary(1)));
        assert_eq!(eval("b110 <= b101"), Ok(Binary(0)));

        assert_eq!(eval("b101 lte b110"), Ok(Binary(1)));
        assert_eq!(eval("b101 lte b101"), Ok(Binary(1)));
        assert_eq!(eval("b110 lte b101"), Ok(Binary(0)));
    }

    #[test]
    fn shift_right_test() {
        assert_eq!(eval("b101 >> 1"), Ok(Binary(2)));
        assert_eq!(eval("b101 >> 0"), Ok(Binary(5)));

        assert_eq!(eval("b101 shr 1"), Ok(Binary(2)));
        assert_eq!(eval("b101 shr 0"), Ok(Binary(5)));
    }

    #[test]
    fn shift_left_test() {
        assert_eq!(eval("b101 << 1"), Ok(Binary(10)));
        assert_eq!(eval("b101 << 0"), Ok(Binary(5)));

        assert_eq!(eval("b101 shl 1"), Ok(Binary(10)));
        assert_eq!(eval("b101 shl 0"), Ok(Binary(5)));
    }
}