use fvm_shared::error::ExitCode;
use thiserror::Error;
#[derive(Error, Debug, Clone, PartialEq)]
#[error("ActorError(exit_code: {exit_code:?}, msg: {msg})")]
pub struct ActorError {
exit_code: ExitCode,
msg: String,
}
#[macro_export]
macro_rules! actor_error_v8 {
( $code:ident; $msg:expr ) => { $crate::v8::ActorError::$code($msg.to_string()) };
( $code:ident; $msg:literal $(, $ex:expr)+ ) => {
$crate::v8::ActorError::$code(format!($msg, $($ex,)*))
};
( $code:ident, $msg:expr ) => { $crate::actor_error_v8!($code; $msg) };
( $code:ident, $msg:literal $(, $ex:expr)+ ) => {
$crate::actor_error_v8!($code; $msg $(, $ex)*)
};
}
impl ActorError {
pub fn unchecked(code: ExitCode, msg: String) -> Self {
Self {
exit_code: code,
msg,
}
}
pub fn illegal_argument(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_ILLEGAL_ARGUMENT,
msg,
}
}
pub fn not_found(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_NOT_FOUND,
msg,
}
}
pub fn forbidden(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_FORBIDDEN,
msg,
}
}
pub fn insufficient_funds(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_INSUFFICIENT_FUNDS,
msg,
}
}
pub fn illegal_state(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_ILLEGAL_STATE,
msg,
}
}
pub fn serialization(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_SERIALIZATION,
msg,
}
}
pub fn unhandled_message(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_UNHANDLED_MESSAGE,
msg,
}
}
pub fn unspecified(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_UNSPECIFIED,
msg,
}
}
pub fn assertion_failed(msg: String) -> Self {
Self {
exit_code: ExitCode::USR_ASSERTION_FAILED,
msg,
}
}
pub fn exit_code(&self) -> ExitCode {
self.exit_code
}
pub fn msg(&self) -> &str {
&self.msg
}
pub fn wrap(mut self, msg: impl AsRef<str>) -> Self {
self.msg = format!("{}: {}", msg.as_ref(), self.msg);
self
}
}
impl From<fvm_ipld_encoding::Error> for ActorError {
fn from(e: fvm_ipld_encoding::Error) -> Self {
Self {
exit_code: ExitCode::USR_SERIALIZATION,
msg: e.to_string(),
}
}
}