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
use std::io; pub type Result<T> = ::std::result::Result<T, Error>; #[derive(Debug)] pub enum Error { Undecodable(&'static str), WrongPacketKind(&'static str), ExpectedEof(&'static str), Io(io::Error), } #[derive(Clone, Copy, Debug, PartialEq)] pub enum ErrorKind { Undecodable, WrongPacketKind, ExpectedEof, Io, } impl Error { pub fn kind(&self) -> ErrorKind { match self { &Error::Undecodable(_) => ErrorKind::Undecodable, &Error::ExpectedEof(_) => ErrorKind::ExpectedEof, &Error::WrongPacketKind(_) => ErrorKind::WrongPacketKind, &Error::Io(_) => ErrorKind::Io, } } } impl From<io::Error> for Error { fn from(e: io::Error) -> Error { Error::Io(e) } } pub trait ExpectEof<T> { fn expect_eof(self) -> Result<T>; } impl<T> ExpectEof<T> for Result<T> { fn expect_eof(self) -> Result<T> { match self { Err(Error::Io(e)) => Err(expect_eof(e)), v => v, } } } impl<T> ExpectEof<T> for io::Result<T> { fn expect_eof(self) -> Result<T> { match self { Err(e) => Err(expect_eof(e)), Ok(r) => Ok(r), } } } fn expect_eof(e: io::Error) -> Error { if e.kind() == io::ErrorKind::UnexpectedEof { Error::ExpectedEof("Expected EOF") } else { From::from(e) } }