Rename pallet-message-lane into pallet-bridge-messages (#834)

* use runtime:: prefix for message-lane pallet traces

* renamed message-lane (module and primitives) folder into messages

* replace "message lane" with "messages" where appropriate
This commit is contained in:
Svyatoslav Nikolsky
2021-03-22 19:28:31 +03:00
committed by Bastian Köcher
parent eb7c96ba14
commit 4105575794
72 changed files with 492 additions and 471 deletions
+59
View File
@@ -0,0 +1,59 @@
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
// This file is part of Parity Bridges Common.
// Parity Bridges Common is free software: you can redistribute it and/or modify
// 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.
// Parity Bridges Common is distributed in the hope that it will be useful,
// 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
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>.
//! Possible errors and results of messages pallet RPC calls.
/// Future Result type.
pub type FutureResult<T> = jsonrpc_core::BoxFuture<T>;
/// State RPC errors.
#[derive(Debug, derive_more::Display, derive_more::From)]
pub enum Error {
/// When unknown instance id is passed.
#[display(fmt = "Message lane instance is unknown")]
UnknownInstance,
/// Client error.
#[display(fmt = "Client error: {}", _0)]
Client(Box<dyn std::error::Error + Send>),
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Error::UnknownInstance => None,
Error::Client(ref err) => Some(&**err),
}
}
}
impl From<Error> for jsonrpc_core::Error {
fn from(e: Error) -> Self {
const UNKNOW_INSTANCE_CODE: i64 = 1;
match e {
Error::UnknownInstance => jsonrpc_core::Error {
code: jsonrpc_core::ErrorCode::ServerError(UNKNOW_INSTANCE_CODE),
message: "Unknown instance passed".into(),
data: None,
},
Error::Client(e) => jsonrpc_core::Error {
code: jsonrpc_core::ErrorCode::InternalError,
message: format!("Unknown error occured: {}", e),
data: Some(format!("{:?}", e).into()),
},
}
}
}