mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 10:21:05 +00:00
Rewrite impl_runtime_apis! and decl_runtime_apis! as proc-macro (#1174)
* Rewrites `impl_runtime_apis!` macro as `proc-macro` * Adds some documentation * Require the `impl_runtime_apis` to use a path for accessing the trait * Make the runtime implement `GetNodeBlockType` * Moves first chunk of runtime api code into the `impl_runtime_apis` macro This also renames `ClientWithApi` into `RuntimeApi`. * Make `impl_runtime_apis` use `runtime` api version automatically * `decl_runtime_apis` automatically adds `Block: BlockT` as generic parameter * Remove function generic arguments in block builder api * Remove some unnused stuff from the `decl_runtime_apis` macro * Make `InherentData` working again * Make `impl_runtime_apis!` implement the `RuntimeApi` side as well * Make it compile again after rebasing with master * Split `sr-api-macros` into multiple files * Reimplement `decl_runtime_apis!` as proc_macro * Use `decl_runtime_apis!` for `Core` as well and improve error reporting * Adds documentation for `decl_runtime_apis!` and `impl_runtime_apis!` * Move some code * Adds compile fail tests * Adds a test and fixes some bugs * Make `impl_runtime_apis!` support `_` as parameter name * Fixes build errors with wasm * Wasm rebuild after master rebase * Apply suggestions from code review Co-Authored-By: bkchr <bkchr@users.noreply.github.com> * Addresses some grumbles * Adds test to ensure that method signatures need to match * New wasm files
This commit is contained in:
@@ -17,7 +17,9 @@
|
||||
#[doc(hidden)]
|
||||
pub use rstd::{result::Result, vec::Vec};
|
||||
#[doc(hidden)]
|
||||
pub use runtime_primitives::traits::ProvideInherent;
|
||||
pub use runtime_primitives::{
|
||||
traits::{ProvideInherent, Block as BlockT}, CheckInherentError, InherentData
|
||||
};
|
||||
|
||||
|
||||
/// Implement the outer inherent.
|
||||
@@ -39,50 +41,43 @@ pub use runtime_primitives::traits::ProvideInherent;
|
||||
macro_rules! impl_outer_inherent {
|
||||
(
|
||||
$(#[$attr:meta])*
|
||||
pub struct $name:ident where Block = $block:ident, UncheckedExtrinsic = $unchecked:ident {
|
||||
$( $module:ident: $module_ty:ident $(export Error as $error_name:ident)*, )*
|
||||
pub struct $name:ident where Block = $block:ident {
|
||||
$( $module:ident: $module_ty:ident, )*
|
||||
}
|
||||
) => {
|
||||
impl_outer_inherent!(
|
||||
$( #[$attr] )*
|
||||
pub struct $name where Block = $block, UncheckedExtrinsic = $unchecked, Error = InherentError, Call = Call {
|
||||
$( $module: $module_ty $(export Error as $error_name)*, )*
|
||||
pub struct $name where Block = $block, Call = Call {
|
||||
$( $module: $module_ty, )*
|
||||
}
|
||||
);
|
||||
};
|
||||
(
|
||||
$(#[$attr:meta])*
|
||||
pub struct $name:ident where Block = $block:ident, UncheckedExtrinsic = $unchecked:ident, Error = $error:ident {
|
||||
$( $module:ident: $module_ty:ident $(export Error as $error_name:ident)*, )*
|
||||
pub struct $name:ident where Block = $block:ident {
|
||||
$( $module:ident: $module_ty:ident, )*
|
||||
}
|
||||
) => {
|
||||
impl_outer_inherent!(
|
||||
$( #[$attr] )*
|
||||
pub struct $name where Block = $block, UncheckedExtrinsic = $unchecked, Error = $error, Call = Call {
|
||||
$( $module: $module_ty $(export Error as $error_name)*, )*
|
||||
pub struct $name where Block = $block, Call = Call {
|
||||
$( $module: $module_ty, )*
|
||||
}
|
||||
);
|
||||
};
|
||||
(
|
||||
$(#[$attr:meta])*
|
||||
pub struct $name:ident where Block = $block:ident, UncheckedExtrinsic = $unchecked:ident, Error = $error:ident, Call = $call:ident {
|
||||
$( $module:ident: $module_ty:ident $(export Error as $error_name:ident)*, )*
|
||||
pub struct $name:ident where Block = $block:ident, Call = $call:ident {
|
||||
$( $module:ident: $module_ty:ident, )*
|
||||
}
|
||||
) => {
|
||||
$( #[$attr] )*
|
||||
// Workaround for https://github.com/rust-lang/rust/issues/26925 . Remove when sorted.
|
||||
#[derive(Encode, Decode)]
|
||||
/// Inherent data to include in a block.
|
||||
pub struct $name {
|
||||
$( $module: <$module_ty as $crate::inherent::ProvideInherent>::Inherent, )*
|
||||
}
|
||||
|
||||
$(
|
||||
$(
|
||||
pub type $error_name =<$module_ty as $crate::inherent::ProvideInherent>::Error;
|
||||
)*
|
||||
)*
|
||||
|
||||
impl $name {
|
||||
/// Create a new instance.
|
||||
pub fn new( $( $module: <$module_ty as $crate::inherent::ProvideInherent>::Inherent ),* ) -> Self {
|
||||
@@ -91,38 +86,19 @@ macro_rules! impl_outer_inherent {
|
||||
}
|
||||
}
|
||||
|
||||
fn create_inherent_extrinsics(self) -> Vec<$unchecked> {
|
||||
let mut inherent = $crate::inherent::Vec::new();
|
||||
|
||||
$(
|
||||
inherent.extend(
|
||||
<$module_ty as $crate::inherent::ProvideInherent>::create_inherent_extrinsics(self.$module)
|
||||
.into_iter()
|
||||
.map(|v| (v.0, $unchecked::new_unsigned($call::$module_ty(v.1))))
|
||||
);
|
||||
)*
|
||||
|
||||
inherent.as_mut_slice().sort_unstable_by_key(|v| v.0);
|
||||
inherent.into_iter().map(|v| v.1).collect()
|
||||
}
|
||||
|
||||
fn check_inherents(self, block: $block) -> $crate::inherent::Result<(), $error> {
|
||||
fn check_inherents(
|
||||
data: $crate::inherent::InherentData,
|
||||
block: $block
|
||||
) -> $crate::inherent::Result<(), $crate::inherent::CheckInherentError> {
|
||||
$(
|
||||
<$module_ty as $crate::inherent::ProvideInherent>::check_inherent(
|
||||
&block, self.$module, &|xt| match xt.function {
|
||||
&block, data.$module, &|xt| match xt.function {
|
||||
Call::$module_ty(ref data) => Some(data),
|
||||
_ => None,
|
||||
}).map_err($error::$module_ty)?;
|
||||
})?;
|
||||
)*
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
// Workaround for https://github.com/rust-lang/rust/issues/26925 . Remove when sorted.
|
||||
#[derive(Encode)]
|
||||
#[cfg_attr(feature = "std", derive(Decode))]
|
||||
pub enum $error {
|
||||
$( $module_ty(<$module_ty as $crate::inherent::ProvideInherent>::Error), )*
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user