git.delta.rocks / unique-network / refs/commits / f0ad1b02de6f

difftreelog

source

runtime/common/dispatch.rs6.9 KiBsourcehistory
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617use frame_support::{dispatch::DispatchResult, ensure};18use pallet_evm::{PrecompileHandle, PrecompileResult};19use sp_core::H160;20use sp_runtime::DispatchError;21use sp_std::{borrow::ToOwned, vec::Vec};22use pallet_common::{23	CollectionById, CollectionHandle, CommonCollectionOperations, erc::CommonEvmHandler,24	eth::map_eth_to_id,25};26pub use pallet_common::dispatch::CollectionDispatch;27use pallet_fungible::{Pallet as PalletFungible, FungibleHandle};28use pallet_balances_adapter::{Pallet as PalletNativeFungible, NativeFungibleHandle};29use pallet_nonfungible::{Pallet as PalletNonfungible, NonfungibleHandle};30use pallet_refungible::{31	Pallet as PalletRefungible, RefungibleHandle, erc_token::RefungibleTokenHandle,32};33use up_data_structs::{34	CollectionMode, CreateCollectionData, MAX_DECIMAL_POINTS, mapping::TokenAddressMapping,35	CollectionId, CollectionFlags,36};3738#[cfg(not(feature = "refungible"))]39use pallet_common::unsupported;4041pub enum CollectionDispatchT<T>42where43	T: pallet_fungible::Config44		+ pallet_nonfungible::Config45		+ pallet_refungible::Config46		+ pallet_balances_adapter::Config,47{48	Fungible(FungibleHandle<T>),49	Nonfungible(NonfungibleHandle<T>),50	Refungible(RefungibleHandle<T>),51	NativeFungible(NativeFungibleHandle<T>),52}5354impl<T> CollectionDispatch<T> for CollectionDispatchT<T>55where56	T: pallet_common::Config57		+ pallet_unique::Config58		+ pallet_fungible::Config59		+ pallet_nonfungible::Config60		+ pallet_refungible::Config61		+ pallet_balances_adapter::Config,62{63	fn check_is_internal(&self) -> DispatchResult {64		match self {65			Self::Fungible(h) => h.check_is_internal(),66			Self::Nonfungible(h) => h.check_is_internal(),67			Self::Refungible(h) => h.check_is_internal(),68			Self::NativeFungible(h) => h.check_is_internal(),69		}70	}7172	fn create(73		sender: T::CrossAccountId,74		payer: T::CrossAccountId,75		data: CreateCollectionData<T::AccountId>,76		flags: CollectionFlags,77	) -> Result<CollectionId, DispatchError> {78		let id = match data.mode {79			CollectionMode::NFT => {80				<PalletNonfungible<T>>::init_collection(sender, payer, data, flags)?81			}82			CollectionMode::Fungible(decimal_points) => {83				// check params84				ensure!(85					decimal_points <= MAX_DECIMAL_POINTS,86					pallet_unique::Error::<T>::CollectionDecimalPointLimitExceeded87				);88				<PalletFungible<T>>::init_collection(sender, payer, data, flags)?89			}9091			#[cfg(feature = "refungible")]92			CollectionMode::ReFungible => {93				<PalletRefungible<T>>::init_collection(sender, payer, data, flags)?94			}9596			#[cfg(not(feature = "refungible"))]97			CollectionMode::ReFungible => return unsupported!(T),98		};99		Ok(id)100	}101102	fn destroy(sender: T::CrossAccountId, collection: CollectionHandle<T>) -> DispatchResult {103		match collection.mode {104			CollectionMode::ReFungible => {105				PalletRefungible::destroy_collection(RefungibleHandle::cast(collection), &sender)?106			}107			CollectionMode::Fungible(_) => {108				PalletFungible::destroy_collection(FungibleHandle::cast(collection), &sender)?109			}110			CollectionMode::NFT => {111				PalletNonfungible::destroy_collection(NonfungibleHandle::cast(collection), &sender)?112			}113		}114		Ok(())115	}116117	fn dispatch(collection_id: CollectionId) -> Result<Self, DispatchError> {118		if collection_id == CollectionId(0) {119			return Ok(Self::NativeFungible(NativeFungibleHandle::new()));120		}121122		let handle = <CollectionHandle<T>>::try_get(collection_id)?;123		Ok(match handle.mode {124			CollectionMode::Fungible(_) => Self::Fungible(FungibleHandle::cast(handle)),125			CollectionMode::NFT => Self::Nonfungible(NonfungibleHandle::cast(handle)),126			CollectionMode::ReFungible => Self::Refungible(RefungibleHandle::cast(handle)),127		})128	}129130	fn as_dyn(&self) -> &dyn CommonCollectionOperations<T> {131		match self {132			Self::Fungible(h) => h,133			Self::Nonfungible(h) => h,134			Self::Refungible(h) => h,135			Self::NativeFungible(h) => h,136		}137	}138}139140impl<T> pallet_evm::OnMethodCall<T> for CollectionDispatchT<T>141where142	T: pallet_common::Config143		+ pallet_unique::Config144		+ pallet_fungible::Config145		+ pallet_nonfungible::Config146		+ pallet_refungible::Config147		+ pallet_balances_adapter::Config,148	T::AccountId: From<[u8; 32]> + AsRef<[u8; 32]>,149{150	fn is_reserved(target: &H160) -> bool {151		map_eth_to_id(target).is_some()152	}153	fn is_used(target: &H160) -> bool {154		map_eth_to_id(target)155			.map(<CollectionById<T>>::contains_key)156			.unwrap_or(false)157	}158	fn get_code(target: &H160) -> Option<Vec<u8>> {159		if let Some(collection_id) = map_eth_to_id(target) {160			let collection = <CollectionById<T>>::get(collection_id)?;161			Some(162				match collection.mode {163					CollectionMode::NFT => <NonfungibleHandle<T>>::CODE,164					CollectionMode::Fungible(_) => <FungibleHandle<T>>::CODE,165					CollectionMode::ReFungible => <RefungibleHandle<T>>::CODE,166				}167				.to_owned(),168			)169		} else if let Some((collection_id, _token_id)) =170			<T as pallet_common::Config>::EvmTokenAddressMapping::address_to_token(target)171		{172			let collection = <CollectionById<T>>::get(collection_id)?;173			if collection.mode != CollectionMode::ReFungible {174				return None;175			}176			// TODO: check token existence177			Some(<RefungibleTokenHandle<T>>::CODE.to_owned())178		} else {179			None180		}181	}182	fn call(handle: &mut impl PrecompileHandle) -> Option<PrecompileResult> {183		if let Some(collection_id) = map_eth_to_id(&handle.code_address()) {184			if collection_id == CollectionId(0) {185				<NativeFungibleHandle<T>>::new().call(handle)186			} else {187				let collection = <CollectionHandle<T>>::new_with_gas_limit(188					collection_id,189					handle.remaining_gas(),190				)?;191192				match collection.mode {193					CollectionMode::Fungible(_) => FungibleHandle::cast(collection).call(handle),194					CollectionMode::NFT => NonfungibleHandle::cast(collection).call(handle),195					CollectionMode::ReFungible => RefungibleHandle::cast(collection).call(handle),196				}197			}198		} else if let Some((collection_id, token_id)) =199			<T as pallet_common::Config>::EvmTokenAddressMapping::address_to_token(200				&handle.code_address(),201			) {202			let collection =203				<CollectionHandle<T>>::new_with_gas_limit(collection_id, handle.remaining_gas())?;204			if collection.mode != CollectionMode::ReFungible {205				return None;206			}207208			let h = RefungibleHandle::cast(collection);209			// TODO: check token existence210			RefungibleTokenHandle(h, token_id).call(handle)211		} else {212			None213		}214	}215}