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::{error, result};
use error_code::{self, ErrorCode, ErrorCodeExt};
use raft::{Error as RaftError, StorageError};
use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
#[error("Storage Engine {0}")]
Engine(String),
#[error(
"Key {} is out of [region {}] [{}, {})",
log_wrappers::Value::key(.key), .region_id, log_wrappers::Value::key(.start), log_wrappers::Value::key(.end)
)]
NotInRange {
key: Vec<u8>,
region_id: u64,
start: Vec<u8>,
end: Vec<u8>,
},
#[error("Protobuf {0}")]
Protobuf(#[from] protobuf::ProtobufError),
#[error("Io {0}")]
Io(#[from] std::io::Error),
#[error("{0:?}")]
Other(#[from] Box<dyn error::Error + Sync + Send>),
#[error("CF {0} not found")]
CFName(String),
#[error("Codec {0}")]
Codec(#[from] tikv_util::codec::Error),
#[error("The entries of region is unavailable")]
EntriesUnavailable,
#[error("The entries of region is compacted")]
EntriesCompacted,
}
impl From<String> for Error {
fn from(err: String) -> Self {
Error::Engine(err)
}
}
pub type Result<T> = result::Result<T, Error>;
impl ErrorCodeExt for Error {
fn error_code(&self) -> ErrorCode {
match self {
Error::Engine(_) => error_code::engine::ENGINE,
Error::NotInRange { .. } => error_code::engine::NOT_IN_RANGE,
Error::Protobuf(_) => error_code::engine::PROTOBUF,
Error::Io(_) => error_code::engine::IO,
Error::CFName(_) => error_code::engine::CF_NAME,
Error::Codec(_) => error_code::engine::CODEC,
Error::Other(_) => error_code::UNKNOWN,
Error::EntriesUnavailable => error_code::engine::DATALOSS,
Error::EntriesCompacted => error_code::engine::DATACOMPACTED,
}
}
}
impl From<Error> for RaftError {
fn from(e: Error) -> RaftError {
match e {
Error::EntriesUnavailable => RaftError::Store(StorageError::Unavailable),
Error::EntriesCompacted => RaftError::Store(StorageError::Compacted),
e => {
let boxed = Box::new(e) as Box<dyn std::error::Error + Sync + Send>;
raft::Error::Store(StorageError::Other(boxed))
}
}
}
}
impl From<Error> for String {
fn from(e: Error) -> String {
format!("{:?}", e)
}
}