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
use std::error;
use std::fmt;
use std::io;
use std::convert;

/// Contains error options that can be encountered while performing the decoding
/// operations.
#[derive(Debug, PartialEq)]
pub enum DecoderError {
    /// Indicates that the decoder received an invalid stream of bytes that can
    /// not be decoded.
    InvalidInput,

    /// Indicates that the decoder encountered an I/O interruption. Interrupted
    /// operations can typically be retried.
    Interrupted,

    /// Indicates that the buffer from which an item was supposed to be decoded
    /// does not contain enough octets to complete the decoding.
    InputUnderflow,

    /// Indicates that the decoder encountered an invalid tag number of a key. 
    /// A tag number must be unique per message and the value can be between `1`
    /// and `2^29 - 1`.
    InvalidTag,
}

impl From<io::Error> for DecoderError {
    fn from(_err: io::Error) -> Self {
        Self::Interrupted
    }
}

impl From<convert::Infallible> for DecoderError { // until solved: https://github.com/rust-lang/rust/issues/64715
    fn from(_: convert::Infallible) -> Self {
        unreachable!()
    }
}

impl fmt::Display for DecoderError {
    fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::InvalidInput => write!(fmt, "Invalid byte stream."),
            Self::Interrupted => write!(fmt, "Read operation interrupted."),
            Self::InputUnderflow => write!(fmt, "Not enough bytes."),
            Self::InvalidTag => write!(fmt, "Found tag with invalid number."),
        }
    }
}

impl error::Error for DecoderError {}