mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 02:48:03 +00:00
45d64a711c
* Move trait `Printable` into `sr-primitives` * Cleanup runtime io trie_root interfaces * Remove last generic bits from sr-io interface * Fix srml-sudo after master merge * Fix benchmarks * Runtime bump
1060 lines
30 KiB
Rust
1060 lines
30 KiB
Rust
// Copyright 2017-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate 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.
|
|
|
|
// Substrate 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 Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Runtime Modules shared primitive types.
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#[doc(hidden)]
|
|
pub use codec;
|
|
#[cfg(feature = "std")]
|
|
#[doc(hidden)]
|
|
pub use serde;
|
|
#[doc(hidden)]
|
|
pub use rstd;
|
|
|
|
#[doc(hidden)]
|
|
pub use paste;
|
|
|
|
#[doc(hidden)]
|
|
pub use app_crypto;
|
|
|
|
#[cfg(feature = "std")]
|
|
pub use runtime_io::{StorageOverlay, ChildrenStorageOverlay};
|
|
|
|
use rstd::{prelude::*, ops, convert::{TryInto, TryFrom}};
|
|
use primitives::{crypto, ed25519, sr25519, hash::{H256, H512}};
|
|
use codec::{Encode, Decode, CompactAs};
|
|
use traits::{SaturatedConversion, UniqueSaturatedInto, Saturating, Bounded, CheckedSub, CheckedAdd};
|
|
|
|
#[cfg(feature = "std")]
|
|
pub mod testing;
|
|
|
|
pub mod weights;
|
|
pub mod traits;
|
|
|
|
pub mod generic;
|
|
pub mod transaction_validity;
|
|
|
|
/// Re-export these since they're only "kind of" generic.
|
|
pub use generic::{DigestItem, Digest};
|
|
|
|
/// Re-export this since it's part of the API of this crate.
|
|
pub use primitives::crypto::{key_types, KeyTypeId, CryptoType};
|
|
pub use app_crypto::RuntimeAppPublic;
|
|
|
|
/// Justification type.
|
|
pub type Justification = Vec<u8>;
|
|
|
|
use traits::{Verify, Lazy};
|
|
|
|
/// A module identifier. These are per module and should be stored in a registry somewhere.
|
|
#[derive(Clone, Copy, Eq, PartialEq, Encode, Decode)]
|
|
pub struct ModuleId(pub [u8; 8]);
|
|
|
|
impl traits::TypeId for ModuleId {
|
|
const TYPE_ID: [u8; 4] = *b"modl";
|
|
}
|
|
|
|
/// A String that is a `&'static str` on `no_std` and a `Cow<'static, str>` on `std`.
|
|
#[cfg(feature = "std")]
|
|
pub type RuntimeString = ::std::borrow::Cow<'static, str>;
|
|
/// A String that is a `&'static str` on `no_std` and a `Cow<'static, str>` on `std`.
|
|
#[cfg(not(feature = "std"))]
|
|
pub type RuntimeString = &'static str;
|
|
|
|
/// Create a const [RuntimeString].
|
|
#[cfg(feature = "std")]
|
|
#[macro_export]
|
|
macro_rules! create_runtime_str {
|
|
( $y:expr ) => {{ ::std::borrow::Cow::Borrowed($y) }}
|
|
}
|
|
|
|
/// Create a const [RuntimeString].
|
|
#[cfg(not(feature = "std"))]
|
|
#[macro_export]
|
|
macro_rules! create_runtime_str {
|
|
( $y:expr ) => {{ $y }}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
pub use serde::{Serialize, Deserialize, de::DeserializeOwned};
|
|
|
|
/// Complex storage builder stuff.
|
|
#[cfg(feature = "std")]
|
|
pub trait BuildStorage: Sized {
|
|
/// Build the storage out of this builder.
|
|
fn build_storage(self) -> Result<(StorageOverlay, ChildrenStorageOverlay), String> {
|
|
let mut storage = (Default::default(), Default::default());
|
|
self.assimilate_storage(&mut storage)?;
|
|
Ok(storage)
|
|
}
|
|
/// Assimilate the storage for this module into pre-existing overlays.
|
|
fn assimilate_storage(
|
|
self,
|
|
storage: &mut (StorageOverlay, ChildrenStorageOverlay),
|
|
) -> Result<(), String>;
|
|
}
|
|
|
|
/// Something that can build the genesis storage of a module.
|
|
#[cfg(feature = "std")]
|
|
pub trait BuildModuleGenesisStorage<T, I>: Sized {
|
|
/// Create the module genesis storage into the given `storage` and `child_storage`.
|
|
fn build_module_genesis_storage(
|
|
self,
|
|
storage: &mut (StorageOverlay, ChildrenStorageOverlay),
|
|
) -> Result<(), String>;
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl BuildStorage for (StorageOverlay, ChildrenStorageOverlay) {
|
|
fn build_storage(self) -> Result<(StorageOverlay, ChildrenStorageOverlay), String> {
|
|
Ok(self)
|
|
}
|
|
fn assimilate_storage(
|
|
self,
|
|
storage: &mut (StorageOverlay, ChildrenStorageOverlay),
|
|
)-> Result<(), String> {
|
|
storage.0.extend(self.0);
|
|
for (k, other_map) in self.1.into_iter() {
|
|
if let Some(map) = storage.1.get_mut(&k) {
|
|
map.extend(other_map);
|
|
} else {
|
|
storage.1.insert(k, other_map);
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// Consensus engine unique ID.
|
|
pub type ConsensusEngineId = [u8; 4];
|
|
|
|
/// Permill is parts-per-million (i.e. after multiplying by this, divide by 1000000).
|
|
#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug, Ord, PartialOrd))]
|
|
#[derive(Encode, Decode, CompactAs, Default, Copy, Clone, PartialEq, Eq)]
|
|
pub struct Permill(u32);
|
|
|
|
impl Permill {
|
|
/// Nothing.
|
|
pub fn zero() -> Self { Self(0) }
|
|
|
|
/// `true` if this is nothing.
|
|
pub fn is_zero(&self) -> bool { self.0 == 0 }
|
|
|
|
/// Everything.
|
|
pub fn one() -> Self { Self(1_000_000) }
|
|
|
|
/// create a new raw instance. This can be called at compile time.
|
|
pub const fn from_const_parts(parts: u32) -> Self {
|
|
Self([parts, 1_000_000][(parts > 1_000_000) as usize])
|
|
}
|
|
|
|
/// From an explicitly defined number of parts per maximum of the type.
|
|
pub fn from_parts(parts: u32) -> Self { Self::from_const_parts(parts) }
|
|
|
|
/// Converts from a percent. Equal to `x / 100`.
|
|
pub const fn from_percent(x: u32) -> Self { Self([x, 100][(x > 100) as usize] * 10_000) }
|
|
|
|
/// Converts a fraction into `Permill`.
|
|
#[cfg(feature = "std")]
|
|
pub fn from_fraction(x: f64) -> Self { Self((x * 1_000_000.0) as u32) }
|
|
|
|
/// Approximate the fraction `p/q` into a per million fraction
|
|
pub fn from_rational_approximation<N>(p: N, q: N) -> Self
|
|
where N: traits::SimpleArithmetic + Clone
|
|
{
|
|
let p = p.min(q.clone());
|
|
let factor = (q.clone() / 1_000_000u32.into()).max(1u32.into());
|
|
|
|
// Conversion can't overflow as p < q so ( p / (q/million)) < million
|
|
let p_reduce: u32 = (p / factor.clone()).try_into().unwrap_or_else(|_| panic!());
|
|
let q_reduce: u32 = (q / factor.clone()).try_into().unwrap_or_else(|_| panic!());
|
|
let part = p_reduce as u64 * 1_000_000u64 / q_reduce as u64;
|
|
|
|
Permill(part as u32)
|
|
}
|
|
}
|
|
|
|
impl<N> ops::Mul<N> for Permill
|
|
where
|
|
N: Clone + From<u32> + UniqueSaturatedInto<u32> + ops::Rem<N, Output=N>
|
|
+ ops::Div<N, Output=N> + ops::Mul<N, Output=N> + ops::Add<N, Output=N>,
|
|
{
|
|
type Output = N;
|
|
fn mul(self, b: N) -> Self::Output {
|
|
let million: N = 1_000_000.into();
|
|
let part: N = self.0.into();
|
|
|
|
let rem_multiplied_divided = {
|
|
let rem = b.clone().rem(million.clone());
|
|
|
|
// `rem` is inferior to one million, thus it fits into u32
|
|
let rem_u32 = rem.saturated_into::<u32>();
|
|
|
|
// `self` and `rem` are inferior to one million, thus the product is less than 10^12
|
|
// and fits into u64
|
|
let rem_multiplied_u64 = rem_u32 as u64 * self.0 as u64;
|
|
|
|
// `rem_multiplied_u64` is less than 10^12 therefore divided by a million it fits into
|
|
// u32
|
|
let rem_multiplied_divided_u32 = (rem_multiplied_u64 / 1_000_000) as u32;
|
|
|
|
// `rem_multiplied_divided` is inferior to b, thus it can be converted back to N type
|
|
rem_multiplied_divided_u32.into()
|
|
};
|
|
|
|
(b / million) * part + rem_multiplied_divided
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl From<f64> for Permill {
|
|
fn from(x: f64) -> Permill {
|
|
Permill::from_fraction(x)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl From<f32> for Permill {
|
|
fn from(x: f32) -> Permill {
|
|
Permill::from_fraction(x as f64)
|
|
}
|
|
}
|
|
|
|
/// Perbill is parts-per-billion. It stores a value between 0 and 1 in fixed point and
|
|
/// provides a means to multiply some other value by that.
|
|
#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))]
|
|
#[derive(Encode, Decode, CompactAs, Default, Copy, Clone, PartialEq, Eq, Ord, PartialOrd)]
|
|
pub struct Perbill(u32);
|
|
|
|
impl Perbill {
|
|
/// Nothing.
|
|
pub fn zero() -> Self { Self(0) }
|
|
|
|
/// `true` if this is nothing.
|
|
pub fn is_zero(&self) -> bool { self.0 == 0 }
|
|
|
|
/// Everything.
|
|
pub fn one() -> Self { Self(1_000_000_000) }
|
|
|
|
/// create a new raw instance. This can be called at compile time.
|
|
pub const fn from_const_parts(parts: u32) -> Self {
|
|
Self([parts, 1_000_000_000][(parts > 1_000_000_000) as usize])
|
|
}
|
|
|
|
/// From an explicitly defined number of parts per maximum of the type.
|
|
pub fn from_parts(parts: u32) -> Self { Self::from_const_parts(parts) }
|
|
|
|
/// Converts from a percent. Equal to `x / 100`.
|
|
pub const fn from_percent(x: u32) -> Self { Self([x, 100][(x > 100) as usize] * 10_000_000) }
|
|
|
|
/// Construct new instance where `x` is in millionths. Value equivalent to `x / 1,000,000`.
|
|
pub fn from_millionths(x: u32) -> Self { Self(x.min(1_000_000) * 1000) }
|
|
|
|
#[cfg(feature = "std")]
|
|
/// Construct new instance whose value is equal to `x` (between 0 and 1).
|
|
pub fn from_fraction(x: f64) -> Self { Self((x.max(0.0).min(1.0) * 1_000_000_000.0) as u32) }
|
|
|
|
/// Approximate the fraction `p/q` into a per billion fraction
|
|
pub fn from_rational_approximation<N>(p: N, q: N) -> Self
|
|
where N: traits::SimpleArithmetic + Clone
|
|
{
|
|
let p = p.min(q.clone());
|
|
let factor = (q.clone() / 1_000_000_000u32.into()).max(1u32.into());
|
|
|
|
// Conversion can't overflow as p < q so ( p / (q/billion)) < billion
|
|
let p_reduce: u32 = (p / factor.clone()).try_into().unwrap_or_else(|_| panic!());
|
|
let q_reduce: u32 = (q / factor.clone()).try_into().unwrap_or_else(|_| panic!());
|
|
let part = p_reduce as u64 * 1_000_000_000u64 / q_reduce as u64;
|
|
|
|
Perbill(part as u32)
|
|
}
|
|
|
|
/// Return the product of multiplication of this value by itself.
|
|
pub fn square(self) -> Self {
|
|
let p: u64 = self.0 as u64 * self.0 as u64;
|
|
let q: u64 = 1_000_000_000 * 1_000_000_000;
|
|
Self::from_rational_approximation(p, q)
|
|
}
|
|
|
|
/// Take out the raw parts-per-billions.
|
|
pub fn into_parts(self) -> u32 {
|
|
self.0
|
|
}
|
|
}
|
|
|
|
impl<N> ops::Mul<N> for Perbill
|
|
where
|
|
N: Clone + From<u32> + UniqueSaturatedInto<u32> + ops::Rem<N, Output=N>
|
|
+ ops::Div<N, Output=N> + ops::Mul<N, Output=N> + ops::Add<N, Output=N>,
|
|
{
|
|
type Output = N;
|
|
fn mul(self, b: N) -> Self::Output {
|
|
let billion: N = 1_000_000_000.into();
|
|
let part: N = self.0.into();
|
|
|
|
let rem_multiplied_divided = {
|
|
let rem = b.clone().rem(billion.clone());
|
|
|
|
// `rem` is inferior to one billion, thus it fits into u32
|
|
let rem_u32 = rem.saturated_into::<u32>();
|
|
|
|
// `self` and `rem` are inferior to one billion, thus the product is less than 10^18
|
|
// and fits into u64
|
|
let rem_multiplied_u64 = rem_u32 as u64 * self.0 as u64;
|
|
|
|
// `rem_multiplied_u64` is less than 10^18 therefore divided by a billion it fits into
|
|
// u32
|
|
let rem_multiplied_divided_u32 = (rem_multiplied_u64 / 1_000_000_000) as u32;
|
|
|
|
// `rem_multiplied_divided` is inferior to b, thus it can be converted back to N type
|
|
rem_multiplied_divided_u32.into()
|
|
};
|
|
|
|
(b / billion) * part + rem_multiplied_divided
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl From<f64> for Perbill {
|
|
fn from(x: f64) -> Perbill {
|
|
Perbill::from_fraction(x)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl From<f32> for Perbill {
|
|
fn from(x: f32) -> Perbill {
|
|
Perbill::from_fraction(x as f64)
|
|
}
|
|
}
|
|
|
|
/// A fixed point number by the scale of 1 billion.
|
|
///
|
|
/// cannot hold a value larger than +-`9223372036854775807 / 1_000_000_000` (~9 billion).
|
|
#[cfg_attr(feature = "std", derive(Debug))]
|
|
#[derive(Encode, Decode, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
|
pub struct Fixed64(i64);
|
|
|
|
/// The maximum value of the `Fixed64` type
|
|
const DIV: i64 = 1_000_000_000;
|
|
|
|
impl Fixed64 {
|
|
/// creates self from a natural number.
|
|
///
|
|
/// Note that this might be lossy.
|
|
pub fn from_natural(int: i64) -> Self {
|
|
Self(int.saturating_mul(DIV))
|
|
}
|
|
|
|
/// Return the accuracy of the type. Given that this function returns the value `X`, it means
|
|
/// that an instance composed of `X` parts (`Fixed64::from_parts(X)`) is equal to `1`.
|
|
pub fn accuracy() -> i64 {
|
|
DIV
|
|
}
|
|
|
|
/// creates self from a rational number. Equal to `n/d`.
|
|
///
|
|
/// Note that this might be lossy.
|
|
pub fn from_rational(n: i64, d: u64) -> Self {
|
|
Self((n as i128 * DIV as i128 / (d as i128).max(1)).try_into().unwrap_or(Bounded::max_value()))
|
|
}
|
|
|
|
/// Performs a saturated multiply and accumulate.
|
|
///
|
|
/// Returns a saturated `n + (self * n)`.
|
|
/// TODO: generalize this to any weight type. #3189
|
|
pub fn saturated_multiply_accumulate(&self, int: u32) -> u32 {
|
|
let parts = self.0;
|
|
let positive = parts > 0;
|
|
|
|
// natural parts might overflow.
|
|
let natural_parts = self.clone().saturated_into::<u32>();
|
|
// fractional parts can always fit into u32.
|
|
let perbill_parts = (parts.abs() % DIV) as u32;
|
|
|
|
let n = int.saturating_mul(natural_parts);
|
|
let p = Perbill::from_parts(perbill_parts) * int;
|
|
// everything that needs to be either added or subtracted from the original weight.
|
|
let excess = n.saturating_add(p);
|
|
|
|
if positive {
|
|
int.saturating_add(excess)
|
|
} else {
|
|
int.saturating_sub(excess)
|
|
}
|
|
}
|
|
|
|
/// Raw constructor. Equal to `parts / 1_000_000_000`.
|
|
pub fn from_parts(parts: i64) -> Self {
|
|
Self(parts)
|
|
}
|
|
}
|
|
|
|
impl UniqueSaturatedInto<u32> for Fixed64 {
|
|
/// Note that the maximum value of Fixed64 might be more than what can fit in u32. This is hence,
|
|
/// expected to be lossy.
|
|
fn unique_saturated_into(self) -> u32 {
|
|
(self.0.abs() / DIV).try_into().unwrap_or(Bounded::max_value())
|
|
}
|
|
}
|
|
|
|
impl Saturating for Fixed64 {
|
|
fn saturating_add(self, rhs: Self) -> Self {
|
|
Self(self.0.saturating_add(rhs.0))
|
|
}
|
|
fn saturating_mul(self, rhs: Self) -> Self {
|
|
Self(self.0.saturating_mul(rhs.0) / DIV)
|
|
}
|
|
fn saturating_sub(self, rhs: Self) -> Self {
|
|
Self(self.0.saturating_sub(rhs.0))
|
|
}
|
|
}
|
|
|
|
/// Note that this is a standard, _potentially-panicking_, implementation. Use `Saturating` trait
|
|
/// for safe addition.
|
|
impl ops::Add for Fixed64 {
|
|
type Output = Self;
|
|
|
|
fn add(self, rhs: Self) -> Self::Output {
|
|
Self(self.0 + rhs.0)
|
|
}
|
|
}
|
|
|
|
/// Note that this is a standard, _potentially-panicking_, implementation. Use `Saturating` trait
|
|
/// for safe subtraction.
|
|
impl ops::Sub for Fixed64 {
|
|
type Output = Self;
|
|
|
|
fn sub(self, rhs: Self) -> Self::Output {
|
|
Self(self.0 - rhs.0)
|
|
}
|
|
}
|
|
|
|
impl CheckedSub for Fixed64 {
|
|
fn checked_sub(&self, rhs: &Self) -> Option<Self> {
|
|
if let Some(v) = self.0.checked_sub(rhs.0) {
|
|
Some(Self(v))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
impl CheckedAdd for Fixed64 {
|
|
fn checked_add(&self, rhs: &Self) -> Option<Self> {
|
|
if let Some(v) = self.0.checked_add(rhs.0) {
|
|
Some(Self(v))
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
}
|
|
|
|
/// PerU128 is parts-per-u128-max-value. It stores a value between 0 and 1 in fixed point.
|
|
#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Debug))]
|
|
#[derive(Encode, Decode, CompactAs, Default, Copy, Clone, PartialEq, Eq)]
|
|
pub struct PerU128(u128);
|
|
|
|
const U128: u128 = u128::max_value();
|
|
|
|
impl PerU128 {
|
|
/// Nothing.
|
|
pub fn zero() -> Self { Self(0) }
|
|
|
|
/// `true` if this is nothing.
|
|
pub fn is_zero(&self) -> bool { self.0 == 0 }
|
|
|
|
/// Everything.
|
|
pub fn one() -> Self { Self(U128) }
|
|
|
|
/// From an explicitly defined number of parts per maximum of the type.
|
|
pub fn from_parts(x: u128) -> Self { Self(x) }
|
|
|
|
/// Construct new instance where `x` is denominator and the nominator is 1.
|
|
pub fn from_xth(x: u128) -> Self { Self(U128/x.max(1)) }
|
|
}
|
|
|
|
impl ::rstd::ops::Deref for PerU128 {
|
|
type Target = u128;
|
|
|
|
fn deref(&self) -> &u128 {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
/// Signature verify that can work with any known signature types..
|
|
#[derive(Eq, PartialEq, Clone, Encode, Decode)]
|
|
#[cfg_attr(feature = "std", derive(Debug))]
|
|
pub enum MultiSignature {
|
|
/// An Ed25519 signature.
|
|
Ed25519(ed25519::Signature),
|
|
/// An Sr25519 signature.
|
|
Sr25519(sr25519::Signature),
|
|
}
|
|
|
|
impl From<ed25519::Signature> for MultiSignature {
|
|
fn from(x: ed25519::Signature) -> Self {
|
|
MultiSignature::Ed25519(x)
|
|
}
|
|
}
|
|
|
|
impl From<sr25519::Signature> for MultiSignature {
|
|
fn from(x: sr25519::Signature) -> Self {
|
|
MultiSignature::Sr25519(x)
|
|
}
|
|
}
|
|
|
|
impl Default for MultiSignature {
|
|
fn default() -> Self {
|
|
MultiSignature::Ed25519(Default::default())
|
|
}
|
|
}
|
|
|
|
/// Public key for any known crypto algorithm.
|
|
#[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Encode, Decode)]
|
|
#[cfg_attr(feature = "std", derive(Debug, Serialize, Deserialize))]
|
|
pub enum MultiSigner {
|
|
/// An Ed25519 identity.
|
|
Ed25519(ed25519::Public),
|
|
/// An Sr25519 identity.
|
|
Sr25519(sr25519::Public),
|
|
}
|
|
|
|
impl Default for MultiSigner {
|
|
fn default() -> Self {
|
|
MultiSigner::Ed25519(Default::default())
|
|
}
|
|
}
|
|
|
|
/// NOTE: This implementations is required by `SimpleAddressDeterminator`,
|
|
/// we convert the hash into some AccountId, it's fine to use any scheme.
|
|
impl<T: Into<H256>> crypto::UncheckedFrom<T> for MultiSigner {
|
|
fn unchecked_from(x: T) -> Self {
|
|
ed25519::Public::unchecked_from(x.into()).into()
|
|
}
|
|
}
|
|
|
|
impl AsRef<[u8]> for MultiSigner {
|
|
fn as_ref(&self) -> &[u8] {
|
|
match *self {
|
|
MultiSigner::Ed25519(ref who) => who.as_ref(),
|
|
MultiSigner::Sr25519(ref who) => who.as_ref(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<ed25519::Public> for MultiSigner {
|
|
fn from(x: ed25519::Public) -> Self {
|
|
MultiSigner::Ed25519(x)
|
|
}
|
|
}
|
|
|
|
impl From<sr25519::Public> for MultiSigner {
|
|
fn from(x: sr25519::Public) -> Self {
|
|
MultiSigner::Sr25519(x)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl std::fmt::Display for MultiSigner {
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
match *self {
|
|
MultiSigner::Ed25519(ref who) => write!(fmt, "ed25519: {}", who),
|
|
MultiSigner::Sr25519(ref who) => write!(fmt, "sr25519: {}", who),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Verify for MultiSignature {
|
|
type Signer = MultiSigner;
|
|
fn verify<L: Lazy<[u8]>>(&self, msg: L, signer: &Self::Signer) -> bool {
|
|
match (self, signer) {
|
|
(MultiSignature::Ed25519(ref sig), &MultiSigner::Ed25519(ref who)) => sig.verify(msg, who),
|
|
(MultiSignature::Sr25519(ref sig), &MultiSigner::Sr25519(ref who)) => sig.verify(msg, who),
|
|
_ => false,
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Signature verify that can work with any known signature types..
|
|
#[derive(Eq, PartialEq, Clone, Default, Encode, Decode)]
|
|
#[cfg_attr(feature = "std", derive(Debug, Serialize, Deserialize))]
|
|
pub struct AnySignature(H512);
|
|
|
|
impl Verify for AnySignature {
|
|
type Signer = sr25519::Public;
|
|
fn verify<L: Lazy<[u8]>>(&self, mut msg: L, signer: &sr25519::Public) -> bool {
|
|
sr25519::Signature::try_from(self.0.as_fixed_bytes().as_ref())
|
|
.map(|s| runtime_io::sr25519_verify(&s, msg.get(), &signer))
|
|
.unwrap_or(false)
|
|
|| ed25519::Signature::try_from(self.0.as_fixed_bytes().as_ref())
|
|
.and_then(|s| ed25519::Public::try_from(signer.0.as_ref()).map(|p| (s, p)))
|
|
.map(|(s, p)| runtime_io::ed25519_verify(&s, msg.get(), &p))
|
|
.unwrap_or(false)
|
|
}
|
|
}
|
|
|
|
impl From<sr25519::Signature> for AnySignature {
|
|
fn from(s: sr25519::Signature) -> Self {
|
|
AnySignature(s.into())
|
|
}
|
|
}
|
|
|
|
impl From<ed25519::Signature> for AnySignature {
|
|
fn from(s: ed25519::Signature) -> Self {
|
|
AnySignature(s.into())
|
|
}
|
|
}
|
|
|
|
#[derive(Eq, PartialEq, Clone, Copy, Decode, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Debug, Serialize))]
|
|
/// Reason why an extrinsic couldn't be applied (i.e. invalid extrinsic).
|
|
pub enum ApplyError {
|
|
/// General error to do with the permissions of the sender.
|
|
NoPermission,
|
|
|
|
/// General error to do with the state of the system in general.
|
|
BadState,
|
|
|
|
/// Any error to do with the transaction validity.
|
|
Validity(transaction_validity::TransactionValidityError),
|
|
}
|
|
|
|
impl ApplyError {
|
|
/// Returns if the reason for the error was block resource exhaustion.
|
|
pub fn exhausted_resources(&self) -> bool {
|
|
match self {
|
|
Self::Validity(e) => e.exhausted_resources(),
|
|
_ => false,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<ApplyError> for &'static str {
|
|
fn from(err: ApplyError) -> &'static str {
|
|
match err {
|
|
ApplyError::NoPermission => "Transaction does not have required permissions",
|
|
ApplyError::BadState => "System state currently prevents this transaction",
|
|
ApplyError::Validity(v) => v.into(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl From<transaction_validity::TransactionValidityError> for ApplyError {
|
|
fn from(err: transaction_validity::TransactionValidityError) -> Self {
|
|
ApplyError::Validity(err)
|
|
}
|
|
}
|
|
|
|
/// The outcome of applying a transaction.
|
|
pub type ApplyOutcome = Result<(), DispatchError>;
|
|
|
|
impl From<DispatchError> for ApplyOutcome {
|
|
fn from(err: DispatchError) -> Self {
|
|
Err(err)
|
|
}
|
|
}
|
|
|
|
/// Result from attempt to apply an extrinsic.
|
|
pub type ApplyResult = Result<ApplyOutcome, ApplyError>;
|
|
|
|
#[derive(Eq, PartialEq, Clone, Copy, Encode, Decode)]
|
|
#[cfg_attr(feature = "std", derive(Debug, Serialize))]
|
|
/// Reason why a dispatch call failed
|
|
pub struct DispatchError {
|
|
/// Module index, matching the metadata module index
|
|
pub module: Option<u8>,
|
|
/// Module specific error value
|
|
pub error: u8,
|
|
/// Optional error message.
|
|
#[codec(skip)]
|
|
pub message: Option<&'static str>,
|
|
}
|
|
|
|
impl DispatchError {
|
|
/// Create a new instance of `DispatchError`.
|
|
pub fn new(module: Option<u8>, error: u8, message: Option<&'static str>) -> Self {
|
|
Self {
|
|
module,
|
|
error,
|
|
message,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl traits::Printable for DispatchError {
|
|
fn print(&self) {
|
|
"DispatchError".print();
|
|
if let Some(module) = self.module {
|
|
module.print();
|
|
}
|
|
self.error.print();
|
|
if let Some(msg) = self.message {
|
|
msg.print();
|
|
}
|
|
}
|
|
}
|
|
|
|
impl traits::ModuleDispatchError for &'static str {
|
|
fn as_u8(&self) -> u8 {
|
|
0
|
|
}
|
|
|
|
fn as_str(&self) -> &'static str {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl From<&'static str> for DispatchError {
|
|
fn from(err: &'static str) -> DispatchError {
|
|
DispatchError::new(None, 0, Some(err))
|
|
}
|
|
}
|
|
|
|
/// Verify a signature on an encoded value in a lazy manner. This can be
|
|
/// an optimization if the signature scheme has an "unsigned" escape hash.
|
|
pub fn verify_encoded_lazy<V: Verify, T: codec::Encode>(sig: &V, item: &T, signer: &V::Signer) -> bool {
|
|
// The `Lazy<T>` trait expresses something like `X: FnMut<Output = for<'a> &'a T>`.
|
|
// unfortunately this is a lifetime relationship that can't
|
|
// be expressed without generic associated types, better unification of HRTBs in type position,
|
|
// and some kind of integration into the Fn* traits.
|
|
struct LazyEncode<F> {
|
|
inner: F,
|
|
encoded: Option<Vec<u8>>,
|
|
}
|
|
|
|
impl<F: Fn() -> Vec<u8>> traits::Lazy<[u8]> for LazyEncode<F> {
|
|
fn get(&mut self) -> &[u8] {
|
|
self.encoded.get_or_insert_with(&self.inner).as_slice()
|
|
}
|
|
}
|
|
|
|
sig.verify(
|
|
LazyEncode { inner: || item.encode(), encoded: None },
|
|
signer,
|
|
)
|
|
}
|
|
|
|
/// Helper macro for `impl_outer_config`
|
|
#[macro_export]
|
|
macro_rules! __impl_outer_config_types {
|
|
// Generic + Instance
|
|
(
|
|
$concrete:ident $config:ident $snake:ident { $instance:ident } < $ignore:ident >;
|
|
$( $rest:tt )*
|
|
) => {
|
|
#[cfg(any(feature = "std", test))]
|
|
pub type $config = $snake::GenesisConfig<$concrete, $snake::$instance>;
|
|
$crate::__impl_outer_config_types! { $concrete $( $rest )* }
|
|
};
|
|
// Generic
|
|
(
|
|
$concrete:ident $config:ident $snake:ident < $ignore:ident >;
|
|
$( $rest:tt )*
|
|
) => {
|
|
#[cfg(any(feature = "std", test))]
|
|
pub type $config = $snake::GenesisConfig<$concrete>;
|
|
$crate::__impl_outer_config_types! { $concrete $( $rest )* }
|
|
};
|
|
// No Generic and maybe Instance
|
|
(
|
|
$concrete:ident $config:ident $snake:ident $( { $instance:ident } )?;
|
|
$( $rest:tt )*
|
|
) => {
|
|
#[cfg(any(feature = "std", test))]
|
|
pub type $config = $snake::GenesisConfig;
|
|
$crate::__impl_outer_config_types! { $concrete $( $rest )* }
|
|
};
|
|
($concrete:ident) => ()
|
|
}
|
|
|
|
/// Implement the output "meta" module configuration struct,
|
|
/// which is basically:
|
|
/// pub struct GenesisConfig {
|
|
/// rust_module_one: Option<ModuleOneConfig>,
|
|
/// ...
|
|
/// }
|
|
#[macro_export]
|
|
macro_rules! impl_outer_config {
|
|
(
|
|
pub struct $main:ident for $concrete:ident {
|
|
$( $config:ident =>
|
|
$snake:ident $( $instance:ident )? $( <$generic:ident> )*, )*
|
|
}
|
|
) => {
|
|
$crate::__impl_outer_config_types! {
|
|
$concrete $( $config $snake $( { $instance } )? $( <$generic> )*; )*
|
|
}
|
|
|
|
$crate::paste::item! {
|
|
#[cfg(any(feature = "std", test))]
|
|
#[derive($crate::serde::Serialize, $crate::serde::Deserialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
#[serde(deny_unknown_fields)]
|
|
pub struct $main {
|
|
$(
|
|
pub [< $snake $(_ $instance )? >]: Option<$config>,
|
|
)*
|
|
}
|
|
#[cfg(any(feature = "std", test))]
|
|
impl $crate::BuildStorage for $main {
|
|
fn assimilate_storage(
|
|
self,
|
|
storage: &mut ($crate::StorageOverlay, $crate::ChildrenStorageOverlay),
|
|
) -> std::result::Result<(), String> {
|
|
$(
|
|
if let Some(extra) = self.[< $snake $(_ $instance )? >] {
|
|
$crate::impl_outer_config! {
|
|
@CALL_FN
|
|
$concrete;
|
|
$snake;
|
|
$( $instance )?;
|
|
extra;
|
|
storage;
|
|
}
|
|
}
|
|
)*
|
|
Ok(())
|
|
}
|
|
}
|
|
}
|
|
};
|
|
(@CALL_FN
|
|
$runtime:ident;
|
|
$module:ident;
|
|
$instance:ident;
|
|
$extra:ident;
|
|
$storage:ident;
|
|
) => {
|
|
$crate::BuildModuleGenesisStorage::<$runtime, $module::$instance>::build_module_genesis_storage(
|
|
$extra,
|
|
$storage,
|
|
)?;
|
|
};
|
|
(@CALL_FN
|
|
$runtime:ident;
|
|
$module:ident;
|
|
;
|
|
$extra:ident;
|
|
$storage:ident;
|
|
) => {
|
|
$crate::BuildModuleGenesisStorage::<$runtime, $module::__InherentHiddenInstance>::build_module_genesis_storage(
|
|
$extra,
|
|
$storage,
|
|
)?;
|
|
}
|
|
}
|
|
|
|
/// Simple blob to hold an extrinsic without committing to its format and ensure it is serialized
|
|
/// correctly.
|
|
#[derive(PartialEq, Eq, Clone, Default, Encode, Decode)]
|
|
pub struct OpaqueExtrinsic(pub Vec<u8>);
|
|
|
|
#[cfg(feature = "std")]
|
|
impl std::fmt::Debug for OpaqueExtrinsic {
|
|
fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
write!(fmt, "{}", primitives::hexdisplay::HexDisplay::from(&self.0))
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl ::serde::Serialize for OpaqueExtrinsic {
|
|
fn serialize<S>(&self, seq: S) -> Result<S::Ok, S::Error> where S: ::serde::Serializer {
|
|
codec::Encode::using_encoded(&self.0, |bytes| ::primitives::bytes::serialize(bytes, seq))
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<'a> ::serde::Deserialize<'a> for OpaqueExtrinsic {
|
|
fn deserialize<D>(de: D) -> Result<Self, D::Error> where D: ::serde::Deserializer<'a> {
|
|
let r = ::primitives::bytes::deserialize(de)?;
|
|
Decode::decode(&mut &r[..])
|
|
.map_err(|e| ::serde::de::Error::custom(format!("Decode error: {}", e)))
|
|
}
|
|
}
|
|
|
|
impl traits::Extrinsic for OpaqueExtrinsic {
|
|
type Call = ();
|
|
type SignaturePayload = ();
|
|
}
|
|
|
|
/// Print something that implements `Printable` from the runtime.
|
|
pub fn print(print: impl traits::Printable) {
|
|
print.print();
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::DispatchError;
|
|
use crate::codec::{Encode, Decode};
|
|
use super::{Perbill, Permill};
|
|
|
|
macro_rules! per_thing_upper_test {
|
|
($num_type:tt, $per:tt) => {
|
|
// multiplication from all sort of from_percent
|
|
assert_eq!($per::from_percent(100) * $num_type::max_value(), $num_type::max_value());
|
|
assert_eq!(
|
|
$per::from_percent(99) * $num_type::max_value(),
|
|
((Into::<U256>::into($num_type::max_value()) * 99u32) / 100u32).as_u128() as $num_type
|
|
);
|
|
assert_eq!($per::from_percent(50) * $num_type::max_value(), $num_type::max_value() / 2);
|
|
assert_eq!($per::from_percent(1) * $num_type::max_value(), $num_type::max_value() / 100);
|
|
assert_eq!($per::from_percent(0) * $num_type::max_value(), 0);
|
|
|
|
// multiplication with bounds
|
|
assert_eq!($per::one() * $num_type::max_value(), $num_type::max_value());
|
|
assert_eq!($per::zero() * $num_type::max_value(), 0);
|
|
|
|
// from_rational_approximation
|
|
assert_eq!(
|
|
$per::from_rational_approximation(u128::max_value() - 1, u128::max_value()),
|
|
$per::one(),
|
|
);
|
|
assert_eq!(
|
|
$per::from_rational_approximation(u128::max_value()/3, u128::max_value()),
|
|
$per::from_parts($per::one().0/3),
|
|
);
|
|
assert_eq!(
|
|
$per::from_rational_approximation(1, u128::max_value()),
|
|
$per::zero(),
|
|
);
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn opaque_extrinsic_serialization() {
|
|
let ex = super::OpaqueExtrinsic(vec![1, 2, 3, 4]);
|
|
assert_eq!(serde_json::to_string(&ex).unwrap(), "\"0x1001020304\"".to_owned());
|
|
}
|
|
|
|
#[test]
|
|
fn compact_permill_perbill_encoding() {
|
|
let tests = [(0u32, 1usize), (63, 1), (64, 2), (16383, 2), (16384, 4), (1073741823, 4), (1073741824, 5), (u32::max_value(), 5)];
|
|
for &(n, l) in &tests {
|
|
let compact: crate::codec::Compact<Permill> = Permill(n).into();
|
|
let encoded = compact.encode();
|
|
assert_eq!(encoded.len(), l);
|
|
let decoded = <crate::codec::Compact<Permill>>::decode(&mut & encoded[..]).unwrap();
|
|
let permill: Permill = decoded.into();
|
|
assert_eq!(permill, Permill(n));
|
|
|
|
let compact: crate::codec::Compact<Perbill> = Perbill(n).into();
|
|
let encoded = compact.encode();
|
|
assert_eq!(encoded.len(), l);
|
|
let decoded = <crate::codec::Compact<Perbill>>::decode(&mut & encoded[..]).unwrap();
|
|
let perbill: Perbill = decoded.into();
|
|
assert_eq!(perbill, Perbill(n));
|
|
}
|
|
}
|
|
|
|
#[derive(Encode, Decode, PartialEq, Eq, Debug)]
|
|
struct WithCompact<T: crate::codec::HasCompact> {
|
|
data: T,
|
|
}
|
|
|
|
#[test]
|
|
fn test_has_compact_permill() {
|
|
let data = WithCompact { data: Permill(1) };
|
|
let encoded = data.encode();
|
|
assert_eq!(data, WithCompact::<Permill>::decode(&mut &encoded[..]).unwrap());
|
|
}
|
|
|
|
#[test]
|
|
fn test_has_compact_perbill() {
|
|
let data = WithCompact { data: Perbill(1) };
|
|
let encoded = data.encode();
|
|
assert_eq!(data, WithCompact::<Perbill>::decode(&mut &encoded[..]).unwrap());
|
|
}
|
|
|
|
#[test]
|
|
fn per_things_should_work() {
|
|
use super::{Perbill, Permill};
|
|
use primitive_types::U256;
|
|
|
|
per_thing_upper_test!(u32, Perbill);
|
|
per_thing_upper_test!(u64, Perbill);
|
|
per_thing_upper_test!(u128, Perbill);
|
|
|
|
per_thing_upper_test!(u32, Permill);
|
|
per_thing_upper_test!(u64, Permill);
|
|
per_thing_upper_test!(u128, Permill);
|
|
|
|
}
|
|
|
|
#[test]
|
|
fn per_things_operate_in_output_type() {
|
|
assert_eq!(Perbill::one() * 255_u64, 255);
|
|
}
|
|
|
|
#[test]
|
|
fn per_things_one_minus_one_part() {
|
|
use primitive_types::U256;
|
|
|
|
assert_eq!(
|
|
Perbill::from_parts(999_999_999) * std::u128::MAX,
|
|
((Into::<U256>::into(std::u128::MAX) * 999_999_999u32) / 1_000_000_000u32).as_u128()
|
|
);
|
|
|
|
assert_eq!(
|
|
Permill::from_parts(999_999) * std::u128::MAX,
|
|
((Into::<U256>::into(std::u128::MAX) * 999_999u32) / 1_000_000u32).as_u128()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn dispatch_error_encoding() {
|
|
let error = DispatchError {
|
|
module: Some(1),
|
|
error: 2,
|
|
message: Some("error message"),
|
|
};
|
|
let encoded = error.encode();
|
|
let decoded = DispatchError::decode(&mut &encoded[..]).unwrap();
|
|
assert_eq!(encoded, vec![1, 1, 2]);
|
|
assert_eq!(
|
|
decoded,
|
|
DispatchError {
|
|
module: Some(1),
|
|
error: 2,
|
|
message: None,
|
|
},
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn per_bill_square() {
|
|
const FIXTURES: &[(u32, u32)] = &[
|
|
(0, 0),
|
|
(1250000, 1562), // (0.00125, 0.000001562)
|
|
(255300000, 65178090), // (0.2553, 0.06517809)
|
|
(500000000, 250000000), // (0.5, 0.25)
|
|
(999995000, 999990000), // (0.999995, 0.999990000, but ideally 0.99999000002)
|
|
(1000000000, 1000000000),
|
|
];
|
|
|
|
for &(x, r) in FIXTURES {
|
|
assert_eq!(
|
|
Perbill::from_parts(x).square(),
|
|
Perbill::from_parts(r),
|
|
);
|
|
}
|
|
}
|
|
}
|