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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
use fuel_asm::{Instruction, InstructionResult, PanicReason};
use fuel_tx::ValidationError;
use std::convert::Infallible as StdInfallible;
use std::error::Error as StdError;
use std::{fmt, io};
use thiserror::Error;
#[derive(Debug, Error)]
pub enum InterpreterError {
#[error("Execution error: {0:?}")]
PanicInstruction(InstructionResult),
#[error("Execution error: {0:?}")]
Panic(PanicReason),
#[error("Failed to validate the transaction: {0}")]
ValidationError(#[from] ValidationError),
#[error("Execution error")]
PredicateFailure,
#[error("Execution error")]
NoTransactionInitialized,
#[error("Unrecoverable error: {0}")]
Io(#[from] io::Error),
#[cfg(feature = "debug")]
#[error("Execution error")]
DebugStateNotInitialized,
}
impl InterpreterError {
pub fn from_runtime(error: RuntimeError, instruction: Instruction) -> Self {
match error {
RuntimeError::Recoverable(reason) => Self::PanicInstruction(InstructionResult::error(reason, instruction)),
RuntimeError::Halt(e) => Self::Io(e),
}
}
pub const fn panic_reason(&self) -> Option<PanicReason> {
match self {
Self::PanicInstruction(result) => Some(*result.reason()),
Self::Panic(reason) => Some(*reason),
_ => None,
}
}
pub const fn instruction(&self) -> Option<&Instruction> {
match self {
Self::PanicInstruction(result) => Some(result.instruction()),
_ => None,
}
}
pub fn instruction_result(&self) -> Option<&InstructionResult> {
match self {
Self::PanicInstruction(r) => Some(r),
_ => None,
}
}
pub fn from_io<E>(e: E) -> Self
where
E: Into<io::Error>,
{
Self::Io(e.into())
}
}
impl From<InstructionResult> for InterpreterError {
fn from(r: InstructionResult) -> InterpreterError {
Self::PanicInstruction(r)
}
}
impl From<RuntimeError> for InterpreterError {
fn from(error: RuntimeError) -> Self {
match error {
RuntimeError::Recoverable(e) => Self::Panic(e),
RuntimeError::Halt(e) => Self::Io(e),
}
}
}
#[derive(Debug, Error)]
pub enum RuntimeError {
#[error(transparent)]
Recoverable(#[from] PanicReason),
#[error(transparent)]
Halt(#[from] io::Error),
}
impl RuntimeError {
pub const fn is_recoverable(&self) -> bool {
matches!(self, Self::Recoverable(_))
}
pub const fn must_halt(&self) -> bool {
matches!(self, Self::Halt(_))
}
pub fn from_io<E>(e: E) -> Self
where
E: Into<io::Error>,
{
Self::Halt(e.into())
}
}
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Infallible(StdInfallible);
impl fmt::Display for Infallible {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl StdError for Infallible {
fn source(&self) -> Option<&(dyn StdError + 'static)> {
Some(&self.0)
}
}
impl<E> From<E> for Infallible
where
E: Into<StdInfallible>,
{
fn from(e: E) -> Infallible {
Self(e.into())
}
}
impl From<Infallible> for InterpreterError {
fn from(_e: Infallible) -> InterpreterError {
unreachable!()
}
}
impl From<Infallible> for RuntimeError {
fn from(_e: Infallible) -> RuntimeError {
unreachable!()
}
}
impl From<Infallible> for PanicReason {
fn from(_e: Infallible) -> PanicReason {
unreachable!()
}
}
impl Into<io::Error> for Infallible {
fn into(self) -> io::Error {
unreachable!()
}
}