multiversx_sc_scenario/facade/expr/
num_expr.rs

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
use crate::ScenarioTxEnv;

use multiversx_chain_scenario_format::{
    interpret_trait::InterpreterContext, value_interpreter::interpret_string,
};
use multiversx_sc::{
    api::ManagedTypeApi,
    types::{AnnotatedValue, BigUint, ManagedBuffer, TxEgldValue, TxGasValue},
};

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct NumExpr<'a>(pub &'a str);

fn interpret_big_uint<Api>(s: &str) -> BigUint<Api>
where
    Api: ManagedTypeApi,
{
    let bytes = interpret_string(s, &InterpreterContext::new());
    BigUint::from_bytes_be(&bytes)
}

impl<Env> AnnotatedValue<Env, BigUint<Env::Api>> for NumExpr<'_>
where
    Env: ScenarioTxEnv,
{
    fn annotation(&self, _env: &Env) -> ManagedBuffer<Env::Api> {
        self.0.into()
    }

    fn to_value(&self, _env: &Env) -> BigUint<Env::Api> {
        interpret_big_uint(self.0)
    }
}

impl<Env> AnnotatedValue<Env, u64> for NumExpr<'_>
where
    Env: ScenarioTxEnv,
{
    fn annotation(&self, _env: &Env) -> ManagedBuffer<Env::Api> {
        self.0.into()
    }

    fn to_value(&self, _env: &Env) -> u64 {
        interpret_big_uint::<Env::Api>(self.0).to_u64().unwrap()
    }
}

impl<Env> TxEgldValue<Env> for NumExpr<'_> where Env: ScenarioTxEnv {}
impl<Env> TxGasValue<Env> for NumExpr<'_> where Env: ScenarioTxEnv {}