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
use super::responses::status::StatusParseError;
use crate::device::DeviceError;
use std::num::ParseIntError;
use thiserror::Error;

/// Represents a protocol error.
#[derive(Debug, Error, Clone, PartialEq, Eq)]
pub enum Error {
    /// Invalid Node ID.
    #[error("Node ID must be 0..=99, got '{0}'")]
    IllegalNodeId(u8),

    /// Missing '@' symbol at start.
    #[error("Expected '@' to be the first character")]
    MissingAtSymbol,

    /// Invalid or missing Node ID.
    #[error("Expected 2 characters for Node ID")]
    MissingNodeId,

    /// Failed to parse string as integer.
    #[error("Failed to parse string as integer: {0}")]
    IntParse(#[from] ParseIntError),

    /// Missing header code (command code).
    #[error("Missing header (command) code")]
    MissingHeaderCode,

    /// Unknown or unsupported command type.
    #[error("Unknown or unsupported command: {0}")]
    UnknownCommand(String),

    /// Missing command terminator.
    #[error("Expected terminator at end of command")]
    MissingTerminator,

    /// Missing FCS checksum.
    #[error("Missing FCS checksum")]
    MissingFcs,

    /// Test command's message block contains invalid characters.
    #[error("Message block has illegal characters")]
    InvalidTestData,

    #[error("Unknown error code: '{0}{1}'")]
    UnknownErrorCode(char, char),

    #[error("Invalid error code length")]
    ErrorCodeBadLength,

    #[error("Device error: {0}")]
    Device(#[from] DeviceError),

    #[error("Device error: {0}")]
    StatusParse(#[from] StatusParseError),
}