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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use crate::trap::Trap;
use ceres_std::{fmt, format, String, Vec};
#[repr(i32)]
#[derive(Debug, PartialEq, Eq)]
pub enum ReturnCode {
Success = 0,
CalleeTrapped = 1,
CalleeReverted = 2,
KeyNotFound = 3,
BelowSubsistenceThreshold = 4,
TransferFailed = 5,
NewContractNotFunded = 6,
CodeNotFound = 7,
NotCallable = 8,
LoggingDisabled = 9,
UnExpectedReturnCode = 10,
}
impl From<i32> for ReturnCode {
fn from(n: i32) -> ReturnCode {
match n {
0 => ReturnCode::Success,
1 => ReturnCode::CalleeTrapped,
2 => ReturnCode::CalleeReverted,
3 => ReturnCode::KeyNotFound,
4 => ReturnCode::BelowSubsistenceThreshold,
5 => ReturnCode::TransferFailed,
6 => ReturnCode::NewContractNotFunded,
7 => ReturnCode::CodeNotFound,
8 => ReturnCode::NotCallable,
9 => ReturnCode::LoggingDisabled,
_ => ReturnCode::UnExpectedReturnCode,
}
}
}
#[derive(Debug, Eq, PartialEq)]
pub enum Error {
InitMemoryFailed,
OutOfBounds,
InitModuleFailed,
ExecuteFailed(ReturnCode),
UnkownError,
Trap(Trap),
GetFunctionNameFailed,
CreateWasmtimeConfigFailed,
GetExternalFailed(String),
DecodeRuntimeValueFailed,
OutputBufferTooSmall,
WrongArugmentLength,
SetStorageFailed,
ReturnData {
flags: u32,
data: Vec<u8>,
},
TooManyTopics,
DuplicateTopics,
TopicValueTooLarge,
OutOfGas,
Custom(&'static str),
AnyHow,
UnExpectedReturnValue,
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> core::result::Result<(), fmt::Error> {
f.write_str(&format!("{:?}", &self))?;
Ok(())
}
}
impl From<anyhow::Error> for Error {
fn from(_: anyhow::Error) -> Error {
Error::AnyHow
}
}
pub type Result<T> = core::result::Result<T, Error>;