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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
use crate::{ExternType, Pages};
use std::io;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum SerializeError {
#[error(transparent)]
Io(#[from] io::Error),
#[error("{0}")]
Generic(String),
}
#[derive(Error, Debug)]
pub enum DeserializeError {
#[error(transparent)]
Io(#[from] io::Error),
#[error("{0}")]
Generic(String),
#[error("incompatible binary: {0}")]
Incompatible(String),
#[error("corrupted binary: {0}")]
CorruptedBinary(String),
#[error(transparent)]
Compiler(#[from] CompileError),
#[error("invalid input bytes: expected {expected} bytes, got {got}")]
InvalidByteLength {
expected: usize,
got: usize,
},
}
#[derive(Error, Debug, Clone, PartialEq, Eq, Hash)]
pub enum MemoryError {
#[error("Error when allocating memory: {0}")]
Region(String),
#[error("The memory could not grow: current size {} pages, requested increase: {} pages", current.0, attempted_delta.0)]
CouldNotGrow {
current: Pages,
attempted_delta: Pages,
},
#[error("The memory is invalid because {}", reason)]
InvalidMemory {
reason: String,
},
#[error("The minimum requested ({} pages) memory is greater than the maximum allowed memory ({} pages)", min_requested.0, max_allowed.0)]
MinimumMemoryTooLarge {
min_requested: Pages,
max_allowed: Pages,
},
#[error("The maximum requested memory ({} pages) is greater than the maximum allowed memory ({} pages)", max_requested.0, max_allowed.0)]
MaximumMemoryTooLarge {
max_requested: Pages,
max_allowed: Pages,
},
#[error("A user-defined error occurred: {0}")]
Generic(String),
}
#[derive(Error, Debug)]
pub enum ImportError {
#[error("incompatible import type. Expected {0:?} but received {1:?}")]
IncompatibleType(ExternType, ExternType),
#[error("unknown import. Expected {0:?}")]
UnknownImport(ExternType),
#[error("memory error. {0}")]
MemoryError(String),
}
#[derive(Error, Debug)]
pub enum PreInstantiationError {
#[error("module compiled with CPU feature that is missing from host")]
CpuFeature(String),
}
use crate::lib::std::string::String;
#[derive(Debug)]
#[cfg_attr(feature = "std", derive(Error))]
pub enum CompileError {
#[cfg_attr(feature = "std", error("WebAssembly translation error: {0}"))]
Wasm(WasmError),
#[cfg_attr(feature = "std", error("Compilation error: {0}"))]
Codegen(String),
#[cfg_attr(feature = "std", error("Validation error: {0}"))]
Validate(String),
#[cfg_attr(feature = "std", error("Feature {0} is not yet supported"))]
UnsupportedFeature(String),
#[cfg_attr(feature = "std", error("The target {0} is not yet supported (see https://docs.wasmer.io/ecosystem/wasmer/wasmer-features)"))]
UnsupportedTarget(String),
#[cfg_attr(feature = "std", error("Insufficient resources: {0}"))]
Resource(String),
}
impl From<WasmError> for CompileError {
fn from(original: WasmError) -> Self {
Self::Wasm(original)
}
}
#[derive(Debug)]
#[cfg_attr(feature = "std", derive(Error))]
#[cfg_attr(feature = "std", error("Error in middleware {name}: {message}"))]
pub struct MiddlewareError {
pub name: String,
pub message: String,
}
impl MiddlewareError {
pub fn new<A: Into<String>, B: Into<String>>(name: A, message: B) -> Self {
Self {
name: name.into(),
message: message.into(),
}
}
}
#[derive(Debug)]
#[cfg_attr(feature = "std", derive(Error))]
pub enum WasmError {
#[cfg_attr(
feature = "std",
error("Invalid input WebAssembly code at offset {offset}: {message}")
)]
InvalidWebAssembly {
message: String,
offset: usize,
},
#[cfg_attr(feature = "std", error("Unsupported feature: {0}"))]
Unsupported(String),
#[cfg_attr(feature = "std", error("Implementation limit exceeded"))]
ImplLimitExceeded,
#[cfg_attr(feature = "std", error("{0}"))]
Middleware(MiddlewareError),
#[cfg_attr(feature = "std", error("{0}"))]
Generic(String),
}
impl From<MiddlewareError> for WasmError {
fn from(original: MiddlewareError) -> Self {
Self::Middleware(original)
}
}
#[derive(Debug)]
#[cfg_attr(feature = "std", derive(Error))]
pub enum ParseCpuFeatureError {
#[cfg_attr(feature = "std", error("CpuFeature {0} not recognized"))]
Missing(String),
}
pub type WasmResult<T> = Result<T, WasmError>;
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn middleware_error_can_be_created() {
let msg = String::from("Something went wrong");
let error = MiddlewareError::new("manipulator3000", msg);
assert_eq!(error.name, "manipulator3000");
assert_eq!(error.message, "Something went wrong");
}
#[test]
fn middleware_error_be_converted_to_wasm_error() {
let error = WasmError::from(MiddlewareError::new("manipulator3000", "foo"));
match error {
WasmError::Middleware(MiddlewareError { name, message }) => {
assert_eq!(name, "manipulator3000");
assert_eq!(message, "foo");
}
err => panic!("Unexpected error: {:?}", err),
}
}
}