error.rs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. use std::fmt::{self, Display};
  2. use serde::{ser, de};
  3. pub type Result<T> = std::result::Result<T, Error>;
  4. #[derive(Debug)]
  5. pub enum Error {
  6. Message(String),
  7. Io(std::io::Error),
  8. Eof,
  9. UnknownLength,
  10. SequenceTooLong(usize),
  11. TooManyVariants(u32),
  12. }
  13. impl std::error::Error for Error {}
  14. impl Display for Error {
  15. fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
  16. match self {
  17. Error::Message(message) => formatter.write_str(message),
  18. Error::Io(io_error) => io_error.fmt(formatter),
  19. Error::Eof => formatter.write_str("unexpected end of input"),
  20. Error::UnknownLength => formatter.write_str("sequence had an unknown length"),
  21. Error::SequenceTooLong(length) => formatter.write_fmt(
  22. format_args!("sequence was longer than 2**32 - 1: {}", length)
  23. ),
  24. Error::TooManyVariants(length) => formatter.write_fmt(
  25. format_args!("too many variants to be serialized, the limit is 2**16: {}", length)
  26. ),
  27. }
  28. }
  29. }
  30. impl ser::Error for Error {
  31. fn custom<T: Display>(message: T) -> Self {
  32. Error::Message(message.to_string())
  33. }
  34. }
  35. impl de::Error for Error {
  36. fn custom<T: Display>(message: T) -> Self {
  37. Error::Message(message.to_string())
  38. }
  39. }
  40. pub trait MapError<T> {
  41. /// Returns self if no error occurred, otherwise converts the error to a serde_blocktree error.
  42. fn map_error(self) -> Result<T>;
  43. }
  44. impl<T> MapError<T> for std::io::Result<T> {
  45. fn map_error(self) -> Result<T> {
  46. self.or_else(|err| Result::Err(Error::Io(err)))
  47. }
  48. }