xcm_sender.rs 1.7 KiB
Newer Older
Shaun Wang's avatar
Shaun Wang committed
// Copyright 2021 Parity Technologies (UK) Ltd.
// This file is part of Polkadot.

// Polkadot 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.

// Polkadot 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 Polkadot.  If not, see <http://www.gnu.org/licenses/>.

Denis_P's avatar
Denis_P committed
//! XCM sender for relay chain.
Shaun Wang's avatar
Shaun Wang committed

use parity_scale_codec::Encode;
use runtime_parachains::{configuration, dmp};
use sp_std::marker::PhantomData;
Shaun Wang's avatar
Shaun Wang committed

Denis_P's avatar
Denis_P committed
/// XCM sender for relay chain. It only sends downward message.
Gavin Wood's avatar
Gavin Wood committed
pub struct ChildParachainRouter<T, W>(PhantomData<(T, W)>);
Shaun Wang's avatar
Shaun Wang committed

Gavin Wood's avatar
Gavin Wood committed
impl<T: configuration::Config + dmp::Config, W: xcm::WrapVersion> SendXcm
	for ChildParachainRouter<T, W>
{
	fn send_xcm(dest: impl Into<MultiLocation>, msg: Xcm<()>) -> SendResult {
		let dest = dest.into();
			MultiLocation { parents: 0, interior: X1(Parachain(id)) } => {
Gavin Wood's avatar
Gavin Wood committed
				// Downward message passing.
Gavin Wood's avatar
Gavin Wood committed
				let versioned_xcm =
					W::wrap_version(&dest, msg).map_err(|()| SendError::DestinationUnsupported)?;
				let config = <configuration::Pallet<T>>::config();
				<dmp::Pallet<T>>::queue_downward_message(
Gavin Wood's avatar
Gavin Wood committed
					&config,
Gavin Wood's avatar
Gavin Wood committed
					versioned_xcm.encode(),
Gavin Wood's avatar
Gavin Wood committed
				Ok(())
			dest => Err(SendError::CannotReachDestination(dest, msg)),