marine/engine/src/errors.rs

152 lines
5.1 KiB
Rust
Raw Normal View History

2020-04-18 18:27:01 +03:00
/*
* Copyright 2020 Fluence Labs Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2021-03-16 13:51:59 +03:00
use crate::HostImportError;
2020-06-04 19:54:23 +03:00
use fce_wit_interfaces::FCEWITInterfacesError;
2020-07-28 19:14:53 +03:00
use fce_wit_parser::WITParserError;
2021-03-16 13:51:59 +03:00
use fce_module_info_parser::ModuleInfoError;
2020-06-04 19:54:23 +03:00
2021-04-12 00:21:47 +03:00
use wasmer_runtime::error as wasmer_error;
2020-04-18 18:27:01 +03:00
2021-04-12 00:21:47 +03:00
use thiserror::Error as ThisError;
2020-04-22 16:25:24 +03:00
2021-03-16 13:51:59 +03:00
// TODO: refactor errors
2021-04-12 00:21:47 +03:00
#[derive(Debug, ThisError)]
2020-05-08 20:38:29 +03:00
pub enum FCEError {
2020-04-18 18:27:01 +03:00
/// This error type is produced by Wasmer during resolving a Wasm function.
2021-04-12 00:21:47 +03:00
#[error("WasmerResolveError: {0}")]
ResolveError(#[from] wasmer_error::ResolveError),
2020-04-18 18:27:01 +03:00
/// Error related to calling a main Wasm module.
2021-04-12 00:21:47 +03:00
#[error("WasmerInvokeError: {0}")]
2020-04-18 18:27:01 +03:00
WasmerInvokeError(String),
2020-04-22 16:11:57 +03:00
/// Error that raises during compilation Wasm code by Wasmer.
2021-04-12 00:21:47 +03:00
#[error("WasmerCreationError: {0}")]
WasmerCreationError(#[from] wasmer_error::CreationError),
2020-04-18 18:27:01 +03:00
2020-04-22 16:11:57 +03:00
/// Error that raises during creation of some Wasm objects (like table and memory) by Wasmer.
2021-04-12 00:21:47 +03:00
#[error("WasmerCompileError: {0}")]
WasmerCompileError(#[from] wasmer_error::CompileError),
/// Errors arisen during execution of a Wasm module.
#[error("WasmerCompileError: {0}")]
WasmerRuntimeError(String),
/// Errors arisen during linking Wasm modules with already loaded into FCE modules.
#[error("WasmerLinkError: {0}")]
WasmerLinkError(#[from] wasmer_error::LinkError),
/// Errors from the temporary class of amalgamation errors from the Wasmer side.
#[error("WasmerError: {0}")]
WasmerError(String),
/// Errors related to failed resolving of records.
#[error("{0}")]
RecordResolveError(String),
/// Errors arisen during creation of a WASI context.
#[error("{0}")]
WASIPrepareError(String),
/// Error arisen during execution of Wasm modules (especially, interface types).
#[error("Execution error: {0}")]
ITInstructionError(#[from] wasmer_wit::errors::InstructionError),
2020-04-18 18:27:01 +03:00
2020-04-22 16:11:57 +03:00
/// Error that raises on the preparation step.
2021-04-12 00:21:47 +03:00
#[error("PrepareError: {0}, probably module is malformed")]
PrepareError(#[from] parity_wasm::elements::Error),
2020-04-28 05:00:20 +03:00
/// Indicates that there is already a module with such name.
2021-04-12 00:21:47 +03:00
#[error("Module with name {0} already loaded in FCE, please specify another name")]
2020-10-21 22:21:16 +03:00
NonUniqueModuleName(String),
2020-04-28 05:00:20 +03:00
/// Returns when there is no module with such name.
2021-04-12 00:21:47 +03:00
#[error("Module with name {0} doesn't have function with name {1}")]
NoSuchFunction(String, String),
/// Returns when there is no module with such name.
2021-04-12 00:21:47 +03:00
#[error("Module with name {0} doesn't loaded in FCE")]
2020-07-11 23:04:55 +03:00
NoSuchModule(String),
2020-05-09 00:39:42 +03:00
2020-10-01 12:19:38 +03:00
/// An error occurred when host functions tries to lift IValues from WValues and lowering back.
2021-04-12 00:21:47 +03:00
#[error("{0}")]
HostImportError(#[from] HostImportError),
2020-10-01 12:19:38 +03:00
2020-06-04 19:06:23 +03:00
/// WIT section parse error.
2021-04-12 00:21:47 +03:00
#[error("{0}")]
WITParseError(#[from] WITParserError),
2020-06-04 19:06:23 +03:00
/// Incorrect WIT section.
2021-04-12 00:21:47 +03:00
#[error("{0}")]
2020-06-04 19:06:23 +03:00
IncorrectWIT(String),
2021-03-16 13:51:59 +03:00
/// Error is encountered while parsing module version.
2021-04-12 00:21:47 +03:00
#[error("{0}")]
ModuleVersionParseError(#[from] ModuleInfoError),
2021-03-16 13:51:59 +03:00
/// Provided module doesn't contain a sdk version that is necessary.
2021-04-12 00:21:47 +03:00
#[error("module with name {0} doesn't contain a version of sdk, probably it's compiled with an old one")]
ModuleWithoutVersion(String),
2021-03-16 13:51:59 +03:00
/// Module sdk versions are incompatible.
2021-04-12 00:21:47 +03:00
#[error("module with name {module_name} compiled with {provided} sdk version, but at least {required} required")]
2021-03-16 13:51:59 +03:00
IncompatibleSDKVersions {
2021-04-12 00:21:47 +03:00
module_name: String,
2021-03-16 13:51:59 +03:00
required: semver::Version,
provided: semver::Version,
},
/// Module IT versions are incompatible.
2021-04-12 00:21:47 +03:00
#[error("module with name {module_name} compiled with {provided} IT version, but at least {required} required")]
2021-03-16 13:51:59 +03:00
IncompatibleITVersions {
2021-04-12 00:21:47 +03:00
module_name: String,
2021-03-16 13:51:59 +03:00
required: semver::Version,
provided: semver::Version,
},
2020-04-18 18:27:01 +03:00
}
2021-04-12 00:21:47 +03:00
impl From<FCEWITInterfacesError> for FCEError {
fn from(err: FCEWITInterfacesError) -> Self {
FCEError::IncorrectWIT(format!("{}", err))
2020-04-18 18:27:01 +03:00
}
}
2020-06-04 19:06:23 +03:00
2021-04-12 00:21:47 +03:00
impl From<wasmer_error::RuntimeError> for FCEError {
fn from(err: wasmer_error::RuntimeError) -> Self {
Self::WasmerRuntimeError(err.to_string())
2020-06-04 19:06:23 +03:00
}
}
2020-06-04 19:54:23 +03:00
2021-04-12 00:21:47 +03:00
impl From<wasmer_error::Error> for FCEError {
fn from(err: wasmer_error::Error) -> Self {
Self::WasmerError(err.to_string())
2020-06-04 19:54:23 +03:00
}
}
2021-04-12 00:21:47 +03:00
impl From<wasmer_error::InvokeError> for FCEError {
fn from(err: wasmer_error::InvokeError) -> Self {
Self::WasmerInvokeError(err.to_string())
2021-03-16 13:51:59 +03:00
}
}
2020-06-04 19:54:23 +03:00
impl From<()> for FCEError {
fn from(_err: ()) -> Self {
2020-06-05 23:12:02 +03:00
FCEError::IncorrectWIT("failed to parse instructions for adapter type".to_string())
2020-06-04 19:54:23 +03:00
}
}