mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-07 20:07:24 +00:00
60e5011c72
* Adding first rough ouline of the repository structure * Remove old CI stuff * add title * formatting fixes * move node-exits job's script to scripts dir * Move docs into subdir * move to bin * move maintainence scripts, configs and helpers into its own dir * add .local to ignore * move core->client * start up 'test' area * move test client * move test runtime * make test move compile * Add dependencies rule enforcement. * Fix indexing. * Update docs to reflect latest changes * Moving /srml->/paint * update docs * move client/sr-* -> primitives/ * clean old readme * remove old broken code in rhd * update lock * Step 1. * starting to untangle client * Fix after merge. * start splitting out client interfaces * move children and blockchain interfaces * Move trie and state-machine to primitives. * Fix WASM builds. * fixing broken imports * more interface moves * move backend and light to interfaces * move CallExecutor * move cli off client * moving around more interfaces * re-add consensus crates into the mix * fix subkey path * relieve client from executor * starting to pull out client from grandpa * move is_decendent_of out of client * grandpa still depends on client directly * lemme tests pass * rename srml->paint * Make it compile. * rename interfaces->client-api * Move keyring to primitives. * fixup libp2p dep * fix broken use * allow dependency enforcement to fail * move fork-tree * Moving wasm-builder * make env * move build-script-utils * fixup broken crate depdencies and names * fix imports for authority discovery * fix typo * update cargo.lock * fixing imports * Fix paths and add missing crates * re-add missing crates
159 lines
4.5 KiB
Rust
159 lines
4.5 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/>.
|
|
|
|
//! Address type that is union of index and id for an account.
|
|
|
|
#[cfg(feature = "std")]
|
|
use std::fmt;
|
|
use rstd::convert::TryInto;
|
|
use crate::Member;
|
|
use codec::{Encode, Decode, Input, Output, Error};
|
|
|
|
/// An indices-aware address, which can be either a direct `AccountId` or
|
|
/// an index.
|
|
#[derive(PartialEq, Eq, Clone, sr_primitives::RuntimeDebug)]
|
|
#[cfg_attr(feature = "std", derive(Hash))]
|
|
pub enum Address<AccountId, AccountIndex> where
|
|
AccountId: Member,
|
|
AccountIndex: Member,
|
|
{
|
|
/// It's an account ID (pubkey).
|
|
Id(AccountId),
|
|
/// It's an account index.
|
|
Index(AccountIndex),
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<AccountId, AccountIndex> fmt::Display for Address<AccountId, AccountIndex> where
|
|
AccountId: Member,
|
|
AccountIndex: Member,
|
|
{
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "{:?}", self)
|
|
}
|
|
}
|
|
|
|
impl<AccountId, AccountIndex> From<AccountId> for Address<AccountId, AccountIndex> where
|
|
AccountId: Member,
|
|
AccountIndex: Member,
|
|
{
|
|
fn from(a: AccountId) -> Self {
|
|
Address::Id(a)
|
|
}
|
|
}
|
|
|
|
fn need_more_than<T: PartialOrd>(a: T, b: T) -> Result<T, Error> {
|
|
if a < b { Ok(b) } else { Err("Invalid range".into()) }
|
|
}
|
|
|
|
impl<AccountId, AccountIndex> Decode for Address<AccountId, AccountIndex> where
|
|
AccountId: Member + Decode,
|
|
AccountIndex: Member + Decode + PartialOrd<AccountIndex> + Ord + From<u32> + Copy,
|
|
{
|
|
fn decode<I: Input>(input: &mut I) -> Result<Self, Error> {
|
|
Ok(match input.read_byte()? {
|
|
x @ 0x00..=0xef => Address::Index(AccountIndex::from(x as u32)),
|
|
0xfc => Address::Index(AccountIndex::from(
|
|
need_more_than(0xef, u16::decode(input)?)? as u32
|
|
)),
|
|
0xfd => Address::Index(AccountIndex::from(
|
|
need_more_than(0xffff, u32::decode(input)?)?
|
|
)),
|
|
0xfe => Address::Index(
|
|
need_more_than(0xffffffffu32.into(), Decode::decode(input)?)?
|
|
),
|
|
0xff => Address::Id(Decode::decode(input)?),
|
|
_ => return Err("Invalid address variant".into()),
|
|
})
|
|
}
|
|
}
|
|
|
|
impl<AccountId, AccountIndex> Encode for Address<AccountId, AccountIndex> where
|
|
AccountId: Member + Encode,
|
|
AccountIndex: Member + Encode + PartialOrd<AccountIndex> + Ord + Copy + From<u32> + TryInto<u32>,
|
|
{
|
|
fn encode_to<T: Output>(&self, dest: &mut T) {
|
|
match *self {
|
|
Address::Id(ref i) => {
|
|
dest.push_byte(255);
|
|
dest.push(i);
|
|
}
|
|
Address::Index(i) => {
|
|
let maybe_u32: Result<u32, _> = i.try_into();
|
|
if let Ok(x) = maybe_u32 {
|
|
if x > 0xffff {
|
|
dest.push_byte(253);
|
|
dest.push(&x);
|
|
}
|
|
else if x >= 0xf0 {
|
|
dest.push_byte(252);
|
|
dest.push(&(x as u16));
|
|
}
|
|
else {
|
|
dest.push_byte(x as u8);
|
|
}
|
|
|
|
} else {
|
|
dest.push_byte(254);
|
|
dest.push(&i);
|
|
}
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<AccountId, AccountIndex> codec::EncodeLike for Address<AccountId, AccountIndex> where
|
|
AccountId: Member + Encode,
|
|
AccountIndex: Member + Encode + PartialOrd<AccountIndex> + Ord + Copy + From<u32> + TryInto<u32>,
|
|
{}
|
|
|
|
impl<AccountId, AccountIndex> Default for Address<AccountId, AccountIndex> where
|
|
AccountId: Member + Default,
|
|
AccountIndex: Member,
|
|
{
|
|
fn default() -> Self {
|
|
Address::Id(Default::default())
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use codec::{Encode, Decode};
|
|
|
|
type Address = super::Address<[u8; 8], u32>;
|
|
fn index(i: u32) -> Address { super::Address::Index(i) }
|
|
fn id(i: [u8; 8]) -> Address { super::Address::Id(i) }
|
|
|
|
fn compare(a: Option<Address>, d: &[u8]) {
|
|
if let Some(ref a) = a {
|
|
assert_eq!(d, &a.encode()[..]);
|
|
}
|
|
assert_eq!(Address::decode(&mut &d[..]).ok(), a);
|
|
}
|
|
|
|
#[test]
|
|
fn it_should_work() {
|
|
compare(Some(index(2)), &[2][..]);
|
|
compare(None, &[240][..]);
|
|
compare(None, &[252, 239, 0][..]);
|
|
compare(Some(index(240)), &[252, 240, 0][..]);
|
|
compare(Some(index(304)), &[252, 48, 1][..]);
|
|
compare(None, &[253, 255, 255, 0, 0][..]);
|
|
compare(Some(index(0x10000)), &[253, 0, 0, 1, 0][..]);
|
|
compare(Some(id([42, 69, 42, 69, 42, 69, 42, 69])), &[255, 42, 69, 42, 69, 42, 69, 42, 69][..]);
|
|
}
|
|
}
|