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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use std::io::Error as IoError;
use std::{error, result};
use engine_traits::Error as EngineTraitsError;
use kvproto::errorpb::Error as ErrorHeader;
use thiserror::Error;
use tikv::storage::kv::{Error as EngineError, ErrorInner as EngineErrorInner};
use tikv::storage::mvcc::{Error as MvccError, ErrorInner as MvccErrorInner};
use tikv::storage::txn::{Error as TxnError, ErrorInner as TxnErrorInner};
use txn_types::Error as TxnTypesError;
use crate::channel::SendError;
#[derive(Debug, Error)]
pub enum Error {
#[error("Other error {0}")]
Other(#[from] Box<dyn error::Error + Sync + Send>),
#[error("RocksDB error {0}")]
Rocks(String),
#[error("IO error {0}")]
Io(#[from] IoError),
#[error("Engine error {0}")]
Engine(#[from] EngineError),
#[error("Transaction error {0}")]
Txn(#[from] TxnError),
#[error("Mvcc error {0}")]
Mvcc(#[from] MvccError),
#[error("Request error {0:?}")]
Request(Box<ErrorHeader>),
#[error("Engine traits error {0}")]
EngineTraits(#[from] EngineTraitsError),
#[error("Sink send error {0:?}")]
Sink(#[from] SendError),
}
impl Error {
pub fn request(err: ErrorHeader) -> Error {
Error::Request(Box::new(err))
}
}
macro_rules! impl_from {
($($inner:ty => $container:ident,)+) => {
$(
impl From<$inner> for Error {
fn from(inr: $inner) -> Error {
Error::$container(inr.into())
}
}
)+
};
}
impl_from! {
String => Rocks,
TxnTypesError => Mvcc,
}
pub type Result<T> = result::Result<T, Error>;
impl Error {
pub fn extract_error_header(self) -> ErrorHeader {
match self {
Error::Engine(EngineError(box EngineErrorInner::Request(e)))
| Error::Txn(TxnError(box TxnErrorInner::Engine(EngineError(
box EngineErrorInner::Request(e),
))))
| Error::Txn(TxnError(box TxnErrorInner::Mvcc(MvccError(
box MvccErrorInner::Engine(EngineError(box EngineErrorInner::Request(e))),
))))
| Error::Request(box e) => e,
other => {
let mut e = ErrorHeader::default();
e.set_message(format!("{:?}", other));
e
}
}
}
}