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
use nu_engine::{command_prelude::*, get_eval_expression};

#[derive(Clone)]
pub struct BytesBuild;

impl Command for BytesBuild {
    fn name(&self) -> &str {
        "bytes build"
    }

    fn usage(&self) -> &str {
        "Create bytes from the arguments."
    }

    fn search_terms(&self) -> Vec<&str> {
        vec!["concatenate", "join"]
    }

    fn signature(&self) -> nu_protocol::Signature {
        Signature::build("bytes build")
            .input_output_types(vec![(Type::Nothing, Type::Binary)])
            .rest("rest", SyntaxShape::Any, "List of bytes.")
            .category(Category::Bytes)
    }

    fn examples(&self) -> Vec<Example> {
        vec![
            Example {
                example: "bytes build 0x[01 02] 0x[03] 0x[04]",
                description: "Builds binary data from 0x[01 02], 0x[03], 0x[04]",
                result: Some(Value::binary(
                    vec![0x01, 0x02, 0x03, 0x04],
                    Span::test_data(),
                )),
            },
            Example {
                example: "bytes build 255 254 253 252",
                description: "Builds binary data from byte numbers",
                result: Some(Value::test_binary(vec![0xff, 0xfe, 0xfd, 0xfc])),
            },
        ]
    }

    fn run(
        &self,
        engine_state: &EngineState,
        stack: &mut Stack,
        call: &Call,
        _input: PipelineData,
    ) -> Result<PipelineData, ShellError> {
        let mut output = vec![];
        let eval_expression = get_eval_expression(engine_state);
        for val in call.rest_iter_flattened(engine_state, stack, eval_expression, 0)? {
            let val_span = val.span();
            match val {
                Value::Binary { mut val, .. } => output.append(&mut val),
                Value::Int { val, .. } => {
                    let byte: u8 = val.try_into().map_err(|_| ShellError::IncorrectValue {
                        msg: format!("{val} is out of range for byte"),
                        val_span,
                        call_span: call.head,
                    })?;
                    output.push(byte);
                }
                // Explicitly propagate errors instead of dropping them.
                Value::Error { error, .. } => return Err(*error),
                other => {
                    return Err(ShellError::TypeMismatch {
                        err_message: "only binary data arguments are supported".to_string(),
                        span: other.span(),
                    })
                }
            }
        }

        Ok(Value::binary(output, call.head).into_pipeline_data())
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn test_examples() {
        use crate::test_examples;

        test_examples(BytesBuild {})
    }
}