mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-28 04:01:15 +00:00
9063d1acae
* Move `initialise_block` into `Core` trait as it is crucial calling the API functions * Switch to first version of new runtime API implementation * Fixes bug in tests * Reenable asserts * Directly use the `TestAPI` in the tests * Start improving the api traits :100644 100644 898aadc7 49217199 M Cargo.lock :100644 10064461570436465ed664 M core/client/src/backend.rs :100644 100644 5d0c886b 64d710fd M core/client/src/block_builder.rs :100644 100644 c447855e 5ecbe474 M core/client/src/client.rs :100644 100644139cef13f90dbf3d M core/client/src/error.rs :100644 100644 2800c503 3298e66a M core/client/src/runtime_api.rs :100644 100644affa1c5c809b08bc M core/primitives/src/lib.rs :100644 1006442877dfa9d5547413 M core/sr-api/Cargo.toml :100644 100644 9a49784d 6a625a03 M core/sr-api/src/lib.rs :100644 100644 7c28e1c7 a1a444a9 M core/sr-primitives/src/traits.rs :100644 1006442e113ab6dcc01a6d M srml/metadata/Cargo.toml :100644 100644ea722a700809531aM srml/metadata/src/lib.rs * Refactoring * Move `sr-api` into client and more refactoring * Fixes tests * Some documentation and cleanup * Fixes compilation after rebase * More refactoring and more documentation * Makes `substrate-client` compilable on `wasm` On `wasm` it basically just exports the runtime api stuff. * Fixes grumbles * Updates wasm files after rebasing the master * Remove TODO comment * Remove whitespaces * Fixes after rebasing master * Another rebase, another fix commit
294 lines
8.7 KiB
Rust
294 lines
8.7 KiB
Rust
// Copyright 2018 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/>.
|
|
|
|
//! Decodable variant of the RuntimeMetadata.
|
|
//!
|
|
//! This really doesn't belong here, but is necessary for the moment. In the future
|
|
//! it should be removed entirely to an external module for shimming on to the
|
|
//! codec-encoded metadata.
|
|
|
|
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#[macro_use]
|
|
extern crate parity_codec_derive;
|
|
extern crate parity_codec as codec;
|
|
extern crate sr_std as rstd;
|
|
extern crate substrate_primitives as primitives;
|
|
|
|
#[cfg(feature = "std")]
|
|
extern crate serde;
|
|
#[cfg(feature = "std")]
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
use codec::{Encode, Output};
|
|
#[cfg(feature = "std")]
|
|
use codec::{Decode, Input};
|
|
use rstd::vec::Vec;
|
|
|
|
#[cfg(feature = "std")]
|
|
type StringBuf = String;
|
|
|
|
/// On `no_std` we do not support `Decode` and thus `StringBuf` is just `&'static str`.
|
|
/// So, if someone tries to decode this stuff on `no_std`, they will get a compilation error.
|
|
#[cfg(not(feature = "std"))]
|
|
type StringBuf = &'static str;
|
|
|
|
/// A type that decodes to a different type than it encodes.
|
|
/// The user needs to make sure that both types use the same encoding.
|
|
///
|
|
/// For example a `&'static [ &'static str ]` can be decoded to a `Vec<String>`.
|
|
#[derive(Clone)]
|
|
pub enum DecodeDifferent<B, O> where B: 'static, O: 'static {
|
|
Encode(B),
|
|
Decoded(O),
|
|
}
|
|
|
|
impl<B, O> Encode for DecodeDifferent<B, O> where B: Encode + 'static, O: Encode + 'static {
|
|
fn encode_to<W: Output>(&self, dest: &mut W) {
|
|
match self {
|
|
DecodeDifferent::Encode(b) => b.encode_to(dest),
|
|
DecodeDifferent::Decoded(o) => o.encode_to(dest),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<B, O> Decode for DecodeDifferent<B, O> where B: 'static, O: Decode + 'static {
|
|
fn decode<I: Input>(input: &mut I) -> Option<Self> {
|
|
<O>::decode(input).and_then(|val| {
|
|
Some(DecodeDifferent::Decoded(val))
|
|
})
|
|
}
|
|
}
|
|
|
|
impl<B, O> PartialEq for DecodeDifferent<B, O>
|
|
where
|
|
B: Encode + Eq + PartialEq + 'static,
|
|
O: Encode + Eq + PartialEq + 'static,
|
|
{
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.encode() == other.encode()
|
|
}
|
|
}
|
|
|
|
impl<B, O> Eq for DecodeDifferent<B, O>
|
|
where B: Encode + Eq + PartialEq + 'static, O: Encode + Eq + PartialEq + 'static
|
|
{}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<B, O> std::fmt::Debug for DecodeDifferent<B, O>
|
|
where
|
|
B: std::fmt::Debug + Eq + 'static,
|
|
O: std::fmt::Debug + Eq + 'static,
|
|
{
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
match self {
|
|
DecodeDifferent::Encode(b) => b.fmt(f),
|
|
DecodeDifferent::Decoded(o) => o.fmt(f),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<B, O> serde::Serialize for DecodeDifferent<B, O>
|
|
where
|
|
B: serde::Serialize + 'static,
|
|
O: serde::Serialize + 'static,
|
|
{
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
match self {
|
|
DecodeDifferent::Encode(b) => b.serialize(serializer),
|
|
DecodeDifferent::Decoded(o) => o.serialize(serializer),
|
|
}
|
|
}
|
|
}
|
|
|
|
type DecodeDifferentArray<B, O=B> = DecodeDifferent<&'static [B], Vec<O>>;
|
|
|
|
#[cfg(feature = "std")]
|
|
type DecodeDifferentStr = DecodeDifferent<&'static str, StringBuf>;
|
|
#[cfg(not(feature = "std"))]
|
|
type DecodeDifferentStr = DecodeDifferent<&'static str, StringBuf>;
|
|
|
|
/// All the metadata about a module.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct ModuleMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub call: CallMetadata,
|
|
}
|
|
|
|
/// All the metadata about a call.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct CallMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub functions: DecodeDifferentArray<FunctionMetadata>,
|
|
}
|
|
|
|
/// All the metadata about a function.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct FunctionMetadata {
|
|
pub id: u16,
|
|
pub name: DecodeDifferentStr,
|
|
pub arguments: DecodeDifferentArray<FunctionArgumentMetadata>,
|
|
pub documentation: DecodeDifferentArray<&'static str, StringBuf>,
|
|
}
|
|
|
|
/// All the metadata about a function argument.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct FunctionArgumentMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub ty: DecodeDifferentStr,
|
|
}
|
|
|
|
/// Newtype wrapper for support encoding functions (actual the result of the function).
|
|
#[derive(Clone, Eq)]
|
|
pub struct FnEncode<E>(pub fn() -> E) where E: Encode + 'static;
|
|
|
|
impl<E: Encode> Encode for FnEncode<E> {
|
|
fn encode_to<W: Output>(&self, dest: &mut W) {
|
|
self.0().encode_to(dest);
|
|
}
|
|
}
|
|
|
|
impl<E: Encode + PartialEq> PartialEq for FnEncode<E> {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.0().eq(&other.0())
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<E: Encode + ::std::fmt::Debug> std::fmt::Debug for FnEncode<E> {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
self.0().fmt(f)
|
|
}
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<E: Encode + serde::Serialize> serde::Serialize for FnEncode<E> {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: serde::Serializer,
|
|
{
|
|
self.0().serialize(serializer)
|
|
}
|
|
}
|
|
|
|
/// All the metadata about an outer event.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct OuterEventMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub events: DecodeDifferentArray<
|
|
(&'static str, FnEncode<&'static [EventMetadata]>),
|
|
(StringBuf, Vec<EventMetadata>)
|
|
>,
|
|
}
|
|
|
|
/// All the metadata about a event.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct EventMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub arguments: DecodeDifferentArray<&'static str, StringBuf>,
|
|
pub documentation: DecodeDifferentArray<&'static str, StringBuf>,
|
|
}
|
|
|
|
/// All the metadata about a storage.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct StorageMetadata {
|
|
pub prefix: DecodeDifferentStr,
|
|
pub functions: DecodeDifferentArray<StorageFunctionMetadata>,
|
|
}
|
|
|
|
/// All the metadata about a storage function.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct StorageFunctionMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub modifier: StorageFunctionModifier,
|
|
pub ty: StorageFunctionType,
|
|
pub documentation: DecodeDifferentArray<&'static str, StringBuf>,
|
|
}
|
|
|
|
/// A storage function type.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub enum StorageFunctionType {
|
|
Plain(DecodeDifferentStr),
|
|
Map {
|
|
key: DecodeDifferentStr,
|
|
value: DecodeDifferentStr,
|
|
}
|
|
}
|
|
|
|
/// A storage function modifier.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub enum StorageFunctionModifier {
|
|
Optional,
|
|
Default,
|
|
}
|
|
|
|
/// All metadata about the outer dispatch.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct OuterDispatchMetadata {
|
|
pub name: DecodeDifferentStr,
|
|
pub calls: DecodeDifferentArray<OuterDispatchCall>,
|
|
}
|
|
|
|
/// A Call from the outer dispatch.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct OuterDispatchCall {
|
|
pub name: DecodeDifferentStr,
|
|
pub prefix: DecodeDifferentStr,
|
|
pub index: u16,
|
|
}
|
|
|
|
/// All metadata about an runtime module.
|
|
#[derive(Clone, PartialEq, Eq, Encode)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct RuntimeModuleMetadata {
|
|
pub prefix: DecodeDifferentStr,
|
|
pub module: DecodeDifferent<FnEncode<ModuleMetadata>, ModuleMetadata>,
|
|
pub storage: Option<DecodeDifferent<FnEncode<StorageMetadata>, StorageMetadata>>,
|
|
}
|
|
|
|
/// The metadata of a runtime.
|
|
#[derive(Eq, Encode, PartialEq)]
|
|
#[cfg_attr(feature = "std", derive(Decode, Debug, Serialize))]
|
|
pub struct RuntimeMetadata {
|
|
pub outer_event: OuterEventMetadata,
|
|
pub modules: DecodeDifferentArray<RuntimeModuleMetadata>,
|
|
pub outer_dispatch: OuterDispatchMetadata,
|
|
}
|
|
|
|
impl Into<primitives::OpaqueMetadata> for RuntimeMetadata {
|
|
fn into(self) -> primitives::OpaqueMetadata {
|
|
primitives::OpaqueMetadata::new(self.encode())
|
|
}
|
|
}
|