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
use std::fmt;
use std::convert::From;
use crate::cursor::OutOfBounds;

/// The error type for ROS bag file reading and parsing.
#[derive(Debug)]
pub enum Error {
    InvalidHeader,
    InvalidRecord,
    UnsupportedVersion,
    OutOfBounds,
}

impl From<OutOfBounds> for Error {
    fn from(_: OutOfBounds) -> Error {
        Error::OutOfBounds
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        use Error::*;
        let s = match self {
            InvalidHeader => "invalid header",
            InvalidRecord => "invalid record",
            UnsupportedVersion => "unsupported version",
            OutOfBounds => "out of bounds",
        };
        write!(f, "rosbag::Error: {}", s)
    }
}

impl std::error::Error for Error { }