-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy patherror.rs
75 lines (65 loc) · 2.02 KB
/
error.rs
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
use std::{error, fmt};
/// Type alias to use this library's [`Error`] type in a `Result`.
pub type Result<T> = std::result::Result<T, Error>;
/// Error types
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum Error {
/// Unknown CID codec.
UnknownCodec,
/// Input data is too short.
InputTooShort,
/// Multibase or multihash codec failure
ParsingError,
/// Invalid CID version.
InvalidCidVersion,
/// Invalid CIDv0 codec.
InvalidCidV0Codec,
/// Invalid CIDv0 multihash.
InvalidCidV0Multihash,
/// Invalid CIDv0 base encoding.
InvalidCidV0Base,
/// Varint decode failure.
VarIntDecodeError,
}
impl error::Error for Error {}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use self::Error::*;
let error = match *self {
UnknownCodec => "Unknown codec",
InputTooShort => "Input too short",
ParsingError => "Failed to parse multihash",
InvalidCidVersion => "Unrecognized CID version",
InvalidCidV0Codec => "CIDv0 requires a DagPB codec",
InvalidCidV0Multihash => "CIDv0 requires a Sha-256 multihash",
InvalidCidV0Base => "CIDv0 requires a Base58 base",
VarIntDecodeError => "Failed to decode unsigned varint format",
};
f.write_str(error)
}
}
impl From<multibase::Error> for Error {
fn from(_: multibase::Error) -> Error {
Error::ParsingError
}
}
impl From<multihash::EncodeError> for Error {
fn from(_: multihash::EncodeError) -> Error {
Error::ParsingError
}
}
impl From<multihash::DecodeError> for Error {
fn from(_: multihash::DecodeError) -> Error {
Error::ParsingError
}
}
impl From<multihash::DecodeOwnedError> for Error {
fn from(_: multihash::DecodeOwnedError) -> Error {
Error::ParsingError
}
}
impl From<unsigned_varint::decode::Error> for Error {
fn from(_: unsigned_varint::decode::Error) -> Self {
Error::VarIntDecodeError
}
}