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
use crate::prelude::*;
use nu_engine::WholeStreamCommand;
use nu_errors::ShellError;
use nu_protocol::{Primitive, Signature, UntaggedValue, Value};

pub struct SubCommand;

impl WholeStreamCommand for SubCommand {
    fn name(&self) -> &str {
        "math abs"
    }

    fn signature(&self) -> Signature {
        Signature::build("math abs")
    }

    fn usage(&self) -> &str {
        "Returns absolute values of a list of numbers"
    }

    fn run(&self, args: CommandArgs) -> Result<OutputStream, ShellError> {
        let mapped = args.input.map(move |val| match val.value {
            UntaggedValue::Primitive(Primitive::Int(val)) => UntaggedValue::int(val.abs()).into(),
            UntaggedValue::Primitive(Primitive::BigInt(val)) => {
                UntaggedValue::big_int(val.magnitude().clone()).into()
            }
            UntaggedValue::Primitive(Primitive::Decimal(val)) => {
                UntaggedValue::decimal(val.abs()).into()
            }
            UntaggedValue::Primitive(Primitive::Duration(val)) => {
                UntaggedValue::duration(val).into()
            }
            other => abs_default(other),
        });
        Ok(mapped.into_output_stream())
    }

    fn examples(&self) -> Vec<Example> {
        vec![Example {
            description: "Get absolute of each value in a list of numbers",
            example: "echo [-50 -100.0 25] | math abs",
            result: Some(vec![
                UntaggedValue::int(50).into(),
                UntaggedValue::decimal_from_float(100.0, Span::default()).into(),
                UntaggedValue::int(25).into(),
            ]),
        }]
    }
}

fn abs_default(_: UntaggedValue) -> Value {
    UntaggedValue::Error(ShellError::unexpected(
        "Only numerical values are supported",
    ))
    .into()
}

#[cfg(test)]
mod tests {
    use super::ShellError;
    use super::SubCommand;

    #[test]
    fn examples_work_as_expected() -> Result<(), ShellError> {
        use crate::examples::test as test_examples;

        test_examples(SubCommand {})
    }
}