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
use super::ProtocolError;
use std::fmt::Display;

/// FCS Checksum bytes.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct FcsBytes(u8, u8);

/// Calculates the FCS checksum from a serialized Hostlink command.
/// The input string must only contain characters which are actually needed for the checksum.
/// If the input string contains unneeded characters, they will also be accounted into the checksum.
pub fn fcs(cmd_fcs_range: &str) -> Result<FcsBytes, ProtocolError> {
    let mut fcs = 0;

    for byte in cmd_fcs_range.bytes() {
        fcs ^= byte;
    }

    let first_four = (fcs & 0b1111_0000) >> 4;
    let last_four = fcs & 0b0000_1111;

    Ok(FcsBytes(first_four, last_four))
}

impl Display for FcsBytes {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "{:X}{:X}", self.0, self.1)
    }
}

impl FcsBytes {
    /// Returns the FCS checksum bytes as a single numeric value.
    #[must_use]
    pub const fn value(self) -> u8 {
        self.1 + (self.0 * 10)
    }
}