fef 0.2.3

Rust implementation of a parser of the FEF format
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
//! Implementations of the [TryReadFromWithComposer] for all expressions.
//!
//! This module contains implementations of the [TryReadFromWithComposer] trait for all expressions.
//! When this trait is called on an expression object, it should assume, that the corresponding expression
//! token has already been read from the input stream and the reader is positioned at the beginning of the
//! expression body.
//!
//! This module should never leak any implementation details. It will probably be very macro heavy and
//! subject to a lot of refactoring.
//!
//! It is imperative to keep the garbage code contained and private as an implementation detail.
//! It is possible future updates to rust will allow for more concise implementations.
use std::io::Read;

use crate::v0::{
    config::Config, expr::error::ExprReadError, raw::VariableLengthEnum, tokens::ExprToken,
    traits::ReadFrom,
};

use super::{
    error::ExprReadWithComposerError,
    traits::{
        BinaryOperationExpr, Composer, PureExpr, TryReadFromWithComposer,
        TryReadFromWithComposerAndLength, UnaryOperationExpr,
    },
    Expr, ExprAddition, ExprBinaryFloat32Literal, ExprBinaryFloat64Literal, ExprCube, ExprCubeRoot,
    ExprDivision, ExprFalseLiteral, ExprIntDivision, ExprIntRoot, ExprModulo, ExprMultiplication,
    ExprNegation, ExprPower, ExprReciprocal, ExprRoot, ExprSignedIntLiteral, ExprSquare,
    ExprSquareRoot, ExprSubtraction, ExprTrueLiteral, ExprUnsignedIntLiteral, ExprVariable,
};

macro_rules! impl_read_from_pure_expr {
    ($compose_function_name:ident, $compose_type:ty) => {
        impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
            TryReadFromWithComposer<R, S, C, CP> for $compose_type
        where
            $compose_type: PureExpr<S>,
        {
            fn try_read_with_composer(
                _byte_stream: &mut R,
                _config: &C,
                composer: &mut CP,
            ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
                let value = <$compose_type>::from(());
                let composed = composer.$compose_function_name(value);
                match composed {
                    Ok(value) => Ok(value),
                    Err(error) => Err(ExprReadWithComposerError::ComposeError(error)),
                }
            }
        }
    };
}

macro_rules! impl_read_from_enum_expr {
    ($compose_function_name:ident, $compose_type:ty) => {
        impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
            TryReadFromWithComposer<R, S, C, CP> for $compose_type
        {
            fn try_read_with_composer(
                byte_stream: &mut R,
                config: &C,
                composer: &mut CP,
            ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
                let enum_value = VariableLengthEnum::read_from(byte_stream, config)
                    .map_err(|error| ExprReadError::from(error))?;
                let expr = <$compose_type>::try_from(enum_value)
                    .map_err(|error| ExprReadError::from(error))?;
                let composed = composer.$compose_function_name(expr);
                match composed {
                    Ok(value) => Ok(value),
                    Err(error) => Err(ExprReadWithComposerError::ComposeError(error)),
                }
            }
        }
    };
}

macro_rules! impl_read_from_unary_expr {
    ($compose_function_name:ident, $compose_type:ty) => {
        impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
            TryReadFromWithComposer<R, S, C, CP> for $compose_type
        where
            $compose_type: UnaryOperationExpr<S>,
        {
            fn try_read_with_composer(
                byte_stream: &mut R,
                config: &C,
                composer: &mut CP,
            ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
                let inner_expr = Expr::<S>::try_read_with_composer(byte_stream, config, composer)?;
                let expr = <$compose_type>::from(inner_expr);
                let composed = composer.$compose_function_name(expr);
                match composed {
                    Ok(value) => Ok(value),
                    Err(error) => Err(ExprReadWithComposerError::ComposeError(error)),
                }
            }
        }
    };
}

macro_rules! impl_read_from_binary_expr {
    ($compose_function_name:ident, $compose_type:ty) => {
        impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
            TryReadFromWithComposer<R, S, C, CP> for $compose_type
        where
            $compose_type: BinaryOperationExpr<S>,
        {
            fn try_read_with_composer(
                byte_stream: &mut R,
                config: &C,
                composer: &mut CP,
            ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
                let lhs = Expr::<S>::try_read_with_composer(byte_stream, config, composer)?;
                let rhs = Expr::<S>::try_read_with_composer(byte_stream, config, composer)?;
                let expr = <$compose_type>::from((lhs, rhs));
                let composed = composer.$compose_function_name(expr);
                match composed {
                    Ok(value) => Ok(value),
                    Err(error) => Err(ExprReadWithComposerError::ComposeError(error)),
                }
            }
        }
    };
}

impl_read_from_pure_expr!(compose_true_literal, ExprTrueLiteral<S>);
impl_read_from_pure_expr!(compose_false_literal, ExprFalseLiteral<S>);

impl_read_from_enum_expr!(compose_variable, ExprVariable<S>);

impl_read_from_unary_expr!(compose_negation, ExprNegation<S>);
impl_read_from_unary_expr!(compose_square_root, ExprSquareRoot<S>);
impl_read_from_unary_expr!(compose_square, ExprSquare<S>);
impl_read_from_unary_expr!(compose_cube_root, ExprCubeRoot<S>);
impl_read_from_unary_expr!(compose_cube, ExprCube<S>);
impl_read_from_unary_expr!(compose_reciprocal, ExprReciprocal<S>);

impl_read_from_binary_expr!(compose_addition, ExprAddition<S>);
impl_read_from_binary_expr!(compose_subtraction, ExprSubtraction<S>);
impl_read_from_binary_expr!(compose_multiplication, ExprMultiplication<S>);
impl_read_from_binary_expr!(compose_division, ExprDivision<S>);
impl_read_from_binary_expr!(compose_int_division, ExprIntDivision<S>);
impl_read_from_binary_expr!(compose_int_root, ExprIntRoot<S>);
impl_read_from_binary_expr!(compose_root, ExprRoot<S>);
impl_read_from_binary_expr!(compose_power, ExprPower<S>);
impl_read_from_binary_expr!(compose_modulo, ExprModulo<S>);

impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
    TryReadFromWithComposerAndLength<R, S, C, CP> for ExprUnsignedIntLiteral<S>
{
    /// Reads an unsigned integer literal from the byte stream.
    ///
    /// # Panics
    /// Panics, if `byte_length` is not 1, 2, 4, 8
    fn try_read_with_composer(
        byte_stream: &mut R,
        _config: &C,
        composer: &mut CP,
        byte_length: usize,
    ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
        let int: u64 = match byte_length {
            1 => {
                let mut bytes = [0u8; 1];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                u8::from_be_bytes(bytes) as u64
            }
            2 => {
                let mut bytes = [0u8; 2];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                u16::from_be_bytes(bytes) as u64
            }
            4 => {
                let mut bytes = [0u8; 4];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                u32::from_be_bytes(bytes) as u64
            }
            8 => {
                let mut bytes = [0u8; 8];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                u64::from_be_bytes(bytes)
            }
            _ => panic!(
                "Invalid byte length for unsigned integer literal {} while reading with composer",
                byte_length
            ),
        };
        let expr: ExprUnsignedIntLiteral<S> = ExprUnsignedIntLiteral::from(int);
        Ok(composer.compose_unsigned_int_literal(expr)?)
    }
}

impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
    TryReadFromWithComposerAndLength<R, S, C, CP> for ExprSignedIntLiteral<S>
{
    /// Reads an unsigned integer literal from the byte stream.
    ///
    /// # Panics
    /// Panics, if `byte_length` is not 1, 2, 4, 8
    fn try_read_with_composer(
        byte_stream: &mut R,
        _config: &C,
        composer: &mut CP,
        byte_length: usize,
    ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
        let int: i64 = match byte_length {
            1 => {
                let mut bytes = [0u8; 1];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                i8::from_be_bytes(bytes) as i64
            }
            2 => {
                let mut bytes = [0u8; 2];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                i16::from_be_bytes(bytes) as i64
            }
            4 => {
                let mut bytes = [0u8; 4];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                i32::from_be_bytes(bytes) as i64
            }
            8 => {
                let mut bytes = [0u8; 8];
                byte_stream
                    .read_exact(&mut bytes)
                    .map_err(|error| ExprReadError::from(error))?;
                i64::from_be_bytes(bytes)
            }
            _ => panic!(
                "Invalid byte length for unsigned integer literal {} while reading with composer",
                byte_length
            ),
        };
        let expr: ExprSignedIntLiteral<S> = ExprSignedIntLiteral::from(int);
        Ok(composer.compose_signed_int_literal(expr)?)
    }
}

impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
    TryReadFromWithComposer<R, S, C, CP> for ExprBinaryFloat32Literal<S>
{
    fn try_read_with_composer(
        byte_stream: &mut R,
        _config: &C,
        composer: &mut CP,
    ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
        let mut bytes = [0u8; 4];
        byte_stream
            .read_exact(&mut bytes)
            .map_err(|error| ExprReadError::from(error))?;
        let float = f32::from_be_bytes(bytes);
        let expr: ExprBinaryFloat32Literal<S> = ExprBinaryFloat32Literal::from(float);
        Ok(composer.compose_binary_float_32_literal(expr)?)
    }
}

impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
    TryReadFromWithComposer<R, S, C, CP> for ExprBinaryFloat64Literal<S>
{
    fn try_read_with_composer(
        byte_stream: &mut R,
        _config: &C,
        composer: &mut CP,
    ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
        let mut bytes = [0u8; 8];
        byte_stream
            .read_exact(&mut bytes)
            .map_err(|error| ExprReadError::from(error))?;
        let float = f64::from_be_bytes(bytes);
        let expr: ExprBinaryFloat64Literal<S> = ExprBinaryFloat64Literal::from(float);
        Ok(composer.compose_binary_float_64_literal(expr)?)
    }
}

impl<R: ?Sized + Read, S: Sized, C: ?Sized + Config, CP: ?Sized + Composer<S>>
    TryReadFromWithComposer<R, S, C, CP> for Expr<S>
{
    fn try_read_with_composer(
        byte_stream: &mut R,
        config: &C,
        composer: &mut CP,
    ) -> Result<S, ExprReadWithComposerError<CP::Error>> {
        let token = ExprToken::read_from(byte_stream, config)
            .map_err(|error| ExprReadError::from(error))?;
        Ok(match token {
            ExprToken::Addition => {
                ExprAddition::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::BinaryFloatLiteral32 => {
                ExprBinaryFloat32Literal::<S>::try_read_with_composer(
                    byte_stream,
                    config,
                    composer,
                )?
                .into()
            }
            ExprToken::BinaryFloatLiteral64 => {
                ExprBinaryFloat64Literal::<S>::try_read_with_composer(
                    byte_stream,
                    config,
                    composer,
                )?
                .into()
            }
            ExprToken::Cube => {
                ExprCube::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::CubeRoot => {
                ExprCubeRoot::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Division => {
                ExprDivision::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::FalseLiteral => {
                ExprFalseLiteral::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::IntDivision => {
                ExprIntDivision::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::IntRoot => {
                ExprIntRoot::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Modulo => {
                ExprModulo::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Multiplication => {
                ExprMultiplication::<S>::try_read_with_composer(byte_stream, config, composer)?
                    .into()
            }
            ExprToken::Negation => {
                ExprNegation::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Power => {
                ExprPower::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Reciprocal => {
                ExprReciprocal::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Root => {
                ExprRoot::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Square => {
                ExprSquare::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::SquareRoot => {
                ExprSquareRoot::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Subtraction => {
                ExprSubtraction::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::TrueLiteral => {
                ExprTrueLiteral::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }
            ExprToken::Variable => {
                ExprVariable::<S>::try_read_with_composer(byte_stream, config, composer)?.into()
            }

            ExprToken::SignedIntLiteral8 => {
                ExprSignedIntLiteral::<S>::try_read_with_composer(byte_stream, config, composer, 1)?
                    .into()
            }
            ExprToken::SignedIntLiteral16 => {
                ExprSignedIntLiteral::<S>::try_read_with_composer(byte_stream, config, composer, 2)?
                    .into()
            }
            ExprToken::SignedIntLiteral32 => {
                ExprSignedIntLiteral::<S>::try_read_with_composer(byte_stream, config, composer, 4)?
                    .into()
            }
            ExprToken::SignedIntLiteral64 => {
                ExprSignedIntLiteral::<S>::try_read_with_composer(byte_stream, config, composer, 8)?
                    .into()
            }

            ExprToken::UnsignedIntLiteral8 => ExprUnsignedIntLiteral::<S>::try_read_with_composer(
                byte_stream,
                config,
                composer,
                1,
            )?
            .into(),
            ExprToken::UnsignedIntLiteral16 => ExprUnsignedIntLiteral::<S>::try_read_with_composer(
                byte_stream,
                config,
                composer,
                2,
            )?
            .into(),
            ExprToken::UnsignedIntLiteral32 => ExprUnsignedIntLiteral::<S>::try_read_with_composer(
                byte_stream,
                config,
                composer,
                4,
            )?
            .into(),
            ExprToken::UnsignedIntLiteral64 => ExprUnsignedIntLiteral::<S>::try_read_with_composer(
                byte_stream,
                config,
                composer,
                8,
            )?
            .into(),
        })
    }
}