error.rs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. use crate::value::Value;
  2. #[derive(Debug, Eq, PartialEq)]
  3. pub enum Error {
  4. CommandNotFound(String),
  5. InvalidArgsCount(String),
  6. InvalidPattern(String),
  7. Protocol(String, String),
  8. WrongArgument(String, String),
  9. NotFound,
  10. OutOfRange,
  11. PubsubOnly(String),
  12. Syntax,
  13. NotANumber,
  14. NotInTx,
  15. NestedTx,
  16. WrongType,
  17. }
  18. impl From<Error> for Value {
  19. fn from(value: Error) -> Value {
  20. let err_type = match value {
  21. Error::WrongType => "WRONGTYPE",
  22. Error::NestedTx => "ERR MULTI",
  23. Error::NotInTx => "ERR EXEC",
  24. _ => "ERR",
  25. };
  26. let err_msg = match value {
  27. Error::CommandNotFound(x) => format!("unknown command `{}`", x),
  28. Error::InvalidArgsCount(x) => format!("wrong number of arguments for '{}' command", x),
  29. Error::InvalidPattern(x) => format!("'{}' is not a valid pattern", x),
  30. Error::Protocol(x, y) => format!("Protocol error: expected '{}', got '{}'", x, y),
  31. Error::NotInTx => " without MULTI".to_owned(),
  32. Error::NotANumber => "value is not an integer or out of range".to_owned(),
  33. Error::OutOfRange => "index out of range".to_owned(),
  34. Error::Syntax => "syntax error".to_owned(),
  35. Error::NotFound => "no such key".to_owned(),
  36. Error::NestedTx => "calls can not be nested".to_owned(),
  37. Error::PubsubOnly(x) => format!("Can't execute '{}': only (P)SUBSCRIBE / (P)UNSUBSCRIBE / PING / QUIT / RESET are allowed in this context", x),
  38. Error::WrongArgument(x, y) => format!(
  39. "Unknown subcommand or wrong number of arguments for '{}'. Try {} HELP.",
  40. y, x
  41. ),
  42. Error::WrongType => {
  43. "Operation against a key holding the wrong kind of value".to_owned()
  44. }
  45. };
  46. Value::Err(err_type.to_string(), err_msg)
  47. }
  48. }