mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 09:08:06 +00:00
c976d0dbce
* codegen: Generate type alias for storage return types
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Generate type alias for call function arguments
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Update polkadot.rs code from commit 2e2a75ff81
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Type aliases for runtime API parameters
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Type alias for runtime apis output
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* storage: Change path of the aliased module
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Adjust module indentation
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Do not alias for api::runtime_types with unresolved generics
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Fix and document runtime API alias generation
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Update artifacts
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Update cargo.lock file
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Generate composite structs with alias unnamed fields
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* testing: Update polkadot.rs file
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Alias storage unnamed parameters
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Update polkadot.rs
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* examples: Change polkadot to rococo runtime
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Fix compiling tests in the codegen crate
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Extend storage test with alias module
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* cli/tests: Adjust exepcted commands to the latest metadata
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Remove missleading comment and docs
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Ensure unique names for generated runtime API types
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen/tests: Test expected runtime type generation
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen/tests: Check duplicate params in runtime APIs
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen/tests: Test colliding names of type aliases and parameters
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Fix clippy
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Separate alias module from struct definition
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* Update polkadot.rs
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
* codegen: Remove outdated docs from composite def
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
---------
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
151 lines
5.2 KiB
Rust
151 lines
5.2 KiB
Rust
// Copyright 2019-2023 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
use super::CodegenError;
|
|
use crate::types::{CompositeDefFields, TypeGenerator};
|
|
use heck::{ToSnakeCase as _, ToUpperCamelCase as _};
|
|
use proc_macro2::TokenStream as TokenStream2;
|
|
use quote::{format_ident, quote};
|
|
use subxt_metadata::PalletMetadata;
|
|
|
|
/// Generate calls from the provided pallet's metadata. Each call returns a `StaticTxPayload`
|
|
/// that can be passed to the subxt client to submit/sign/encode.
|
|
///
|
|
/// # Arguments
|
|
///
|
|
/// - `metadata` - Runtime metadata from which the calls are generated.
|
|
/// - `type_gen` - The type generator containing all types defined by metadata.
|
|
/// - `pallet` - Pallet metadata from which the calls are generated.
|
|
/// - `types_mod_ident` - The ident of the base module that we can use to access the generated types from.
|
|
pub fn generate_calls(
|
|
type_gen: &TypeGenerator,
|
|
pallet: &PalletMetadata,
|
|
types_mod_ident: &syn::Ident,
|
|
crate_path: &syn::Path,
|
|
should_gen_docs: bool,
|
|
) -> Result<TokenStream2, CodegenError> {
|
|
// Early return if the pallet has no calls.
|
|
let Some(call_ty) = pallet.call_ty_id() else {
|
|
return Ok(quote!());
|
|
};
|
|
|
|
let mut struct_defs = super::generate_structs_from_variants(
|
|
type_gen,
|
|
types_mod_ident,
|
|
call_ty,
|
|
|name| name.to_upper_camel_case().into(),
|
|
"Call",
|
|
crate_path,
|
|
should_gen_docs,
|
|
)?;
|
|
|
|
let result = struct_defs
|
|
.iter_mut()
|
|
.map(|(variant_name, struct_def, aliases)| {
|
|
let fn_name = format_ident!("{}", variant_name.to_snake_case());
|
|
|
|
let result: Vec<_> = match struct_def.fields {
|
|
CompositeDefFields::Named(ref named_fields) => named_fields
|
|
.iter()
|
|
.map(|(name, field)| {
|
|
let call_arg = if field.is_boxed() {
|
|
quote! { #name: ::std::boxed::Box::new(#name) }
|
|
} else {
|
|
quote! { #name }
|
|
};
|
|
|
|
let alias_name =
|
|
format_ident!("{}", name.to_string().to_upper_camel_case());
|
|
|
|
(quote!( #name: types::#fn_name::#alias_name ), call_arg)
|
|
})
|
|
.collect(),
|
|
CompositeDefFields::NoFields => Default::default(),
|
|
CompositeDefFields::Unnamed(_) => {
|
|
return Err(CodegenError::InvalidCallVariant(call_ty))
|
|
}
|
|
};
|
|
|
|
let call_fn_args = result.iter().map(|(call_fn_arg, _)| call_fn_arg);
|
|
let call_args = result.iter().map(|(_, call_arg)| call_arg);
|
|
|
|
let pallet_name = pallet.name();
|
|
let call_name = &variant_name;
|
|
let struct_name = &struct_def.name;
|
|
let Some(call_hash) = pallet.call_hash(call_name) else {
|
|
return Err(CodegenError::MissingCallMetadata(
|
|
pallet_name.into(),
|
|
call_name.to_string(),
|
|
));
|
|
};
|
|
|
|
// Propagate the documentation just to `TransactionApi` methods, while
|
|
// draining the documentation of inner call structures.
|
|
let docs = should_gen_docs.then_some(struct_def.docs.take()).flatten();
|
|
|
|
// The call structure's documentation was stripped above.
|
|
let call_struct = quote! {
|
|
#struct_def
|
|
|
|
#aliases
|
|
|
|
impl #crate_path::blocks::StaticExtrinsic for #struct_name {
|
|
const PALLET: &'static str = #pallet_name;
|
|
const CALL: &'static str = #call_name;
|
|
}
|
|
};
|
|
|
|
let client_fn = quote! {
|
|
#docs
|
|
pub fn #fn_name(
|
|
&self,
|
|
#( #call_fn_args, )*
|
|
) -> #crate_path::tx::Payload<types::#struct_name> {
|
|
#crate_path::tx::Payload::new_static(
|
|
#pallet_name,
|
|
#call_name,
|
|
types::#struct_name { #( #call_args, )* },
|
|
[#(#call_hash,)*]
|
|
)
|
|
}
|
|
};
|
|
|
|
Ok((call_struct, client_fn))
|
|
})
|
|
.collect::<Result<Vec<_>, _>>()?;
|
|
|
|
let call_structs = result.iter().map(|(call_struct, _)| call_struct);
|
|
let call_fns = result.iter().map(|(_, client_fn)| client_fn);
|
|
|
|
let call_type = type_gen.resolve_type_path(call_ty);
|
|
let call_ty = type_gen.resolve_type(call_ty);
|
|
let docs = &call_ty.docs;
|
|
let docs = should_gen_docs
|
|
.then_some(quote! { #( #[doc = #docs ] )* })
|
|
.unwrap_or_default();
|
|
|
|
Ok(quote! {
|
|
#docs
|
|
pub type Call = #call_type;
|
|
pub mod calls {
|
|
use super::root_mod;
|
|
use super::#types_mod_ident;
|
|
|
|
type DispatchError = #types_mod_ident::sp_runtime::DispatchError;
|
|
|
|
pub mod types {
|
|
use super::#types_mod_ident;
|
|
|
|
#( #call_structs )*
|
|
}
|
|
|
|
pub struct TransactionApi;
|
|
|
|
impl TransactionApi {
|
|
#( #call_fns )*
|
|
}
|
|
}
|
|
})
|
|
}
|