2020-09-22 14:53:52 +02:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
|
|
|
// This file is part of OpenEthereum.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is free software: you can redistribute it and/or modify
|
2016-06-20 10:06:49 +02: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.
|
|
|
|
|
2020-09-22 14:53:52 +02:00
|
|
|
// OpenEthereum is distributed in the hope that it will be useful,
|
2016-06-20 10:06:49 +02: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
|
2020-09-22 14:53:52 +02:00
|
|
|
// along with OpenEthereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2021-03-12 10:12:42 +01:00
|
|
|
use crypto::publickey::DerivationError;
|
2020-08-05 06:08:03 +02:00
|
|
|
use std::{fmt, io::Error as IoError};
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2017-03-23 13:23:03 +01:00
|
|
|
/// Account-related errors.
|
2016-06-20 00:10:34 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
/// IO error
|
|
|
|
Io(IoError),
|
|
|
|
/// Invalid Password
|
|
|
|
InvalidPassword,
|
|
|
|
/// Account's secret is invalid.
|
|
|
|
InvalidSecret,
|
|
|
|
/// Invalid Vault Crypto meta.
|
|
|
|
InvalidCryptoMeta,
|
|
|
|
/// Invalid Account.
|
|
|
|
InvalidAccount,
|
|
|
|
/// Invalid Message.
|
|
|
|
InvalidMessage,
|
|
|
|
/// Invalid Key File
|
|
|
|
InvalidKeyFile(String),
|
|
|
|
/// Vaults are not supported.
|
|
|
|
VaultsAreNotSupported,
|
|
|
|
/// Unsupported vault
|
|
|
|
UnsupportedVault,
|
|
|
|
/// Invalid vault name
|
|
|
|
InvalidVaultName,
|
|
|
|
/// Vault not found
|
|
|
|
VaultNotFound,
|
|
|
|
/// Account creation failed.
|
|
|
|
CreationFailed,
|
2021-03-12 10:12:42 +01:00
|
|
|
/// `crypto::publickey::Error`
|
|
|
|
EthCrypto(crypto::Error),
|
2020-08-05 06:08:03 +02:00
|
|
|
/// `EthCrypto` error
|
2021-03-12 10:12:42 +01:00
|
|
|
EthCryptoPublicKey(crypto::publickey::Error),
|
2020-08-05 06:08:03 +02:00
|
|
|
/// Derivation error
|
|
|
|
Derivation(DerivationError),
|
|
|
|
/// Custom error
|
|
|
|
Custom(String),
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl fmt::Display for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
|
|
|
|
let s = match *self {
|
|
|
|
Error::Io(ref err) => err.to_string(),
|
|
|
|
Error::InvalidPassword => "Invalid password".into(),
|
|
|
|
Error::InvalidSecret => "Invalid secret".into(),
|
|
|
|
Error::InvalidCryptoMeta => "Invalid crypted metadata".into(),
|
|
|
|
Error::InvalidAccount => "Invalid account".into(),
|
|
|
|
Error::InvalidMessage => "Invalid message".into(),
|
|
|
|
Error::InvalidKeyFile(ref reason) => format!("Invalid key file: {}", reason),
|
|
|
|
Error::VaultsAreNotSupported => "Vaults are not supported".into(),
|
|
|
|
Error::UnsupportedVault => "Vault is not supported for this operation".into(),
|
|
|
|
Error::InvalidVaultName => "Invalid vault name".into(),
|
|
|
|
Error::VaultNotFound => "Vault not found".into(),
|
|
|
|
Error::CreationFailed => "Account creation failed".into(),
|
|
|
|
Error::EthCrypto(ref err) => err.to_string(),
|
2021-03-12 10:12:42 +01:00
|
|
|
Error::EthCryptoPublicKey(ref err) => err.to_string(),
|
2020-08-05 06:08:03 +02:00
|
|
|
Error::Derivation(ref err) => format!("Derivation error: {:?}", err),
|
|
|
|
Error::Custom(ref s) => s.clone(),
|
|
|
|
};
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2020-08-05 06:08:03 +02:00
|
|
|
write!(f, "{}", s)
|
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<IoError> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(err: IoError) -> Self {
|
|
|
|
Error::Io(err)
|
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
|
|
|
|
2021-03-12 10:12:42 +01:00
|
|
|
impl From<crypto::publickey::Error> for Error {
|
|
|
|
fn from(err: crypto::publickey::Error) -> Self {
|
|
|
|
Error::EthCryptoPublicKey(err)
|
2020-08-05 06:08:03 +02:00
|
|
|
}
|
2016-06-20 00:10:34 +02:00
|
|
|
}
|
2016-09-22 14:48:22 +02:00
|
|
|
|
2021-03-12 10:12:42 +01:00
|
|
|
impl From<crypto::Error> for Error {
|
|
|
|
fn from(err: crypto::Error) -> Self {
|
2020-08-05 06:08:03 +02:00
|
|
|
Error::EthCrypto(err)
|
|
|
|
}
|
2016-09-22 14:48:22 +02:00
|
|
|
}
|
2017-02-15 16:56:15 +01:00
|
|
|
|
2018-05-05 11:02:33 +02:00
|
|
|
impl From<crypto::error::ScryptError> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(err: crypto::error::ScryptError) -> Self {
|
|
|
|
Error::EthCrypto(err.into())
|
|
|
|
}
|
2018-05-05 11:02:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<crypto::error::SymmError> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(err: crypto::error::SymmError) -> Self {
|
|
|
|
Error::EthCrypto(err.into())
|
|
|
|
}
|
2018-05-05 11:02:33 +02:00
|
|
|
}
|
|
|
|
|
2017-02-15 16:56:15 +01:00
|
|
|
impl From<DerivationError> for Error {
|
2020-08-05 06:08:03 +02:00
|
|
|
fn from(err: DerivationError) -> Self {
|
|
|
|
Error::Derivation(err)
|
|
|
|
}
|
2017-02-15 16:56:15 +01:00
|
|
|
}
|