-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathlib.rs
76 lines (70 loc) · 2.63 KB
/
lib.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
76
/// Precompile errors
use {core::fmt, solana_decode_error::DecodeError};
/// Precompile errors
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum PrecompileError {
InvalidPublicKey,
InvalidRecoveryId,
InvalidSignature,
InvalidDataOffsets,
InvalidInstructionDataSize,
}
impl num_traits::FromPrimitive for PrecompileError {
#[inline]
fn from_i64(n: i64) -> Option<Self> {
if n == PrecompileError::InvalidPublicKey as i64 {
Some(PrecompileError::InvalidPublicKey)
} else if n == PrecompileError::InvalidRecoveryId as i64 {
Some(PrecompileError::InvalidRecoveryId)
} else if n == PrecompileError::InvalidSignature as i64 {
Some(PrecompileError::InvalidSignature)
} else if n == PrecompileError::InvalidDataOffsets as i64 {
Some(PrecompileError::InvalidDataOffsets)
} else if n == PrecompileError::InvalidInstructionDataSize as i64 {
Some(PrecompileError::InvalidInstructionDataSize)
} else {
None
}
}
#[inline]
fn from_u64(n: u64) -> Option<Self> {
Self::from_i64(n as i64)
}
}
impl num_traits::ToPrimitive for PrecompileError {
#[inline]
fn to_i64(&self) -> Option<i64> {
Some(match *self {
PrecompileError::InvalidPublicKey => PrecompileError::InvalidPublicKey as i64,
PrecompileError::InvalidRecoveryId => PrecompileError::InvalidRecoveryId as i64,
PrecompileError::InvalidSignature => PrecompileError::InvalidSignature as i64,
PrecompileError::InvalidDataOffsets => PrecompileError::InvalidDataOffsets as i64,
PrecompileError::InvalidInstructionDataSize => {
PrecompileError::InvalidInstructionDataSize as i64
}
})
}
#[inline]
fn to_u64(&self) -> Option<u64> {
self.to_i64().map(|x| x as u64)
}
}
impl core::error::Error for PrecompileError {}
impl fmt::Display for PrecompileError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
PrecompileError::InvalidPublicKey => f.write_str("public key is not valid"),
PrecompileError::InvalidRecoveryId => f.write_str("id is not valid"),
PrecompileError::InvalidSignature => f.write_str("signature is not valid"),
PrecompileError::InvalidDataOffsets => f.write_str("offset not valid"),
PrecompileError::InvalidInstructionDataSize => {
f.write_str("instruction is incorrect size")
}
}
}
}
impl<T> DecodeError<T> for PrecompileError {
fn type_of() -> &'static str {
"PrecompileError"
}
}