2019-01-07 11:33:07 +01:00
|
|
|
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of Parity Ethereum.
|
2018-10-30 22:12:42 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2018-10-30 22:12:42 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2018-10-30 22:12:42 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2018-10-30 22:12:42 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
use failure::{Backtrace, Context, Fail};
|
2018-10-30 22:12:42 +01:00
|
|
|
use std::fmt::{self, Display};
|
2020-08-05 06:08:03 +02:00
|
|
|
use validator::{ValidationErrors, ValidationErrorsKind};
|
2018-10-30 22:12:42 +01:00
|
|
|
|
|
|
|
pub(crate) type Result<T> = ::std::result::Result<T, Error>;
|
|
|
|
/// Error type
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
inner: Context<ErrorKind>,
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
/// Possible errors encountered while hashing/encoding an EIP-712 compliant data structure
|
|
|
|
#[derive(Clone, Fail, Debug, PartialEq)]
|
|
|
|
pub enum ErrorKind {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// if we fail to deserialize from a serde::Value as a type specified in message types
|
|
|
|
/// fail with this error.
|
|
|
|
#[fail(display = "Expected type '{}' for field '{}'", _0, _1)]
|
|
|
|
UnexpectedType(String, String),
|
|
|
|
/// the primary type supplied doesn't exist in the MessageTypes
|
|
|
|
#[fail(display = "The given primaryType wasn't found in the types field")]
|
|
|
|
NonExistentType,
|
|
|
|
/// an invalid address was encountered during encoding
|
|
|
|
#[fail(
|
|
|
|
display = "Address string should be a 0x-prefixed 40 character string, got '{}'",
|
|
|
|
_0
|
|
|
|
)]
|
|
|
|
InvalidAddressLength(usize),
|
|
|
|
/// a hex parse error occured
|
|
|
|
#[fail(display = "Failed to parse hex '{}'", _0)]
|
|
|
|
HexParseError(String),
|
|
|
|
/// the field was declared with a unknown type
|
|
|
|
#[fail(display = "The field '{}' has an unknown type '{}'", _0, _1)]
|
|
|
|
UnknownType(String, String),
|
|
|
|
/// Unexpected token
|
|
|
|
#[fail(display = "Unexpected token '{}' while parsing typename '{}'", _0, _1)]
|
|
|
|
UnexpectedToken(String, String),
|
|
|
|
/// the user has attempted to define a typed array with a depth > 10
|
|
|
|
#[fail(display = "Maximum depth for nested arrays is 10")]
|
|
|
|
UnsupportedArrayDepth,
|
|
|
|
/// FieldType validation error
|
|
|
|
#[fail(display = "{}", _0)]
|
|
|
|
ValidationError(String),
|
|
|
|
/// the typed array defined in message types was declared with a fixed length
|
|
|
|
/// that is of unequal length with the items to be encoded
|
|
|
|
#[fail(
|
|
|
|
display = "Expected {} items for array type {}, got {} items",
|
|
|
|
_0, _1, _2
|
|
|
|
)]
|
|
|
|
UnequalArrayItems(u64, String, u64),
|
|
|
|
/// Typed array length doesn't fit into a u64
|
|
|
|
#[fail(display = "Attempted to declare fixed size with length {}", _0)]
|
|
|
|
InvalidArraySize(String),
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn serde_error(expected: &str, field: Option<&str>) -> ErrorKind {
|
2020-08-05 06:08:03 +02:00
|
|
|
ErrorKind::UnexpectedType(expected.to_owned(), field.unwrap_or("").to_owned())
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Fail for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn cause(&self) -> Option<&dyn Fail> {
|
|
|
|
self.inner.cause()
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
fn backtrace(&self) -> Option<&Backtrace> {
|
|
|
|
self.inner.backtrace()
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
Display::fmt(&self.inner, f)
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// extract the error kind
|
|
|
|
pub fn kind(&self) -> ErrorKind {
|
|
|
|
self.inner.get_context().clone()
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ErrorKind> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(kind: ErrorKind) -> Error {
|
|
|
|
Error {
|
|
|
|
inner: Context::new(kind),
|
|
|
|
}
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Context<ErrorKind>> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(inner: Context<ErrorKind>) -> Error {
|
|
|
|
Error { inner }
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ValidationErrors> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(error: ValidationErrors) -> Self {
|
|
|
|
let mut string: String = "".into();
|
|
|
|
for (field_name, error_kind) in error.errors() {
|
|
|
|
match error_kind {
|
|
|
|
ValidationErrorsKind::Field(validation_errors) => {
|
|
|
|
for error in validation_errors {
|
|
|
|
let str_error = format!(
|
|
|
|
"the field '{}', has an invalid value {}",
|
|
|
|
field_name, error.params["value"]
|
|
|
|
);
|
|
|
|
string.push_str(&str_error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => unreachable!(
|
|
|
|
"#[validate] is only used on fields for regex;\
|
|
|
|
its impossible to get any other ErrorKind; qed"
|
|
|
|
),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ErrorKind::ValidationError(string).into()
|
|
|
|
}
|
2018-10-30 22:12:42 +01:00
|
|
|
}
|