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
// Copyright 2022 Damir Jelić
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

use std::io::{Cursor, Write};

use crate::{EncodeError, MAX_ARRAY_LENGTH};

/// A trait for encoding values into the `matrix-pickle` binary format.
pub trait Encode {
    /// Try to encode and write a value to the given writer, returning how many bytes were written.
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError>;

    /// Try to encode a value into a new `Vec`.
    fn encode_to_vec(&self) -> Result<Vec<u8>, EncodeError> {
        let buffer = Vec::new();
        let mut cursor = Cursor::new(buffer);

        self.encode(&mut cursor)?;

        Ok(cursor.into_inner())
    }
}

impl Encode for u8 {
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError> {
        Ok(writer.write(&[*self])?)
    }
}

impl Encode for bool {
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError> {
        (*self as u8).encode(writer)
    }
}

impl<const N: usize> Encode for [u8; N] {
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError> {
        writer.write_all(self)?;

        Ok(N)
    }
}

impl Encode for u32 {
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError> {
        let bytes = self.to_be_bytes();
        bytes.encode(writer)
    }
}

impl Encode for usize {
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError> {
        let value = u32::try_from(*self).map_err(|_| EncodeError::OutsideU32Range(*self))?;

        value.encode(writer)
    }
}

impl<T: Encode> Encode for [T] {
    fn encode(&self, writer: &mut impl Write) -> Result<usize, EncodeError> {
        let length = self.len();

        if length > MAX_ARRAY_LENGTH {
            Err(EncodeError::ArrayTooBig(length))
        } else {
            let mut ret = length.encode(writer)?;

            for value in self {
                ret += value.encode(writer)?;
            }

            Ok(ret)
        }
    }
}